.elementor-825 .elementor-element.elementor-element-6723d36{--display:flex;}#elementor-popup-modal-825{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-825 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-825 .dialog-close-button{display:flex;}#elementor-popup-modal-825 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for container, class: .elementor-element-6723d36 *//* General */
.custom-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  font-family: "Helvetica Neue", sans-serif;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* Grupos */
.custom-form .form-group {
  width: 100%;
}

/* Etiquetas */
.custom-form label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #222;
  display: block;
}

/* Inputs y textarea */
.custom-input,
.custom-textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.custom-input:focus,
.custom-textarea:focus {
  border-color: #0bc3cc;
  background-color: #fff;
  outline: none;
}

/* Textarea específico */
.custom-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Botón */
.custom-submit {
  width: 100%;
  padding: 12px 20px;
  background-color: #0bc3cc;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-submit:hover {
  background-color: #099faa;
}

/* Responsive para tablets y móviles */
@media (max-width: 768px) {
  .custom-form {
    padding: 16px;
    border-radius: 12px;
  }

  .custom-input,
  .custom-textarea,
  .custom-submit {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .custom-form {
    padding: 14px;
    gap: 10px;
  }

  .custom-input,
  .custom-textarea {
    padding: 9px 12px;
    font-size: 13.5px;
  }

  .custom-submit {
    font-size: 14px;
    padding: 11px 16px;
  }
}/* End custom CSS */