/* ============================================================
   TU PRESENCIA — Sistema visual (agencia)
   Navy #0B2545 / Coral #FF6B35
   ============================================================ */

:root {
  --navy-950: #060f22;
  --navy-900: #0B2545;
  --navy-800: #123162;
  --navy-700: #1a4080;
  --navy-600: #2955a3;
  --navy-100: #e8edf6;
  --navy-50: #f5f7fb;

  --coral-600: #e2551f;
  --coral-500: #FF6B35;
  --coral-400: #ff8f5f;
  --coral-100: #ffe3d3;

  --ink: #10182c;
  --ink-soft: #4a5568;
  --ink-faint: #8792a6;
  --white: #ffffff;
  --off-white: #fafbfd;
  --line: #e7eaf1;

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 12px 34px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.16);
  --shadow-coral: 0 14px 34px rgba(255, 107, 53, 0.28);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}

p { line-height: 1.7; color: var(--ink-soft); margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--coral-500);
  display: inline-block;
  border-radius: 2px;
}

.section {
  padding: 110px 0;
  position: relative;
}
.section--tight { padding: 80px 0; }
.section--navy {
  background: radial-gradient(120% 140% at 15% 0%, #102c56 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: var(--white);
}
.section--navy p { color: rgba(255,255,255,0.72); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--soft { background: var(--navy-50); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: var(--white);
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(255,107,53,0.36); }
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy-900); transform: translateY(-3px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(250, 251, 253, 0.82);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 rgba(11,37,69,0.06), 0 12px 30px rgba(11,37,69,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { height: 40px; width: auto; transition: opacity .3s ease; }
.logo-img.logo-black { display: none; }
.nav.is-scrolled .logo-img.logo-white { display: none; }
.nav.is-scrolled .logo-img.logo-black { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  border-radius: var(--radius-pill);
  transition: background .25s ease, color .35s ease;
}
.nav-link:hover { background: rgba(255,255,255,0.12); }
.nav.is-scrolled .nav-link { color: var(--navy-900); }
.nav.is-scrolled .nav-link:hover { background: rgba(11,37,69,0.06); }
.nav-link svg { width: 14px; height: 14px; transition: transform .25s ease; }
.has-dropdown:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 560px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  border: 1px solid var(--line);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  transition: background .2s ease;
}
.dropdown a:hover { background: var(--navy-50); }
.dropdown-ico {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 9px;
  background: var(--navy-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
}
.dropdown-text strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.dropdown-text span { font-size: 12px; color: var(--ink-faint); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn-ghost {
  color: #ffffff;
  border-color: rgba(255,255,255,0.45);
}
.nav-cta .btn-ghost:hover { border-color: #ffffff; }
.nav.is-scrolled .nav-cta .btn-ghost {
  color: var(--navy-900);
  border-color: var(--line);
}
.nav.is-scrolled .nav-cta .btn-ghost:hover { border-color: var(--navy-900); }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: #ffffff;
  transition: color .35s ease;
}
.nav.is-scrolled .nav-toggle { color: var(--navy-900); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 190px 0 130px;
  background:
    radial-gradient(120% 130% at 20% -10%, rgba(18,48,92,0.93) 0%, rgba(11,37,69,0.95) 45%, rgba(6,15,34,0.97) 100%),
    url('../assets/backgrounds/hero-home.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
}
.hero-blob.b1 { width: 480px; height: 480px; background: #f4f6fa; top: -160px; right: -120px; opacity: .18; animation: float 14s ease-in-out infinite; }
.hero-blob.b2 { width: 360px; height: 360px; background: var(--navy-600); bottom: -160px; left: -100px; opacity: .5; animation: float 18s ease-in-out infinite reverse; }
@media (max-width: 900px) {
  /* En celulares, el blur + animación de estos círculos decorativos puede generar
     un artefacto visual (línea/corte) en el borde del contenedor en algunos navegadores.
     Se desactivan en pantallas chicas donde el riesgo es mayor y el efecto se nota menos. */
  .hero-blob { display: none; }
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 0 rgba(255,107,53,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,107,53,.55); }
  70% { box-shadow: 0 0 0 9px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}

.hero h1 {
  font-size: clamp(38px, 4.6vw, 60px);
  color: var(--white);
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--coral-400), var(--coral-500) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: 18px;
  color: rgba(255,255,255,0.74);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
}
.hero-stats div span { font-size: 12.5px; color: rgba(255,255,255,0.6); }

.hero-visual {
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.hero-card-img {
  width: 100%;
  aspect-ratio: 1024/477;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,107,53,.25), rgba(41,85,163,.35));
  border: 1px dashed rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.hero-card-img.filled { border: none; padding: 0; }
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.floating-chip {
  position: absolute;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  font-weight: 600;
  animation: bob 5s ease-in-out infinite;
}
.floating-chip.c1 { top: -22px; left: -30px; animation-delay: .3s; }
.floating-chip.c2 { bottom: -20px; right: -22px; animation-delay: 1s; }
.floating-chip .ico { color: var(--coral-500); width: 20px; height: 20px; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

/* ---------- Logos / trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-strip span.label {
  font-size: 12.5px;
  color: var(--ink-faint);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-logos { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
.trust-logos span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-faint);
  font-size: 15px;
  opacity: .7;
}

/* ---------- Advantages ---------- */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.adv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.adv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.adv-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-50);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.adv-ico svg { width: 24px; height: 24px; }
.adv-card h3 { font-size: 18px; }
.adv-card p { font-size: 14.5px; margin: 0; }

/* ---------- Services grid ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(255,107,53,0.06), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card:hover::before { opacity: 1; }
.svc-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--coral-500);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}
.svc-card h3 { font-size: 18.5px; position: relative; }
.svc-card p { font-size: 14px; position: relative; margin-bottom: 18px; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-900);
  position: relative;
}
.svc-link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
.svc-badge {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--coral-100);
  color: var(--coral-600);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ---------- About / story ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-100), var(--white));
  border: 1px dashed var(--navy-600);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint);
  font-size: 13px;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.about-photo.filled { border: none; padding: 0; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.about-photo .tag {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  z-index: 2;
}
.about-body h2 { font-size: clamp(26px, 3.2vw, 36px); }
.about-body p { font-size: 15.5px; }
.about-list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink-soft); }
.about-list svg { width: 18px; height: 18px; color: var(--coral-500); flex-shrink: 0; margin-top: 2px; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step-card { position: relative; padding-top: 8px; }
.step-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--navy-100);
  -webkit-text-stroke: 1.5px var(--navy-600);
  margin-bottom: 14px;
  display: block;
}
.step-card h3 { font-size: 16.5px; }
.step-card p { font-size: 13.5px; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--coral-500); }
.stars svg { width: 15px; height: 15px; }
.testi-card p.quote { font-size: 14.5px; color: var(--ink); font-style: italic; }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--navy-900);
  font-size: 14px;
}
.testi-who strong { display: block; font-size: 13.5px; }
.testi-who span { font-size: 12px; color: var(--ink-faint); }

.mockup-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.mockup {
  aspect-ratio: 9/16;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border: 1px dashed rgba(255,255,255,0.3);
  display: flex; align-items: flex-end; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  text-align: center;
  padding: 14px;
  overflow: hidden;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.mockup:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mockup.filled { border: none; padding: 0; background: transparent; }
.mockup img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }

.video-testi-block { margin-top: 48px; }
.video-testi-block .mockup-caption { text-align: center; font-size: 13.5px; color: var(--ink-faint); margin-bottom: 22px; font-weight: 600; }
.video-testi-card {
  position: relative;
  width: 190px;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-900);
  scroll-snap-align: start;
}
.video-testi-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.video-testi-card:hover img { transform: scale(1.05); }
.video-testi-card .vt-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(6,15,34,0.1) 40%, rgba(6,15,34,0.65) 100%);
}
.video-testi-card .vt-play svg { width: 46px; height: 46px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.45)); }
.video-testi-card .vt-label {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  color: #fff; font-size: 12px; font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
.video-testi-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.mockup-panel {
  background: radial-gradient(120% 160% at 15% 0%, #12305c 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-top: 40px;
}
.mockup-panel .mockup-caption {
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 26px;
}
.mockup span.label {
  position: relative; z-index: 2;
  background: rgba(6,15,34,0.72);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
  backdrop-filter: blur(4px);
}

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 160% at 20% 0%, rgba(18,48,92,0.92), rgba(6,15,34,0.96)),
    url('../assets/backgrounds/bg-geometric.webp');
  background-size: cover;
  background-position: center;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: var(--coral-500);
  filter: blur(100px);
  opacity: .35;
  right: -80px; top: -80px;
  border-radius: 50%;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); max-width: 480px; position: relative; }
.cta-band-actions { display: flex; gap: 14px; position: relative; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
}
.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
}
.contact-info-card h3 { color: var(--white); font-size: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-item:first-of-type { border-top: none; }
.contact-item .ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .ico svg { width: 18px; height: 18px; color: var(--coral-400); }
.contact-item strong { display: block; font-size: 13.5px; }
.contact-item span { font-size: 13px; color: rgba(255,255,255,0.6); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--off-white);
  transition: border-color .25s ease, background .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--coral-500);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 12px; text-align: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h4 { color: var(--white); font-size: 14px; margin-bottom: 18px; }
.footer p { color: rgba(255,255,255,0.55); font-size: 13.5px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color .2s ease; }
.footer a:hover { color: var(--coral-400); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; font-size: 12.5px; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--coral-500); }

/* ---------- Inner page hero (subpáginas) ---------- */
.page-hero {
  padding: 170px 0 90px;
  background:
    radial-gradient(120% 140% at 15% -10%, rgba(18,48,92,0.93) 0%, rgba(11,37,69,0.95) 45%, rgba(6,15,34,0.97) 100%),
    url('../assets/backgrounds/bg-wave.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero.bg-ads { background-image: radial-gradient(120% 140% at 15% -10%, rgba(18,48,92,0.93) 0%, rgba(11,37,69,0.95) 45%, rgba(6,15,34,0.97) 100%), url('../assets/backgrounds/bg-ads-results.webp'); }
.page-hero.bg-dash { background-image: radial-gradient(120% 140% at 15% -10%, rgba(18,48,92,0.93) 0%, rgba(11,37,69,0.95) 45%, rgba(6,15,34,0.97) 100%), url('../assets/backgrounds/bg-dashboards.webp'); }
.page-hero.bg-data { background-image: radial-gradient(120% 140% at 15% -10%, rgba(18,48,92,0.93) 0%, rgba(11,37,69,0.95) 45%, rgba(6,15,34,0.97) 100%), url('../assets/backgrounds/bg-datastream.webp'); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); max-width: 720px; }
.page-hero .lead { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 560px; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}
.check-list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0; }
.check-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; max-width: 640px; margin: 0 auto; }
@media (max-width: 620px) { .check-list-grid { grid-template-columns: 1fr; } }
@media (max-width: 680px) { .hide-mobile { display: none !important; } }
.show-mobile-only { display: none !important; }
@media (max-width: 680px) { .show-mobile-only { display: block !important; } }

/* ---------- Escenario oscuro para mockups con viñeta ---------- */
.image-stage {
  background: radial-gradient(120% 140% at 15% -10%, rgba(18,48,92,0.97) 0%, rgba(11,37,69,0.98) 45%, rgba(6,15,34,1) 100%);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.image-stage img { display: block; width: 100%; height: auto; border-radius: var(--radius-sm); }
@media (max-width: 620px) { .image-stage { padding: 18px; } }

/* ---------- Hero con imagen al costado ---------- */
.page-hero.has-media .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.page-hero.has-media h1, .page-hero.has-media .lead { max-width: none; }
.page-hero.has-media .hero-media img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .page-hero.has-media .container { grid-template-columns: 1fr; }
  .page-hero.has-media .hero-media { order: -1; max-width: 420px; margin: 0 auto 8px; }
}
.check-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--ink-soft); }
.check-list svg { width: 20px; height: 20px; color: var(--coral-500); flex-shrink: 0; margin-top: 2px; }

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 34px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 110px;
}
.price-card .eyebrow { margin-bottom: 10px; }
.price-card .price { font-family: var(--font-display); font-size: 30px; color: var(--navy-900); margin-bottom: 4px; }
.price-card .price span { font-size: 14px; color: var(--ink-faint); font-family: var(--font-body); font-weight: 400; }
.price-card p.note { font-size: 13px; }
.price-card ul { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.price-card ul li { display: flex; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.price-card ul svg { width: 16px; height: 16px; color: var(--coral-500); flex-shrink: 0; margin-top: 2px; }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 16px;
  gap: 20px;
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s var(--ease); color: var(--coral-500); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-top: 14px; font-size: 14.5px; margin: 0; }

/* ---------- Calculadora interactiva ---------- */
.calc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.calc-inputs .field label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
}
.calc-inputs .field label span {
  color: var(--coral-500);
  font-weight: 700;
  font-family: var(--font-display);
}
.calc-inputs input[type="range"] {
  width: 100%;
  accent-color: var(--coral-500);
  margin-top: 4px;
}
.calc-results {
  background: var(--navy-50);
  border-radius: var(--radius-md);
  padding: 32px;
}
.calc-result-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.calc-label { font-size: 12.5px; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.calc-big {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy-900);
}
.calc-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.calc-mini-grid > div { text-align: center; }
.calc-mini-label { display: block; font-size: 11px; color: var(--ink-faint); margin-bottom: 4px; }
.calc-mini-value { display: block; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--navy-900); }
.calc-disclaimer { font-size: 12px; color: var(--ink-faint); margin-bottom: 18px; }

@media (max-width: 860px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-card { padding: 28px 22px; }
}

/* ---------- Diagnóstico / Quiz ---------- */
.quiz-progress {
  height: 6px;
  background: var(--navy-100);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 40px;
}
.quiz-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral-500), var(--coral-400));
  border-radius: var(--radius-pill);
  transition: width .4s var(--ease);
}
.quiz-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.quiz-question { margin-bottom: 34px; }
.quiz-question:last-of-type { margin-bottom: 0; }
.quiz-question .q-num {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--coral-500);
  display: block;
  margin-bottom: 8px;
}
.quiz-question h3 { font-size: 17px; margin-bottom: 16px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option { position: relative; }
.quiz-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.quiz-option label {
  display: block;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.quiz-option label:hover { border-color: var(--navy-600); }
.quiz-option input:checked + label {
  border-color: var(--coral-500);
  background: var(--coral-100);
  color: var(--ink);
  font-weight: 600;
}
.quiz-submit-wrap { margin-top: 40px; text-align: center; }
.quiz-submit-wrap p { font-size: 13px; margin-bottom: 14px; }

.quiz-gate {
  display: none;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}
.quiz-gate.is-visible { display: block; }
.quiz-card.is-gated .quiz-questions { display: none; }
.quiz-score-preview {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 22px;
}
.quiz-score-preview .score-num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--navy-900);
}
.quiz-score-preview .score-label {
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 600;
}

.quiz-result { display: none; }
.quiz-result.is-visible { display: block; }
.quiz-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--navy-50);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
}
.quiz-recommend {
  background: var(--navy-50);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-top: 22px;
  text-align: left;
}
.quiz-recommend strong { display: block; margin-bottom: 6px; font-size: 15px; }
.quiz-recommend p { margin-bottom: 16px; font-size: 14px; }

@media (max-width: 720px) {
  .quiz-card { padding: 26px 20px; }
}

/* ---------- Beneficios vs características ---------- */
.bvf-list { display: flex; flex-direction: column; gap: 14px; }
.bvf-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.bvf-feature { font-size: 13px; color: var(--ink-faint); }
.bvf-feature strong { display: block; font-size: 14px; color: var(--ink-soft); font-weight: 600; margin-bottom: 2px; }
.bvf-arrow { color: var(--coral-500); flex-shrink: 0; }
.bvf-arrow svg { width: 20px; height: 20px; }
.bvf-benefit { font-size: 14.5px; font-weight: 600; color: var(--ink); }
@media (max-width: 720px) {
  .bvf-item { grid-template-columns: 1fr; text-align: left; gap: 8px; }
  .bvf-arrow { display: none; }
}

/* ---------- Garantía ---------- */
.guarantee-card {
  background: radial-gradient(120% 160% at 15% 0%, #12305c, var(--navy-950));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.guarantee-ico {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.guarantee-ico svg { width: 26px; height: 26px; color: var(--coral-400); }
.guarantee-card h3 { color: var(--white); font-size: 19px; }
.guarantee-card p { color: rgba(255,255,255,0.75); margin-bottom: 0; font-size: 14.5px; }
.guarantee-card p + p { margin-top: 10px; }

/* ---------- Tabla de paquetes ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pricing-card.featured {
  border-color: var(--coral-500);
  box-shadow: var(--shadow-coral);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--coral-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pricing-card h3 { font-size: 17px; margin-bottom: 4px; }
.pricing-card .pricing-sub { font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pricing-price span { display: block; font-size: 12px; font-weight: 400; color: var(--ink-faint); font-family: var(--font-body); margin-top: 2px; }
.pricing-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pricing-card ul li { display: flex; gap: 9px; font-size: 13.5px; color: var(--ink-soft); }
.pricing-card ul svg { width: 16px; height: 16px; color: var(--coral-500); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

/* ---------- Antes / Después ---------- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ba-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.ba-card .ba-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(6,15,34,0.75);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.ba-card img { display: block; width: 100%; height: auto; }
.ba-placeholder {
  aspect-ratio: 4/3;
  background: var(--navy-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint);
  font-size: 12.5px;
  text-align: center;
  padding: 20px;
}
@media (max-width: 720px) { .before-after { grid-template-columns: 1fr; } }

/* ---------- Galería de resultados ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral-500), var(--navy-700));
  z-index: 2;
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11,25,56,.25);
}
.result-card .result-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--navy-50);
}
.result-card img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: contain;
  background: var(--navy-50);
  display: block;
  cursor: zoom-in;
  transition: transform .35s ease;
}
.result-card:hover img { transform: scale(1.04); }
.result-card .zoom-hint {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(11,37,69,.72);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.result-card:hover .zoom-hint { opacity: 1; }
.result-card .zoom-hint svg { width: 15px; height: 15px; }

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(6,15,34,.9);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease);
}
.lightbox-overlay.is-open { opacity: 1; visibility: visible; }
.lightbox-overlay .lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(.94);
  transition: transform .35s var(--ease);
}
.lightbox-overlay.is-open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
.result-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--navy-50);
  border-bottom: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint);
  font-size: 12px;
  text-align: center;
  padding: 16px;
}
.result-caption {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-soft);
}
.result-caption strong { display: block; color: var(--ink); font-size: 13.5px; margin-bottom: 2px; }
@media (max-width: 900px) { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .results-grid { grid-template-columns: 1fr; } }

/* ---------- Browser frame mockup (portfolio) ---------- */
.browser-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 1px solid var(--line);
}
.browser-frame .bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 16px;
  background: var(--navy-50);
  border-bottom: 1px solid var(--line);
}
.browser-frame .dots { display: flex; gap: 6px; }
.browser-frame .dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.browser-frame .url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  color: var(--ink-faint);
  font-family: var(--font-body);
}
.browser-frame .screen {
  aspect-ratio: 16/10;
  background: radial-gradient(120% 140% at 20% 0%, #163a72 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  position: relative;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}
.screen::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(255,107,53,.35), transparent 70%);
  filter: blur(10px);
}
.screen-nav { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.screen-nav .dot { width: 20px; height: 20px; border-radius: 6px; background: linear-gradient(135deg, var(--coral-500), var(--coral-600)); }
.screen-nav .bar-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.18); }
.screen-nav .bar-line:nth-child(2) { width: 46px; }
.screen-nav .bar-line:nth-child(3) { width: 34px; }
.screen-nav .bar-line:nth-child(4) { width: 38px; }
.screen-nav .spacer { flex: 1; }
.screen-nav .pill { width: 64px; height: 20px; border-radius: var(--radius-pill); background: linear-gradient(135deg, var(--coral-500), var(--coral-600)); }
.screen-hero { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; margin-top: 6px; }
.screen-hero .h-line { height: 16px; border-radius: 5px; background: rgba(255,255,255,0.9); }
.screen-hero .h-line.w1 { width: 78%; }
.screen-hero .h-line.w2 { width: 56%; }
.screen-hero .p-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.28); width: 60%; margin-top: 4px; }
.screen-hero .cta-pill { width: 110px; height: 26px; border-radius: var(--radius-pill); background: linear-gradient(135deg, var(--coral-500), var(--coral-600)); margin-top: 8px; }
.screen-cards { display: flex; gap: 12px; position: relative; z-index: 1; margin-top: auto; }
.screen-cards .card { flex: 1; aspect-ratio: 1/0.75; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); }
.browser-frame-caption {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.browser-frame-caption strong { color: var(--ink); }

/* ---------- Asesorías: hero personal ---------- */
.advisory-hero {
  position: relative;
  padding: 170px 0 90px;
  background: radial-gradient(120% 140% at 88% -10%, var(--coral-100) 0%, var(--off-white) 52%);
  overflow: hidden;
}
.advisory-hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.advisory-photo-wrap { position: relative; display: flex; justify-content: center; }
.advisory-photo-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--coral-400), var(--coral-600), var(--navy-700), var(--coral-400));
  filter: blur(1px);
  animation: spin-slow 14s linear infinite;
}
.advisory-photo {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--off-white);
  box-shadow: var(--shadow-lg);
}
.advisory-photo img { width: 100%; height: 100%; object-fit: cover; }
.advisory-badge {
  position: absolute;
  bottom: 10px;
  right: 4px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  animation: float-badge 3.6s ease-in-out infinite;
}
.advisory-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float-badge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 860px) {
  .advisory-hero .container { grid-template-columns: 1fr; text-align: center; }
  .advisory-photo-wrap { order: -1; margin-bottom: 12px; }
}

/* ---------- Parallax quote ---------- */
.parallax-section {
  position: relative;
  padding: 120px 0;
  background-image: linear-gradient(160deg, rgba(11,37,69,.88), rgba(6,15,34,.93)), url('../assets/backgrounds/bg-geometric.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}
.parallax-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.4;
}
.parallax-section cite { font-style: normal; color: var(--coral-400); font-weight: 600; font-size: 14px; }
@media (max-width: 760px) { .parallax-section { background-attachment: scroll; } }

/* ---------- Persona cards (bloques de color) ---------- */
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.persona-card { border-radius: var(--radius-md); padding: 32px 26px; transition: transform .3s ease; }
.persona-card:hover { transform: translateY(-6px); }
.persona-card.c-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #fff; }
.persona-card.c-navy p { color: rgba(255,255,255,.75); margin: 0; }
.persona-card.c-navy h3 { color: #fff; }
.persona-card.c-coral { background: linear-gradient(160deg, var(--coral-500), var(--coral-600)); color: #fff; }
.persona-card.c-coral p { color: rgba(255,255,255,.88); margin: 0; }
.persona-card.c-coral h3 { color: #fff; }
.persona-card.c-white { background: var(--white); border: 1px solid var(--line); }
.persona-card.c-white p { margin: 0; }
.persona-card .p-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.persona-card.c-white .p-ico { background: var(--navy-50); color: var(--navy-900); }
@media (max-width: 900px) { .persona-grid { grid-template-columns: 1fr; } }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 27px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--coral-400), var(--navy-700));
}
.timeline-item { position: relative; padding-left: 74px; margin-bottom: 44px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-num {
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  box-shadow: var(--shadow-coral);
}
.timeline-item h3 { margin-bottom: 6px; }

/* ---------- Roadmap (próximamente) ---------- */
.roadmap { display: flex; justify-content: space-between; position: relative; max-width: 820px; margin: 0 auto; }
.roadmap::before { content: ''; position: absolute; top: 19px; left: 0; right: 0; height: 2px; background: var(--line); z-index: 0; }
.roadmap-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; width: 25%; padding: 0 8px; }
.roadmap-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--ink-faint);
  flex-shrink: 0;
}
.roadmap-step.is-done .roadmap-dot { background: var(--coral-500); border-color: var(--coral-500); color: #fff; }
.roadmap-step.is-active .roadmap-dot {
  background: var(--white);
  border-color: var(--coral-500);
  color: var(--coral-500);
  animation: pulse-ring 2s ease infinite;
}
.roadmap-step h4 { font-size: 13.5px; margin: 0 0 4px; font-family: var(--font-display); }
.roadmap-step p { font-size: 12px; color: var(--ink-faint); margin: 0; }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 5px var(--coral-100); }
  50% { box-shadow: 0 0 0 10px rgba(255,107,53,0.05); }
}
@media (max-width: 700px) {
  .roadmap { flex-direction: column; gap: 22px; }
  .roadmap::before { display: none; }
  .roadmap-step { width: 100%; flex-direction: row; text-align: left; gap: 14px; padding: 0; }
  .roadmap-dot { margin-bottom: 0; }
}

/* ---------- Scroll horizontal ---------- */
.hscroll-lead { text-align: center; font-weight: 600; font-size: 14px; letter-spacing: .02em; color: var(--navy-600); margin: 0 0 20px; text-transform: uppercase; }
.hscroll-wrap { position: relative; }
.hscroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.hscroll::-webkit-scrollbar { height: 7px; }
.hscroll::-webkit-scrollbar-track { background: transparent; }
.hscroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.hscroll::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); }
.hscroll > * { scroll-snap-align: start; flex: 0 0 auto; }
.hscroll .video-testi-card { width: 190px; }
.hscroll-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
  z-index: 3;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.hscroll-arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow-lg); }
.hscroll-arrow.prev { left: -10px; }
.hscroll-arrow.next { right: -10px; }
.hscroll-arrow.is-disabled { opacity: .25; pointer-events: none; }
.hscroll-arrow svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
  .hscroll-arrow { display: none; }
  .hscroll { margin: 0 -28px; padding-left: 28px; padding-right: 28px; }
}

/* Etapas de auditoría (hscroll) */
.stage-card {
  width: 300px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
}
.stage-card .stage-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--coral-500);
  letter-spacing: .06em;
  margin-bottom: 14px;
  display: block;
}
.stage-card .stage-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy-50);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.stage-card h3 { font-size: 17px; margin-bottom: 8px; }
.stage-card p { font-size: 13.5px; margin: 0; }

/* Resultados en scroll horizontal (Publicidad Meta & Google) */
.results-scroll .result-card { width: 340px; }
@media (max-width: 560px) { .results-scroll .result-card { width: 82vw; } }

/* ---------- Embudo 3D (WebGL) ---------- */
.funnel3d-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto 54px;
  aspect-ratio: 1/1;
}
#funnel-canvas { width: 100%; height: 100%; display: block; cursor: grab; touch-action: none; }
#funnel-canvas:active { cursor: grabbing; }
.funnel3d-hint {
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 6px;
  pointer-events: none;
}
.funnel3d-hint svg { width: 14px; height: 14px; }
.funnel3d-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: 13.5px;
  padding: 30px;
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: var(--radius-md);
}
.funnel-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.funnel-stage { text-align: center; }
.funnel-stage .fs-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--coral-400);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 8px;
}
.funnel-stage h4 { color: #fff; font-size: 15px; margin: 0 0 4px; }
.funnel-stage p { color: rgba(255,255,255,.65); font-size: 12.5px; margin: 0; }
@media (max-width: 700px) {
  .funnel-stages { grid-template-columns: 1fr 1fr; gap: 26px; }
}

/* ---------- Anotaciones tipo blueprint (Páginas de venta) ---------- */
.anno-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--coral-600);
  background: var(--coral-100);
  border: 1.5px dashed var(--coral-500);
  border-radius: var(--radius-pill);
  padding: 6px 14px 6px 6px;
  margin-bottom: 18px;
}
.anno-badge .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--coral-500);
  color: #fff;
  font-size: 11px;
}
.section--navy .anno-badge, .section--tight .anno-badge.on-dark {
  background: rgba(255,107,53,0.14);
  color: var(--coral-400);
  border-color: rgba(255,107,53,0.5);
}

/* ---------- Lista de receta (framework) ---------- */
.recipe-list { display: flex; flex-direction: column; gap: 12px; max-width: 560px; margin: 0 auto; }
.recipe-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: border-color .25s ease, transform .25s ease;
}
.recipe-item:hover { border-color: var(--coral-400); transform: translateX(4px); }
.recipe-item .r-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.recipe-item .r-text { font-size: 14px; font-weight: 600; color: var(--ink); }
.recipe-item.is-here { border-color: var(--coral-500); background: var(--coral-100); }
.recipe-item.is-here .r-num { background: var(--coral-500); }
.recipe-item .r-tag { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--coral-600); letter-spacing: .04em; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }

/* ---------- Utility ---------- */
.badge-soon {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  background: var(--navy-100); color: var(--navy-900);
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .adv-grid, .svc-grid, .steps, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mockup-strip { grid-template-columns: repeat(3, 1fr); }
  .price-card { position: static; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .adv-grid, .svc-grid, .steps, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
  .mockup-strip { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 28px; flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .hero { padding: 150px 0 90px; }
  .section { padding: 76px 0; }
}

/* ---------- Mobile menu panel ---------- */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy-950);
  z-index: 2000;
  padding: 100px 30px 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 20px; color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-close {
  position: absolute; top: 26px; right: 28px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: none; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
