/* =========================================================================
   CON TENIS Y TACONES — Landing "Método A.M.A.R."
   Sistema de diseño v2
   -------------------------------------------------------------------------
   Paleta heredada de la marca (auditoría v1): #190631, #4c335e, #b19061,
   #a117fe, #3dc18f — profundizada aquí hacia un tono "aubergine" premium,
   con el dorado (#b19061) reservado como acento VIP muy puntual.
   Tipografía: Figtree (texto/UI) + Fraunces (titulares grandes).
   Iconos: Lucide (line, minimalista, hereda color con currentColor).
   Radios de dos niveles: píldora (botones) vs. squircle suave (tarjetas).
   Vidrio de marca: SOLO en 3 momentos (nav al hacer scroll, tarjeta del
   formulario del hero, sección Agencia IA) — nunca en toda la página.
   ========================================================================= */

:root {
  /* ---- Color: fondo y superficies oscuras ---- */
  --bg-void:        #120819;   /* fondo general, más profundo que el original */
  --bg-aubergine:   #1E0E33;   /* panel oscuro secundario */
  --bg-aubergine-2: #3D1F4A;  /* panel oscuro terciario / degradados */

  /* ---- Color: marca ---- */
  --purple-500:  #7C3AED;      /* morado principal, menos neón que #a117fe */
  --purple-600:  #6425C7;
  --purple-700:  #4C1D95;
  --mint-500:    #3DC18F;      /* acento secundario, éxito/checks */
  --mint-600:    #2FA378;
  --gold-500:    #B19061;      /* acento VIP, uso muy puntual (badges, detalles) */

  /* ---- Color: superficies claras ---- */
  --surface-0:   #FFFFFF;
  --surface-1:   #F8F6FB;
  --surface-2:   #F1ECF8;

  /* ---- Color: texto ---- */
  --ink-900:     #170A26;      /* texto sobre superficies claras */
  --ink-600:     #4B3A5C;
  --ink-muted:   #7A6C8A;
  --paper-900:   #FFFFFF;      /* texto sobre superficies oscuras */
  --paper-700:   rgba(255,255,255,0.88);
  --paper-500:   rgba(255,255,255,0.68);

  /* ---- Degradado de marca (firma visual) ---- */
  --gradient-brand: linear-gradient(135deg, var(--purple-500) 0%, var(--mint-500) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(124,58,237,0.16) 0%, rgba(61,193,143,0.16) 100%);

  /* ---- Tipografía ---- */
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Espaciado ---- */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 96px;

  /* ---- Radios: dos niveles ---- */
  --radius-pill: 999px;         /* botones, inputs, chips */
  --radius-card: 28px;          /* tarjetas y paneles (squircle suave) */
  --radius-card-lg: 36px;       /* paneles grandes */

  /* ---- Sombra ---- */
  --shadow-soft: 0 20px 60px rgba(23, 10, 38, 0.14);
  --shadow-card: 0 12px 32px rgba(23, 10, 38, 0.10);

  /* ---- Vidrio de marca (glassmorphism con tinte propio, no gris) ---- */
  --glass-tint: linear-gradient(135deg, rgba(124,58,237,0.55) 0%, rgba(61,193,143,0.35) 100%);
  --glass-blur: blur(20px);

  --container-max: 1180px;
}

/* ============================= RESET BÁSICO ============================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--surface-1);
  color: var(--ink-900);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; font-weight: 600; }
p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================= UTILIDADES ============================= */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-3); }
.section { padding: var(--space-10) 0; }
.section--tight { padding: var(--space-8) 0; }
.section--dark { background: var(--bg-void); color: var(--paper-900); }
.section--soft { background: var(--surface-2); }
.text-center { text-align: center; }
/* Palabra o frase que quiere llamar la atención en el copy:
   úsala con <strong class="hl"> o simplemente <strong> en prosa */
strong, .hl {
  font-weight: 700;
  color: inherit;
}
/* Highlight con color en contexto oscuro (hero, secciones dark) */
.section--dark strong,
.hero strong,
.agencia-ia strong { color: #fff; }
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--paper-900);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow-badge--light {
  background: var(--gradient-brand-soft);
  border: 1px solid rgba(124,58,237,0.25);
  color: var(--purple-700);
}
.section-title { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; margin-bottom: var(--space-2); }
.section-subtitle { font-size: 18px; color: var(--ink-muted); max-width: 640px; margin: 0 auto var(--space-6); }
.decorative-line { width: 96px; height: 4px; border-radius: var(--radius-pill); background: var(--gradient-brand); margin: var(--space-2) auto var(--space-4); }
.icon { width: 22px; height: 22px; stroke-width: 1.75; color: var(--purple-500); flex-shrink: 0; }
.icon--mint { color: var(--mint-500); }
.icon--on-dark { color: var(--paper-900); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-card); }
.btn-primary:hover { box-shadow: 0 16px 40px rgba(124,58,237,0.35); }
.btn-secondary { background: var(--surface-0); color: var(--purple-700); border: 1.5px solid rgba(124,58,237,0.3); }
.btn-secondary:hover { background: var(--surface-2); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn:focus-visible {
  outline: 3px solid var(--mint-500);
  outline-offset: 3px;
}
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.card {
  background: var(--surface-0);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
}

/* ============================= HEADER / NAV ============================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* Estado por defecto (sobre el hero oscuro): transparente, sin vidrio */
.header { background: transparent; }

/* Estado "scrolled": fondo oscuro SÓLIDO garantizado (no depende solo de
   backdrop-filter, que puede fallar si detrás hay una sección clara). */
.header.is-scrolled {
  background: rgba(18, 8, 25, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-logo img { height: 80px; width: auto; }
.nav-logo .nav-divider { width: 1px; height: 26px; background: rgba(255,255,255,0.25); }
@media (max-width: 1180px) {
  .nav-logo img { height: 50px; }
}
.nav-menu { display: flex; align-items: center; gap: var(--space-3); }
.nav-menu a { color: var(--paper-900); font-weight: 600; font-size: 14px; opacity: 0.9; white-space: nowrap; }
.nav-menu a:hover { opacity: 1; }
.nav-cta { display: none; }
.nav-cta .btn { padding: 12px 22px; font-size: 14px; }

/* Desktop: mostrar menú + CTA, ocultar hamburger */
@media (min-width: 1050px) {
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* Tablet: mostrar menú de texto pero sin el CTA, mostrar hamburger */
@media (max-width: 1180px) {
  .nav-menu { gap: 20px; }
  .nav-menu a { font-size: 13.5px; }
}

/* Móvil: SOLO logo + hamburger. Ocultar menú de texto y CTA */
@media (max-width: 899px) {
  .nav-menu { display: none; }
  .nav-cta { display: none !important; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span { width: 26px; height: 2px; background: var(--paper-900); border-radius: 2px; transition: opacity 0.15s; }

/* Animación X al abrirse */
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger span { transition: transform 0.2s ease, opacity 0.15s; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg-void);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 110px var(--space-4) var(--space-6);
  gap: var(--space-4);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: var(--paper-900); font-size: 28px;
  font-family: var(--font-display); font-weight: 600;
  opacity: 0.9; transition: opacity 0.15s;
}
.mobile-menu a:hover { opacity: 1; }
.mobile-menu .btn {
  margin-top: var(--space-2);
  padding: 16px 32px; font-size: 17px; width: 100%; justify-content: center;
}

/* Foco visible accesible */
.nav-menu a:focus-visible,
.hamburger:focus-visible,
.mobile-menu a:focus-visible {
  outline: 3px solid var(--mint-500);
  outline-offset: 4px;
  border-radius: 6px;
}

/* ============================= HERO ============================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 100% at 15% 0%, rgba(42, 18, 64, 0.88) 0%, rgba(18, 8, 25, 0.92) 60%),
    url('https://masmujeresconproposito.com/wp-content/uploads/2025/09/homelanzamientooctubre-horizontal.webp') center/cover no-repeat;
  padding: 160px 0 var(--space-10);
  overflow: hidden;
  color: var(--paper-900);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-eyebrow-row { display: flex; margin-bottom: var(--space-3); }
.hero-title { font-size: clamp(32px, 4.6vw, 54px); line-height: 1.1; margin-bottom: var(--space-3); }
.hero-subtitle { font-size: 19px; color: var(--paper-700); max-width: 560px; margin-bottom: var(--space-4); }

.hero-specifics {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: 14px; color: var(--paper-700); margin-bottom: var(--space-4);
  padding: 14px 20px; border-radius: var(--radius-card);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
}
.hero-specifics span { display: inline-flex; align-items: center; gap: 6px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: var(--space-2); }
.hero-microcopy { font-size: 13.5px; color: var(--paper-500); max-width: 480px; margin-bottom: var(--space-2); }
.hero-institutional { font-size: 12.5px; color: var(--paper-500); font-style: italic; }

/* Tarjeta del formulario — AQUÍ SÍ va el vidrio de marca (uno de los 3
   momentos permitidos), con tinte propio morado→menta, no gris. */
.hero-form-card {
  position: relative;
  border-radius: var(--radius-card-lg);
  padding: var(--space-4);
  background:
    linear-gradient(160deg, rgba(124,58,237,0.32), rgba(61,193,143,0.18)),
    rgba(255,255,255,0.72);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-soft);
  color: var(--ink-900);
}
.hero-form-card .eyebrow-badge--light { margin-bottom: var(--space-2); }
.hero-form-card h3 { font-size: 24px; margin-bottom: 6px; }
.hero-form-card > p { color: var(--ink-900); margin-bottom: var(--space-3); font-size: 14.5px; }

/* ============================= FORMULARIO DE 3 PASOS ============================= */
.steps-indicator { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-3); }
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  border: 2px solid rgba(23,10,38,0.25);
  color: var(--ink-900);           /* contraste corregido: texto oscuro siempre visible */
  background: var(--surface-0);
}
.step-dot.is-active { background: var(--mint-500); border-color: var(--mint-500); color: #fff; }
.step-dot.is-done { background: var(--purple-500); border-color: var(--purple-500); color: #fff; }
.step-connector { flex: 1; height: 2px; background: rgba(23,10,38,0.15); }

.form-step { display: none; flex-direction: column; gap: var(--space-2); }
.form-step.is-active { display: flex; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13.5px; font-weight: 700; color: var(--ink-900); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(23,10,38,0.18);
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(255,255,255,0.92);
  color: var(--ink-900);
}
.form-group textarea { border-radius: 20px; resize: vertical; min-height: 90px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.15);
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #D64545; }
.form-error-text { font-size: 12.5px; color: #D64545; }

.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-600); }
.form-checkbox input { margin-top: 3px; }

.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: var(--space-2); }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ── Dorado de marca — uso puntual (3 momentos) ─────────────────────────── */

/* 1. Eyebrow badge del hero: borde dorado para establecer tono premium */
.hero .eyebrow-badge {
  border-color: rgba(177, 144, 97, 0.55);
  box-shadow: 0 0 18px rgba(177, 144, 97, 0.18);
}

/* 2. Step-dot completado: acento dorado en vez del morado flat */
.step-dot.is-done {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: #fff;
  box-shadow: 0 2px 10px rgba(177, 144, 97, 0.35);
}

/* 3. Línea decorativa de la sección garantías: dorado → morado */
.section--garantias .decorative-line {
  background: linear-gradient(90deg, var(--gold-500), var(--purple-500));
}
/* ── intl-tel-input: ancho completo, integrado al estilo píldora ── */
.iti { width: 100%; display: block; }

/* Banderas locales (instaladas en assets/iti/) */
.iti__flag { background-image: url("assets/iti/flags.png"); }
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag { background-image: url("assets/iti/flags@2x.png"); }
}

/* El contenedor interno también debe ser 100% */
.iti.iti--allow-dropdown,
.iti.iti--separate-dial-code {
  width: 100%;
  display: block;
}
/* El input ocupa el 100% del contenedor iti */
.iti input[type="tel"] {
  width: 100%;
  padding: 14px 18px 14px 110px; /* espacio a la izq para bandera + código */
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(23,10,38,0.18);
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(255,255,255,0.92);
  color: var(--ink-900);
  box-sizing: border-box;
}
.iti input[type="tel"]:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.15);
}
/* Panel de bandera + código dentro del píldora */
.iti--separate-dial-code .iti__selected-flag {
  background: rgba(255,255,255,0.92);
  border-top-left-radius: var(--radius-pill);
  border-bottom-left-radius: var(--radius-pill);
  padding-left: 14px;
  padding-right: 8px;
  height: 100%;
  border-right: 1.5px solid rgba(23,10,38,0.12);
}
.iti__country-list {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(23,10,38,0.12);
  max-height: 260px;
  z-index: 200;
}

.form-note { font-size: 12px; color: var(--ink-muted); margin-top: var(--space-2); }

/* Pantalla de resultado (Salida A/B/C) */
.form-outcome { display: none; flex-direction: column; gap: var(--space-2); text-align: center; }
.form-outcome.is-active { display: flex; }
.form-outcome h3 { font-size: 22px; }
.form-outcome p { color: var(--ink-muted); }

/* ============================= MÉTODO A.M.A.R. ============================= */
.amar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
@media (max-width: 900px) { .amar-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .amar-grid { grid-template-columns: 1fr; } }
.amar-card { padding: var(--space-3); text-align: left; }
.amar-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-2);
}
.amar-letter {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand); color: #fff;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  flex-shrink: 0;
}
.amar-card h4 { font-size: 19px; margin: 0; color: var(--purple-700); }
.amar-card p { color: var(--ink-muted); font-size: 14.5px; }
.amar-frase-ancla {
  text-align: center; margin-top: var(--space-4);
  font-family: var(--font-display); font-size: 22px; color: var(--purple-700);
}

/* ============================= DIAGNÓSTICO DEL PROBLEMA ============================= */
.problem-list { display: grid; gap: var(--space-2); max-width: 780px; margin: 0 auto; text-align: left; }
.problem-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: var(--space-3); border-radius: var(--radius-card);
  background: var(--surface-0); box-shadow: var(--shadow-card);
}
.problem-item .icon { margin-top: 3px; }
.problem-item strong { display: block; margin-bottom: 6px; font-size: 15.5px; }
.problem-item p { color: var(--ink-muted); font-size: 14.5px; }

/* ============================= DOS RUTAS ============================= */
.rutas-intro-note {
  max-width: 620px; margin: 0 auto var(--space-4); text-align: center;
  font-size: 14.5px; color: var(--ink-muted);
}
.rutas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 780px) { .rutas-grid { grid-template-columns: 1fr; } }
.ruta-card { padding: var(--space-4); position: relative; }
.ruta-card-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: var(--space-2);
}
.ruta-card .ruta-icon-badge {
  width: 54px; height: 54px; border-radius: 18px;
  background: var(--gradient-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ruta-card .ruta-icon-badge i { width: 28px; height: 28px; stroke-width: 1.5; }
.ruta-card h4 { font-size: 22px; margin: 0; color: var(--purple-700); }
.ruta-card p { color: var(--ink-muted); font-size: 14.5px; }
.ruta-card .ruta-resultado {
  margin-top: var(--space-2); padding-top: var(--space-2);
  border-top: 1px solid var(--surface-2); font-size: 13.5px; color: var(--ink-900); font-weight: 600;
}

/* ============================= SEIS FASES ============================= */
.fases-list { display: grid; gap: var(--space-2); counter-reset: fase; }
.fase-item {
  display: grid; grid-template-columns: 56px 1fr; gap: var(--space-3);
  padding: var(--space-3); border-radius: var(--radius-card); background: var(--surface-0); box-shadow: var(--shadow-card);
}
.fase-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface-2); color: var(--purple-700);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.fase-item h4 { font-size: 17px; margin-bottom: 4px; }
.fase-item p { color: var(--ink-muted); font-size: 14.5px; }

/* ============================= ACOMPAÑAMIENTO ============================= */
.acomp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
@media (max-width: 900px) { .acomp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .acomp-grid { grid-template-columns: 1fr; } }
.acomp-card { padding: var(--space-3); text-align: center; }
.acomp-card .icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-card); background: var(--gradient-brand-soft);
  display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-2);
}
.acomp-card h4 { font-size: 16.5px; margin-bottom: 6px; }
.acomp-card p { color: var(--ink-muted); font-size: 13.5px; }

/* ============================= AGENCIA IA (vidrio, momento 3) ============================= */
.agencia-ia {
  position: relative;
  border-radius: var(--radius-card-lg);
  padding: var(--space-8) var(--space-4);
  background:
    linear-gradient(135deg, rgba(124,58,237,0.9), rgba(61,193,143,0.55)),
    var(--bg-aubergine-2);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: #fff;
  overflow: hidden;
}
.agencia-ia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; }
@media (max-width: 900px) { .agencia-ia-grid { grid-template-columns: 1fr; } }
.agencia-ia ul { display: grid; gap: 10px; margin: var(--space-3) 0; }
.agencia-ia ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--paper-700); }
.agencia-ia .limite-box {
  background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-card); padding: var(--space-3); font-size: 13.5px; color: var(--paper-700);
}
.agencia-ia-demo {
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
}
.agencia-ia-demo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.agencia-ia-demo .demo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: var(--space-3);
  font-size: 13.5px; color: var(--paper-500);
}

/* ============================= ENTREGABLES ============================= */
.entregables-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); max-width: 900px; margin: 0 auto; text-align: left; }
@media (max-width: 700px) { .entregables-list { grid-template-columns: 1fr; } }
.entregable-item {
  display: flex; gap: 14px; align-items: center;
  padding: 18px 22px; border-radius: var(--radius-card);
  background: var(--surface-0); box-shadow: var(--shadow-card);
  font-size: 14.5px; font-weight: 600;
}
.entregable-item .num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gradient-brand); color: #fff; font-size: 13.5px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ============================= PARA QUIÉN ES / NO ES ============================= */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 780px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-card { padding: var(--space-4); text-align: left; }
.fit-card h4 { font-size: 17px; margin-bottom: var(--space-2); }
.fit-card ul { display: grid; gap: 10px; }
.fit-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-muted); }
.fit-card--yes { border: 1.5px solid rgba(61,193,143,0.35); }
.fit-card--no { border: 1.5px solid rgba(214,69,69,0.25); }

/* ============================= OFERTA ============================= */
.oferta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 780px) { .oferta-grid { grid-template-columns: 1fr; } }
.oferta-card { padding: var(--space-4); }
.oferta-card h4 { font-size: 18px; margin-bottom: var(--space-2); }
.oferta-card ul { display: grid; gap: 10px; }
.oferta-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-600); }
.oferta-nota { text-align: center; font-size: 13px; color: var(--ink-muted); margin-top: var(--space-3); font-style: italic; }

/* ============================= GARANTÍAS ============================= */
.garantias-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .garantias-grid { grid-template-columns: 1fr; } }

.garantia-card {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  overflow: hidden;
  border-radius: var(--radius-card-lg);
  background: var(--surface-0);
  box-shadow: 0 24px 60px rgba(23, 10, 38, 0.10);
  border: 1px solid rgba(124,58,237,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.garantia-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 70px rgba(23, 10, 38, 0.14);
}
@media (max-width: 560px) {
  .garantia-card { grid-template-columns: 1fr; }
}

/* Panel izquierdo con degradado de marca y el icono grande */
.garantia-visual {
  background: linear-gradient(160deg, var(--bg-aubergine) 0%, var(--purple-700) 60%, var(--purple-500) 120%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.garantia-visual::before {
  content: '';
  position: absolute;
  top: -40%; right: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(circle at center, rgba(61,193,143,0.35) 0%, transparent 55%);
  pointer-events: none;
}
.garantia-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
}
.garantia-visual i {
  position: relative;
  width: 62px; height: 62px;
  color: #ffffff;
  stroke: #ffffff;
  stroke-width: 1.25;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.30));
}
/* Forzar blanco a nivel SVG (Lucide SVG) */
.garantia-visual i svg,
.garantia-visual svg {
  width: 62px; height: 62px;
  stroke: #ffffff !important;
  color: #ffffff !important;
}
@media (max-width: 560px) {
  .garantia-visual { min-height: 130px; padding: var(--space-3); }
}

/* Contenido a la derecha */
.garantia-content { padding: var(--space-4); }
.garantia-content h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--ink-900);
  line-height: 1.25;
}
.garantia-content p {
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* Aclaración legal - más presencia, no cursiva blanda */
.garantias-aclaracion {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 780px;
  margin: var(--space-4) auto 0;
  padding: 18px 24px;
  border-radius: var(--radius-card);
  background: var(--surface-0);
  border-left: 4px solid var(--purple-500);
  box-shadow: var(--shadow-card);
  font-size: 13.5px;
  color: var(--ink-600);
  text-align: left;
}
.garantias-aclaracion i {
  width: 22px; height: 22px; color: var(--purple-500); flex-shrink: 0;
}

/* ============================= AUTORIDAD ============================= */
.logos-row { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; justify-content: center; margin: var(--space-4) 0; }
.logos-row img { height: 68px; width: auto; object-fit: contain; }
@media (max-width: 600px) { .logos-row img { height: 52px; } }

/* ============================= PROCESO DE APLICACIÓN ============================= */
.proceso-list { display: grid; gap: var(--space-2); max-width: 640px; margin: 0 auto var(--space-4); }
.proceso-item { display: flex; gap: 14px; align-items: center; text-align: left; }
.proceso-item .num { width: 34px; height: 34px; border-radius: 50%; background: var(--gradient-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.proceso-item p { font-size: 15px; }

/* ============================= FAQ ============================= */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border-radius: var(--radius-card); background: var(--surface-0); box-shadow: var(--shadow-card); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: var(--space-3); display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 15.5px; color: var(--ink-900);
}
.faq-question .icon { transition: transform 0.2s ease; }
.faq-item.is-open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 var(--space-3) var(--space-3); color: var(--ink-muted); font-size: 14.5px; text-align: left; }

/* ============================= CIERRE FINAL ============================= */
.cierre-final { text-align: center; }
.cierre-final h2 { max-width: 720px; margin: 0 auto var(--space-4); }

/* ============================= FOOTER ============================= */
.footer { background: var(--bg-void); color: var(--paper-500); padding: var(--space-6) 0 var(--space-4); font-size: 13.5px; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-3); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-3); }

/* ============================= FLOATING MINI CTA ============================= */
/* Botón compacto flotante para móvil/tablet. Aparece cuando el CTA del nav
   ya no cabe. Ubicado abajo-derecha, píldora + icono, no invasivo. */
.floating-cta {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  display: none;
  align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  color: #fff; font-weight: 700; font-size: 14.5px;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45);
  text-decoration: none;
}
.floating-cta i { width: 18px; height: 18px; }
@media (max-width: 1049px) { .floating-cta { display: inline-flex; } }
@media (max-width: 480px) {
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13.5px; }
}