/* =============================================================
   MISTRAL · Marketing Digital
   Archetype 05 (Mouse-Reactive Gradient) adaptado a brand oficial
   Manual de identidad: Sora, amarillo #F6AE12, antracita #3F3F3E
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Brand — manual oficial */
  --yellow:    #F6AE12;   /* Pantone P 14-8 C */
  --yellow-2:  #FFC83A;
  --yellow-3:  #C98A00;
  --antracite: #3F3F3E;   /* Pantone P 179-14 C */
  --gray:      #949494;
  --red:       #D1111C;   /* acento puntual */

  /* Dark surface (warm-tinted, no #000) */
  --bg:        #13100C;
  --bg-2:      #1A1612;
  --bg-3:      #221C16;
  --bg-card:   #1F1A14;
  --bg-card-2: #2A2218;
  --line:      rgba(246, 174, 18, 0.16);
  --line-mute: rgba(246, 235, 218, 0.08);

  /* Type */
  --cream:     #F4ECDA;
  --cream-2:   #E3D6BB;
  --cream-3:   #8E8473;
  --ink-dim:   rgba(244, 236, 218, 0.55);

  /* Type families */
  --sans: "Sora", "Tahoma", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.25rem);
  --section-y: clamp(5rem, 9vw, 9rem);
  --radius: 22px;
  --radius-sm: 12px;

  /* Mouse position (updated by JS) */
  --mx: 50%;
  --my: 30%;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  position: relative;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.025em; font-weight: 600; }
ul, ol { list-style: none; padding: 0; }
em { font-style: normal; color: var(--yellow); font-weight: 600; }
strong { font-weight: 600; color: var(--cream); }
::selection { background: var(--yellow); color: var(--bg); }
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--yellow); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 1.4rem;
}
.kicker-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(246, 174, 18, 0.18);
}

/* Reveal pattern with defensive rule */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Defensive — split-text reveals never go invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Background — gradient mesh + pattern
   ============================================================= */
.gradient-mesh {
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 700px at var(--mx) var(--my),
      rgba(246, 174, 18, 0.32) 0%,
      rgba(246, 174, 18, 0.12) 25%,
      transparent 55%),
    radial-gradient(circle 900px at calc(var(--mx) + 25%) calc(var(--my) + 30%),
      rgba(255, 200, 58, 0.18) 0%,
      transparent 50%),
    radial-gradient(circle 1100px at calc(100% - var(--mx)) calc(100% - var(--my)),
      rgba(201, 138, 0, 0.18) 0%,
      transparent 50%);
  filter: blur(40px) saturate(120%);
  transition: background 0.4s ease;
  opacity: 0.85;
  will-change: background;
}
.gradient-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 16, 12, 0.0) 0%, rgba(19, 16, 12, 0.6) 100%),
    radial-gradient(ellipse 60% 80% at 50% 0%, transparent 0%, rgba(19, 16, 12, 0.4) 70%);
}

.pattern {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: var(--yellow);
  opacity: 0.5;
}
.pattern svg {
  position: absolute;
  filter: drop-shadow(0 0 12px rgba(246, 174, 18, 0.4));
}
.p-star-1   { top: 12%; left: 6%;  opacity: 0.35; animation: float 14s ease-in-out infinite; }
.p-donut-1  { top: 28%; left: 88%; opacity: 0.45; animation: float 18s ease-in-out -3s infinite; }
.p-star-2   { top: 62%; left: 4%;  opacity: 0.3;  animation: float 16s ease-in-out -2s infinite; }
.p-donut-2  { top: 82%; left: 12%; opacity: 0.5;  animation: float 12s ease-in-out -5s infinite; }
.p-star-3   { top: 8%;  left: 70%; opacity: 0.25; animation: float 20s ease-in-out -7s infinite; }
.p-donut-3  { top: 48%; left: 82%; opacity: 0.4;  animation: float 15s ease-in-out -1s infinite; }
.p-star-4   { top: 90%; left: 78%; opacity: 0.35; animation: float 17s ease-in-out -4s infinite; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(14px, -22px) rotate(8deg); }
  66%      { transform: translate(-10px, 18px) rotate(-6deg); }
}

/* Ensure all content sits above background */
.nav, main, .footer, .splash, .cursor { position: relative; z-index: 2; }

/* =============================================================
   5. Custom cursor
   ============================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  mix-blend-mode: difference;
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s ease;
}
.cursor.is-hover .cursor-ring {
  width: 64px; height: 64px;
  border-color: var(--yellow);
}
@media (hover: none) {
  .cursor { display: none; }
}

/* =============================================================
   6. Splash
   ============================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: grid;
  place-items: center;
  /* CSS safety net: hide automatically at 3.6s if JS fails */
  animation: splashSafety 0.01s 3.6s forwards;
  transition: opacity 0.7s var(--ease-out), clip-path 0.9s var(--ease-out);
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
.splash-mark {
  animation: splashPulse 1.6s ease-in-out infinite;
}
.splash-mark img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
}
@keyframes splashPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(246,174,18,0)); }
  50%      { transform: scale(1.12); filter: drop-shadow(0 0 32px rgba(246,174,18,0.6)); }
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}

/* =============================================================
   7. Navigation
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem var(--gutter);
  background: rgba(19, 16, 12, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(19, 16, 12, 0.82);
  border-bottom-color: var(--line);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.nav.is-scrolled .nav-brand-img { height: 48px; }
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  height: 64px;
}
.nav-brand-img {
  display: block;
  height: 62px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out);
}
.nav-brand:hover .nav-brand-img { opacity: 0.9; transform: scale(1.02); }
@media (max-width: 539px) {
  .nav-brand-img { height: 44px; max-width: 200px; }
  .nav-brand { height: 48px; }
}
.nav-brand:hover .nav-brand-img { opacity: 0.85; }
.nav-brand-text { display: inline-flex; align-items: baseline; }
.nav-brand-dot { color: var(--yellow); margin-left: 1px; }
.nav-links {
  display: none;
  gap: 1.8rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--cream-2);
}
.nav-links a {
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-links > a:hover { color: var(--cream); }
.nav-links > a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--cream-2);
  padding: 0.4rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}
.nav-dropdown-trigger svg {
  transition: transform 0.3s var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--cream);
}
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown.is-open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0; right: 1.2rem;
  bottom: -2px;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after { transform: scaleX(1); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translate(-50%, -10px);
  min-width: 320px;
  padding: 0.6rem;
  background: rgba(19, 16, 12, 0.98);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear 0.25s;
  z-index: 50;
}
/* Bridge invisible para que el hover no se corte entre trigger y menú */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 1.2rem;
  display: none;
}
.nav-dropdown:hover::before { display: block; }

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.25s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear;
}

.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  color: var(--cream);
  transition: background 0.2s ease, transform 0.25s var(--ease-out);
}
.nav-dropdown-item strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.nav-dropdown-item span {
  font-size: 0.78rem;
  color: var(--cream-3);
  font-weight: 300;
}
.nav-dropdown-item:hover {
  background: rgba(246, 174, 18, 0.1);
  transform: translateX(2px);
}
.nav-dropdown-item:hover strong { color: var(--yellow); }

/* Item especial "Ver todos los casos →" */
.nav-dropdown-item-all {
  margin-top: 0.4rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-mute);
  border-radius: 10px;
}
.nav-dropdown-item-all strong {
  color: var(--yellow);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.nav-dropdown-item-all:hover { background: rgba(246, 174, 18, 0.14); }

/* Quitar la línea inferior heredada en el trigger del dropdown */
.nav-links .nav-dropdown > a::after { display: none; }

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  background: var(--yellow);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(246, 174, 18, 0.32);
  background: var(--yellow-2);
}

.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 0;
  align-items: center;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-links.is-open {
  display: flex;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: auto;
  width: 100vw;
  max-width: 100vw;
  max-height: calc(100dvh - 64px);
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.8rem var(--gutter) 2.2rem;
  background: rgba(19, 16, 12, 0.98);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
          backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 40px -10px rgba(0, 0, 0, 0.6);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 999;
}
/* Cuando el menú móvil está abierto, .nav debe quedar sólido para que el menú
   parezca un panel coherente colgando del header. */
body.menu-open .nav {
  background: rgba(19, 16, 12, 0.98);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
          backdrop-filter: blur(16px) saturate(140%);
}
body.menu-open {
  overflow: hidden;
}
/* En mobile el dropdown se muestra como bloque, no como menú flotante */
.nav-links.is-open .nav-dropdown { width: 100%; }
.nav-links.is-open .nav-dropdown-trigger {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  width: 100%;
  justify-content: space-between;
  padding: 0.3rem 0;
}
.nav-links.is-open .nav-dropdown-trigger svg {
  width: 18px; height: 18px;
  transform: rotate(0deg);
  transition: transform 0.25s var(--ease-out);
}
.nav-links.is-open .nav-dropdown.is-open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
/* Dropdown items: COLAPSADOS por defecto en mobile */
.nav-links.is-open .nav-dropdown-menu {
  position: static;
  transform: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  max-height: 0;
  min-width: 0;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(246, 174, 18, 0.04);
  border: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out), opacity 0.2s ease, margin-top 0.2s ease, padding 0.2s ease;
}
/* Dropdown items: visibles solo cuando el dropdown está marcado is-open */
.nav-links.is-open .nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  max-height: 600px;
  margin-top: 0.6rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-color: var(--line-mute);
}
.nav-links.is-open .nav-dropdown-item strong { font-size: 1.02rem; }
.nav-links.is-open .nav-dropdown-item span { font-size: 0.82rem; }

@media (min-width: 960px) {
  .nav-links { display: inline-flex; position: static; flex-direction: row; padding: 0; background: none; font-size: 0.92rem; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* =============================================================
   8. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: transform 0.3s var(--ease-out), background 0.25s ease, color 0.25s ease, box-shadow 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--bg);
  box-shadow: 0 16px 36px rgba(246, 174, 18, 0.28), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--yellow-2);
  box-shadow: 0 22px 44px rgba(246, 174, 18, 0.42), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-ghost {
  background: rgba(244, 236, 218, 0.06);
  color: var(--cream);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(246, 174, 18, 0.12);
  border-color: var(--yellow);
  color: var(--cream);
}
.btn-link {
  color: var(--cream-2);
  padding: 0.95rem 0.5rem;
  font-weight: 500;
}
.btn-link:hover { color: var(--yellow); }

/* =============================================================
   9. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 12vh, 11rem) var(--gutter) clamp(4rem, 8vh, 7rem);
  overflow: visible;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-title {
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1.4rem;
  max-width: 20ch;
}
.hero-title .line {
  display: block;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  color: var(--cream-2);
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: 2.4rem;
  font-weight: 300;
}
.hero-sub strong { color: var(--cream); font-weight: 600; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 3.6rem;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 640px;
  padding-top: 2rem;
  border-top: 1px solid var(--line-mute);
}
.hero-meta-item strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-meta-item span {
  font-size: 0.82rem;
  color: var(--cream-3);
  letter-spacing: 0.02em;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--cream-3), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0.2); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0.2); transform-origin: bottom; }
}

/* =============================================================
   10. Section base
   ============================================================= */
section {
  position: relative;
  padding-block: var(--section-y);
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  max-width: 22ch;
}
.section-lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--cream-2);
  max-width: 60ch;
  line-height: 1.6;
  margin-bottom: 4rem;
  font-weight: 300;
}
.section-lede em { color: var(--yellow); font-weight: 500; }

/* =============================================================
   11. Manifiesto / 3 pilares
   ============================================================= */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  counter-reset: pillar;
}
.pillar {
  position: relative;
  padding: 2.4rem 2rem 2.4rem 5.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease, background 0.4s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  background: var(--bg-card-2);
}
.pillar-n {
  position: absolute;
  top: 2.2rem;
  left: 1.8rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.04em;
}
.pillar h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.pillar p {
  font-size: 1rem;
  color: var(--cream-2);
  line-height: 1.6;
  font-weight: 300;
}

@media (min-width: 960px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .pillar { padding: 2.6rem 1.8rem; }
  .pillar-n { position: static; display: block; margin-bottom: 1.5rem; font-size: 1.4rem; }
}

/* =============================================================
   12. Productos
   ============================================================= */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--line-mute);
  margin-bottom: 3rem;
}
.product {
  border-bottom: 1px solid var(--line-mute);
  transition: background 0.4s ease;
}
.product.is-open { background: rgba(246, 174, 18, 0.04); }

.product-head {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1.8rem 0.4rem;
  text-align: left;
  position: relative;
  transition: padding 0.3s ease;
}
.product-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  align-self: center;
  padding: 6px;
  background: rgba(246, 174, 18, 0.06);
  border: 1px solid var(--line-mute);
  border-radius: 14px;
  transition: transform 0.5s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}
.product-head:hover .product-icon,
.product.is-open .product-icon {
  border-color: var(--yellow);
  background: rgba(246, 174, 18, 0.14);
  transform: scale(1.06) rotate(-3deg);
}
@media (max-width: 539px) {
  .product-head { gap: 0.8rem; grid-template-columns: auto 1fr auto; }
  .product-code { display: none; }
  .product-icon { width: 48px; height: 48px; }
}
.product-head:hover { color: var(--yellow); }
.product-code {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.04em;
  align-self: flex-start;
  padding-top: 0.3rem;
}
.product-headline {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.product-name {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cream);
  transition: color 0.25s ease;
}
.product-head:hover .product-name { color: var(--yellow); }
.product.is-open .product-name { color: var(--yellow); }
.product-short {
  font-size: 0.65em;
  color: var(--cream-3);
  font-weight: 400;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.product-tag {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.product-oneline {
  display: none;
  font-size: 0.95rem;
  color: var(--cream-2);
  max-width: 50ch;
  font-weight: 300;
}
.product-plus {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}
.product-plus::before, .product-plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--cream);
  transition: background 0.3s ease;
}
.product-plus::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.product-plus::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); transition: transform 0.4s var(--ease-out), background 0.3s ease; }
.product.is-open .product-plus { background: var(--yellow); border-color: var(--yellow); transform: rotate(180deg); }
.product.is-open .product-plus::before,
.product.is-open .product-plus::after { background: var(--bg); }
.product.is-open .product-plus::after { transform: translate(-50%, -50%) scaleY(0); }
.product-head:hover .product-plus { border-color: var(--yellow); }

.product-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-out);
}
.product-body-inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 0.4rem;
}
.product.is-open .product-body { grid-template-rows: 1fr; }
.product.is-open .product-body-inner { padding: 0.4rem 0.4rem 2.6rem; }

.product-section-label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.product-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.96rem;
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.55;
}
.product-bullets li {
  position: relative;
  padding-left: 1.4rem;
}
.product-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}
.product-bullets-outcome li::before {
  background: transparent;
  border: 1.5px solid var(--yellow);
}

.productos-cta {
  text-align: center;
  color: var(--cream-2);
  font-size: 1.05rem;
}
.productos-cta a {
  color: var(--yellow);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s ease;
}
.productos-cta a:hover { color: var(--yellow-2); }

.product-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, gap 0.25s var(--ease-out);
}
.product-detail-link:hover {
  background: var(--yellow);
  color: var(--bg);
  gap: 0.8rem;
}

@media (min-width: 720px) {
  .product-oneline { display: block; }
  .product-head { padding: 2.4rem 0.5rem; }
  .product-body-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* =============================================================
   13. Proceso 10 días
   ============================================================= */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.t-block {
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
  padding: 2.4rem 2rem 2.6rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out);
}
.t-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow), transparent 70%);
}
.t-block:hover { transform: translateY(-4px); border-color: var(--yellow); }
.t-block-head { margin-bottom: 1.8rem; }
.t-range {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(246, 174, 18, 0.14);
  color: var(--yellow);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}
.t-block h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.t-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.t-block li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.55;
}
.t-block li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 500;
}

@media (min-width: 960px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
}

/* =============================================================
   14. Casos
   ============================================================= */
.case-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-mute);
}
.case {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  padding: 2rem 0.4rem;
  border-bottom: 1px solid var(--line-mute);
  transition: background 0.3s ease, padding 0.3s ease;
}
.case:hover {
  background: rgba(246, 174, 18, 0.04);
  padding-inline: 1.2rem;
}
.case-sector {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 0.6rem;
}
.case-client {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  color: var(--cream);
}
.case-detail {
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.55;
  font-size: 0.98rem;
  max-width: 52ch;
}
.case-metric {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
  align-content: center;
}
.case-number {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}
.case-unit {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
.case-metric-label {
  width: 100%;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: 0.4rem;
}

@media (min-width: 720px) {
  .case { grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
  .case-metric { justify-content: flex-end; text-align: right; }
  .case-metric-label { text-align: right; }
}

/* Versión enlazada (home → página de caso) */
.case-row-link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  width: 100%;
  color: inherit;
  position: relative;
}
.case-row-link::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--yellow);
  font-size: 1.4rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}
.case-list-linked .case:hover .case-row-link::after {
  opacity: 1;
  transform: translateX(0);
}
.case-list-linked .case-row-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 6px;
  border-radius: 4px;
}
@media (min-width: 720px) {
  .case-row-link {
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
  }
  .case-row-link::after { top: 50%; transform: translate(-8px, -50%); right: -1.4rem; }
  .case-list-linked .case:hover .case-row-link::after { transform: translate(0, -50%); }
}

/* =============================================================
   15. Métrica statement
   ============================================================= */
.metric-statement { padding-block: clamp(6rem, 11vw, 11rem); }
.ms-big {
  font-size: clamp(2rem, 5.4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto 1.6rem;
  text-align: center;
}
.ms-big em {
  font-style: italic;
  font-weight: 500;
}
.ms-north {
  text-align: center;
  color: var(--cream-2);
  max-width: 64ch;
  margin: 0 auto 1.6rem;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 300;
  line-height: 1.6;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-mute);
}
.ms-north strong { color: var(--yellow); font-weight: 600; }
.ms-sub {
  text-align: center;
  color: var(--cream-3);
  max-width: 50ch;
  margin: 0 auto;
  font-size: 1.05rem;
  font-weight: 300;
}

/* =============================================================
   16. Garantía
   ============================================================= */
.garantia-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: start;
  padding: clamp(2rem, 4vw, 3.4rem);
  background:
    radial-gradient(at 0% 0%, rgba(246, 174, 18, 0.18) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.garantia-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--yellow) 0%, transparent 60%);
  z-index: -1;
  opacity: 0.4;
}
.garantia-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--bg);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.garantia-card .section-title { margin-top: 0.6rem; }
.garantia-opts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.4rem 0;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.6;
}
.garantia-opts li { padding-left: 0; }
.garantia-opts strong { color: var(--yellow); margin-right: 0.4rem; }
.garantia-note {
  font-size: 0.82rem;
  color: var(--cream-3);
  font-weight: 300;
  border-top: 1px solid var(--line-mute);
  padding-top: 1rem;
  max-width: 60ch;
}

@media (min-width: 720px) {
  .garantia-card { grid-template-columns: auto 1fr; gap: 2.6rem; }
}

/* =============================================================
   17. Bonos
   ============================================================= */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.bonus {
  padding: 2rem 1.8rem 2.2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}
.bonus:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  background: var(--bg-card-2);
}
.bonus-n {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--yellow);
  border-radius: 6px;
}
.bonus h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  letter-spacing: -0.015em;
}
.bonus p {
  font-size: 0.95rem;
  color: var(--cream-2);
  line-height: 1.55;
  font-weight: 300;
}

@media (min-width: 720px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) {
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus:nth-child(4), .bonus:nth-child(5) { grid-column: span 1; }
}

/* =============================================================
   18. CTA final
   ============================================================= */
.cta-final { padding-block: clamp(6rem, 10vw, 10rem); }
.cta-title {
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 1.6rem;
  max-width: 22ch;
}
.cta-title em { font-style: italic; }
.cta-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--cream-2);
  max-width: 56ch;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
.cta-form, .cta-aside {
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}
.cta-form { display: flex; flex-direction: column; gap: 1.1rem; }
.cta-form-title {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cta-form label > span {
  font-size: 0.86rem;
  color: var(--cream-2);
  font-weight: 400;
}
.cta-form label em { color: var(--cream-3); font-weight: 300; }
.cta-form input, .cta-form textarea, .cta-form select {
  font: inherit;
  font-size: 1rem;
  font-family: var(--sans);
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius-sm);
  color: var(--cream);
  transition: border-color 0.25s ease, background 0.25s ease;
  resize: vertical;
}
.cta-form input:focus, .cta-form textarea:focus, .cta-form select:focus {
  outline: 0;
  border-color: var(--yellow);
  background: var(--bg-2);
}
.cta-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F6AE12' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.cta-form select option {
  background: var(--bg);
  color: var(--cream);
}
.cta-form-submit { align-self: flex-start; margin-top: 0.8rem; }
.cta-form-status {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--yellow);
  min-height: 1.4em;
}
.cta-form-status.is-success { color: var(--yellow); }
.cta-form-status.is-error { color: var(--red); }

.cta-aside {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.cta-direct {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out);
  color: var(--cream);
}
.cta-direct:hover {
  border-color: var(--yellow);
  background: var(--bg-2);
  transform: translateX(4px);
}
.cta-direct svg { color: var(--yellow); flex-shrink: 0; }
.cta-direct-label { display: block; font-weight: 600; font-size: 1.02rem; }
.cta-direct-detail { display: block; font-size: 0.85rem; color: var(--cream-3); font-weight: 300; margin-top: 0.2rem; }
.cta-aside-foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-mute);
  font-size: 0.82rem;
  color: var(--cream-3);
  font-weight: 300;
  line-height: 1.5;
}

@media (min-width: 960px) {
  .cta-grid { grid-template-columns: 1.4fr 1fr; gap: 1.8rem; }
}

/* =============================================================
   19. Footer
   ============================================================= */
.footer {
  border-top: 1px solid var(--line-mute);
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--bg-2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.footer-brand-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}
.footer-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-claim {
  font-size: 0.86rem;
  color: var(--cream-3);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 720px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-h {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-cols ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-cols a {
  font-size: 0.94rem;
  color: var(--cream-2);
  transition: color 0.2s ease;
}
.footer-cols a:hover { color: var(--yellow); }
.footer-address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.65;
}
.footer-legal {
  font-size: 0.78rem;
  color: var(--cream-3);
  font-weight: 300;
  border-top: 1px solid var(--line-mute);
  padding-top: 1.6rem;
  margin-top: 1.5rem;
}

@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 3fr; gap: 4rem; }
  .footer-legal { grid-column: span 2; }
}

/* =============================================================
   19.5 Sistema completo (flujo del slide 21)
   ============================================================= */
.sistema-flow { padding-block: clamp(5rem, 8vw, 8rem); }
.flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 1rem;
  counter-reset: flow;
  position: relative;
}
.flow-step {
  position: relative;
  padding: 2rem 1.8rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}
.flow-illu {
  display: block;
  width: 92px;
  height: 92px;
  margin-bottom: 1.4rem;
  transition: transform 0.5s var(--ease-out);
}
.flow-step:hover .flow-illu {
  transform: scale(1.08) rotate(-3deg);
}
.flow-step:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  background: var(--bg-card-2);
}
.flow-tag {
  display: inline-block;
  padding: 0.32rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.flow-tag-offer { background: rgba(246, 174, 18, 0.22); color: var(--yellow); }
.flow-tag-cap   { background: rgba(246, 174, 18, 0.16); color: var(--yellow); }
.flow-tag-auto  { background: rgba(244, 236, 218, 0.10); color: var(--cream-2); border: 1px solid var(--line-mute); }
.flow-tag-close { background: rgba(209, 17, 28, 0.14); color: #ff7b7b; }

.flow-n {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}
.flow-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  color: var(--cream);
}
.flow-step p {
  font-size: 0.94rem;
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.55;
}

/* Conectores entre steps (mobile: vertical line, desktop: horizontal arrow) */
.flow-step:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(180deg, var(--yellow), transparent);
  width: 2px;
  height: 1.2rem;
  left: 50%;
  bottom: -1.2rem;
  transform: translateX(-50%);
  opacity: 0.4;
}

@media (min-width: 720px) {
  .flow { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .flow-step:not(:last-child)::after { display: none; }
}
@media (min-width: 1080px) {
  .flow { grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: stretch; }
  .flow-step:not(:last-child)::after {
    display: block;
    width: 1.2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), transparent);
    top: 4rem;
    bottom: auto;
    left: auto;
    right: -1.2rem;
    transform: none;
    opacity: 0.5;
  }
}

.flow-foot {
  margin-top: 3rem;
  padding: 1.6rem 1.8rem;
  background: var(--bg-2);
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  color: var(--cream-2);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 70ch;
}
.flow-foot strong { color: var(--cream); font-weight: 600; }

/* =============================================================
   19.4 Flujo animado (Meta/Google/LinkedIn → IA → Equipo)
   ============================================================= */
.flujo {
  padding-block: clamp(4rem, 7vw, 7rem);
}
.flujo-stage {
  margin-top: 2.4rem;
  padding: 3rem 1rem;
  background: linear-gradient(180deg, rgba(246, 174, 18, 0.04) 0%, transparent 60%), var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.flujo-svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.flujo-svg--desktop { max-width: 980px; }
.flujo-svg--mobile  { max-width: 400px; display: none; }

.flujo-node rect,
.flujo-node-center > circle:first-of-type {
  transition: stroke-width 0.3s ease;
}
@media (max-width: 720px) {
  .flujo-stage { padding: 1rem 0.4rem; }
  .flujo-svg--desktop { display: none; }
  .flujo-svg--mobile  { display: block; }
}

/* =============================================================
   19.5 Showcase (chat WhatsApp + dashboard métricas)
   ============================================================= */
.showcase {
  padding-block: clamp(5rem, 8vw, 8rem);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-top: 2.8rem;
}
@media (min-width: 960px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
}

.showcase-card {
  position: relative;
  padding: 1.8rem 1.6rem 1.4rem;
  background: linear-gradient(180deg, rgba(246, 174, 18, 0.04) 0%, rgba(0, 0, 0, 0) 60%), var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s ease;
}
.showcase-card:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 174, 18, 0.35);
  box-shadow: 0 24px 50px -28px rgba(246, 174, 18, 0.35);
}

.showcase-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: rgba(246, 174, 18, 0.1);
  border: 1px solid rgba(246, 174, 18, 0.32);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.showcase-chip svg { color: var(--yellow); }

.showcase-h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.35;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.8rem;
  max-width: 36ch;
}
.showcase-h3 em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 600;
}

/* ---------- Chat mockup ---------- */
.chat-mock {
  position: relative;
  padding: 1.2rem;
  background: #0e0c08;
  border: 1px solid var(--line-mute);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 360px;
}
.chat-bubble {
  max-width: 82%;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-out);
}
.chat-bubble--user {
  align-self: flex-end;
  background: rgba(246, 174, 18, 0.18);
  border: 1px solid rgba(246, 174, 18, 0.32);
  border-bottom-right-radius: 4px;
  color: #fff7e0;
}
.chat-bubble--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.chat-sender {
  font-size: 0.7rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.chat-typing {
  display: inline-flex;
  align-self: flex-start;
  gap: 4px;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream-2);
  animation: chat-dot 1.4s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chat-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* El JS controla el loop con clases is-shown / is-fading.
   Mientras carga el JS, todo el contenido está oculto. */
.chat-mock > .is-shown {
  opacity: 1;
  transform: translateY(0);
}
.chat-mock > .chat-sender.is-shown { opacity: 0.85; }
.chat-mock > .is-fading {
  opacity: 0;
  transform: translateY(-8px);
}

/* ---------- Funnel mockup (2 filas con parallax opuesto) ---------- */
.funnel-mock {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  max-width: 100%;
}
.funnel-row {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  /* Fade en los extremos */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}
.funnel-track {
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
  gap: 0.7rem;
  padding-right: 0.7rem;
  animation: funnel-marquee 36s linear infinite;
  will-change: transform;
}
/* Fila 2: misma animación pero reversa + ligeramente más lenta para parallax */
.funnel-row[data-funnel-row="reverse"] .funnel-track {
  animation-direction: reverse;
  animation-duration: 44s;
}
.funnel-mock:hover .funnel-track,
.funnel-mock:focus-within .funnel-track,
.funnel-mock:active .funnel-track {
  animation-play-state: paused;
}
@keyframes funnel-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.funnel-stage {
  flex: 0 0 195px;
  padding: 0.95rem 1rem;
  background: #0e0c08;
  border: 1px solid var(--line-mute);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.funnel-stage:hover { border-color: rgba(246, 174, 18, 0.35); }
.funnel-stage--win {
  background: linear-gradient(180deg, rgba(246, 174, 18, 0.08) 0%, #0e0c08 70%);
  border-color: rgba(246, 174, 18, 0.32);
}

.funnel-stage-head {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.funnel-stage-emoji { font-size: 0.95rem; line-height: 1; }
.funnel-stage-name { color: var(--cream); }

.funnel-stage-body {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.funnel-stage-count {
  font-size: clamp(1.6rem, 5vw, 1.95rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}
.funnel-stage-count.is-pulse {
  animation: count-pulse 0.75s ease-out;
}
@keyframes count-pulse {
  0%   { color: var(--cream);  transform: scale(1); }
  35%  { color: var(--yellow); transform: scale(1.08); }
  100% { color: var(--cream);  transform: scale(1); }
}
.funnel-stage.is-flash {
  animation: stage-flash 0.9s ease-out;
}
@keyframes stage-flash {
  0%   { box-shadow: 0 0 0 0 rgba(246, 174, 18, 0); border-color: var(--line-mute); }
  40%  { box-shadow: 0 0 0 6px rgba(246, 174, 18, 0.18); border-color: rgba(246, 174, 18, 0.55); }
  100% { box-shadow: 0 0 0 0 rgba(246, 174, 18, 0); border-color: var(--line-mute); }
}
.funnel-stage-conv {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.funnel-stage-conv--up {
  background: rgba(73, 200, 110, 0.14);
  color: #6ed896;
  border: 1px solid rgba(73, 200, 110, 0.28);
}
.funnel-stage-conv--down {
  background: rgba(232, 90, 90, 0.14);
  color: #ef8a8a;
  border: 1px solid rgba(232, 90, 90, 0.28);
}
.funnel-stage-conv--win {
  background: rgba(246, 174, 18, 0.18);
  color: var(--yellow);
  border: 1px solid rgba(246, 174, 18, 0.45);
}

.funnel-stage-foot {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.15rem;
}
.funnel-stage-foot-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: var(--cream-2);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.funnel-stage-foot-item svg { color: var(--cream-2); flex: 0 0 auto; opacity: 0.7; }

@media (max-width: 539px) {
  .showcase-card { padding: 1.5rem 1.2rem 1.2rem; }
  .chat-mock { padding: 1rem; min-height: 340px; }
  .chat-bubble { font-size: 0.82rem; }
  .funnel-mock { gap: 0.55rem; }
  .funnel-stage { padding: 0.85rem 0.9rem; }
}

/* =============================================================
   19.6 Diferenciadores / kill objections
   ============================================================= */
.diferenciadores {
  padding-block: clamp(5rem, 8vw, 8rem);
}
.dif-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2.8rem;
}
@media (min-width: 720px) { .dif-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .dif-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }

.dif-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.4rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s ease;
}
.dif-card:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 174, 18, 0.4);
  box-shadow: 0 28px 56px -28px rgba(246, 174, 18, 0.4);
}
.dif-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(246, 174, 18, 0.1);
  border: 1px solid rgba(246, 174, 18, 0.32);
  color: var(--yellow);
  margin-bottom: 0.2rem;
}
.dif-card h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.18rem);
  line-height: 1.35;
  font-weight: 600;
  color: var(--cream);
}
.dif-card h3 em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 600;
}
.dif-card p {
  font-size: 0.92rem;
  color: var(--cream-2);
  line-height: 1.55;
  font-weight: 300;
}
.dif-card-kill {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line-mute);
  font-size: 0.78rem !important;
  color: var(--cream-2) !important;
  font-weight: 400 !important;
}
.dif-card-kill span {
  color: var(--cream);
  font-style: italic;
  font-weight: 500;
}

/* =============================================================
   20. Testimoniales (home)
   ============================================================= */
.testimonios { padding-block: clamp(5rem, 8vw, 8rem); }
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.testimonio {
  position: relative;
  padding: 2.4rem 2rem 2.2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
}
.testimonio:hover { transform: translateY(-4px); border-color: var(--yellow); }
.testimonio-quote {
  font-size: 1.5rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.6rem;
  position: relative;
}
.testimonio-quote::before {
  content: "“";
  display: block;
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--yellow);
  margin-bottom: 0.6rem;
  font-family: Georgia, serif;
}
.testimonio-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-mute);
}
.testimonio-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonio-author { font-weight: 600; font-size: 0.96rem; color: var(--cream); }
.testimonio-role  { font-size: 0.82rem; color: var(--cream-3); margin-top: 0.1rem; }

@media (max-width: 719px) {
  .testimonios-grid {
    display: flex;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 92%, transparent 100%);
    mask-image:         linear-gradient(90deg, transparent 0%, #000 6%, #000 92%, transparent 100%);
    touch-action: pan-x;
  }
  .testimonios-grid::-webkit-scrollbar { display: none; }
  .testimonio {
    width: 80vw;
    min-width: 260px;
    flex-shrink: 0;
  }
}
@media (min-width: 720px) { .testimonios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .testimonios-grid { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; } }

/* =============================================================
   20.5 Logos de clientes (debajo de testimoniales)
   ============================================================= */
.clients {
  padding-block: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--line-mute);
}
.clients .kicker {
  text-align: center;
  justify-content: center;
  display: flex;
  margin-bottom: 2.4rem;
}
/* Carrusel horizontal en TODOS los anchos: auto-scroll + drag + hover pause */
.clients-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  /* Fade en los extremos */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  /* El JS controla el scroll, queremos respuesta inmediata al drag */
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  /* Ocultar scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  cursor: grab;
}
.clients-grid:active,
.clients-grid.is-dragging { cursor: grabbing; }
.clients-grid.is-dragging * { user-select: none; -webkit-user-select: none; pointer-events: none; }
.clients-grid::-webkit-scrollbar { display: none; }

.clients-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
}

.client-logo {
  flex: 0 0 auto;
  width: 150px;
  height: 90px;
  display: grid;
  place-items: center;
  padding: 0.6rem 1.4rem;
  transition: transform 0.35s var(--ease-out);
}
.client-logo img {
  max-width: 100%;
  max-height: 75%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Monocromo blanco uniforme */
  filter: brightness(0) invert(1) opacity(0.6);
  transition: filter 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.client-logo:hover img {
  filter: brightness(0) invert(1) opacity(1);
}
/* Logos que deben verse más grandes (Encore, Maxbox) */
.client-logo-lg img {
  max-width: 100%;
  max-height: 92%;
}
/* Logos apaisados que deben verse más pequeños (Corpovino) */
.client-logo-sm img {
  max-width: 78%;
  max-height: 55%;
  transform: translateY(4px);
}
.client-logo-sm:hover img {
  transform: translateY(4px);
}

/* Cards más grandes en pantallas anchas */
@media (min-width: 720px) {
  .client-logo { width: 180px; height: 110px; padding: 0.8rem 1.6rem; }
}
@media (min-width: 1080px) {
  .client-logo { width: 200px; height: 120px; }
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { padding-block: clamp(5rem, 8vw, 8rem); }
.faq .section-title { margin-bottom: 2.5rem; }
.faq-list { display: flex; flex-direction: column; max-width: 820px; }

.faq-item { border-bottom: 1px solid rgba(244,236,217,.1); }
.faq-item:first-child { border-top: 1px solid rgba(244,236,217,.1); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--yellow); }
.faq-item.is-open .faq-q { color: var(--yellow); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(244,236,217,.25);
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease-out);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--cream);
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.4s var(--ease-out);
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }

.faq-item.is-open .faq-icon {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: rotate(45deg);
}
.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after { background: var(--bg); }
.faq-q:hover .faq-icon { border-color: var(--yellow); }

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.faq-item.is-open .faq-body { grid-template-rows: 1fr; }
.faq-body-inner { overflow: hidden; }
.faq-body-inner p {
  padding-bottom: 1.5rem;
  color: var(--cream-3);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 72ch;
}

/* =============================================================
   21. Páginas internas — hero compacto y back-link
   ============================================================= */
.page-hero {
  position: relative;
  padding: clamp(7rem, 14vh, 11rem) var(--gutter) clamp(3.5rem, 7vw, 5.5rem);
  min-height: auto;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--cream-3);
  margin-bottom: 1.6rem;
  transition: color 0.2s ease, gap 0.25s var(--ease-out);
}
.page-back:hover { color: var(--yellow); gap: 0.75rem; }
.page-title {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 1.4rem;
  max-width: 22ch;
}
.page-title em { font-style: normal; color: var(--yellow); }
.page-lede {
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  color: var(--cream-2);
  max-width: 60ch;
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 2.2rem;
}
.page-lede strong { color: var(--cream); font-weight: 600; }
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
}
.page-hero-meta span {
  padding: 0.4rem 0.9rem;
  background: rgba(246, 174, 18, 0.1);
  color: var(--yellow);
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* Sección "qué incluye / resultado" para páginas de producto */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  margin-block: 2.4rem 4rem;
}
.detail-grid > section {
  padding: 2.4rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
}
.detail-grid h3 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
@media (min-width: 960px) { .detail-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; } }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 1rem;
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.55;
}
.feature-list li { position: relative; padding-left: 1.6rem; }
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--yellow);
  font-weight: 600;
}

.outcomes-list li::before { content: "✓"; }

/* Sección secundaria con FAQs / acompañamiento */
.detail-extra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-block: 1rem 4rem;
}
.detail-extra article {
  padding: 1.6rem 1.6rem 1.8rem;
  background: var(--bg-2);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius-sm);
}
.detail-extra h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: var(--yellow);
  font-weight: 600;
}
.detail-extra p {
  font-size: 0.94rem;
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.55;
}
@media (min-width: 720px) { .detail-extra { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .detail-extra { grid-template-columns: repeat(3, 1fr); } }

/* CTA banner inferior reutilizable */
.bottom-cta {
  margin-block: 2rem;
  padding: clamp(2.4rem, 4vw, 3.6rem);
  background:
    radial-gradient(at 0% 0%, rgba(246, 174, 18, 0.16) 0%, transparent 60%),
    var(--bg-card);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
}
.bottom-cta h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.bottom-cta p {
  color: var(--cream-2);
  font-weight: 300;
  margin-top: 0.6rem;
  font-size: 0.98rem;
}
.bottom-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-start;
}
@media (min-width: 720px) {
  .bottom-cta { grid-template-columns: 1.4fr auto; gap: 2.2rem; }
  .bottom-cta-actions { justify-content: flex-end; }
}

/* Sección de casos: índice estilo portfolio */
.case-index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-block: 1rem 4rem;
}
.case-card {
  position: relative;
  padding: 2rem 1.8rem 2.2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.45s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  background: var(--bg-card-2);
}
.case-card-sector {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.case-card-client {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.case-card-detail {
  color: var(--cream-2);
  font-weight: 300;
  font-size: 0.96rem;
  line-height: 1.55;
}
.case-card-metric {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-mute);
}
.case-card-metric .case-number { font-size: clamp(2rem, 3.4vw, 3rem); }
.case-card-metric .case-unit { font-size: 1.4rem; }
.case-card-arrow {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--yellow);
  transition: transform 0.35s var(--ease-out), background 0.25s ease, border-color 0.25s ease;
}
.case-card:hover .case-card-arrow {
  transform: rotate(-45deg);
  background: var(--yellow);
  color: var(--bg);
  border-color: var(--yellow);
}

@media (min-width: 720px) { .case-index-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .case-index-grid { grid-template-columns: repeat(3, 1fr); } }

/* Página de caso: hero con métrica grande */
.case-hero-metric {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
  align-items: baseline;
}
.case-hero-metric .case-number {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
}
.case-hero-metric-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: 0.4rem;
}
.case-hero-metric > div { display: flex; flex-direction: column; }
.case-hero-metric > div > span:first-child {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.case-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  margin-block: 1rem 4rem;
}
.case-body section {
  padding: 2.2rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
}
.case-body h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: var(--cream);
}
.case-body p, .case-body li {
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.6;
  font-size: 1rem;
}
.case-body p + p { margin-top: 0.8rem; }
.case-body ul { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.5rem; }
.case-body ul li { position: relative; padding-left: 1.4rem; }
.case-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

@media (min-width: 960px) {
  .case-body { grid-template-columns: 1fr 1fr; }
}

.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.case-stack span {
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  background: rgba(246, 174, 18, 0.12);
  color: var(--yellow);
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.case-numbers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-block: 1rem 4rem;
}
.case-number-card {
  padding: 2rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
  text-align: center;
}
.case-number-card strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.case-number-card span {
  font-size: 0.84rem;
  color: var(--cream-3);
  letter-spacing: 0.04em;
}
@media (min-width: 720px) { .case-numbers { grid-template-columns: repeat(3, 1fr); } }

/* Navegación entre casos */
.case-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-mute);
}
.case-nav a {
  padding: 1.2rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out);
}
.case-nav a:hover { border-color: var(--yellow); background: var(--bg-card-2); transform: translateY(-2px); }
.case-nav-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 0.4rem;
}
.case-nav-title {
  display: block;
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.case-nav-next { text-align: right; }

/* Grid de vídeos nativos en páginas de caso */
.case-videos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 2.8rem 0 3.6rem;
}
.case-videos video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  background: #000;
}
@media (max-width: 719px) {
  .case-videos { grid-template-columns: repeat(2, 1fr); }
}

/* Grid de reels de Instagram en páginas de caso */
.case-reels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 2.8rem 0 3.6rem;
}
.case-reels .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: var(--radius-sm) !important;
}
@media (max-width: 719px) {
  .case-reels { grid-template-columns: repeat(2, 1fr); }
}

/* Galería de imágenes en páginas de caso */
.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 2.8rem 0;
}
.case-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-sm);
  display: block;
}
@media (max-width: 719px) {
  .case-gallery {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 0.8rem;
    touch-action: pan-x;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 93%, transparent 100%);
    mask-image:         linear-gradient(90deg, transparent 0%, #000 5%, #000 93%, transparent 100%);
  }
  .case-gallery::-webkit-scrollbar { display: none; }
  .case-gallery img {
    width: 78vw;
    min-width: 78vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
  }
}
@media (min-width: 720px) {
  .case-gallery { grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 3.6rem 0; }
}

/* =============================================================
   21.5 Página de contacto
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-block: 1rem 4rem;
}
.contact-section-label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, background 0.3s ease, transform 0.3s var(--ease-out);
  color: var(--cream);
}
.contact-channel:hover {
  border-color: var(--yellow);
  background: var(--bg-card-2);
  transform: translateY(-2px);
}
.contact-channel-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: rgba(246, 174, 18, 0.12);
  color: var(--yellow);
  border-radius: 12px;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.contact-channel:hover .contact-channel-icon { background: rgba(246, 174, 18, 0.22); }
.contact-channel-label { display: block; font-weight: 600; font-size: 1rem; color: var(--cream); }
.contact-channel-detail { display: block; font-size: 0.84rem; color: var(--cream-3); font-weight: 300; margin-top: 0.15rem; }
.contact-channel-arrow {
  color: var(--yellow);
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease-out);
}
.contact-channel:hover .contact-channel-arrow { transform: translateX(4px); }

.contact-hours {
  margin-top: 1rem;
  padding: 1.4rem;
  background: var(--bg-2);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius-sm);
}
.contact-hours p {
  font-size: 0.92rem;
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.55;
}
.contact-hours p + p { margin-top: 0.4rem; color: var(--cream-3); }
.contact-hours strong { color: var(--cream); font-weight: 600; }

.contact-office {
  padding: 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.contact-address {
  font-style: normal;
  font-size: 1rem;
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.contact-address strong { color: var(--cream); font-weight: 600; }
.contact-maps-link {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--yellow);
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  margin-bottom: 1.4rem;
  transition: color 0.2s ease;
}
.contact-maps-link:hover { color: var(--yellow-2); }
.contact-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-mute);
  filter: saturate(0.85) brightness(0.9);
}
.contact-map iframe { display: block; }

@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
.contact-steps li {
  font-size: 0.95rem;
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.55;
}
.contact-steps strong {
  color: var(--yellow);
  margin-right: 0.4rem;
  font-weight: 600;
}

/* =============================================================
   21.8 CTA inline entre secciones
   ============================================================= */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.8rem;
  padding-top: 0.4rem;
}

/* =============================================================
   21.9 Botón scroll-to-top
   ============================================================= */
.scroll-top {
  position: fixed;
  bottom: 8rem;
  right: 1.6rem;
  z-index: 890;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line-mute);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s var(--ease-out), border-color .2s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { border-color: var(--yellow); color: var(--yellow); }
.scroll-top svg { width: 18px; height: 18px; }

/* =============================================================
   22. WhatsApp flotante
   ============================================================= */
.wa-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
  animation: wa-pulse 2.8s ease-in-out infinite;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.6);
  animation: none;
}
.wa-float svg { width: 32px; height: 32px; flex-shrink: 0; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,.6), 0 0 0 9px rgba(37,211,102,.12); }
}
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* =============================================================
   23. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pattern svg, .splash-mark { animation: none; }
  .hero-scroll-line { animation: none; transform: scaleY(0.6); }
  .gradient-mesh { transition: none; }
}

/* =============================================================
   24. Landing Page
   ============================================================= */

/* Header */
.lp-header {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 200;
}
.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-logo { height: 32px; width: auto; }

/* Hero */
.lp-hero { padding: 5rem 0 4rem; }
.lp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}
.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.4rem;
}
.lp-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}
.lp-h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.lp-h1 em { font-style: italic; color: var(--yellow); }
.lp-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 2.4rem;
  max-width: 540px;
}
.lp-sub strong { color: #fff; }

/* Benefits */
.lp-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2.8rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.lp-benefits li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .975rem;
  line-height: 1.4;
  color: rgba(255,255,255,.88);
}
.lp-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(246,174,18,.12);
  border: 1.5px solid rgba(246,174,18,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
  color: var(--yellow);
}

/* Stats */
.lp-stats {
  display: flex;
  gap: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.lp-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.lp-stat span {
  font-size: .78rem;
  color: var(--gray);
  margin-top: .3rem;
  display: block;
}

/* Form card */
.lp-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 2.2rem;
  position: sticky;
  top: 5rem;
}
.lp-form-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .35rem;
}
.lp-form-card-sub {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 1.8rem;
  line-height: 1.5;
}
.lp-form {
  display: flex;
  flex-direction: column;
  gap: .95rem;
}
.lp-form label {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.lp-form label em {
  text-transform: none;
  font-style: normal;
  opacity: .65;
  font-weight: 400;
}
.lp-form input,
.lp-form select,
.lp-form textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .7rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.lp-form input::placeholder,
.lp-form textarea::placeholder { color: rgba(255,255,255,.25); }
.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus { border-color: var(--yellow); }
.lp-form select { cursor: pointer; }
.lp-form select option { background: #1e1a14; color: #fff; }

/* Phone prefix wrapper – lp-form */
.lp-form .phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  transition: border-color .2s;
}
.lp-form .phone-wrap:focus-within { border-color: var(--yellow); }
.lp-form .phone-wrap .phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 .85rem;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  border-right: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  flex-shrink: 0;
}
.lp-form .phone-wrap input {
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
}

/* Phone prefix wrapper – cta-form (formulario inferior) */
.cta-form .phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-mute);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  transition: border-color .25s ease, background .25s ease;
}
.cta-form .phone-wrap:focus-within { border-color: var(--yellow); background: var(--bg-2); }
.cta-form .phone-wrap .phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 .85rem;
  font-size: .9rem;
  color: var(--cream-3);
  border-right: 1px solid var(--line-mute);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  flex-shrink: 0;
}
.cta-form .phone-wrap input {
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
}

.lp-form-btn { width: 100%; justify-content: center; margin-top: .4rem; }
.lp-form-trust {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: .5rem;
}
/* Mensaje de descarte (calificación) */
.form-disq {
  display: none;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-top: .8rem;
}
.form-disq p {
  font-size: .85rem;
  color: rgba(244,236,217,.85);
  margin: 0 0 .5rem;
  line-height: 1.5;
}
.form-disq a {
  font-size: .85rem;
  color: #F6AE12;
  font-weight: 600;
  text-decoration: none;
}
.form-disq a:hover { text-decoration: underline; }
.form-disq.is-visible { display: block; }

/* Logos carrusel */
.lp-logos {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.lp-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.lp-logos-label {
  text-align: center;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 2rem;
}
.lp-logos-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image:         linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.lp-logos-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5.5rem;
  width: max-content;
  will-change: transform;
  padding: .5rem 0;
}
.lp-logos-track img {
  height: 72px;
  width: auto;
  max-width: 180px;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.5);
  transition: filter .25s;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.lp-logos-track img.lp-logo-lg {
  height: 108px;
  max-width: 240px;
}
.lp-logos-track img.lp-logo-xl {
  height: 92px;
  max-width: 220px;
}
.lp-logos-viewport:hover .lp-logos-track img { filter: brightness(0) invert(1) opacity(0.75); }

/* Sections shared */
.lp-how, .lp-features, .lp-faq, .lp-cta-bottom { padding: 5rem 0; }
.lp-features { background: rgba(255,255,255,.015); }
.lp-section-label {
  text-align: center;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .7rem;
}
.lp-section-title {
  text-align: center;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .7rem;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.lp-section-title em { font-style: italic; color: var(--yellow); }
.lp-section-sub {
  text-align: center;
  color: var(--gray);
  font-size: .975rem;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.65;
}

/* How steps */
.lp-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.lp-how-step {
  text-align: center;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}
.lp-how-n {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.lp-how-icon {
  width: 52px;
  height: 52px;
  background: rgba(246,174,18,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--yellow);
}
.lp-how-step h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.lp-how-step p { font-size: .875rem; color: var(--gray); line-height: 1.55; }

/* Features */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.lp-feature-card {
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}
.lp-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(246,174,18,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.lp-feature-card h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.lp-feature-card p { font-size: .85rem; color: var(--gray); line-height: 1.55; }

/* FAQ */
.lp-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.lp-faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.lp-faq-item[open] {
  border-color: rgba(246,174,18,.3);
  background: rgba(246,174,18,.03);
}
.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-chevron {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--yellow);
  transition: transform .25s;
}
.lp-faq-item[open] .lp-faq-chevron { transform: rotate(180deg); }
.lp-faq-body {
  padding: 0 1.6rem 1.3rem;
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.65;
}
.lp-faq-body strong { color: rgba(255,255,255,.75); }

/* CTA bottom */
.lp-cta-bottom {
  background: rgba(246,174,18,.05);
  border-top: 1px solid rgba(246,174,18,.12);
}
.lp-cta-bottom-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.lp-cta-bottom h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.lp-cta-bottom h2 em { color: var(--yellow); font-style: italic; }
.lp-cta-bottom p { color: var(--gray); font-size: .975rem; margin-bottom: 2.4rem; line-height: 1.6; }
.lp-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mini footer */
.lp-minfooter {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
  font-size: .76rem;
  color: rgba(255,255,255,.28);
}
.lp-minfooter a { color: rgba(255,255,255,.38); text-decoration: underline; }
.lp-minfooter a:hover { color: rgba(255,255,255,.65); }

/* Thank-you page */
.ty-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.ty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(246,174,18,.12);
  border: 2px solid rgba(246,174,18,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin: 0 auto 2rem;
}
.ty-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: .8rem;
}
.ty-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.6;
  margin: 0 auto 2.8rem;
}
.ty-sub strong { color: #fff; }
.ty-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ty-back {
  margin-top: 3rem;
  font-size: .85rem;
  color: rgba(255,255,255,.35);
}
.ty-back a { color: rgba(255,255,255,.5); text-decoration: underline; }

/* Privacy policy page */
.privacy-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.privacy-body h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .6rem;
  letter-spacing: -.02em;
}
.privacy-body .privacy-date {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 3rem;
}
.privacy-body h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 2.4rem 0 .7rem;
  border-left: 3px solid var(--yellow);
  padding-left: .8rem;
}
.privacy-body p, .privacy-body li {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: .7rem;
}
.privacy-body ul { padding-left: 1.4rem; }
.privacy-body strong { color: rgba(255,255,255,.75); }
.privacy-body a { color: var(--yellow); }

/* Responsive landing */
@media (max-width: 1023px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .lp-hero-inner > * { min-width: 0; } /* evita blowout del grid en mobile */
  .lp-form-card { position: static; }
  .lp-how-steps { grid-template-columns: 1fr; gap: 1.2rem; }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-how-step { text-align: left; display: flex; gap: 1.4rem; align-items: flex-start; }
  .lp-how-icon { flex-shrink: 0; margin: 0; }
  .lp-how-step-text { flex: 1; }
  .lp-how-n { margin-bottom: .4rem; }
}
@media (max-width: 719px) {
  .lp-hero { padding: 3rem 0 2.5rem; }
  .lp-hero-inner { padding-inline: 1.25rem; } /* margen lateral cómodo en celular */
  .lp-h1 { font-size: 1.85rem; }            /* evita que el título se coma el margen */
  .lp-stats { gap: 1.6rem; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-header .btn { display: none; }
}
