/* ═══════════════════════════════════════════════
   RASEC — Fitness Coach & Life Coach
   Shared stylesheet
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lime:   #C8FF00;
  --lime2:  #a8d800;
  --dark:   #080808;
  --card:   #101010;
  --card2:  #161616;
  --muted:  #666;
  --white:  #FFFFFF;
  --radius: 20px;
  --teal:   #0D9B8A;
  --teal2:  #0A7A6B;
  --focus-ring: 0 0 0 3px rgba(255,255,255,.18), 0 0 0 6px rgba(200,255,0,.35);
  --focus-ring-teal: 0 0 0 3px rgba(255,255,255,.18), 0 0 0 6px rgba(13,155,138,.35);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

main[id],
section[id],
div[id] {
  scroll-margin-top: 96px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  animation: pageIn .55s ease both;
}

body.is-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 84px;
  }

  main[id],
  section[id],
  div[id] {
    scroll-margin-top: 84px;
  }
}

@keyframes pageIn { from { opacity: 0 } to { opacity: 1 } }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 12000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .04em;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.link-accent--lime { color: var(--lime) !important; }
.link-accent--teal { color: var(--teal) !important; }
.text-strong { color: var(--white); }
.label--dark { color: rgba(0,0,0,.48); }

/* ── PROGRESS BAR ─────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--lime2));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── NAV ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 200;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(8,8,8,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .3s;
}

.nav__logo-img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(200,255,0,.55));
  transition: filter .3s;
}
.nav__logo-img:hover {
  filter: brightness(0) saturate(100%) invert(93%) sepia(60%) saturate(700%)
          hue-rotate(48deg) brightness(110%) drop-shadow(0 0 10px rgba(200,255,0,.7));
}

.nav__right { display: flex; align-items: center; gap: 16px; }

.nav__links { display: none; list-style: none; gap: 22px; flex-wrap: wrap; }
@media (min-width: 700px) { .nav__links { display: flex; } }

.nav__links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--lime); }

.nav__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: blink 1.8s infinite;
  flex-shrink: 0;
}
.nav__dot--teal {
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .3; transform: scale(1.5); }
}

/* Hamburger */
.nav__burger {
  display: flex; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
@media (min-width: 700px) { .nav__burger { display: none; } }
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .35s ease;
}
.mobile-menu.open { transform: none; visibility: visible; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; letter-spacing: .06em;
  color: var(--white); text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--lime); }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-weight: 700; font-size: .84rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; border: none;
}
.btn:active { transform: scale(.95); }

.btn--lime {
  background: var(--lime); color: var(--dark);
  box-shadow: 0 0 30px rgba(200,255,0,.3);
}
.btn--lime:hover { box-shadow: 0 0 50px rgba(200,255,0,.5); transform: translateY(-2px); }

.btn--teal {
  background: var(--teal); color: var(--white);
  box-shadow: 0 0 28px rgba(13,155,138,.3);
}
.btn--teal:hover { box-shadow: 0 0 50px rgba(13,155,138,.52); transform: translateY(-2px); }

.btn--outline {
  border: 1.5px solid rgba(255,255,255,.2);
  color: var(--white);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.04);
}
.btn--outline:hover { border-color: rgba(255,255,255,.4); transform: translateY(-2px); }

.btn--outline-lime {
  border-color: rgba(200,255,0,.26);
  color: var(--lime);
  background: rgba(200,255,0,.08);
}
.btn--outline-lime:hover {
  border-color: rgba(200,255,0,.5);
  box-shadow: 0 0 34px rgba(200,255,0,.14);
}

.btn--outline-teal {
  border-color: rgba(13,155,138,.28);
  color: var(--teal);
  background: rgba(13,155,138,.09);
}
.btn--outline-teal:hover {
  border-color: rgba(13,155,138,.5);
  box-shadow: 0 0 34px rgba(13,155,138,.16);
}

.action-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SECTION ──────────────────────────────────── */
.section {
  padding: 80px 24px;
  max-width: 720px;
  margin: 0 auto;
}
.section--wide { max-width: 1000px; }
.section--full { max-width: none; }

/* ── ABOUT SECTION (wider, for bio + carousel) ── */
.about-section {
  padding: 80px clamp(24px, 6vw, 90px);
  max-width: 1200px;
  margin: 0 auto;
}

.label {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 10px;
}

.heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  line-height: .97; letter-spacing: .03em;
}
.heading span { color: var(--lime); }

.body-text {
  font-size: .88rem; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,.68);
  margin-top: 16px;
}

.divider {
  width: 44px; height: 3px;
  background: var(--lime); border-radius: 4px;
  margin: 18px 0;
  position: relative; overflow: hidden;
}
.divider::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  animation: divShimmer 3.2s ease-in-out infinite;
}
@keyframes divShimmer { to { left: 200% } }

/* ── ABOUT ────────────────────────────────────── */
.about__grid {
  display: grid; gap: 48px;
  align-items: center; margin-top: 40px;
}
@media (min-width: 768px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}
.about__grid--stacked { grid-template-columns: 1fr !important; }
@media (max-width: 767px) {
  .about__grid--mobile-flip .about__grid-carousel { order: -1; }
  .about__grid--mobile-flip .about__grid-text    { order: 1; }
}
.about__img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: var(--radius);
  border: 1.5px solid rgba(200,255,0,.15); display: block;
}
.about__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.badge {
  background: rgba(200,255,0,.08);
  border: 1px solid rgba(200,255,0,.25);
  color: var(--lime); font-size: .68rem;
  font-weight: 600; padding: 6px 14px;
  border-radius: 100px; letter-spacing: .04em;
}

/* ── STATS ────────────────────────────────────── */
.stats-bar {
  background: var(--card);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 40px 24px;
}
.stats-inner {
  max-width: 800px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 600px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { text-align: center; padding: 24px 12px; border-right: 1px solid rgba(255,255,255,.06); }
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 8vw, 3.4rem);
  line-height: 1; color: var(--lime);
}
.stat-item__label {
  font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.45); margin-top: 6px;
}

/* ── HOME INTRO ──────────────────────────────── */
.home-intro {
  padding: 84px 24px;
  background:
    radial-gradient(circle at top left, rgba(200,255,0,.08) 0%, transparent 34%),
    radial-gradient(circle at bottom right, rgba(13,155,138,.08) 0%, transparent 38%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.home-intro__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
  align-items: start;
}

@media (min-width: 880px) {
  .home-intro__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  }
}

.home-intro__copy .body-text {
  max-width: 52ch;
}

.home-intro__actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-proof {
  display: grid;
  gap: 14px;
}

@media (min-width: 600px) {
  .home-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-proof__item {
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 22px 20px;
  min-height: 164px;
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  position: relative;
  overflow: hidden;
}

.home-proof__item::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 50%, rgba(255,255,255,0) 100%);
  opacity: .6;
}

.home-proof__item--lime {
  border-color: rgba(200,255,0,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.28), 0 0 0 1px rgba(200,255,0,.05);
}

.home-proof__item--teal {
  border-color: rgba(13,155,138,.2);
  box-shadow: 0 24px 60px rgba(0,0,0,.28), 0 0 0 1px rgba(13,155,138,.05);
}

.home-proof__eyebrow {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

.home-proof__value {
  display: block;
  margin-top: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  line-height: .9;
  letter-spacing: .04em;
  color: var(--white);
}

.home-proof__item--lime .home-proof__value {
  color: var(--lime);
}

.home-proof__item--teal .home-proof__value {
  color: var(--teal);
}

.home-proof__text {
  margin-top: 12px;
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
}

/* ── QUOTE ────────────────────────────────────── */
.quote-banner {
  padding: 90px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.quote-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,255,0,.07) 0%, transparent 70%);
}
.quote-banner__bg-logo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: min(340px, 75vw); opacity: .04;
  filter: brightness(0) invert(1); pointer-events: none;
}
.quote-banner__text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 12vw, 6rem);
  line-height: .97; letter-spacing: .04em;
  position: relative; z-index: 1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(.16,1,.3,1);
}
.quote-banner__text.visible { clip-path: inset(0 0% 0 0); }
.quote-banner__text span { color: var(--lime); }
.quote-banner__sub {
  font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 18px; position: relative; z-index: 1;
}

/* ── SERVICES ─────────────────────────────────── */
.services-grid { display: grid; gap: 20px; margin-top: 44px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.7), 0 0 0 1px rgba(200,255,0,.2);
}
.service-card__img-wrap { position: relative; overflow: hidden; }
.service-card__img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
  filter: brightness(.55) saturate(1.1);
  transition: filter .4s, transform .4s;
}
.service-card:hover .service-card__img {
  filter: brightness(.7) saturate(1.2); transform: scale(1.04);
}
.service-card__num {
  position: absolute; bottom: 10px; right: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; line-height: 1;
  color: rgba(200,255,0,.18); letter-spacing: .02em;
}
.service-card__body { padding: 22px; flex: 1; }
.service-card__icon { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.service-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem; letter-spacing: .04em;
  color: var(--lime); line-height: 1;
}
.service-card__desc {
  font-size: .81rem; color: rgba(255,255,255,.6);
  line-height: 1.7; margin-top: 8px;
}
.service-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .65rem; font-weight: 600;
  color: rgba(255,255,255,.65);
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .06em;
}

/* ── ACCORDION ────────────────────────────────── */
.details { margin-top: 48px; }
.detail-block {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; overflow: hidden;
  margin-bottom: 12px; background: var(--card2);
}
.detail-block summary {
  cursor: pointer; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .88rem;
  list-style: none; user-select: none; gap: 12px;
}
.detail-block summary::-webkit-details-marker { display: none; }
.detail-icon {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(200,255,0,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-size: 1.1rem; font-weight: 300;
  flex-shrink: 0; transition: transform .25s, background .25s; line-height: 1;
}
.detail-block[open] .detail-icon { transform: rotate(45deg); background: rgba(200,255,0,.1); }
.detail-block__body {
  padding: 4px 22px 20px; font-size: .83rem;
  line-height: 1.8; color: rgba(255,255,255,.6);
}
.detail-block__body ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.detail-block__body li::before { content: '▸ '; color: var(--lime); }

/* ── PROCESS ──────────────────────────────────── */
.process-section {
  background: var(--card);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.process-inner { padding: 80px 24px; max-width: 860px; margin: 0 auto; }
.process-steps { display: grid; gap: 20px; margin-top: 44px; }
@media (min-width: 600px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  background: var(--dark); border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px; padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: border-color .3s;
}
.step:hover { border-color: rgba(200,255,0,.3); }
.step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
}
.step__num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
  line-height: 1; color: rgba(200,255,0,.12);
  position: absolute; top: 12px; right: 16px; letter-spacing: .02em;
}
.step__icon { font-size: 1.8rem; margin-bottom: 12px; }
.step__title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .04em; color: var(--white); line-height: 1.1; }
.step__desc { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-top: 8px; }

/* ── BENEFITS STRIP ───────────────────────────── */
.benefits-strip {
  background: var(--lime); color: var(--dark);
  padding: 64px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.benefits-strip::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(0,0,0,.03) 40px,rgba(0,0,0,.03) 80px);
}
.benefits-strip .heading { color: var(--dark); position: relative; z-index: 1; }
.benefits-strip .label  { color: rgba(0,0,0,.4); position: relative; z-index: 1; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 36px; max-width: 720px;
  margin-left: auto; margin-right: auto; position: relative; z-index: 1;
}
@media (min-width: 600px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-item {
  background: rgba(0,0,0,.08); border-radius: 16px;
  padding: 24px 12px; border: 1px solid rgba(0,0,0,.08);
}
.benefit-item__num { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; line-height: 1; }
.benefit-item__text { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-top: 6px; opacity: .75; }

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials-section { padding: 80px 24px; max-width: 1000px; margin: 0 auto; }
.testimonials-scroll { display: grid; gap: 16px; margin-top: 40px; }
@media (min-width: 640px) { .testimonials-scroll { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .testimonials-scroll { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--card2); border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 28px;
  transition: border-color .3s, transform .3s;
  position: relative;
}
.testimonial-card:hover { border-color: rgba(200,255,0,.2); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 20px;
  font-family: 'Bebas Neue', sans-serif; font-size: 5rem;
  line-height: 1; color: rgba(200,255,0,.08);
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star {
  width: 14px; height: 14px; background: var(--lime);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.testimonial-card__text { font-size: .84rem; font-style: italic; line-height: 1.75; color: rgba(255,255,255,.65); }
.testimonial-card__author { margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(200,255,0,.15); border: 1.5px solid rgba(200,255,0,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
  color: var(--lime); flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .82rem; color: var(--white); }
.author-role { font-size: .72rem; color: var(--muted); }

/* ── GALLERY ──────────────────────────────────── */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense; gap: 6px; margin-top: 0;
}
.gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.04);
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s, filter .45s, opacity .3s;
  filter: brightness(.85) saturate(.9);
  opacity: 0;
}
.gallery__item img.loaded { opacity: 1; }
.gallery__item:hover img { transform: scale(1.07); filter: brightness(1) saturate(1.15); }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; aspect-ratio: 1; }
}

/* ── LIGHTBOX ─────────────────────────────────── */
.lb {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.lb.open { opacity: 1; pointer-events: auto; }
.lb__img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 0 80px rgba(0,0,0,.8);
  transform: scale(.92);
  transition: transform .4s cubic-bezier(.25,1,.5,1);
}
.lb.open .lb__img { transform: scale(1); }
.lb__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb__close:hover { background: rgba(255,255,255,.18); }
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: #fff; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb__nav:hover { background: rgba(200,255,0,.15); border-color: rgba(200,255,0,.3); }
.lb__nav--prev { left: 16px; }
.lb__nav--next { right: 16px; }
.lb__caption {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(90vw, 620px);
  text-align: center;
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

/* ── INSTAGRAM CTA ────────────────────────────── */
.insta-section {
  padding: 72px 24px; text-align: center;
  background: linear-gradient(180deg, var(--dark) 0%, #0a0f00 50%, var(--dark) 100%);
}
.insta-section--featured {
  position: relative;
  overflow: hidden;
}
.insta-section .heading { font-size: clamp(2rem, 8vw, 3.5rem); }
.insta-section__content {
  position: relative;
  z-index: 1;
}
.insta-section__text {
  max-width: 420px;
  margin: 12px auto 0;
}
.insta-section__actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.insta-handle {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,255,0,.08); border: 1px solid rgba(200,255,0,.25);
  border-radius: 100px; padding: 12px 24px;
  color: var(--lime); font-weight: 700; font-size: .9rem;
  letter-spacing: .06em; text-decoration: none;
  margin-top: 20px; transition: background .2s, transform .2s;
}
.insta-handle:hover { background: rgba(200,255,0,.15); transform: scale(1.04); }
.insta-handle svg { flex-shrink: 0; }
.insta-handle--flush { margin-top: 0; }
.insta-handle--spaced { margin-top: 32px; }

/* ── PAYMENT ──────────────────────────────────── */
.payment-section { padding: 80px 24px; max-width: 860px; margin: 0 auto; }
.payment-grid { display: grid; gap: 14px; margin-top: 32px; }
@media (min-width: 600px) { .payment-grid { grid-template-columns: repeat(3, 1fr); } }

.payment-card {
  background: var(--card2); border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 28px 24px 24px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
}
.payment-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--lime), transparent);
  opacity: 0; transition: opacity .3s;
}
.payment-card:hover {
  border-color: rgba(200,255,0,.25); transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 20px rgba(200,255,0,.06);
}
.payment-card:hover::before { opacity: 1; }
.payment-card__logo-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 72px; padding: 10px 14px; border-radius: 10px; margin-bottom: 18px;
}
.payment-card--yape .payment-card__logo-wrap { background: transparent; padding: 0; }
.payment-card--bbva .payment-card__logo-wrap { background: #ffffff; }
.payment-card--bcp  .payment-card__logo-wrap { background: #003087; }
.payment-card--yape .payment-card__logo { height: 48px; width: auto; }
.payment-card--bbva .payment-card__logo { height: 32px; width: auto; }
.payment-card--bcp  .payment-card__logo { height: 36px; width: auto; }
.payment-card__logo { height: 36px; width: auto; max-width: 110px; object-fit: contain; object-position: left center; margin-bottom: 18px; display: block; }
.payment-card__name { font-weight: 700; font-size: .78rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.payment-card__number { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .08em; color: var(--white); margin-bottom: 6px; line-height: 1; }
.payment-card__detail { font-size: .74rem; color: rgba(255,255,255,.35); line-height: 1.7; flex: 1; }
.payment-card__cci { font-size: .68rem; color: rgba(255,255,255,.2); margin-top: 4px; line-height: 1.5; }
.payment-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
@media (max-width: 480px) {
  .payment-card__actions { flex-direction: column; }
  .payment-card__actions .copy-btn { width: 100%; justify-content: center; }
}

.copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,255,0,.07);
  border: 1px solid rgba(200,255,0,.18); color: var(--lime);
  font-size: .67rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 100px;
  cursor: pointer; transition: background .2s, border-color .2s;
  font-family: inherit; width: fit-content;
}
.copy-btn:hover { background: rgba(200,255,0,.14); border-color: rgba(200,255,0,.35); }
.copy-btn--secondary {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
}
.copy-btn--secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.24);
}
.copy-btn.is-copied {
  background: rgba(200,255,0,.25);
  border-color: rgba(200,255,0,.45);
  color: var(--dark);
}
.copy-btn.is-error {
  background: rgba(255,95,95,.14);
  border-color: rgba(255,95,95,.44);
  color: #ffb4b4;
}

.payment-note {
  margin-top: 48px;
  text-align: center;
}
.payment-note__text {
  max-width: 420px;
  margin: 0 auto;
}
.payment-note__cta {
  margin-top: 24px;
}

/* ── CTA FINAL ────────────────────────────────── */
.cta-final {
  padding: 90px 24px 110px; text-align: center;
  background: linear-gradient(170deg, #0a0f00 0%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(200,255,0,.07) 0%, transparent 70%);
}
.cta-final .heading { font-size: clamp(3rem, 11vw, 5rem); position: relative; }
.cta-final__desc { font-size: .9rem; color: rgba(255,255,255,.5); margin: 14px auto 36px; max-width: 420px; line-height: 1.7; position: relative; }
.cta-final__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-final__actions .btn {
  min-width: 180px;
  justify-content: center;
}
.cta-final__meta {
  margin-top: 22px;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .1em;
  position: relative;
}

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: var(--dark);
  font-weight: 800; font-size: .95rem;
  padding: 18px 38px; border-radius: 100px;
  text-decoration: none; box-shadow: 0 0 50px rgba(200,255,0,.25);
  transition: transform .25s, box-shadow .25s;
  letter-spacing: .05em; text-transform: uppercase; position: relative;
}
.whatsapp-btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 0 80px rgba(200,255,0,.5); }
.whatsapp-btn--teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 0 50px rgba(13,155,138,.25);
}
.whatsapp-btn--teal:hover {
  box-shadow: 0 0 80px rgba(13,155,138,.4);
}

/* ── FLOATING WHATSAPP ────────────────────────── */
.float-wa {
  position: fixed; bottom: 28px; right: 20px; z-index: 300;
  width: 58px; height: 58px; background: var(--lime);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.4), 0 0 0 0 rgba(200,255,0,.5);
  text-decoration: none; animation: ring 2.5s infinite; transition: transform .2s;
}
.float-wa:hover { transform: scale(1.12); }
.float-wa--teal {
  background: var(--teal);
  animation-name: ring-teal;
}
@keyframes ring {
  0%   { box-shadow: 0 4px 20px rgba(0,0,0,.4), 0 0 0 0 rgba(200,255,0,.6); }
  70%  { box-shadow: 0 4px 20px rgba(0,0,0,.4), 0 0 0 16px rgba(200,255,0,0); }
  100% { box-shadow: 0 4px 20px rgba(0,0,0,.4), 0 0 0 0 rgba(200,255,0,0); }
}
@keyframes ring-teal {
  0%   { box-shadow: 0 4px 20px rgba(0,0,0,.4), 0 0 0 0 rgba(13,155,138,.7); }
  70%  { box-shadow: 0 4px 20px rgba(0,0,0,.4), 0 0 0 16px rgba(13,155,138,0); }
  100% { box-shadow: 0 4px 20px rgba(0,0,0,.4), 0 0 0 0 rgba(13,155,138,0); }
}
.float-wa svg { width: 28px; height: 28px; }

/* ── PAGE HEADER ──────────────────────────────── */
.page-header {
  padding: 120px 24px 60px;
  text-align: center;
  background: linear-gradient(170deg, #0a0f00 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(200,255,0,.07) 0%, transparent 70%);
}
.page-header > * {
  position: relative;
  z-index: 1;
}
.page-header__text {
  max-width: 420px;
  margin: 12px auto 0;
}

/* ── FOOTER ───────────────────────────────────── */
footer.site-footer {
  background:
    radial-gradient(circle at top left, rgba(200,255,0,.08) 0%, transparent 28%),
    radial-gradient(circle at top right, rgba(13,155,138,.08) 0%, transparent 26%),
    linear-gradient(180deg, #030303 0%, #070707 100%);
  padding: 44px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, .75fr));
    align-items: start;
  }
}
.site-footer__brand {
  max-width: 36ch;
}
.site-footer__logo {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(200,255,0,.14));
  margin-bottom: 18px;
}
.site-footer__lead {
  font-size: .82rem;
  color: rgba(255,255,255,.58);
  letter-spacing: .03em;
  line-height: 1.85;
}
.site-footer__title {
  margin-bottom: 14px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__links a {
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-size: .82rem;
  line-height: 1.5;
  transition: color .2s ease, transform .2s ease;
}
.site-footer__links a:hover {
  color: var(--white);
  transform: translateX(2px);
}
.site-footer__link--fitness { color: rgba(200,255,0,.9) !important; }
.site-footer__link--life { color: rgba(13,155,138,.95) !important; }
.site-footer__bottom {
  max-width: 1200px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 22px;
}
.site-footer__meta {
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .06em;
  line-height: 1.7;
}
.site-footer__meta span { color: var(--lime); }
.footer__service--life { color: var(--teal); }
@media (max-width: 899px) {
  footer.site-footer {
    padding: 40px 20px 24px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── FADE IN ──────────────────────────────────── */
[data-fade] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-fade="left"]  { transform: translateX(-36px); }
[data-fade="right"] { transform: translateX(36px); }
[data-fade="scale"] { transform: scale(.92); opacity: 0; }
[data-fade].visible,
[data-fade="left"].visible,
[data-fade="right"].visible,
[data-fade="scale"].visible { opacity: 1; transform: none; }

/* ── STAGGER GRID ─────────────────────────────── */
[data-stagger] > * { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
[data-stagger].visible > * { opacity: 1; transform: none; }
[data-stagger].visible > *:nth-child(1) { transition-delay: .05s }
[data-stagger].visible > *:nth-child(2) { transition-delay: .15s }
[data-stagger].visible > *:nth-child(3) { transition-delay: .25s }
[data-stagger].visible > *:nth-child(4) { transition-delay: .35s }
[data-stagger].visible > *:nth-child(5) { transition-delay: .42s }
[data-stagger].visible > *:nth-child(6) { transition-delay: .49s }
[data-stagger].visible > *:nth-child(7) { transition-delay: .54s }
[data-stagger].visible > *:nth-child(8) { transition-delay: .59s }

/* ── TICKER ───────────────────────────────────── */
.ticker { background: var(--lime); padding: 13px 0; overflow: hidden; position: relative; z-index: 5; }
.ticker__track { display: flex; width: max-content; animation: tickerRoll 24s linear infinite; }
.ticker__track:hover { animation-play-state: paused; }
@keyframes tickerRoll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.ticker__item {
  white-space: nowrap; padding: 0 26px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: .13em; color: var(--dark);
  display: flex; align-items: center; gap: 12px;
}
.ticker__item::after { content: '✦'; opacity: .3; font-size: .75rem; }
.ticker--teal { background: var(--teal); }

/* ── HERO SCROLL INDICATOR ────────────────────── */
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 30;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.hero__scroll-line {
  width: 1.5px; height: 48px;
  background: linear-gradient(to bottom, rgba(200,255,0,.8), transparent);
  animation: scrollLine 1.7s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1 }
  60%  { transform: scaleY(1); transform-origin: top; opacity: 1 }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0 }
}
.hero__scroll-label { font-size: .57rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.3); }

/* ── SERVICE BRAND DIVIDER ─────────────────────── */
.service-divider {
  padding: 100px 24px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.service-divider--fitness {
  background: linear-gradient(135deg, #090e00 0%, #080808 50%, #0a0f00 100%);
  border-top: 1px solid rgba(200,255,0,.1); border-bottom: 1px solid rgba(200,255,0,.05);
}
.service-divider--life {
  background: linear-gradient(135deg, #001a16 0%, #080808 50%, #001210 100%);
  border-top: 1px solid rgba(13,155,138,.12); border-bottom: 1px solid rgba(13,155,138,.05);
}
.service-divider__glow { position: absolute; inset: 0; pointer-events: none; }
.service-divider--fitness .service-divider__glow { background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,255,0,.08) 0%, transparent 65%); }
.service-divider--life    .service-divider__glow { background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(13,155,138,.09) 0%, transparent 65%); }
.service-divider__eyebrow { font-size: .6rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 10px; position: relative; z-index: 1; }
.service-divider__name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.2rem, 10vw, 6rem); line-height: .9; letter-spacing: .06em; position: relative; z-index: 1; }
.service-divider--fitness .service-divider__name { color: var(--lime); }
.service-divider--life    .service-divider__name { color: var(--teal); }
.service-divider__sub { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-top: 10px; position: relative; z-index: 1; }

/* ── LIFE COACH TEAL THEME ─────────────────────── */
.lc .label        { color: var(--teal); }
.lc .heading span { color: var(--teal); }
.lc .divider      { background: var(--teal); }
.lc .badge { background: rgba(13,155,138,.08); border-color: rgba(13,155,138,.25); color: var(--teal); }
.lc .service-card__title  { color: var(--teal); }
.lc .service-card__num    { color: rgba(13,155,138,.18); }
.lc .service-card:hover   { box-shadow: 0 24px 60px rgba(0,0,0,.7), 0 0 0 1px rgba(13,155,138,.22); }
.lc .detail-icon                     { border-color: rgba(13,155,138,.4); color: var(--teal); }
.lc .detail-block[open] .detail-icon { background: rgba(13,155,138,.1); }
.lc .detail-block__body li::before   { color: var(--teal); }
.lc .step::before  { background: linear-gradient(90deg, var(--teal), transparent); }
.lc .step__num     { color: rgba(13,155,138,.12); }
.lc .step:hover    { border-color: rgba(13,155,138,.3); }
.lc .testimonial-card:hover   { border-color: rgba(13,155,138,.2); }
.lc .testimonial-card::before { color: rgba(13,155,138,.08); }
.lc .star         { background: var(--teal); }
.lc .author-avatar { background: rgba(13,155,138,.15); border-color: rgba(13,155,138,.3); color: var(--teal); }
.benefits-strip--teal { background: var(--teal); }
.quote-banner--teal::before { background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(13,155,138,.07) 0%, transparent 70%); }
.quote-banner--teal .quote-banner__text span { color: var(--teal); }
.cta-final--teal {
  background: linear-gradient(170deg, #001a16 0%, var(--dark) 100%);
}
.cta-final--teal::before {
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(13,155,138,.09) 0%, transparent 70%);
}
.heading--teal span { color: var(--teal); }
.heading--dark { color: var(--dark); }

/* ── HERO MODALS ──────────────────────────────── */
.hero-modal {
  position: fixed; inset: 0; z-index: 600;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease; overflow-y: auto;
}
.hero-modal.open { opacity: 1; pointer-events: auto; }
.hero-modal__bg {
  position: fixed; inset: 0; background-size: cover; background-position: center;
  filter: brightness(.22) saturate(1.2); transform: scale(1.06);
  transition: transform .75s cubic-bezier(.25,1,.5,1), filter .5s;
}
.hero-modal--fitness .hero-modal__bg { background-image: url('../img/fotoConClientesCorporativos2.png'); }
.hero-modal--life .hero-modal__bg { background-image: url('../img/imagen28.jpg'); }
.hero-modal.open .hero-modal__bg { transform: scale(1); filter: brightness(.3) saturate(1.2); }
.hero-modal__shade { position: fixed; inset: 0; background: linear-gradient(to top, rgba(8,8,8,.97) 0%, rgba(8,8,8,.55) 55%, rgba(8,8,8,.3) 100%); }
.hero-modal__close {
  position: fixed; top: 20px; right: 20px; z-index: 10;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: var(--white); font-size: 1.25rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; font-family: inherit;
}
.hero-modal__close:hover { background: rgba(255,255,255,.15); transform: scale(1.1); }
.hero-modal__inner {
  position: relative; z-index: 5; width: 100%;
  max-width: 900px; padding: 80px 24px 60px; text-align: center;
}
.hero-modal__eyebrow {
  font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 10px; display: block;
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease .1s, transform .5s ease .1s;
}
.hero-modal.open .hero-modal__eyebrow { opacity: 1; transform: none; }
.hero-modal--fitness .hero-modal__eyebrow { color: var(--lime); }
.hero-modal--life    .hero-modal__eyebrow { color: var(--teal); }
.hero-modal__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem); line-height: .9; letter-spacing: .04em; margin-bottom: 12px;
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s ease .2s, transform .5s ease .2s;
}
.hero-modal.open .hero-modal__title { opacity: 1; transform: none; }
.hero-modal--fitness .hero-modal__title span { color: var(--lime); text-shadow: 0 0 40px rgba(200,255,0,.5); }
.hero-modal--life    .hero-modal__title span { color: var(--teal); text-shadow: 0 0 40px rgba(13,155,138,.5); }
.hero-modal__sub {
  font-size: .76rem; font-weight: 300; color: rgba(255,255,255,.48);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 44px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease .3s, transform .5s ease .3s;
}
.hero-modal.open .hero-modal__sub { opacity: 1; transform: none; }
.hero-modal__cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-bottom: 40px;
  opacity: 0; transform: translateY(26px);
  transition: opacity .5s ease .38s, transform .5s ease .38s;
}
@media (max-width: 620px) { .hero-modal__cards { grid-template-columns: 1fr; } }
.hero-modal.open .hero-modal__cards { opacity: 1; transform: none; }
.hero-modal__card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 24px 18px; text-align: left;
  transition: border-color .3s, transform .3s;
}
.hero-modal__card:hover { transform: translateY(-4px); }
.hero-modal--fitness .hero-modal__card:hover { border-color: rgba(200,255,0,.25); }
.hero-modal--life    .hero-modal__card:hover { border-color: rgba(13,155,138,.25); }
.hero-modal__card-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.hero-modal__card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: .04em; margin-bottom: 7px; }
.hero-modal--fitness .hero-modal__card h3 { color: var(--lime); }
.hero-modal--life    .hero-modal__card h3 { color: var(--teal); }
.hero-modal__card p { font-size: .79rem; color: rgba(255,255,255,.52); line-height: 1.65; }
.hero-modal__cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease .5s, transform .5s ease .5s;
}
.hero-modal.open .hero-modal__cta { opacity: 1; transform: none; }

/* ── REELS SECTION ────────────────────────────── */
.reels-section { padding: 80px 24px; max-width: 1040px; margin: 0 auto; text-align: center; }
.aurora-orb--preview-left {
  width: 300px;
  height: 300px;
  top: -60px;
  left: -80px;
  opacity: .4;
}
.aurora-orb--preview-right {
  width: 250px;
  height: 250px;
  bottom: -40px;
  right: -60px;
  opacity: .35;
  animation-delay: -5s;
}
.aurora-orb--reels-left {
  width: 280px;
  height: 280px;
  top: -50px;
  left: -60px;
  opacity: .45;
}
.aurora-orb--reels-right {
  width: 240px;
  height: 240px;
  bottom: -40px;
  right: -50px;
  opacity: .4;
  animation-delay: -6s;
}
.reels-row {
  display: flex; gap: 20px; margin-top: 44px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding-bottom: 4px; justify-content: center;
}
.reels-row::-webkit-scrollbar { display: none; }
.reel-wrap {
  flex: 0 0 min(300px, 80vw); scroll-snap-align: center;
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07); background: #fff;
}
.reel-wrap .instagram-media {
  margin: 0 !important; min-width: unset !important;
  max-width: 100% !important; width: 100% !important;
  border-radius: 0 !important;
}

/* ── QUIZ SECTION ─────────────────────────────── */
.quiz-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--dark) 0%, #050900 50%, var(--dark) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.quiz-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,255,0,.06) 0%, transparent 70%);
}
.quiz-inner { position: relative; max-width: 660px; margin: 0 auto; }
.quiz-desc { font-size: .9rem; color: rgba(255,255,255,.48); margin-top: 16px; line-height: 1.75; }

.quiz-step { margin-top: 48px; animation: heroFadeUp .5s ease both; }
.quiz-step.hidden { display: none; }

.quiz-q {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.1rem); letter-spacing: .04em;
  margin-bottom: 24px; color: var(--white);
}

.quiz-options { display: flex; flex-direction: column; gap: 12px; }

.quiz-opt {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 18px 22px;
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: .88rem; font-weight: 600; text-align: left;
  cursor: pointer; transition: background .25s, border-color .25s, transform .2s;
  letter-spacing: .02em;
}
.quiz-opt:hover {
  background: rgba(200,255,0,.07);
  border-color: rgba(200,255,0,.45);
  transform: translateX(6px);
}
.quiz-opt.selected { background: rgba(200,255,0,.13); border-color: var(--lime); color: var(--lime); }

.quiz-progress { margin-top: 32px; height: 3px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--lime); border-radius: 4px; transition: width .4s cubic-bezier(.25,1,.5,1); width: 0%; }

.quiz-counter { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 14px; font-weight: 600; }

.quiz-result { margin-top: 44px; animation: heroFadeUp .6s ease both; }
.quiz-result.hidden { display: none; }
.quiz-result-card {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 44px 32px; text-align: center;
}
.quiz-result-card.fitness-result { border-color: rgba(200,255,0,.35); background: rgba(200,255,0,.03); }
.quiz-result-card.life-result    { border-color: rgba(13,155,138,.35); background: rgba(13,155,138,.03); }
.quiz-result__icon { font-size: 3.2rem; margin-bottom: 14px; }
.quiz-result__label { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.fitness-result .quiz-result__label { color: var(--lime); }
.life-result    .quiz-result__label { color: var(--teal); }
.quiz-result__title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 8vw, 3.5rem); letter-spacing: .04em; line-height: .95; margin-bottom: 14px; }
.fitness-result .quiz-result__title { color: var(--lime); }
.life-result    .quiz-result__title { color: var(--teal); }
.quiz-result__desc { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.75; margin: 0 auto 28px; max-width: 400px; }
.quiz-retry { background: none; border: none; color: rgba(255,255,255,.32); font-size: .78rem; cursor: pointer; margin-top: 18px; text-decoration: underline; font-family: inherit; display: block; margin-left: auto; margin-right: auto; }
.quiz-retry:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════
   SPLIT HERO
══════════════════════════════════════════════ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.split-hero {
  position: relative;
  min-height: 100svh;
  background: var(--dark);
  /* overflow handled per breakpoint */
  overflow: hidden;
}

.split-hero__half {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(64px, 8vh, 100px);
  overflow: hidden;
  transition: clip-path .8s cubic-bezier(.25,1,.5,1);
}

/* FITNESS — left diagonal */
.split-hero__half--fitness {
  z-index: 2;
  align-items: flex-start;
  padding-left:  clamp(24px, 5.5vw, 72px);
  padding-right: 54%;
  clip-path: polygon(0 0, 58% 0, 44% 100%, 0 100%);
}

/* LIFE — right diagonal */
.split-hero__half--life {
  z-index: 1;
  align-items: flex-end;
  text-align: right;
  padding-right: clamp(24px, 5.5vw, 72px);
  padding-left:  54%;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 44% 100%);
}

/* Hover: fitness expands */
.split-hero:has(.split-hero__half--fitness:hover) .split-hero__half--fitness,
.split-hero:has(.split-hero__half--fitness:focus-within) .split-hero__half--fitness {
  clip-path: polygon(0 0, 65% 0, 54% 100%, 0 100%);
}
.split-hero:has(.split-hero__half--fitness:hover) .split-hero__half--life,
.split-hero:has(.split-hero__half--fitness:focus-within) .split-hero__half--life {
  clip-path: polygon(65% 0, 100% 0, 100% 100%, 54% 100%);
}
/* Hover: life expands */
.split-hero:has(.split-hero__half--life:hover) .split-hero__half--fitness,
.split-hero:has(.split-hero__half--life:focus-within) .split-hero__half--fitness {
  clip-path: polygon(0 0, 51% 0, 36% 100%, 0 100%);
}
.split-hero:has(.split-hero__half--life:hover) .split-hero__half--life,
.split-hero:has(.split-hero__half--life:focus-within) .split-hero__half--life {
  clip-path: polygon(51% 0, 100% 0, 100% 100%, 36% 100%);
}

/* Atmospheric overlays */
.split-hero__half--fitness::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg,rgba(200,255,0,.07) 0%,transparent 40%,rgba(8,8,8,.55) 68%,rgba(200,255,0,.03) 100%);
  transition: background .6s;
}
.split-hero__half--life::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg,rgba(13,155,138,.08) 0%,transparent 40%,rgba(8,8,8,.55) 68%,rgba(13,155,138,.03) 100%);
  transition: background .6s;
}
.split-hero__half--fitness:hover::before,
.split-hero__half--fitness:focus-within::before { background: linear-gradient(160deg,rgba(200,255,0,.16) 0%,transparent 40%,rgba(8,8,8,.08) 68%,rgba(200,255,0,.09) 100%); }
.split-hero__half--life:hover::before,
.split-hero__half--life:focus-within::before { background: linear-gradient(160deg,rgba(13,155,138,.17) 0%,transparent 40%,rgba(8,8,8,.08) 68%,rgba(13,155,138,.09) 100%); }

/* Background photo */
.split-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(.32) saturate(1.1);
  pointer-events: none; transition: filter .7s, transform .8s;
}
.split-hero__half--fitness .split-hero__bg { object-position: 28% 55%; }
.split-hero__half--life    .split-hero__bg { object-position: 72% 55%; }
.split-hero__half:hover .split-hero__bg,
.split-hero__half:focus-within .split-hero__bg { filter: brightness(.52) saturate(1.45); transform: scale(1.05); }

/* Color glow */
.split-hero__glow { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.split-hero__half--fitness .split-hero__glow {
  background: radial-gradient(ellipse 100% 60% at 18% 118%, rgba(200,255,0,.44) 0%, transparent 52%),
              radial-gradient(ellipse 28% 18% at 4% 3%, rgba(200,255,0,.06) 0%, transparent 50%);
}
.split-hero__half--life .split-hero__glow {
  background: radial-gradient(ellipse 100% 60% at 82% 118%, rgba(13,155,138,.46) 0%, transparent 52%),
              radial-gradient(ellipse 28% 18% at 96% 3%, rgba(13,155,138,.07) 0%, transparent 50%);
}

/* Content block */
.split-hero__content {
  position: relative; z-index: 5;
  max-width: min(360px, 36vw);
  transition: transform .45s cubic-bezier(.25,1,.5,1);
}
.split-hero__half:hover .split-hero__content,
.split-hero__half:focus-within .split-hero__content { transform: translateY(-10px); }

/* Tag */
.split-hero__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
  backdrop-filter: blur(8px); animation: heroFadeUp .7s ease both;
}
.split-hero__half--fitness .split-hero__tag {
  background: rgba(200,255,0,.1); border: 1px solid rgba(200,255,0,.42);
  color: var(--lime); animation-delay: .25s;
}
.split-hero__half--life .split-hero__tag {
  background: rgba(13,155,138,.1); border: 1px solid rgba(13,155,138,.42);
  color: var(--teal); animation-delay: .5s;
}

/* Title */
.split-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 5vw, 7rem);
  line-height: .86; letter-spacing: .02em;
  animation: heroFadeUp .7s ease both;
}
.split-hero__half--fitness .split-hero__title { animation-delay: .4s; }
.split-hero__half--life    .split-hero__title { animation-delay: .65s; }
.split-hero__half--fitness .split-hero__title .accent { color: var(--lime); text-shadow: 0 0 45px rgba(200,255,0,.55); }
.split-hero__half--life    .split-hero__title .accent { color: var(--teal); text-shadow: 0 0 45px rgba(13,155,138,.55); }

/* Subtitle */
.split-hero__sub {
  font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.45);
  margin-top: 12px; letter-spacing: .1em; text-transform: uppercase;
  line-height: 1.7; animation: heroFadeUp .7s ease both;
}
.split-hero__half--fitness .split-hero__sub { animation-delay: .54s; }
.split-hero__half--life    .split-hero__sub { animation-delay: .79s; }

/* CTA buttons */
.split-hero__cta {
  margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap;
  animation: heroFadeUp .7s ease both;
}
.split-hero__half--fitness .split-hero__cta { justify-content: flex-start; animation-delay: .68s; }
.split-hero__half--life    .split-hero__cta { justify-content: flex-end;   animation-delay: .93s; }

/* Center badge */
.split-hero__center {
  position: absolute;
  top: 50%; left: 46%;
  transform: translate(-50%, -50%);
  z-index: 25;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  pointer-events: none;
  animation: heroFadeUp .8s ease .85s both;
}

.split-hero__center-badge {
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(6,6,6,.95);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: -12px 0 60px rgba(200,255,0,.24), 12px 0 60px rgba(13,155,138,.24), 0 40px 90px rgba(0,0,0,.9);
  animation: badgePulse 4.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: -12px 0 60px rgba(200,255,0,.24), 12px 0 60px rgba(13,155,138,.24), 0 40px 90px rgba(0,0,0,.9); }
  50%      { box-shadow: -22px 0 85px rgba(200,255,0,.4),  22px 0 85px rgba(13,155,138,.4),  0 40px 90px rgba(0,0,0,.9); }
}

.split-hero__center-badge::before {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(200,255,0,.78);
  border-bottom-color: rgba(13,155,138,.78);
  animation: spinRing 4.5s linear infinite;
}
.split-hero__center-badge::after {
  content: ''; position: absolute; inset: -24px; border-radius: 50%;
  border: 1px solid transparent;
  border-left-color:  rgba(200,255,0,.3);
  border-right-color: rgba(13,155,138,.3);
  animation: spinRing 8s linear infinite reverse;
}
@keyframes spinRing { to { transform: rotate(360deg); } }

.split-hero__center-logo { width: 80px; filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(255,255,255,.32)); }
.split-hero__center-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem;
  letter-spacing: .44em; color: rgba(255,255,255,.9);
  text-align: center; text-shadow: 0 0 24px rgba(255,255,255,.22);
  padding-left: .44em;
}
.split-hero__center-pills { display: flex; gap: 8px; }
.split-hero__center-pill {
  font-size: .58rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.split-hero__center-pill--fitness { background: rgba(200,255,0,.1); border: 1px solid rgba(200,255,0,.42); color: var(--lime); }
.split-hero__center-pill--life    { background: rgba(13,155,138,.1); border: 1px solid rgba(13,155,138,.42); color: var(--teal); }

/* Diagonal divider line */
.split-hero__divider {
  position: absolute; left: 51%; top: 50%;
  width: 2px; height: 130%;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(13deg);
  background: linear-gradient(to bottom, transparent 0%, rgba(200,255,0,.6) 25%, rgba(255,255,255,.42) 50%, rgba(13,155,138,.6) 75%, transparent 100%);
  z-index: 20; pointer-events: none; filter: blur(.5px);
}

/* Mobile badge (unused, center handles it) */
.split-hero__mobile-badge { display: none; }

/* ── MOBILE: stacked layout ── */
@media (max-width: 700px) {
  .nav {
    padding: 10px 16px;
  }

  .nav__logo-img {
    height: 36px;
  }

  .float-wa {
    right: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .split-hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) 0px minmax(0, 1fr);
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 12px;
    overflow: hidden;
  }

  .split-hero__half {
    position: relative !important;
    width: 100%;
    height: auto;
    min-height: clamp(250px, 38svh, 360px);
    clip-path: none !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: flex-end !important;
    padding: 28px 20px !important;
  }

  .split-hero__half--fitness {
    grid-row: 1;
    padding-bottom: 34px !important;
  }

  .split-hero__half--life {
    grid-row: 3;
    padding-top: 34px !important;
  }

  .split-hero__half--fitness .split-hero__bg {
    object-position: center 55%;
  }

  .split-hero__half--life .split-hero__bg {
    object-position: center 55%;
  }

  .split-hero__content {
    max-width: min(100%, 320px);
  }

  .split-hero__cta {
    justify-content: center !important;
    width: 100%;
    max-width: 280px;
    margin: 18px auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .split-hero__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: .76rem;
  }

  .split-hero__title {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
    line-height: .9;
  }

  .split-hero__sub {
    font-size: .64rem;
    letter-spacing: .12em;
    line-height: 1.65;
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
  }

  .split-hero__tag {
    margin-bottom: 12px;
    font-size: .56rem;
    letter-spacing: .14em;
    padding: 4px 12px;
  }

  .split-hero__center {
    position: relative;
    grid-row: 2;
    top: auto;
    left: auto;
    transform: none;
    gap: 0;
    animation: none;
    opacity: 1;
    flex-direction: column;
    justify-content: center;
    z-index: 25;
    height: 0;
    overflow: visible;
    margin: 0 auto;
  }

  .split-hero__center-badge {
    width: 72px;
    height: 72px;
  }

  .split-hero__center-badge::before { inset: -8px; border-width: 2px; }
  .split-hero__center-badge::after  { inset: -17px; border-width: 1px; }
  .split-hero__center-logo  { width: 38px; }
  .split-hero__center-name  { display: none; }
  .split-hero__center-pills { display: none; }

  .split-hero__divider {
    display: none;
  }

  .split-hero__half--fitness .split-hero__glow {
    background: radial-gradient(ellipse 130% 70% at 50% 108%, rgba(200,255,0,.36) 0%, transparent 55%);
  }
  .split-hero__half--life .split-hero__glow {
    background: radial-gradient(ellipse 130% 70% at 50% 108%, rgba(13,155,138,.38) 0%, transparent 55%);
  }

  .split-hero .hero__scroll { display: none; }

  .home-intro {
    padding: 68px 20px;
  }

  .home-intro__actions,
  .cta-final__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-intro__actions .btn,
  .cta-final__actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .home-proof__item {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .split-hero {
    padding-top: 60px;
  }

  .split-hero__half {
    min-height: 230px;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .split-hero__title {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }

  .split-hero__sub {
    font-size: .6rem;
  }

  .split-hero__center-badge {
    width: 66px;
    height: 66px;
  }

  .split-hero__center-logo {
    width: 34px;
  }

  .home-intro {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── PAYMENT LOGO OVERRIDES ───────────────────── */
.payment-card--yape .payment-card__logo { height: 48px; margin-bottom: 0; }
.payment-card--bbva .payment-card__logo { height: 32px; margin-bottom: 0; }
.payment-card--bcp  .payment-card__logo { height: 36px; margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   PREMIUM VISUAL EFFECTS
   ═══════════════════════════════════════════════ */

/* ── Noise / grain texture overlay ─────────────
   SVG feTurbulence — one element, zero requests  */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  opacity: .028;
  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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
  mix-blend-mode: overlay;
}

/* ── Cursor spotlight ────────────────────────── */
#cursor-spotlight {
  position: fixed;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(200,255,0,.055) 0%,
    rgba(200,255,0,.015) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9001;
  transition: left .12s ease, top .12s ease;
  mix-blend-mode: screen;
}
@media (max-width: 700px) { #cursor-spotlight { display: none; } }

/* ── Glitch text ─────────────────────────────── */
.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
  pointer-events: none;
  opacity: 0;
}
.glitch::before { color: var(--lime); }
.glitch::after  { color: var(--teal); }
.glitch:hover::before { animation: glitch-a .55s steps(2) 1; }
.glitch:hover::after  { animation: glitch-b .55s steps(2) 1; }

@keyframes glitch-a {
  0%   { opacity: 1; clip-path: inset(0 0 88% 0); transform: translate(-3px, 0); }
  25%  { clip-path: inset(40% 0 45% 0); transform: translate(3px, 0); }
  50%  { clip-path: inset(65% 0 20% 0); transform: translate(-2px, 0); }
  75%  { clip-path: inset(20% 0 65% 0); transform: translate(2px, 0); }
  100% { opacity: 0; clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
}
@keyframes glitch-b {
  0%   { opacity: 1; clip-path: inset(88% 0 0 0); transform: translate(3px, 0); }
  25%  { clip-path: inset(45% 0 40% 0); transform: translate(-3px, 0); }
  50%  { clip-path: inset(20% 0 65% 0); transform: translate(2px, 0); }
  75%  { clip-path: inset(65% 0 20% 0); transform: translate(-2px, 0); }
  100% { opacity: 0; clip-path: inset(100% 0 0 0); transform: translate(0, 0); }
}

/* ── Aurora orbs (floating gradients on sections) */
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
  z-index: 0;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .55; }
  33%       { transform: translate(30px, -40px) scale(1.08); opacity: .7; }
  66%       { transform: translate(-20px, 20px) scale(.95); opacity: .5; }
}
.aurora-orb--lime { background: radial-gradient(circle, rgba(200,255,0,.35) 0%, transparent 70%); }
.aurora-orb--teal { background: radial-gradient(circle, rgba(13,155,138,.35) 0%, transparent 70%); }

/* ── Service card scan-line shimmer on hover ─── */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(200,255,0,.08) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0s;
  pointer-events: none;
  z-index: 2;
}
.service-card:hover::after {
  transform: translateX(200%);
  transition: transform .65s ease;
}

/* ── Animated gradient border on sections ──────
   Applied to .stats-bar, .quote-banner          */
.glow-border-top {
  position: relative;
}
.glow-border-top::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--lime) 30%,
    var(--teal) 70%,
    transparent
  );
  opacity: 0;
  animation: borderGlow 4s ease-in-out infinite;
}
.glow-border-top.visible::before { opacity: 1; }
@keyframes borderGlow {
  0%, 100% { opacity: .3; transform: scaleX(.7); }
  50%       { opacity: .8; transform: scaleX(1); }
}

/* ── Hero image scan-line overlay ──────────────
   Adds horizontal scan lines on the bg photo    */
.split-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,.04) 3px,
    rgba(0,0,0,.04) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Testimonial card quote glow ───────────────*/
.testimonial-card:hover::before {
  color: rgba(200,255,0,.18) !important;
  text-shadow: 0 0 40px rgba(200,255,0,.3);
  transition: color .3s, text-shadow .3s;
}

/* ── Step card top-line animated color ─────────*/
.step {
  overflow: visible;
}
.step::before {
  transition: background .4s;
}
.step:hover::before {
  background: linear-gradient(90deg, var(--lime), var(--teal));
}

/* ── Number glow on stat items ─────────────────*/
.stat-item__num { transition: text-shadow .4s; }
.stat-item:hover .stat-item__num {
  text-shadow: 0 0 30px rgba(200,255,0,.6);
}

/* ── Button ripple ─────────────────────────────*/
.btn {
  overflow: hidden;
  position: relative;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  border-radius: inherit;
  transform: scale(0);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.btn:active::after {
  transform: scale(2);
  opacity: 0;
  transition: 0s;
}

/* ── Gallery item overlay ──────────────────────*/
.gallery__item {
  position: relative;
}
.gallery__item::after {
  content: '🔍';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: rgba(200,255,0,.08);
  opacity: 0;
  transition: opacity .3s;
  backdrop-filter: blur(1px);
}
.gallery__item:hover::after,
.gallery__item:focus-visible::after { opacity: 1; }

/* ── content-visibility for perf ───────────────*/
.stats-bar,
.process-section,
.benefits-strip,
.testimonials-section,
.payment-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* ── Reduce motion ─────────────────────────────*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════
   NAV — WHATSAPP BUTTON
   ═══════════════════════════════════════════════ */
.nav__wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  background: #25D366;
  color: #080808;
  text-decoration: none;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 0 0 rgba(37,211,102,0);
}
.nav__wa:hover {
  background: #1dba58;
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.nav__wa svg { flex-shrink: 0; }
@media (max-width: 700px) { .nav__wa { display: none; } }

/* ═══════════════════════════════════════════════
   SERVICE PAGES — PREMIUM HERO
   ═══════════════════════════════════════════════ */
.svc-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.svc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-hero__photo,
.svc-hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(.28) saturate(1.15);
  pointer-events: none;
}
/* Fitness hero: subir el encuadre para mostrar más del torso/rostro */
.svc-hero--fitness .svc-hero__video,
.svc-hero--fitness .svc-hero__photo {
  object-position: center 30%;
}
.svc-hero__photo {
  transition: transform 9s ease;
}
.svc-hero:hover .svc-hero__photo { transform: scale(1.04); }
.svc-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg,
    rgba(8,8,8,.97) 0%, rgba(8,8,8,.82) 42%,
    rgba(8,8,8,.38) 72%, rgba(8,8,8,.08) 100%);
}
.svc-hero__glow {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
.svc-hero--fitness .svc-hero__glow {
  background: radial-gradient(ellipse 60% 75% at 2% 110%, rgba(200,255,0,.28) 0%, transparent 55%);
}
.svc-hero--life .svc-hero__glow {
  background: radial-gradient(ellipse 60% 75% at 2% 110%, rgba(13,155,138,.32) 0%, transparent 55%);
}
.svc-hero__content {
  position: relative; z-index: 5;
  width: 100%;
  padding: 120px clamp(24px, 7.5vw, 130px) 90px;
}
.svc-hero__inner { max-width: 720px; }

.svc-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .63rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 34px;
  animation: heroFadeUp .6s ease both;
}
.svc-hero--fitness .svc-hero__eyebrow {
  color: var(--lime); background: rgba(200,255,0,.07); border: 1px solid rgba(200,255,0,.32);
}
.svc-hero--life .svc-hero__eyebrow {
  color: var(--teal); background: rgba(13,155,138,.07); border: 1px solid rgba(13,155,138,.32);
}

.svc-hero__h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.8rem, 11vw, 10.5rem);
  line-height: .83; letter-spacing: .02em;
  margin-bottom: 26px;
  animation: heroFadeUp .65s ease .12s both;
}
.svc-hero--fitness .svc-hero__h1 .accent {
  color: var(--lime); text-shadow: 0 0 80px rgba(200,255,0,.55);
}
.svc-hero--life .svc-hero__h1 .accent {
  color: var(--teal); text-shadow: 0 0 80px rgba(13,155,138,.55);
}

.svc-hero__sub {
  font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.42);
  letter-spacing: .15em; text-transform: uppercase; line-height: 1.8;
  margin-bottom: 52px; max-width: 46ch;
  animation: heroFadeUp .65s ease .25s both;
}

.svc-hero__kpis {
  display: flex; align-items: center; gap: 0; margin-bottom: 56px; flex-wrap: wrap;
  animation: heroFadeUp .65s ease .38s both;
}
.svc-hero__kpi { padding: 0 clamp(16px, 3vw, 42px); }
.svc-hero__kpi:first-child { padding-left: 0; }
.svc-hero__kpi strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1; letter-spacing: .04em;
}
.svc-hero--fitness .svc-hero__kpi strong { color: var(--lime); }
.svc-hero--life    .svc-hero__kpi strong { color: var(--teal); }
.svc-hero__kpi span {
  font-size: .6rem; font-weight: 700; color: rgba(255,255,255,.32);
  text-transform: uppercase; letter-spacing: .16em; display: block; margin-top: 3px;
}
.svc-hero__kpi-sep {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.1);
}

.svc-hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: heroFadeUp .65s ease .5s both;
}

.svc-hero__scroll-hint {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none;
}
.svc-hero__scroll-line {
  width: 1.5px; height: 48px;
  animation: scrollLine 1.8s ease-in-out infinite;
}
.svc-hero--fitness .svc-hero__scroll-line {
  background: linear-gradient(to bottom, rgba(200,255,0,.75), transparent);
}
.svc-hero--life .svc-hero__scroll-line {
  background: linear-gradient(to bottom, rgba(13,155,138,.75), transparent);
}
.svc-hero__scroll-txt {
  font-size: .54rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.25);
}

/* ═══════════════════════════════════════════════
   SERVICE SHOWCASE — ALTERNATING LAYOUT
   ═══════════════════════════════════════════════ */
.svc-page-head {
  padding: 90px clamp(24px, 6vw, 90px) 0;
  max-width: 1240px; margin: 0 auto;
}
.svc-page-head__inner { max-width: 560px; }

.showcase-wrap {
  padding: 70px clamp(24px, 6vw, 90px) 100px;
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 100px;
}
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.showcase-row--rev .showcase-row__media { order: 2; }
.showcase-row--rev .showcase-row__copy  { order: 1; }

.showcase-row__media {
  position: relative; border-radius: 26px; overflow: hidden; aspect-ratio: 3/4;
}
.showcase-row__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .85s cubic-bezier(.25,.46,.45,.94);
}
.showcase-row__media:hover img { transform: scale(1.06); }
.showcase-row__media-badge {
  position: absolute; top: 22px; left: 22px;
  padding: 6px 16px; border-radius: 100px;
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.svc-page--fitness .showcase-row__media-badge {
  background: rgba(200,255,0,.14); border: 1px solid rgba(200,255,0,.42); color: var(--lime);
}
.svc-page--life .showcase-row__media-badge {
  background: rgba(13,155,138,.14); border: 1px solid rgba(13,155,138,.42); color: var(--teal);
}
.showcase-row__media-num {
  position: absolute; bottom: 18px; right: 22px;
  font-family: 'Bebas Neue', sans-serif; font-size: 7rem;
  color: rgba(255,255,255,.05); line-height: 1; pointer-events: none; user-select: none;
}

.showcase-row__icon {
  font-size: 2.8rem; display: block; margin-bottom: 16px; line-height: 1;
}
.showcase-row__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3.7rem);
  line-height: .86; letter-spacing: .02em; margin-bottom: 20px;
}
.showcase-row__desc {
  font-size: .9rem; color: rgba(255,255,255,.52); line-height: 1.82; margin-bottom: 28px;
}
.showcase-row__list {
  list-style: none; margin-bottom: 36px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.showcase-row__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .82rem; color: rgba(255,255,255,.5);
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.svc-page--fitness .showcase-row__list li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex-shrink: 0;
}
.svc-page--life .showcase-row__list li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   WHY RASEC SECTION
   ═══════════════════════════════════════════════ */
.svc-why {
  padding: 90px clamp(24px, 6vw, 90px);
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.012) 0%, rgba(255,255,255,.006) 100%);
}
.svc-why__head { text-align: center; margin-bottom: 72px; }
.svc-why__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1160px; margin: 0 auto;
}
.why-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.055);
  border-radius: 22px; padding: 38px 28px;
  transition: transform .3s ease, border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  opacity: 0; transition: opacity .3s;
}
.svc-page--fitness .why-card::before { background: linear-gradient(90deg, transparent, var(--lime), transparent); }
.svc-page--life    .why-card::before { background: linear-gradient(90deg, transparent, var(--teal), transparent); }
.svc-page--fitness .why-card:hover { transform: translateY(-7px); border-color: rgba(200,255,0,.18); box-shadow: 0 20px 60px rgba(200,255,0,.08); }
.svc-page--life    .why-card:hover { transform: translateY(-7px); border-color: rgba(13,155,138,.18); box-shadow: 0 20px 60px rgba(13,155,138,.08); }
.why-card:hover::before { opacity: 1; }
.why-card__icon { font-size: 2.5rem; display: block; margin-bottom: 20px; line-height: 1; }
.why-card__n {
  font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 10px;
}
.svc-page--fitness .why-card__n { color: var(--lime); }
.svc-page--life    .why-card__n { color: var(--teal); }
.why-card__title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: .06em; margin-bottom: 12px; line-height: 1.1;
}
.why-card__text { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.78; }

/* ═══════════════════════════════════════════════
   SVC GALLERY GRID
   ═══════════════════════════════════════════════ */
.svc-gallery {
  padding: 80px clamp(24px, 6vw, 90px) 100px;
}
.svc-gallery__head { margin-bottom: 56px; }
.svc-gallery__grid {
  display: flex;
  flex-direction: row;
  gap: 15px;
  max-width: 1160px; margin: 0 auto;
}
.g-shot--featured {
  flex: 1;
  height: 595px; /* 290×2 + 15px gap */
}
.svc-gallery__sub {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 15px;
}
.g-shot {
  border-radius: 18px; overflow: hidden; position: relative; cursor: pointer;
}
.g-shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .75s cubic-bezier(.25,.46,.45,.94), filter .4s;
  filter: brightness(.82) saturate(.88);
}
.g-shot:hover img { transform: scale(1.07); filter: brightness(1) saturate(1.1); }
.svc-gallery__action { text-align: center; margin-top: 44px; }

/* ═══════════════════════════════════════════════
   MID-PAGE CTA
   ═══════════════════════════════════════════════ */
.svc-mid-cta {
  padding: 80px clamp(24px, 6vw, 90px);
  text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.svc-page--fitness .svc-mid-cta {
  background: linear-gradient(135deg, rgba(200,255,0,.03) 0%, transparent 50%);
}
.svc-page--life .svc-mid-cta {
  background: linear-gradient(135deg, rgba(13,155,138,.03) 0%, transparent 50%);
}
.svc-mid-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: .88; letter-spacing: .03em; margin-bottom: 16px;
}
.svc-mid-cta__sub {
  font-size: .88rem; color: rgba(255,255,255,.42);
  line-height: 1.72; margin-bottom: 36px; max-width: 44ch; margin-left: auto; margin-right: auto;
}
.svc-mid-cta__btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — SERVICE PAGES
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .svc-why__grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-row { grid-template-columns: 1fr; gap: 38px; }
  .showcase-row--rev .showcase-row__media { order: 0; }
  .showcase-row--rev .showcase-row__copy  { order: 0; }
}
@media (max-width: 700px) {
  .svc-hero__content { padding: 100px 20px 70px; }
  .svc-hero__kpis { gap: 0; }
  .svc-hero__kpi { padding: 0 14px; }
  .svc-hero__kpi:first-child { padding-left: 0; }
  .svc-hero__kpi-sep { height: 30px; }
  .svc-why__grid { grid-template-columns: 1fr 1fr; }
  .g-shot--featured { height: 415px; /* 200×2 + 15px gap */ }
  .svc-gallery__sub { grid-template-rows: 200px 200px; }
  .showcase-wrap { gap: 60px; padding-top: 40px; }
  .svc-page-head { padding-top: 60px; }
}
@media (max-width: 480px) {
  .svc-why__grid { grid-template-columns: 1fr; }
  .svc-gallery__grid { gap: 10px; }
  .g-shot--featured { height: 370px; /* = 180 + 10gap + 180 */ }
  .svc-gallery__sub {
    grid-template-rows: 180px 180px;
    gap: 10px;
  }
}


/* ═══════════════════════════════════════════════
   SEGMENTOS FITNESS (Personas / Empresas)
   ═══════════════════════════════════════════════ */

.svc-segment {
  padding: 80px clamp(24px, 6vw, 90px);
  max-width: 1240px;
  margin: 0 auto;
}

/* Reset showcase-wrap defaults inside a segment — the segment owns the padding */
.svc-segment .showcase-wrap {
  padding: 0;
  max-width: none;
}

/* Empresas segment: full-width background, same lateral padding as base */
.svc-segment--empresas {
  border-top: 1px solid rgba(200,255,0,.08);
  background: rgba(200,255,0,.015);
  max-width: 100%;
  padding: 80px clamp(24px, 6vw, 90px);
}

/* Centre content within the full-width empresas block */
.svc-segment--empresas .svc-segment__head,
.svc-segment--empresas .showcase-wrap,
.svc-segment--empresas .modalities-section {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.svc-segment__head {
  margin-bottom: 56px;
}

.svc-segment__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

.svc-segment__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  flex-shrink: 0;
}

.svc-segment__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: .88;
  letter-spacing: .02em;
}

.svc-segment__title span { color: var(--lime); }

/* ── MODALITY CARDS ────────────────────────────── */

.modalities-section {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.modalities-section__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.36);
  margin-bottom: 32px;
}

.modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.modalities-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.modality-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s ease, border-color .3s ease;
}

.modality-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,255,0,.2);
}

.modality-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.modality-card__body {
  padding: 20px 22px 24px;
}

.modality-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .04em;
  margin-bottom: 7px;
  color: var(--white);
}

.modality-card__desc {
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  line-height: 1.68;
}

.modalities-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 860px) {
  .modalities-grid { grid-template-columns: repeat(2, 1fr); }
  .modalities-grid--two { grid-template-columns: 1fr 1fr; }
  .svc-segment { padding: 64px clamp(20px, 5vw, 60px); }
  .svc-segment--empresas { padding: 64px clamp(20px, 5vw, 60px); }
}

@media (max-width: 560px) {
  .modalities-grid,
  .modalities-grid--two { grid-template-columns: 1fr; }
  .svc-segment { padding: 48px 20px; }
  .svc-segment--empresas { padding: 48px 20px; }
  .svc-segment__head { margin-bottom: 36px; }
  .modalities-section { margin-top: 48px; padding-top: 36px; }
}

/* ── ABOUT CAROUSEL ────────────────────────────── */

.about-carousel {
  position: relative;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(200,255,0,.12) 0%, transparent 34%),
    radial-gradient(circle at bottom right, rgba(13,155,138,.08) 0%, transparent 32%),
    linear-gradient(180deg, rgba(19,19,19,.96) 0%, rgba(8,8,8,.98) 100%);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  overflow: hidden;
}

.about-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.06) 0%, transparent 28%, transparent 72%, rgba(255,255,255,.04) 100%);
  pointer-events: none;
}

.about-carousel > * {
  position: relative;
  z-index: 1;
}

.about-carousel__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.about-carousel__eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(200,255,0,.82);
}

.about-carousel__caption {
  max-width: 38ch;
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.68);
  min-height: 4.2em;
}

.about-carousel__viewport {
  overflow: hidden;
  border-radius: 24px;
}

.about-carousel__track {
  display: flex;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.about-carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-carousel__media {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.06);
  background: #111;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 50px rgba(0,0,0,.32);
  overflow: hidden;
}

.about-carousel__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 24px;
}

.about-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.about-carousel__btn {
  background: rgba(200,255,0,.08);
  border: 1px solid rgba(200,255,0,.22);
  color: var(--lime);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
  line-height: 1;
}

.about-carousel__btn:hover {
  background: rgba(200,255,0,.2);
  border-color: rgba(200,255,0,.4);
  transform: translateY(-1px);
}

.about-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 40px;
}

.about-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  cursor: pointer;
  transition: background .25s, transform .25s;
  border: none;
  padding: 0;
}

.about-carousel__dot.active {
  background: var(--lime);
  box-shadow: 0 0 6px var(--lime);
  transform: scale(1.1);
}

.about-carousel__counter {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .12em;
  text-transform: uppercase;
  min-width: 88px;
  text-align: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

@media (max-width: 768px) {
  .about-carousel {
    padding: 16px;
  }

  .about-carousel__caption {
    font-size: .82rem;
  }

  .about-carousel__media {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 560px) {
  .about-carousel__media {
    aspect-ratio: 1 / 1;
  }

  .about-carousel__controls {
    gap: 10px;
  }

  .about-carousel__btn {
    width: 36px;
    height: 36px;
  }
}
