/* ═══════════════════════════════════════════════
   DAVE TOMAS — styles.css · v20260526-r3
   High-conversion landing · Dark + Pink + Turquoise
   ═══════════════════════════════════════════════ */

/* ── Design tokens ───────────────────────────── */
:root {
  --black:      #080808;
  --black-2:    #0e0e0e;
  --black-3:    #161616;
  --white:      #f0ede8;
  --white-72:   rgba(240,237,232,.72);
  --white-40:   rgba(240,237,232,.40);
  --white-15:   rgba(240,237,232,.15);
  --white-06:   rgba(240,237,232,.06);

  --gold:       #C4A84F;
  --gold-lt:    #DFC07A;
  --gold-glow:  rgba(196,168,79,.28);
  --gold-06:    rgba(196,168,79,.06);
  --gold-12:    rgba(196,168,79,.12);
  --gold-20:    rgba(196,168,79,.20);

  --pink:       #D4698A;
  --pink-lt:    #F07097;
  --pink-glow:  rgba(212,105,138,.35);
  --pink-12:    rgba(212,105,138,.12);
  --pink-20:    rgba(212,105,138,.20);

  --turq:       #2AABB8;
  --turq-12:    rgba(42,171,184,.12);
  --turq-20:    rgba(42,171,184,.20);
  --indigo:     #3D35A8;

  --font: 'Montserrat', sans-serif;

  /* 8 px grid */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-5:  2.5rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;
  --sp-16: 8rem;
  --sp-20: 10rem;

  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-io:   cubic-bezier(.87,0,.13,1);
  --ease-snap: cubic-bezier(.34,1.56,.64,1);

  --max: 1200px;
  --gutter: 2rem;
}

/* ── Reset ───────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover:none) { body { cursor: auto; } }
a, button { cursor: none; }
@media (hover:none) { a, button { cursor: auto; } }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Film-grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .032;
  pointer-events: none;
  z-index: 9999;
}

/* ── Container ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ════════════════════════════════════════════════ */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--turq));
  z-index: 200;
  transition: width .05s linear;
}

/* ════════════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════════════ */
.c-cursor-dot,
.c-cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
}
.c-cursor-dot {
  width: 5px; height: 5px;
  background: var(--pink);
  transition: transform .08s var(--ease-out), opacity .2s ease;
}
.c-cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,105,138,.5);
  transition: transform .18s var(--ease-out),
              width .25s var(--ease-out),
              height .25s var(--ease-out),
              opacity .2s ease;
}
body.cursor-link .c-cursor-ring { width: 54px; height: 54px; border-color: var(--pink); }
body.cursor-link .c-cursor-dot  { transform: translate(-50%,-50%) scale(0); }
@media (hover:none) { .c-cursor-dot, .c-cursor-ring { display: none; } }

/* ════════════════════════════════════════════════
   TYPOGRAPHY SCALE
   ════════════════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: var(--sp-3);
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--pink);
  flex-shrink: 0;
}
.section-label--turq { color: var(--turq); }
.section-label--turq::before { background: var(--turq); }
.section-label--gold  { color: var(--gold); }
.section-label--gold::before  { background: var(--gold); }

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--white);
}
.section-header { margin-bottom: var(--sp-12); }

/* ════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--card-delay, 0s);
}
.reveal.safe { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2.1rem;
  min-height: 44px;
  font-family: var(--font);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  overflow: hidden;
  transition: color .3s var(--ease-out),
              border-color .3s var(--ease-out),
              transform .25s var(--ease-snap),
              box-shadow .3s ease;
  will-change: transform;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
  z-index: 0;
}
.btn:hover::after  { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }

/* Pink — primary */
.btn--pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--pink::after { background: var(--pink-lt); }
.btn--pink:hover  {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--pink-glow);
}

/* Outline — secondary */
.btn--outline {
  background: transparent;
  color: var(--white-72);
  border-color: rgba(240,237,232,.28);
}
.btn--outline::after { background: rgba(240,237,232,.06); }
.btn--outline:hover  {
  color: var(--white);
  border-color: rgba(240,237,232,.55);
  transform: translateY(-2px);
}

/* Gold — decorative / footer */
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold::after { background: var(--gold-lt); }
.btn--gold:hover  {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--gold-glow);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--white-72);
  border-color: var(--white-15);
}
.btn--ghost::after { background: var(--white-06); }
.btn--ghost:hover  { color: var(--white); border-color: var(--white-40); transform: translateY(-2px); }

.btn--lg { padding: 1.05rem 2.6rem; font-size: .72rem; min-height: 52px; }

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.75rem var(--gutter);
  transition: background .5s ease, padding .4s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.1rem var(--gutter);
  border-color: var(--white-06);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--pink) 0%, var(--turq) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links li { position: relative; }
.nav__links a {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white-40);
  padding-bottom: 3px;
  transition: color .25s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover        { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active       { color: var(--white); }
.nav__links a.active::after{ transform: scaleX(1); }

.nav__cta-link {
  padding: .55rem 1.35rem !important;
  border: 1px solid var(--pink-20) !important;
  color: var(--pink) !important;
  transition: background .25s ease, border-color .25s ease, color .25s ease !important;
}
.nav__cta-link::after { display: none !important; }
.nav__cta-link:hover  {
  background: var(--pink) !important;
  border-color: var(--pink) !important;
  color: var(--white) !important;
}
.nav__presskit {
  font-size: .65rem !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--turq) !important;
  transition: opacity .25s ease !important;
}
.nav__presskit:hover { opacity: .7 !important; }
.nav__presskit::after { display: none !important; }

/* ── Language toggle ────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: var(--sp-2);
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--white-40);
  font-family: var(--font);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  min-height: 28px;
  cursor: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.lang-btn.active {
  color: var(--pink);
  border-color: var(--pink-20);
  background: var(--pink-12);
}
.lang-btn:hover:not(.active) { color: var(--white-72); border-color: var(--white-15); }
@media (hover:none) { .lang-btn { cursor: auto; } }
@media (max-width: 768px) { .lang-toggle { margin-left: auto; margin-right: var(--sp-2); } }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  padding: 8px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block; width: 22px; height: 1px;
  background: var(--white);
  transition: all .3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--white-40); font-size: 1.4rem;
  min-height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s ease;
}
.mobile-menu__close:hover { color: var(--white); }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.mobile-menu a {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800; letter-spacing: -.04em;
  color: var(--white-72);
  transition: color .25s ease;
  min-height: 44px;
  display: flex; align-items: center;
}
.mobile-menu a:hover { color: var(--pink); }

/* ════════════════════════════════════════════════
   HERO — image overlay, staggered entrance
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Background video layer */
.hero__bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  background-color: var(--black);
}
/* Desktop: portrait video → contain para ver cuerpo entero */
@media (min-width: 1024px) {
  .hero__bg-video {
    object-fit: contain;
  }
}
/* Atmospheric gradient fallback (also used when photo is present as overlay) */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,.88) 0%, rgba(8,8,8,.42) 45%, rgba(8,8,8,.92) 100%),
    radial-gradient(ellipse 110% 80% at 50% 110%, rgba(212,105,138,.2) 0%, transparent 55%),
    radial-gradient(ellipse 65% 55% at 12% 50%, rgba(42,171,184,.1) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 88% 20%, rgba(61,53,168,.12) 0%, transparent 55%);
}

.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .35;
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 8rem var(--gutter) 4rem;
  max-width: 860px;
  width: 100%;
}

.hero__eyebrow {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--turq);
  margin-bottom: 2rem;
}

.hero__headline {
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.05em;
  color: var(--white);
  margin-bottom: 2rem;
}
/* "mejores" highlights in pink */
.hero__headline em {
  font-style: normal;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(.82rem, 1.3vw, .95rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-72);
  margin-bottom: 2.5rem;
  max-width: 46ch;
  margin-left: auto; margin-right: auto;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__proof {
  font-size: .78rem;
  letter-spacing: .06em;
  color: rgba(240,237,232,.5);
  margin-top: -.5rem;
  margin-bottom: var(--sp-6);
  text-transform: uppercase;
}

.value-prop__support {
  font-size: .9rem;
  color: rgba(240,237,232,.55);
  line-height: 1.65;
  margin-top: .5rem;
  margin-bottom: var(--sp-6);
}

.booking__guarantees {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.booking__guarantee {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(240,237,232,.6);
}
.booking__guarantee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--turq);
  flex-shrink: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--pink));
  animation: scrollPulse 2.4s var(--ease-io) infinite;
}
.hero__scroll-label {
  font-size: .5rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--white-40);
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════ */
.marquee-belt {
  background: var(--pink);
  padding: .75rem 0;
  overflow: hidden; line-height: 1;
}
.marquee-belt__track {
  display: flex; gap: 2.5rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-belt__track span {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(8,8,8,.8); white-space: nowrap;
}
.marquee-belt__track .sep { font-size: .4rem; color: rgba(8,8,8,.3); letter-spacing: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   PAIN POINTS
   ════════════════════════════════════════════════ */
.pain {
  padding: var(--sp-20) 0;
  background: var(--black-2);
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--white-06);
  margin-top: var(--sp-10);
}
.pain__item {
  background: var(--black-2);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.pain__item:hover { background: var(--black-3); }
.pain__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.pain__item:nth-child(1)::before { background: var(--pink); }
.pain__item:nth-child(2)::before { background: var(--turq); }
.pain__item:nth-child(3)::before { background: linear-gradient(90deg, var(--indigo), var(--turq)); }

.pain__num {
  font-size: .52rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--white-15);
  margin-bottom: var(--sp-4);
}
.pain__icon {
  width: 2.2rem; height: 2.2rem;
  margin-bottom: var(--sp-3);
  transition: transform .35s var(--ease-snap);
}
.pain__item:hover .pain__icon { transform: scale(1.12) rotate(-5deg); }
.pain__item:nth-child(1) .pain__icon { color: var(--pink); }
.pain__item:nth-child(2) .pain__icon { color: var(--turq); }
.pain__item:nth-child(3) .pain__icon { color: #7C73E6; }

.pain__title {
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -.025em; line-height: 1.25;
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.pain__desc {
  font-size: .8rem; line-height: 1.85;
  color: var(--white-40); font-weight: 300;
}

/* ════════════════════════════════════════════════
   VALUE PROPOSITION
   ════════════════════════════════════════════════ */
.value-prop {
  padding: var(--sp-20) 0;
  background: var(--black);
  text-align: center;
}
.value-prop .section-label {
  justify-content: center;
}
.value-prop .section-label::before { display: none; }
.value-prop__statement {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.2;
  color: var(--white);
  max-width: 24ch;
  margin: 0 auto var(--sp-5);
}
.value-prop__desc {
  font-size: .88rem;
  line-height: 1.88;
  color: var(--white-72);
  font-weight: 300;
  max-width: 52ch;
  margin: 0 auto var(--sp-8);
}

/* ════════════════════════════════════════════════
   SERVICIOS — editorial list
   ════════════════════════════════════════════════ */
.servicios {
  padding: var(--sp-20) 0;
  background: var(--black-3);
}
.servicios__top { margin-bottom: var(--sp-12); }
.servicios__top .section-header { margin-bottom: var(--sp-4); }
.servicios__intro {
  font-size: .85rem; line-height: 1.8;
  color: var(--white-72); font-weight: 300;
  max-width: 62ch;
  margin-top: var(--sp-4);
}
.servicios__blocks { display: flex; flex-direction: column; }

/* ── Service block: info + photo strip ── */
.srv-block {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--white-06);
}
.srv-block:last-child { border-bottom: 1px solid var(--white-06); }
.srv-block__num {
  display: block;
  font-size: .5rem; font-weight: 700;
  letter-spacing: .22em; color: var(--pink);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.srv-block__title {
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -.02em; color: var(--white);
  line-height: 1.35;
  margin-bottom: var(--sp-3);
}
.srv-block__desc {
  font-size: .8rem; line-height: 1.78;
  color: var(--white-40); font-weight: 300;
}
.srv-block__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
  overflow: hidden;
  border-radius: .4rem;
}
.srv-block__photos img {
  width: 100%; height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s var(--ease-out), filter .4s ease;
  filter: brightness(.92);
}
.srv-block__photos img:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
  z-index: 1;
  position: relative;
}

/* ════════════════════════════════════════════════
   BENEFITS
   ════════════════════════════════════════════════ */
.benefits {
  padding: var(--sp-20) 0;
  background: var(--black);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--white-06);
  margin-top: var(--sp-12);
}
.benefit-item {
  background: var(--black);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.benefit-item:hover { background: var(--black-2); }
.benefit-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--turq));
  transition: width .55s var(--ease-out);
}
.benefit-item:hover::after { width: 100%; }

.benefit-icon {
  width: 2.4rem; height: 2.4rem;
  color: var(--pink);
  margin-bottom: var(--sp-4);
  transition: color .3s ease, transform .35s var(--ease-snap);
}
.benefit-item:hover .benefit-icon { color: var(--turq); transform: scale(1.1) rotate(-5deg); }
.benefit-icon svg { width: 100%; height: 100%; }

.benefit-title {
  font-size: .92rem; font-weight: 700;
  letter-spacing: -.02em; color: var(--white);
  margin-bottom: var(--sp-1);
}
.benefit-desc {
  font-size: .78rem; line-height: 1.78;
  color: var(--white-40); font-weight: 300;
}

/* ════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════ */
.stats-section {
  padding: var(--sp-16) 0;
  background: var(--black-2);
  border-top: 1px solid var(--white-06);
  border-bottom: 1px solid var(--white-06);
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; gap: .4rem;
  padding: var(--sp-6) var(--sp-5);
  border-right: 1px solid var(--white-06);
  position: relative;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--turq));
  transition: width .6s var(--ease-out);
}
.stat-item.in::after { width: 100%; }

.stat-num {
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  font-weight: 900; letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--pink) 0%, var(--turq) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-lab {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--white-40);
}

/* ════════════════════════════════════════════════
   CTA INLINE — mid-page
   ════════════════════════════════════════════════ */
.cta-inline {
  padding: var(--sp-12) 0;
  text-align: center;
  border-top: 1px solid var(--white-06);
  border-bottom: 1px solid var(--white-06);
  position: relative;
  overflow: hidden;
  /* Imagen fija — efecto parallax al scrollear */
  background-image: url('assets/img/cta-bg.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}
/* Overlay oscuro para que el texto sea legible */
.cta-inline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.65);
  pointer-events: none;
}
.cta-inline__inner { position: relative; z-index: 1; }
.cta-inline__text {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: var(--sp-5);
  line-height: 1.2;
}

/* ════════════════════════════════════════════════
   TESTIMONIOS — with avatar
   ════════════════════════════════════════════════ */
.testimonios {
  padding: var(--sp-20) 0;
  background: var(--black-2);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--white-06);
}
.testi-card {
  background: var(--black-2);
  padding: var(--sp-6) var(--sp-5);
  display: flex; flex-direction: column; gap: var(--sp-3);
  position: relative; overflow: hidden;
  transition: background .3s ease;
}
.testi-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--turq));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.testi-card:hover { background: var(--black-3); }
.testi-card:hover::after { transform: scaleX(1); }

.testi-card__stars {
  color: var(--gold);
  font-size: .72rem; letter-spacing: .12em;
}
.testi-card__quote-mark {
  font-size: 4.5rem; line-height: .6;
  color: var(--pink-12); font-weight: 900;
  font-style: normal; letter-spacing: -.05em;
  display: block; user-select: none;
}
.testi-card__quote {
  font-size: .82rem; line-height: 1.88;
  color: var(--white-72); font-weight: 300;
  font-style: italic; flex: 1;
}
.testi-card__footer {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--white-06);
}
.testi-card__avatar {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .7rem;
  letter-spacing: .04em;
  color: var(--black);
}
.testi-card:nth-child(1) .testi-card__avatar { background: var(--pink); }
.testi-card:nth-child(2) .testi-card__avatar { background: var(--turq); }
.testi-card:nth-child(3) .testi-card__avatar { background: linear-gradient(135deg, var(--indigo), var(--turq)); color: var(--white); }

.testi-card__info { display: flex; flex-direction: column; gap: .2rem; }
.testi-card__name { font-size: .78rem; font-weight: 700; color: var(--white); }
.testi-card__role { font-size: .68rem; color: var(--white-40); }

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq {
  padding: var(--sp-20) 0;
  background: var(--black);
}
.faq__list {
  max-width: 780px;
  margin: var(--sp-12) auto 0;
}
.faq__item { border-top: 1px solid var(--white-06); }
.faq__item:last-child { border-bottom: 1px solid var(--white-06); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  width: 100%; text-align: left;
  background: none; border: none;
  font-family: var(--font);
  font-size: .88rem; font-weight: 600;
  color: var(--white-72);
  transition: color .25s ease;
  min-height: 44px;
}
.faq__q:hover { color: var(--white); }
.faq__q.open  { color: var(--pink); }

.faq__icon {
  width: 1.1rem; height: 1.1rem;
  flex-shrink: 0;
  color: var(--white-40);
  transition: transform .35s var(--ease-out), color .25s ease;
}
.faq__q.open .faq__icon { transform: rotate(45deg); color: var(--pink); }

.faq__a {
  height: 0;
  overflow: hidden;
  transition: height .4s var(--ease-out);
}
.faq__a-inner {
  font-size: .82rem; line-height: 1.88;
  color: var(--white-40); font-weight: 300;
  padding-bottom: 1.75rem;
}

/* ════════════════════════════════════════════════
   CTA BAND — final push
   ════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: var(--sp-20) 0;
  background: var(--black-3);
  overflow: hidden; text-align: center;
}
.cta-band__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 50%, rgba(212,105,138,.08) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 20% 80%, rgba(42,171,184,.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 80% 20%, rgba(61,53,168,.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-20), transparent);
}
.cta-band::before { top: 0; }
.cta-band::after  { bottom: 0; }
.cta-band__inner  { position: relative; z-index: 1; }
.cta-band__inner h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -.05em; line-height: 1;
  margin-bottom: var(--sp-4);
}
.cta-band__desc {
  font-size: .88rem; line-height: 1.8;
  font-weight: 300; color: var(--white-72);
  max-width: 44ch; margin: 0 auto var(--sp-8);
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--white-06);
  padding: var(--sp-12) 0 var(--sp-6);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start; gap: 3rem;
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--white-06);
  margin-bottom: var(--sp-6);
}
.footer__brand { display: flex; flex-direction: column; gap: .75rem; }
.footer__logo {
  font-size: 1.4rem; font-weight: 900;
  letter-spacing: -.05em; display: inline-block;
  background: linear-gradient(135deg, var(--pink) 0%, var(--turq) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__brand p {
  font-size: .75rem; line-height: 1.7;
  color: var(--white-40); font-weight: 300;
  max-width: 20ch;
}
.footer__nav {
  display: flex; flex-direction: column;
  align-items: center; gap: .875rem;
}
.footer__nav a {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white-40);
  transition: color .25s ease;
  min-height: 44px;
  display: flex; align-items: center;
}
.footer__nav a:hover { color: var(--pink); }
.footer__social {
  display: flex; align-items: center;
  justify-content: flex-end; gap: 1rem;
}
.social-link {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--white-06);
  border-radius: 50%;
  color: var(--white-40);
  transition: border-color .28s ease, color .28s ease, transform .28s var(--ease-snap);
}
.social-link:hover {
  border-color: var(--pink-20);
  color: var(--pink);
  transform: translateY(-3px);
}
.social-link svg { width: .95rem; height: .95rem; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .62rem; color: var(--white-15);
  font-weight: 400; letter-spacing: .04em;
}
.footer__credit {
  text-align: center;
  font-size: .6rem; letter-spacing: .08em; color: var(--white-15);
}
.footer__credit a { color: var(--white-40); text-decoration: none; transition: color .2s ease; }
.footer__credit a:hover { color: var(--white); }
.footer__credit strong { font-weight: 700; letter-spacing: .1em; }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .servicios__intro { max-width: 100%; }
  .srv-block { grid-template-columns: 1fr; gap: var(--sp-5); }
  .srv-block__photos { grid-template-columns: repeat(2, 1fr); }
  .srv-block__photos img { height: 160px; }
  .pain__grid    { grid-template-columns: 1fr; gap: 1px; }
  .benefits__grid{ grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item     { border-right: none; border-bottom: 1px solid var(--white-06); padding: var(--sp-5) 0; }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }

  .nav__links  { display: none; }
  .nav__burger { display: flex; }

  .hero__headline { font-size: clamp(1.8rem, 7vw, 3rem); line-height: .92; }

  .pain__grid    { grid-template-columns: 1fr; }
  .pain__item    { padding: var(--sp-6) var(--sp-4); }

  .benefits__grid{ grid-template-columns: 1fr; }

  .testi-grid    { grid-template-columns: 1fr; gap: 0; }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); }

  .srv-block__photos { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { align-items: center; }
  .footer__brand p { max-width: 100%; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }

  /* Min 64px vertical spacing on mobile */
  .pain, .value-prop, .servicios, .benefits, .testimonios, .faq, .cta-band {
    padding: var(--sp-10) 0; /* 80px — above 64px threshold */
  }
  .stats-section { padding: var(--sp-8) 0; }
  .cta-inline { padding: var(--sp-8) 0; }
  .section-header { margin-bottom: var(--sp-8); }
}

@media (max-width: 480px) {
  .hero__ctas  { flex-direction: column; align-items: stretch; }
  .benefits__grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION
   All animations and transitions killed globally
   ════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  /* Kill all transitions and animations */
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  /* Show all hidden elements */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__eyebrow,
  .hero__headline,
  .hero__sub,
  .hero__ctas,
  .hero__scroll-hint {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Stop the marquee */
  .marquee-belt__track { animation: none; }
  /* Stop pulsing scroll line */
  .hero__scroll-line { animation: none; opacity: .5; }
  /* Stop film grain animation if any */
  body::before { display: none; }
}

/* ─── Floating WhatsApp button ─── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9000;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: none;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
}
.wa-float svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: #fff;
}
/* pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (hover:none) { .wa-float { cursor: auto; } }
@media (max-width: 768px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 3rem; height: 3rem; }
}

/* ════════════════════════════════════════════════
   BOOKING FORM
   ════════════════════════════════════════════════ */
.booking {
  padding: var(--sp-20) 0;
  background: #080808;
  border-top: 1px solid var(--white-06);
}
.booking__header { margin-bottom: var(--sp-10); max-width: 640px; }
.booking__sub {
  font-size: .85rem; line-height: 1.8;
  color: var(--white-40); font-weight: 300;
  margin-top: var(--sp-3); max-width: 50ch;
}
.booking__form {
  display: flex; flex-direction: column; gap: 1.4rem;
  max-width: 820px;
}
.bf-row { display: grid; gap: 1.1rem; }
.bf-row--2 { grid-template-columns: 1fr 1fr; }
.bf-field { display: flex; flex-direction: column; gap: .45rem; }
.bf-field label,
.bf-label-block {
  font-size: .56rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--white-40);
}
.bf-field input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .35rem;
  color: var(--white);
  font-family: var(--font);
  font-size: .85rem;
  padding: .82rem 1rem;
  width: 100%;
  transition: border-color .2s ease, background .2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.bf-field input:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,.06);
}
.bf-field input::placeholder { color: rgba(255,255,255,.18); }
.bf-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.35); cursor: pointer;
}
.bf-field input.bf-error {
  border-color: rgba(220,70,70,.65);
  background: rgba(220,70,70,.05);
}

/* Event type radio pills */
.bf-types { display: flex; flex-direction: column; gap: .45rem; margin-top: .2rem; }
.bf-type {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1.1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .35rem;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
  user-select: none;
}
.bf-type:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.03); }
.bf-type input[type="radio"] { display: none; }
.bf-type__dot {
  width: 1rem; height: 1rem; flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease;
}
.bf-type__dot::after {
  content: '';
  width: .45rem; height: .45rem;
  border-radius: 50%;
  background: var(--pink);
  transform: scale(0);
  transition: transform .2s var(--ease-snap);
}
.bf-type:has(input:checked) { border-color: var(--pink); background: rgba(220,120,160,.07); }
.bf-type:has(input:checked) .bf-type__dot { border-color: var(--pink); }
.bf-type:has(input:checked) .bf-type__dot::after { transform: scale(1); }
.bf-type span { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 300; transition: color .2s ease; }
.bf-type:has(input:checked) span { color: var(--white); }
.bf-type.bf-type--error { border-color: rgba(220,70,70,.6); }

/* Submit row */
.bf-submit { padding-top: .5rem; }
.bf-submit button:disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Success state */
.booking__success {
  display: none; opacity: 0;
  justify-content: center; align-items: center;
  padding: var(--sp-14) 0;
  text-align: center;
  transition: opacity .5s ease;
}
.booking__success.is-visible { opacity: 1; }
.booking__success-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
}
.booking__success-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  border: 2px solid var(--pink);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  animation: successPop .5s var(--ease-snap) both;
}
@keyframes successPop {
  0%   { transform: scale(.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.booking__success-msg {
  font-size: 1.15rem; line-height: 1.65;
  color: var(--white-72); font-weight: 300;
}
.booking__success-msg strong { color: var(--white); font-weight: 700; display: block; margin-top: .3rem; }
.btn--wa-success {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: #fff;
  font-family: var(--font); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .75rem 1.6rem; border-radius: 2rem;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.btn--wa-success:hover { background: #1ebe5d; transform: translateY(-2px); }
.booking__success-hint {
  font-size: .72rem; color: var(--white-15);
  font-weight: 300; margin-top: -.5rem;
}

@media (max-width: 640px) {
  .bf-row--2 { grid-template-columns: 1fr; }
}
