.elementor-2184 .elementor-element.elementor-element-e7b3b35 > .elementor-element-populated{margin:0px 50px 0px 50px;--e-column-margin-right:50px;--e-column-margin-left:50px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2184 .elementor-element.elementor-element-29bf060 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-2184 .elementor-element.elementor-element-29bf060{font-family:"Montserrat", Sans-serif;font-weight:400;}.elementor-2184 .elementor-element.elementor-element-29bf060 a{color:#000000;}.elementor-2184 .elementor-element.elementor-element-db7fc6b > .elementor-widget-container{margin:0px 50px 0px 50px;}.elementor-2184 .elementor-element.elementor-element-db7fc6b a:hover, .elementor-2184 .elementor-element.elementor-element-db7fc6b a:focus{color:#002879;}/* Start custom CSS for text-editor, class: .elementor-element-db7fc6b *//* ============================================================
   CARGA DE GOOGLE FONTS (MONTSSERRAT)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ============================================================
   CONTENEDOR PRINCIPAL - ANCHO 100%
   ============================================================ */
.cf7-grid {
  width: 100%;                 /* Ocupa todo el ancho del contenedor */
  max-width: 100%;            /* Sin límite de ancho */
  margin: 0;                  /* Sin margen automático (lo gestiona Elementor) */
  font-family: 'Montserrat', sans-serif;
}

/* ============================================================
   FILAS (FLEX)
   ============================================================ */
.cf7-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 20px -10px;   /* separación entre filas */
}

/* ============================================================
   COLUMNAS (TODAS CON FLEX VERTICAL PARA ALINEAR INPUTS)
   ============================================================ */
.cf7-col-3,
.cf7-col-2,
.cf7-col-full {
  display: flex;
  flex-direction: column;        /* apila label y input verticalmente */
  align-items: stretch;         /* el input ocupará todo el ancho */
  padding: 0 10px;
  box-sizing: border-box;
}

/* Anchos según el número de columnas */
.cf7-col-3 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}
.cf7-col-2 {
  flex: 0 0 50%;
  max-width: 50%;
}
.cf7-col-full {
  flex: 0 0 100%;
  max-width: 100%;
}

/* ============================================================
   ETIQUETAS (LABELS)
   ============================================================ */
.cf7-grid label {
  display: block;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4a5568;
  margin-bottom: 6px;
  line-height: 1.4;
  flex-shrink: 0;              /* evita que se encoja */
  white-space: nowrap;         /* evita saltos de línea (opcional) */
}

/* En móviles, permitir que las etiquetas largas puedan saltar */
@media (max-width: 768px) {
  .cf7-grid label {
    white-space: normal;
  }
}

.cf7-grid .required {
  color: #e53e3e;
  margin-left: 2px;
}

/* ============================================================
   CAMPOS DE ENTRADA (INPUT, TEXTAREA, SELECT)
   ============================================================ */
.cf7-grid input[type="text"],
.cf7-grid input[type="email"],
.cf7-grid input[type="tel"],
.cf7-grid input[type="number"],
.cf7-grid input[type="date"],
.cf7-grid textarea,
.cf7-grid select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  background-color: #f7fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  color: #2d3748;
  /* === CLAVE PARA LA ALINEACIÓN HORIZONTAL === */
  margin-top: auto;            /* empuja el campo hacia el fondo de la columna */
}

/* Al enfocar, fondo blanco y borde azul */
.cf7-grid input:focus,
.cf7-grid textarea:focus,
.cf7-grid select:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

/* Área de texto */
.cf7-grid textarea {
  min-height: 120px;
  resize: vertical;
}

/* Campo fecha: ajuste de altura y padding */
.cf7-grid input[type="date"] {
  min-height: 46px;
  padding: 11px 14px;
  appearance: none;
  -webkit-appearance: none;
}

/* Campo número: quitar flechas internas */
.cf7-grid input[type="number"] {
  -moz-appearance: textfield;
}
.cf7-grid input[type="number"]::-webkit-inner-spin-button,
.cf7-grid input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ============================================================
   BOTÓN ENVIAR
   ============================================================ */
.cf7-grid .submit-wrap {
  text-align: center;
  margin-top: 10px;
}

.cf7-grid input[type="submit"] {
  background: linear-gradient(135deg, #2b6cb0, #1a4f8b);
  color: #fff;
  border: none;
  padding: 14px 55px;
  border-radius: 0px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.35);
}

.cf7-grid input[type="submit"]:hover {
  background: linear-gradient(135deg, #1a4f8b, #0d3a6b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 108, 176, 0.45);
}

.cf7-grid input[type="submit"]:active {
  transform: translateY(0px);
  box-shadow: 0 2px 8px rgba(43, 108, 176, 0.3);
}

/* ============================================================
   RESPONSIVE: EN MÓVILES, TODAS LAS COLUMNAS AL 100%
   ============================================================ */
@media (max-width: 768px) {
  .cf7-col-3,
  .cf7-col-2,
  .cf7-col-full {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .cf7-row {
    margin-bottom: 0;
  }
  .cf7-grid .submit-wrap {
    margin-top: 0;
  }
}

/* Mostrar los radios en una sola fila horizontal */
.cf7-radio-group {
  display: flex;
  flex-wrap: wrap;      /* Permite que si no caben, bajen a la siguiente línea */
  gap: 15px 30px;       /* Espacio horizontal entre opciones (ajusta a tu gusto) */
  align-items: center;
  margin: 10px 0 20px;
}

.cf7-radio-group label {
  display: inline-flex;  /* Para que estén en línea pero conserven margen */
  align-items: center;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  margin: 0;            /* Elimina márgenes que puedan desalinear */
  white-space: nowrap;   /* Evita que el texto del label se parta en 2 líneas */
}

.cf7-radio-group input[type="radio"] {
  margin-right: 6px;
  width: auto;
}

/* Forzar fila horizontal con alta prioridad */
.cf7-radio-group,
.cf7-radio-group.wpcf7-form-control-wrap {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 15px 30px !important;
  align-items: center !important;
  margin: 10px 0 20px !important;
}

.cf7-radio-group label,
.cf7-radio-group .wpcf7-list-item-label {
  display: inline-flex !important;
  align-items: center !important;
  font-weight: normal !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
  margin: 0 !important;
  white-space: nowrap !important;
  float: none !important; /* Evita conflictos con flotantes */
}

.cf7-radio-group input[type="radio"] {
  margin: 0 6px 0 0 !important;
  width: auto !important;
  display: inline-block !important;
  vertical-align: middle !important;
}/* End custom CSS */