/* ═══════════════════════════════════════════════════════
   OLIFE — Main Stylesheet v2
   Dark theme · Mobile-first · GSAP/Lenis/Swiper
═══════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --accent:    #b9fb15;
  --accent-d:  #9ddb05;
  --accent-glow: rgba(185, 251, 21, 0.15);
  --bg:        #080808;
  --bg-2:      #0f0f0f;
  --bg-3:      #1a1a1a;
  --bg-card:   #111111;
  --text:      #ffffff;
  --text-2:    #aaaaaa;
  --text-3:    #666666;
  --border:    rgba(255,255,255,0.07);
  --border-h:  rgba(255,255,255,0.15);
  --radius:    16px;
  --radius-sm: 10px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

em {
  font-style: normal;
  color: var(--accent);
}

strong { font-weight: 700; }

/* ── Container ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section helpers ─────────────────────────────────── */
.section {
  padding: clamp(80px, 12vw, 150px) 0;
  position: relative;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 52px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  border: none;
  text-decoration: none;
  position: relative;
}

.btn-accent {
  background: var(--accent);
  color: #000;
}

.btn-accent:hover {
  background: #cdff4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(185,251,21,0.4);
}

.btn-accent:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-xl { padding: 20px 48px; font-size: 18px; }
.btn-full { width: 100%; }

/* ── Reveal (initial state, GSAP handles animation) ──── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

/* ════════════════════════════════════════════════════════
   LOADER
════════════════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 200px;
}

.loader-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.loader-bar-wrap {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.08s linear;
}

.loader-pct {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.15em;
  font-variant-numeric: tabular-nums;
}

/* ════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav brand: O-Life logo + vertical tag */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 6px 10px;
}

.nav-vertical-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(185, 251, 21, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  white-space: nowrap;
  line-height: 1;
}

@media (max-width: 480px) {
  .nav-logo-img { height: 38px; padding: 5px 8px; }
  .nav-vertical-tag { font-size: 9px; letter-spacing: 2px; padding: 4px 10px; }
}

/* Footer co-branding — keep both logos in footer */
.cobranding {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cobranding-x {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.cobranding .logo-olife,
.cobranding .logo-ptc {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  flex-shrink: 0;
}

.cobranding .logo-olife {
  height: 54px;
  width: auto;
  padding: 8px 12px;
}

.cobranding .logo-ptc {
  height: 66px;
  width: auto;
  padding: 20px 16px;
}

.footer-brand .cobranding {
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .cobranding { gap: 8px; }
  .cobranding .logo-olife { height: 44px; padding: 6px 8px; }
  .cobranding .logo-ptc { height: 54px; padding: 16px 12px; }
  .cobranding-x { font-size: 10px; letter-spacing: 1px; }
}

.nav-cta {
  padding: 10px 22px;
  font-size: 13px;
}

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.1) 40%, rgba(8,8,8,0.7) 100%),
    linear-gradient(135deg, rgba(8,8,8,0.8) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}

.hero-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-service-tag svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(185,251,21,0.08);
  border: 1px solid rgba(185,251,21,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-headline {
  font-size: clamp(44px, 9vw, 100px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero-headline .line { display: block; }
.hero-headline .accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: bounce-down 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ════════════════════════════════════════════════════════
   STATS (overlaid on hero bottom)
════════════════════════════════════════════════════════ */
#stats {
  position: relative;
  z-index: 3;
  margin-top: -100px;
  padding: 0 24px 0;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 36px 32px;
  pointer-events: auto;
}

@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item { text-align: center; }

.stat-num {
  display: block;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-sym {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  color: var(--accent);
  opacity: 0.7;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-2);
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════
   SCROLL-VIDEO (Image Sequence Canvas)
════════════════════════════════════════════════════════ */
#scroll-video {
  height: 500vh;
  position: relative;
  margin-top: -1px;
}

.scroll-video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scroll-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.75) 0%,
    rgba(8,8,8,0.3) 50%,
    rgba(8,8,8,0.15) 100%
  );
  pointer-events: none;
}

/* Text overlays */
.scroll-texts {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 24px;
  height: 100vh;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.scroll-text {
  position: absolute;
  left: 24px;
  max-width: 560px;
  opacity: 0;
  will-change: opacity, transform;
}

.scroll-text.active {
  opacity: 1;
}

/* Word-by-word reveal styles */
.scroll-text .word {
  display: inline-block;
  opacity: 0.08;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  will-change: opacity, transform;
}

.scroll-text .word.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-text h2 em .word.revealed {
  color: var(--accent);
}

.scroll-text .scroll-tag {
  opacity: 0;
  transform: translateY(20px);
}

.scroll-text p .word {
  opacity: 0.05;
}

.scroll-text p .word.revealed {
  opacity: 0.7;
}

.scroll-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(185,251,21,0.1);
  border: 1px solid rgba(185,251,21,0.2);
  border-radius: 100px;
}

.scroll-text h2 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}

.scroll-text p {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Progress bar */
.scroll-progress {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  z-index: 3;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
}

/* ════════════════════════════════════════════════════════
   DOLOR (Pain Points)
════════════════════════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 56px;
}

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

@media (min-width: 960px) {
  .pain-grid { grid-template-columns: repeat(4, 1fr); }
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.pain-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(185,251,21,0.08);
  border: 1px solid rgba(185,251,21,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.pain-icon svg {
  width: 22px;
  height: 22px;
}

.pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pain-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* CTA bridge */
.pain-cta {
  text-align: center;
  padding: 48px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.pain-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(185,251,21,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pain-bridge {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 12px;
  position: relative;
}

.pain-bridge-headline {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--accent);
  position: relative;
}

/* ════════════════════════════════════════════════════════
   PILLARS
════════════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.pillar-card:hover {
  border-color: rgba(185,251,21,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pillar-num {
  font-size: 64px;
  font-weight: 900;
  color: rgba(185,251,21,0.08);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}

.pillar-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar-front {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.pillar-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.pillar-card:hover .pillar-accent {
  transform: scaleX(1);
}

/* ════════════════════════════════════════════════════════
   TRANSFORMACIONES
════════════════════════════════════════════════════════ */
.before-after-context {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  margin-bottom: 52px;
  align-items: stretch;
}

.ba-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.ba-before { border-color: rgba(255,80,80,0.2); }
.ba-after  { border-color: rgba(185,251,21,0.2); }

.ba-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ba-before .ba-icon {
  background: rgba(255,80,80,0.1);
  color: #ff5050;
}

.ba-after .ba-icon {
  background: rgba(185,251,21,0.1);
  color: var(--accent);
}

.ba-icon svg {
  width: 20px;
  height: 20px;
}

.ba-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ba-before h4 { color: #ff7070; }
.ba-after h4  { color: var(--accent); }

.ba-col li {
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.ba-col li:last-child { border-bottom: none; }

.ba-col li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ba-before li::before { background: #ff5050; }
.ba-after li::before  { background: var(--accent); }

/* Divider */
.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.ba-vs {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-3);
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

/* Swiper — Transformaciones */
.transformaciones-swiper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 48px;
  overflow: hidden;
}

.transformaciones-swiper .swiper-slide {
  border-radius: var(--radius);
  overflow: hidden;
  width: auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transformaciones-swiper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.transformaciones-swiper .swiper-button-prev,
.transformaciones-swiper .swiper-button-next {
  color: var(--accent);
  background: rgba(8,8,8,0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.transformaciones-swiper .swiper-button-prev::after,
.transformaciones-swiper .swiper-button-next::after {
  font-size: 13px;
}

.transformaciones-swiper .swiper-pagination-bullet {
  background: var(--text-3);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.transformaciones-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════
   PERSONALIZADO (Video BG + handmade message)
════════════════════════════════════════════════════════ */
#personalizado {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vw, 140px) 0;
}

.personalizado-video-wrap {
  position: absolute;
  inset: 0;
}

.personalizado-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.personalizado-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(8,8,8,0.93) 0%, rgba(8,8,8,0.65) 50%, rgba(8,8,8,0.4) 100%),
    linear-gradient(to bottom, rgba(8,8,8,0.4) 0%, transparent 30%, transparent 70%, rgba(8,8,8,0.5) 100%);
}

.personalizado-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: right;
}

.personalizado-content .section-label {
  display: inline-block;
}

.personalizado-headline {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.personalizado-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 540px;
  margin-left: auto;
  margin-bottom: 40px;
}

.personalizado-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.pf-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(8,8,8,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  transition: border-color 0.3s;
}

.pf-item:hover {
  border-color: rgba(185,251,21,0.25);
}

.pf-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .personalizado-content {
    text-align: left;
  }
  .personalizado-desc {
    margin-left: 0;
  }
  .personalizado-features {
    align-items: flex-start;
  }
  .personalizado-overlay {
    background:
      linear-gradient(to bottom, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.5) 50%, rgba(8,8,8,0.85) 100%);
  }
}

/* ════════════════════════════════════════════════════════
   BRIDGE (Video BG section)
════════════════════════════════════════════════════════ */
#bridge {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vw, 140px) 0;
}

.bridge-video-wrap {
  position: absolute;
  inset: 0;
}

.bridge-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bridge-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.6) 55%, rgba(8,8,8,0.35) 100%),
    linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, transparent 30%, transparent 70%, rgba(8,8,8,0.5) 100%);
}

.bridge-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.bridge-headline {
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

.bridge-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.bridge-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(8,8,8,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.bridge-step:hover {
  border-color: rgba(185,251,21,0.25);
  transform: translateX(6px);
}

.step-n {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  min-width: 36px;
  opacity: 0.5;
}

.bridge-step strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.bridge-step p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   OFERTA
════════════════════════════════════════════════════════ */
.oferta-wrap {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
}

.oferta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px 100px 0 0;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
}

.oferta-badge svg {
  color: #000;
}

.oferta-card {
  background: var(--bg-card);
  border: 1px solid rgba(185,251,21,0.2);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  overflow: hidden;
}

.oferta-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
}

.oferta-header h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.oferta-sub {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.oferta-features {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oferta-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feat-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(185,251,21,0.12);
  border: 1px solid rgba(185,251,21,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 2px;
}

.oferta-features strong {
  font-size: 14px;
  display: block;
  margin-bottom: 3px;
}

.oferta-features p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.oferta-footer {
  padding: 20px 32px 32px;
  border-top: 1px solid var(--border);
}

.oferta-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 20px;
  line-height: 1.5;
}

.oferta-note svg {
  flex-shrink: 0;
  color: var(--text-3);
}

/* ════════════════════════════════════════════════════════
   TESTIMONIOS
════════════════════════════════════════════════════════ */
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .testimonios-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.testimonio-card:hover {
  border-color: rgba(185,251,21,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.testimonio-video-wrap {
  position: relative;
  cursor: pointer;
}

.testimonio-card video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: opacity 0.35s;
  pointer-events: none;
}

.play-btn-overlay svg {
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.3s var(--ease-out);
}

.testimonio-card:hover .play-btn-overlay svg {
  transform: scale(1.15);
}

/* Video tap interaction */
.testimonio-video-wrap {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.testimonio-video-wrap video {
  pointer-events: none;
}

/* Hide play overlay when video is playing */
.testimonio-video-wrap.playing .play-btn-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonios-cta { text-align: center; }

/* ════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(185,251,21,0.25);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: color 0.3s;
  line-height: 1.4;
}

.faq-q:hover { color: var(--accent); }

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: var(--accent);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(185,251,21,0.1);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.35s;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════════════════ */
#final-cta {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

.final-cta-video-wrap {
  position: absolute;
  inset: 0;
}

.final-cta-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    rgba(8,8,8,0.8),
    radial-gradient(ellipse at center bottom, rgba(185,251,21,0.04) 0%, transparent 60%);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.final-cta-headline {
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.final-cta-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.final-cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.final-cta-disclaimer {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 16px;
}

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
#footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto auto;
    gap: 48px;
  }
}

.footer-brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.3s;
}

.social-link:hover { color: var(--accent); }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-3);
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--text-2); }

/* ════════════════════════════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════════════════════════════ */
#floatingWA {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  transition: all 0.35s var(--ease-out);
  transform: translateY(0);
  opacity: 0;
}

#floatingWA:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37,211,102,0.4);
}

.wa-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  border: 2px solid #25D366;
  animation: wa-ping 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.8; }
  80% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ════════════════════════════════════════════════════════
   MOBILE
════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .before-after-context {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ba-divider {
    display: flex;
    justify-content: center;
    padding: 12px 0;
  }
  .ba-vs {
    writing-mode: horizontal-tb;
  }

  .oferta-features,
  .oferta-header,
  .oferta-footer { padding-left: 20px; padding-right: 20px; }

  #floatingWA span { display: none; }
  #floatingWA { padding: 16px; border-radius: 50%; }
  .wa-pulse { border-radius: 50%; }

  .scroll-text { left: 20px; right: 20px; max-width: none; }
  .scroll-text h2 { font-size: clamp(24px, 7vw, 36px); }

  .hero-scroll-hint { display: none; }
}
