/* ════════════════════════════════════════════════════════════════════
   Gazapo Connect — Landing styles
   Paleta oficial: #004D65 azul · #003749 azul-osc · #FF6B47 coral
                   #F2F6F7 blanco-ui · #8594A9 gris-claro · #474D58 gris-osc
   Tipografía: Inter Variable (Regular/Medium/Bold)
   ════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Variable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta oficial */
  --azul:        #004D65;
  --azul-osc:    #003749;
  --azul-osc-2:  #002935;
  --coral:       #FF6B47;
  --coral-hover: #ff7d5e;
  --coral-dim:   rgba(255, 107, 71, 0.12);
  --blanco-ui:   #F2F6F7;
  --gris:        #8594A9;
  --gris-osc:    #474D58;
  --gris-bg:     #EEF1F4;

  /* Semánticos */
  --bg:          #ffffff;
  --bg-soft:     var(--blanco-ui);
  --bg-dark:     var(--azul-osc);
  --text:        var(--gris-osc);
  --text-soft:   var(--gris);
  --text-strong: #1d2530;
  --border:      rgba(0, 55, 73, 0.10);
  --border-2:    rgba(0, 55, 73, 0.18);

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 6px rgba(0, 55, 73, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 55, 73, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 55, 73, 0.18);
  --shadow-coral: 0 12px 36px rgba(255, 107, 71, 0.28);

  --container: 1240px;
  --header-h:  72px;
  --t-fast:    .15s ease;
  --t-base:    .3s ease;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: all var(--t-fast);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--accent {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 71, 0.25);
}
.btn--accent:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-coral);
}
.btn--ghost {
  background: transparent;
  color: var(--azul-osc);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  background: var(--bg-soft);
  border-color: var(--azul-osc);
}
.btn--ghost-light {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
}
.btn--lg {
  padding: 14px 26px;
  font-size: 15px;
  border-radius: var(--radius-md);
}
.btn--block { display: flex; width: 100%; }

/* ════════ HEADER ════════ */
.header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--azul-osc);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding var(--t-base), background var(--t-base);
}
.header.is-scrolled {
  background: rgba(0, 55, 73, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: var(--space-5);
}
.header__brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.header__isotipo { width: 38px; height: 38px; }
.header__wordmark {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.header__chip {
  display: inline-block;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--coral);
  background: rgba(255,107,71,0.14);
  border: 1px solid rgba(255,107,71,0.35);
  border-radius: var(--radius-sm);
}

.nav {
  display: flex; align-items: center; gap: var(--space-5);
  margin-left: auto;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 6px 4px;
  transition: color var(--t-fast);
  position: relative;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast);
}
.nav a:hover::after { transform: scaleX(1); }

.header__actions {
  display: flex; align-items: center; gap: var(--space-3);
}

/* Header CTAs adapt al header dark */
.header .btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.90);
  border-color: rgba(255,255,255,0.30);
}
.header .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

/* ════════ HERO ════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  padding: var(--space-8) 0 var(--space-9);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center right;
  filter: saturate(1.05) contrast(1.02);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, var(--azul-osc-2) 0%, rgba(0,41,53,0.85) 30%, rgba(0,55,73,0.55) 55%, transparent 80%),
    linear-gradient(180deg, transparent 60%, rgba(0,41,53,0.7) 100%);
}

.hero__content {
  max-width: 760px;
  color: #fff;
  position: relative;
}
.hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(255,107,71,0.10);
  border: 1px solid rgba(255,107,71,0.30);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}
.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.hero__title-line { display: block; }
.hero__title-line--accent { color: var(--coral); }

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: var(--space-6);
}

.hero__ctas {
  display: flex; gap: var(--space-3); flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.hero__trust {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}
.hero__trust svg { color: var(--coral); flex-shrink: 0; }

/* ════════ TRUST STRIP ════════ */
.trust-strip {
  background: var(--bg-soft);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip__inner {
  display: flex; align-items: center; gap: var(--space-7);
  flex-wrap: wrap;
}
.trust-strip__lead {
  display: flex; flex-direction: column; gap: 4px;
  max-width: 320px;
}
.trust-strip__lead strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--azul-osc);
  letter-spacing: -0.01em;
}
.trust-strip__lead span {
  font-size: 13px;
  color: var(--text-soft);
}
.audiences {
  display: flex; gap: var(--space-7);
  flex: 1; justify-content: flex-end;
  flex-wrap: wrap;
}
.audiences li {
  display: flex; align-items: center; gap: 10px;
  color: var(--azul-osc);
  font-size: 14px;
  font-weight: 600;
}
.audiences svg { color: var(--coral); flex-shrink: 0; }

/* ════════ SECTION GENERICS ════════ */
.section-head { margin-bottom: var(--space-7); max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-3);
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.section-lead {
  margin-top: var(--space-4);
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ════════ EL PUNTO DE PARTIDA (origin) ════════ */
.origin {
  padding: var(--space-9) 0;
  background: #fff;
}
.origin__grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.origin__lead .section-eyebrow { margin-bottom: var(--space-3); }
.origin__title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin-bottom: var(--space-5);
}
.origin__title strong {
  font-weight: 800;
  color: var(--azul-osc);
}
.origin__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}
.origin__body strong { color: var(--coral); font-weight: 700; }
.origin__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3);
}
.origin__stats li {
  padding: var(--space-5) var(--space-4);
  background: linear-gradient(135deg, var(--azul-osc) 0%, var(--azul) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
  position: relative; overflow: hidden;
}
.origin__stats li::before {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,107,71,0.18), transparent 65%);
}
.origin__num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--coral);
  line-height: 1;
  position: relative;
}
.origin__lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

/* ════════ LAS 8 CAPAS — cuadros tipo ficha técnica ════════ */
/* Mandatos manual de marca:
 *  - Azul Gazapo #004D65 para bloques destacados y elementos de marca
 *  - Azul oscuro #003749 para fondos oscuros y contraste de jerarquía
 *  - Coral #FF6B47 solo como acento puntual (5-10% del peso visual)
 *  - Blanco UI #F2F6F7 para superficies de cards
 *  - Tono: claro, directo, sólido — NO marketinero
 * Forma: compacta, sólida, bordes claros, jerarquía contundente.
 */
.capas {
  padding: var(--space-9) 0;
  background: var(--bg-soft);
}
.capas__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.capa {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;             /* header band recortado al radius */
  transition: all var(--t-base);
  display: flex; flex-direction: column;
  position: relative;
}
.capa:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--azul);
}

/* Header band: azul oscuro sólido (azul-osc #003749), tipo etiqueta de ficha */
.capa__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--azul-osc);
  color: #fff;
  border-bottom: 2px solid var(--coral);  /* acento puntual coral */
}
.capa__tag {
  font-family: 'Inter', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.capa__icon {
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.capa:hover .capa__icon { color: var(--coral); }

/* Body: blanco con jerarquía clara */
.capa__body {
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-2);
  flex: 1;
}
.capa__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--azul);
  line-height: 1.25;
  padding-bottom: var(--space-2);
  position: relative;
}
.capa__title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--coral);
  border-radius: 1px;
}
.capa__line {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
  margin-top: var(--space-1);
}
.capa__line a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--t-fast);
}
.capa__line a:hover { color: var(--coral-hover); }

/* ════════ BANDA RIESGO VIAL ════════ */
.risk-strip {
  padding: var(--space-8) 0;
  background: var(--azul-osc);
  color: #fff;
  position: relative; overflow: hidden;
}
.risk-strip::before {
  content: ''; position: absolute; top: -60%; left: -10%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,107,71,0.14), transparent 60%);
  pointer-events: none;
}
.risk-strip .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-7);
  align-items: center;
  position: relative;
}
.risk-strip__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-3);
}
.risk-strip__title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #fff;
}
.risk-strip__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.risk-strip__stats li {
  display: flex; flex-direction: column; gap: 6px;
  padding: var(--space-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,107,71,0.20);
  border-radius: var(--radius-md);
}
.rs__num {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--coral);
  line-height: 1;
  font-family: 'Inter', monospace;
}
.rs__lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.45;
}
.rs__lbl strong { color: #fff; font-weight: 700; }
.rs__src {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: 'Inter', monospace;
  margin-top: 2px;
}

/* ════════ BOTTLENECK (Los embudos del agro) ════════ */
.bottleneck {
  padding: var(--space-9) 0;
  background: #fff;
}
.bottleneck__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.bottleneck__stats li {
  padding: var(--space-5);
  background: var(--bg-soft);
  border-left: 3px solid var(--coral);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.bn__num {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--coral);
  font-family: 'Inter', monospace;
  line-height: 1;
}
.bn__lbl {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.bottleneck__quote {
  margin: var(--space-6) 0;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, var(--azul-osc) 0%, var(--azul) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
}
.bottleneck__quote::before {
  content: '"';
  position: absolute; top: -10px; left: 20px;
  font-size: 90px;
  color: var(--coral);
  font-style: normal;
  line-height: 1;
  opacity: 0.6;
}
.bottleneck__quote cite {
  display: block;
  margin-top: var(--space-3);
  font-size: 13px;
  font-style: normal;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.bottleneck__solution {
  padding: var(--space-6);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.bottleneck__solution h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--coral);
  margin-bottom: var(--space-4);
}
.bottleneck__solution ul {
  display: grid; gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.bottleneck__solution ul li {
  padding: var(--space-3) 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.bottleneck__solution ul li:last-child { border-bottom: none; }
.bottleneck__solution ul li strong { color: var(--azul-osc); }
.bottleneck__caveat {
  padding: var(--space-4);
  background: #fff;
  border: 1px solid var(--coral-dim);
  border-left: 3px solid var(--coral);
  border-radius: var(--radius-md);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}
.bottleneck__caveat strong { color: var(--azul-osc); font-weight: 700; }
.bottleneck__fuentes {
  margin-top: var(--space-4);
  font-size: 11.5px;
  color: var(--text-soft);
  font-style: italic;
  text-align: center;
}

/* ════════ PROCESS (Cómo trabajamos) ════════ */
.process { padding: var(--space-9) 0; background: var(--bg-soft); }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.process__steps li {
  padding: var(--space-5);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: all var(--t-base);
}
.process__steps li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.process__day {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--coral);
  background: var(--coral-dim);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
  width: fit-content;
}
.process__steps h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--azul-osc);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.process__steps p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

/* ════════ AUDIENCE GRID ════════ */
.audience { padding: var(--space-9) 0; background: #fff; }
.audience__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5);
}
.audience-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  transition: all var(--t-base);
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.audience-card img {
  width: 100%; height: 180px; object-fit: cover;
}
.audience-card__body { padding: var(--space-5); }
.audience-card__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--azul-osc);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.audience-card__body p { font-size: 14px; color: var(--text); line-height: 1.55; }

/* ════════ PLANS ════════ */
.plans { padding: var(--space-9) 0; background: var(--bg-soft); }
.plans__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5);
  max-width: 920px; margin: 0 auto;
}
.plan {
  padding: var(--space-6);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: all var(--t-base);
}
.plan:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.plan--premium {
  border: 2px solid var(--coral);
  position: relative;
  box-shadow: var(--shadow-md);
}
.plan__head {
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-5);
  position: relative;
}
.plan__badge {
  position: absolute; top: -38px; right: -8px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: #fff;
  background: var(--coral);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.plan__name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--azul-osc);
  margin-bottom: 4px;
}
.plan--premium .plan__name { color: var(--coral); }
.plan__tagline { font-size: 14px; color: var(--text-soft); }
.plan__features {
  flex: 1;
  margin-bottom: var(--space-5);
}
.plan__features li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.plan__features li:last-child { border-bottom: none; }
.plan__features li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23FF6B47' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ════════ CTA + CONTACT ════════ */
.cta { padding: var(--space-9) 0; background: #fff; }
.cta__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-8);
  align-items: center;
  background: linear-gradient(135deg, var(--azul-osc) 0%, var(--azul) 100%);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta__inner::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,107,71,0.18), transparent 60%);
  pointer-events: none;
}
.cta__copy { position: relative; }
.cta__eyebrow {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(255,107,71,0.14);
  border: 1px solid rgba(255,107,71,0.35);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.cta__title {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.cta__title-accent { color: var(--coral); }
.cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-5);
  line-height: 1.55;
}
.cta__perks {
  display: flex; flex-direction: column; gap: 10px;
}
.cta__perks li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.cta__perks li::before {
  content: ''; position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23FF6B47' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

.contact {
  background: #fff;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  color: var(--text);
  position: relative;
  box-shadow: 0 16px 60px rgba(0,0,0,0.20);
}
.contact__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.contact__field {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: var(--space-3);
}
.contact__field span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-strong);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-family: inherit;
}
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 71, 0.12);
}
.contact__field textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.contact__legal {
  margin-top: var(--space-3);
  font-size: 11.5px;
  color: var(--text-soft);
  text-align: center;
}

/* ════════ FOOTER ════════ */
.footer {
  background: var(--azul-osc-2);
  color: rgba(255,255,255,0.70);
  padding-top: var(--space-8);
}
.footer__inner {
  display: grid; grid-template-columns: 1.3fr 2fr; gap: var(--space-7);
  padding-bottom: var(--space-7);
}
.footer__brand-link {
  display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-4);
}
.footer__isotipo { width: 36px; height: 36px; }
.footer__wordmark {
  font-size: 18px; font-weight: 700; color: #fff; letter-spacing: 0.04em;
}
.footer__chip {
  padding: 2px 7px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.10em;
  color: var(--coral);
  background: rgba(255,107,71,0.14);
  border: 1px solid rgba(255,107,71,0.30);
  border-radius: var(--radius-sm);
}
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
  line-height: 1.55;
}
.footer__nav {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5);
}
.footer__nav h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-3);
}
.footer__nav a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer__nav a:hover { color: var(--coral); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-4) var(--space-5);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer__made { font-style: italic; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1024px) {
  .capas__grid { grid-template-columns: repeat(2, 1fr); }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .bottleneck__stats { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .origin__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .cta__inner { grid-template-columns: 1fr; padding: var(--space-6); }
  .risk-strip .container { grid-template-columns: 1fr; gap: var(--space-5); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header__inner { gap: var(--space-3); }
  .nav { display: none; }
  .header__actions .btn--ghost { display: none; }
  .header__wordmark { font-size: 17px; }
  .header__isotipo { width: 32px; height: 32px; }

  .hero { min-height: auto; padding: var(--space-7) 0; }
  .hero__title { font-size: clamp(34px, 9vw, 56px); }
  .hero__sub { font-size: 16px; }
  .hero__overlay { background:
    linear-gradient(180deg, rgba(0,41,53,0.85) 0%, rgba(0,55,73,0.72) 70%, rgba(0,41,53,0.92) 100%);
  }
  .hero__bg img { object-position: center; }

  .trust-strip__inner { flex-direction: column; align-items: flex-start; }
  .audiences { gap: var(--space-5); justify-content: flex-start; }

  .origin, .capas, .risk-strip, .bottleneck, .audience, .plans, .process, .cta { padding: var(--space-7) 0; }
  .origin__stats { grid-template-columns: repeat(2, 1fr); }
  .capas__grid { grid-template-columns: 1fr; }
  .capa { min-height: auto; }
  .audience__grid, .plans__grid, .process__steps { grid-template-columns: 1fr; }
  .bottleneck__stats { grid-template-columns: 1fr; }
  .risk-strip__stats { grid-template-columns: 1fr; }

  .section-title { font-size: clamp(24px, 6vw, 32px); }
  .contact__row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .audiences { gap: var(--space-3) var(--space-5); }
  .origin__stats { grid-template-columns: 1fr 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
}

/* ────────────────── Reduced motion ────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
