/* ─── Variables y Tokens de Diseño (Estructura V) ────────────────────────── */
:root {
  --bg:           #FDFBF9; /* Blanco cálido/crema */
  --surface:      #FFFFFF; /* Superficies limpias */
  --ink:          #2C3032; /* Antracita/carbón oscuro */
  --muted:        #6D757A; /* Gris medio */
  --hair:         #E6E1DC; /* Gris muy suave */
  --primary:      #173A4B; /* Azul Petróleo / Corporativo */
  --secondary:    #2A5944; /* Verde Bosque / Operativo */
  --accent:       #EADEC5; /* Arena/Beige */
  --error:        #C0392B;
  --display:      'Bricolage Grotesque', system-ui, sans-serif;
  --body:         'Hanken Grotesk', system-ui, sans-serif;
  --sombra:       0 4px 20px rgba(23, 58, 75, 0.05);
  --sombra-hover: 0 8px 30px rgba(23, 58, 75, 0.08);
  --radio:        16px;
  --transicion:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset e Identidad Base ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transicion);
}
a:hover {
  color: var(--secondary);
}

/* ─── Tipografía ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ─── Layout y Contenedores ──────────────────────────────────────────────── */
.contenedor {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seccion {
  padding: 80px 0;
}

.seccion-gris {
  background-color: #F8F6F2;
}

.seccion-verde {
  background-color: #EBF2EE;
}

.seccion-titulo {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.seccion-titulo h2 {
  color: var(--primary);
}
.seccion-titulo p {
  font-size: 1.1rem;
}

/* Grid Alternante de 2 Columnas */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Permite alternar la imagen a la izquierda */
  .grid-invertido {
    direction: rtl;
  }
  .grid-invertido > div {
    direction: ltr;
  }
}

.img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(23, 58, 75, 0.08);
  border: 1px solid var(--hair);
  background-color: var(--surface);
  transition: transform var(--transicion);
}
.img-wrapper:hover {
  transform: scale(1.01);
}
.img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ─── Utilidades ─────────────────────────────────────────────────────────── */
.oculto {
  display: none !important;
}
.req {
  color: var(--error);
  margin-left: 2px;
  font-weight: 700;
}

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  background-color: rgba(253, 251, 249, 0.95);
  border-bottom: 1px solid var(--hair);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}
.logo span {
  color: var(--secondary);
  font-weight: 500;
}

/* ─── Botones ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--surface);
  font-family: var(--body);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
  transition: background var(--transicion), transform var(--transicion), box-shadow var(--transicion);
  box-shadow: 0 4px 12px rgba(23, 58, 75, 0.1);
}
.btn:hover {
  background: #0E2733;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23, 58, 75, 0.15);
  color: var(--surface);
}
.btn-primario {
  background: var(--primary);
  color: var(--surface);
}
.btn-secundario {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--hair);
}
.btn-secundario:hover {
  background: var(--bg);
  transform: translateY(-2px);
  color: var(--primary);
}
.btn-grande {
  padding: 16px 36px;
  font-size: 1.05rem;
}
.btn-bloque {
  display: block;
  width: 100%;
}

/* ─── Componente Tarjeta (.card) ────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--radio);
  padding: 32px;
  box-shadow: var(--sombra);
  transition: transform var(--transicion), box-shadow var(--transicion);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}

/* Tarjetas de Pasos y Procesos (.step-card) */
.step-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.step-number {
  position: absolute;
  right: 16px;
  bottom: 0px;
  font-family: var(--display);
  font-size: 7.5rem;
  font-weight: 800;
  color: rgba(234, 222, 197, 0.25); /* --accent con baja opacidad */
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}
.step-card h3 {
  position: relative;
  z-index: 1;
}
.step-card p {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

/* Tarjeta Métrica (.metric-card) */
.metric-card {
  border-top: 4px solid var(--secondary);
  text-align: center;
}
.metric-value {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

/* Línea de Tiempo (.timeline) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 2px dashed var(--accent);
  padding-left: 24px;
  margin: 20px 0;
}
.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  transition: background var(--transicion), border-color var(--transicion);
}
.timeline-item.active::before {
  background: var(--secondary);
  border-color: var(--secondary);
}

/* Caja de Testimonio (.testimonial-box) */
.testimonial-box {
  background: var(--primary);
  color: var(--surface);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  box-shadow: 0 8px 32px rgba(23, 58, 75, 0.15);
  overflow: hidden;
}
.testimonial-box::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: var(--display);
  font-size: 12rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  pointer-events: none;
}
.testimonial-box p {
  color: var(--surface);
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
.testimonial-author {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── Hero Section ──────────────────────────────────────────────────────── */
#hero {
  padding: 80px 0;
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
#hero h1 {
  margin-bottom: 1.5rem;
}
#hero p {
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

@media (min-width: 768px) {
  .hero-wrapper {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ─── Perfil ─────────────────────────────────────────────────────────────── */
.lista-perfil {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.lista-perfil li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 1.05rem;
  box-shadow: var(--sombra);
  transition: transform var(--transicion);
}
.lista-perfil li:hover {
  transform: translateX(4px);
}
.lista-perfil li::before {
  content: "✦";
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .lista-perfil {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Calculador de Ingresos ─────────────────────────────────────────────── */
.calc-wrapper {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--hair);
  box-shadow: var(--sombra);
  padding: 40px;
  max-width: 850px;
  margin: 0 auto;
}
.calc-titulo-btn {
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.calc-controles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .calc-controles {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Botones de Selección del Calculador */
.calc-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.calc-btn {
  background: var(--bg);
  border: 1.5px solid var(--hair);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transicion);
  font-family: var(--body);
}
.calc-btn:hover {
  border-color: var(--secondary);
  background: #F4F8F6;
}
.calc-btn.activo {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--surface);
}
.btn-dia {
  min-width: 46px;
  text-align: center;
  padding: 10px;
}
.btn-hora {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
}
.btn-hora span {
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 2px;
}

.calc-resultado {
  background: #F4F8F6;
  border: 1px solid #D4E2DB;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.calc-res-label {
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.calc-res-semana {
  font-family: var(--display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 16px;
}
.calc-res-semana span {
  font-family: var(--body);
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 600;
}
.calc-res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid #D4E2DB;
  padding-top: 16px;
}
.calc-subres-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}
.calc-subres-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── Pasos de Proceso y Valores ────────────────────────────────────────── */
.pasos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .pasos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.valores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .valores-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .valores-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ─── FAQ Acordeón Estilizado ───────────────────────────────────────────── */
.faq-lista {
  max-width: 750px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--hair);
}
.faq-item:first-child {
  border-top: 1px solid var(--hair);
}
.faq-pregunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transicion);
}
.faq-pregunta:hover {
  color: var(--secondary);
}
.faq-icono {
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1;
  transition: transform var(--transicion);
}
.faq-item.abierto .faq-icono {
  transform: rotate(45deg);
}
.faq-respuesta {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}
.faq-item.abierto .faq-respuesta {
  max-height: 500px;
}
.faq-respuesta p {
  padding: 0 8px 20px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CTA Final ─────────────────────────────────────────────────────────── */
#cta-final {
  background-color: var(--primary);
  color: var(--surface);
  text-align: center;
  padding: 80px 0;
}
#cta-final h2 {
  color: var(--surface);
  margin-bottom: 1rem;
}
#cta-final p {
  color: var(--accent);
  margin-bottom: 2rem;
  font-size: 1.15rem;
}
#cta-final .btn {
  background-color: var(--surface);
  color: var(--primary);
}
#cta-final .btn:hover {
  background-color: var(--bg);
  color: var(--secondary);
}

/* ─── Formulario Multi-pasos (Wizard) ───────────────────────────────────── */
#formulario-section {
  padding: 80px 0;
  background-color: #F8F6F2;
  min-height: 100vh;
}
.form-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(23, 58, 75, 0.06);
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

/* Barra de progreso */
.barra-progreso-wrap {
  background: var(--hair);
  height: 6px;
}
.barra-progreso {
  background: var(--secondary);
  height: 100%;
  width: 11.11%;
  transition: width 0.3s ease;
}

.paso-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.paso-info strong {
  color: var(--primary);
}

.step {
  display: none;
  padding: 32px 32px 40px;
  animation: stepFadeIn 0.3s ease;
}
.step.activo {
  display: block;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-titulo {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.step-subtitulo {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* Campos de Formulario */
.campo {
  margin-bottom: 20px;
}
.campo label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.campo input[type="text"],
.campo input[type="number"],
.campo input[type="tel"],
.campo input[type="email"],
.campo select,
.campo textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--hair);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--surface);
  transition: border-color var(--transicion), box-shadow var(--transicion);
  font-family: var(--body);
  appearance: none;
  -webkit-appearance: none;
}
.campo select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23173A4B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.campo input:focus,
.campo select:focus,
.campo textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(23, 58, 75, 0.1);
}
.campo textarea {
  resize: vertical;
  min-height: 100px;
}

.campo.error-campo input,
.campo.error-campo select,
.campo.error-campo textarea {
  border-color: var(--error);
}
.msg-error {
  font-size: 0.82rem;
  color: var(--error);
  margin-top: 4px;
  display: none;
}
.campo.error-campo .msg-error {
  display: block;
}

/* Opciones de Radio y Checkbox Personalizadas */
.opciones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.opcion-radio, .opcion-check {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #F8F6F2;
  border: 1.5px solid var(--hair);
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--transicion);
  user-select: none;
}
.opcion-radio input[type="radio"],
.opcion-check input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.opcion-radio:hover, .opcion-check:hover {
  border-color: var(--secondary);
}
.opcion-radio:has(input:checked),
.opcion-check:has(input:checked) {
  border-color: var(--secondary);
  background-color: #EBF2EE;
  color: var(--secondary);
  font-weight: 600;
}

/* Traslados Grid */
.traslados-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 500px) {
  .traslados-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.separador {
  border: none;
  border-top: 1px solid var(--hair);
  margin: 24px 0;
}

/* Drag and Drop Documentos */
.doc-item {
  background: #F8F6F2;
  border: 2px dashed var(--hair);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all var(--transicion);
}
.doc-item:hover {
  border-color: var(--secondary);
  background-color: #EBF2EE;
}
.doc-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.doc-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
}
.doc-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.doc-badge.req { background-color: #FDE8E7; color: var(--error); }
.doc-badge.opc { background-color: var(--accent); color: var(--primary); }

.doc-drag-hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 6px 0 16px;
}
.doc-acciones {
  display: flex;
  gap: 8px;
}
.btn-doc {
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s;
}
.btn-doc-subir {
  background-color: var(--primary);
  color: var(--surface);
}
.btn-doc-foto {
  background-color: var(--surface);
  color: var(--primary);
  border: 1px solid var(--hair);
}
.doc-preview {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--secondary);
  font-weight: 600;
}

/* Documento Cargado */
.doc-item.has-file {
  border-style: solid;
  border-color: var(--secondary);
  background-color: var(--surface);
}
.doc-item.has-file .doc-drag-hint,
.doc-item.has-file .doc-acciones,
.doc-item.has-file .doc-hint {
  display: none;
}

.aviso-docs {
  background-color: #EBF2EE;
  border: 1px solid #C3E6D0;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 24px;
}

/* Consentimiento y Checks de Envío */
.consentimiento {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--hair);
  margin-bottom: 12px;
  cursor: pointer;
  transition: all var(--transicion);
}
.consentimiento:has(input:checked) {
  border-color: var(--secondary);
  background-color: #EBF2EE;
}
.consentimiento input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.consentimiento span {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
}

/* Navegación del Wizard */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-top: 1px solid var(--hair);
  background: #F8F6F2;
}
.form-nav .btn {
  min-width: 140px;
}

/* Mensajes Globales */
#msg-error-global {
  background: #FDE8E7;
  border: 1px solid #E5B4B3;
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--error);
  font-size: 0.95rem;
  margin: 20px 32px 0;
}

/* ─── Pantalla de Éxito ─────────────────────────────────────────────────── */
#pantalla-exito {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--hair);
  box-shadow: var(--sombra-hover);
  max-width: 600px;
  margin: 40px auto;
  padding: 48px 32px;
  text-align: center;
}
.exito-icono {
  font-size: 4rem;
  margin-bottom: 16px;
}
#pantalla-exito h2 {
  color: var(--secondary);
  margin-bottom: 8px;
}
.exito-folio {
  background-color: #EBF2EE;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 1rem;
  color: var(--secondary);
  line-height: 1.7;
}
.exito-folio strong {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--secondary);
}
.exito-docs {
  background-color: #F8F6F2;
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  margin-top: 24px;
  border: 1px solid var(--hair);
}
.exito-docs h4 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.05rem;
}
.exito-docs ul {
  padding-left: 20px;
  color: var(--ink);
}
.exito-docs li {
  margin-bottom: 4px;
}

/* ─── Pie de Página ──────────────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 40px 0;
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer a {
  color: var(--accent);
}
footer a:hover {
  color: var(--surface);
}

/* ─── Responsive Media Queries ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .seccion {
    padding: 60px 0;
  }
  .form-card {
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .step {
    padding: 24px 16px 32px;
  }
  .form-nav {
    padding: 16px;
  }
  .paso-info {
    padding: 16px 16px 0;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .form-nav .btn {
    min-width: unset;
    width: 48%;
  }
  #formulario-section {
    padding: 0;
  }
  .calc-wrapper {
    padding: 24px 16px;
    border-radius: 0;
    border: none;
  }
  #pantalla-exito {
    margin: 0;
    border-radius: 0;
    border: none;
    padding: 40px 16px;
  }
}
