/* ═══════════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════════ */
:root {
  --white:      #ffffff;
  --off:        #f8f7ff;
  --off2:       #f2f0f9;
  --gray:       #6b7280;
  --dark:       #0f0e17;
  --dark2:      #1a1830;
  --lite-lav:   #EDE9FE;

  /* accents */
  --purple:     #7c3aed;
  --purple2:    #9d5cf5;
  --pink:       #e040a0;
  --teal:       #14b8a6;
  --teal2:      #0d9488;
  --gold:       #d4a843;
  --gold2:      #f0c96b;

  /* gradients */
  --grad-main:  linear-gradient(135deg, #7c3aed 0%, #e040a0 100%);
  --grad-texthero : linear-gradient(135deg, #EDE9FE 0%, #FF3CAC 100%);
  --grad-hero:  linear-gradient(135deg, #7c3aed 0%, #e040a0 100%);
  --grad-gold:  linear-gradient(135deg, #d4a843 0%, #f0c96b 100%);
  --grad-teal:  linear-gradient(135deg, #14b8a6 0%, #7c3aed 100%);
  --grad-card:  linear-gradient(145deg, #faf9ff 0%, #f5f0ff 100%);

  --r:    10px;
  --r2:   20px;
  --r3:   32px;
  --trans: all .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden;}
body {
  font-family:'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--dark2);
  /*overflow-x: hidden;*/
  overflow-x: clip;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }


/* ═══════════════════════════════════════════════════
  CSS TO ADD TO YOUR STYLESHEET
  ═══════════════════════════════════════════════════ */
 
  /* --- Scroll Video Hero --- */
  
  .scroll-runway { position: relative; height: 300vh;   }
  .video-sticky  { position: sticky; top: 0; height: 100vh; overflow: hidden; }
  
  
 
  .hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
  }
 
  .video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
      rgba(88, 28, 135, 1) 0%,
      rgba(88, 28, 135, .85) 50%,
      rgba(88, 28, 135, .40) 75%,
      transparent 100%
    );
  }
 
  .hero-body {
    position: absolute; top: 0; left: 0; right: 0;
    z-index: 2;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 8rem 0 5rem;
  }
 
  /*.scroll-progress {*/
  /*  position: fixed;*/
  /*  top: 0;*/
  /*  left: 0;*/
  /*  height: 3px;*/
  /*  background: #7c3aed;*/
  /*  z-index: 100;*/
  /*  width: 0%;*/
  /*}*/
 

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */



.container { max-width: 1500px; margin: 0 auto; padding: 0 1.5rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; width: 20px; height: 2px;
  background: var(--grad-main); display: block; border-radius: 2px;
}
.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-hero {
  background: var(--grad-texthero);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Cards */
.card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #f3f4f6;
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border-color: rgba(124, 58, 237, 0.1);
}
.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(13, 148, 136, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #0d9488;
}

/* Plans Section */
.plans {
    background: linear-gradient(160deg, var(--off) 0%, var(--off2) 100%);
    padding: 6.5rem 0;
}
.plan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.plan-card.featured {
    border: 2px solid var(--purple);
    transform: scale(1.05);
    z-index: 10;
}
.plan-card.featured::before {
    content: "RECOMENDADO";
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--purple);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 800;
}
.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--text-main);
}
.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}
.plan-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    width: 100%;
}
.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}
.plan-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: 900;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: var(--trans);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: #fff;
  box-shadow: 0 6px 28px rgba(124,58,237,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(124,58,237,.45); }
.btn-teal {
  background: var(--grad-teal); color: #fff;
  box-shadow: 0 6px 24px rgba(20,184,166,.3);
}
.btn-teal:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(20,184,166,.4); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid #C084FC; padding: .85rem 1.9rem;
}
.btn-outline:hover { background: #C084FC; color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 1rem 0;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(124,58,237,.08);
  transition: var(--trans);
}
nav.scrolled { padding: .7rem 0; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-size: 1.45rem; font-weight: 700;
  letter-spacing: -.02em;
}
.nav-brand span { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--dark2);
  transition: var(--trans);
}
.nav-links a:hover { opacity: 1; color: var(--purple); }
.nav-links a.active { color: var(--purple); font-weight: 700; }
.nav-cta { display: flex; gap: .75rem; }

/* mobile menu */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: var(--grad-main); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  padding-top: 72px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 700; color: var(--dark2);
  opacity: .75; transition: var(--trans);
}
.mobile-menu a:hover { opacity: 1; color: var(--purple); }
.mobile-menu .btn { font-size: 1.05rem; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  /* NO overflow:hidden — it kills position:sticky on children */
  /* NO display:flex — it fights the scroll-runway flow */
}
/*.hero svg.wave {*/
/*  position: relative;*/
/*  display: block;*/
/*  z-index: 3;*/
/*  margin-top: auto;*/
/*}*/
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--grad-hero);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(90px);
  pointer-events: none; z-index: 0;
}
.blob1 { width: 600px; height: 600px; background: rgba(124,58,237,.18); top: -150px; right: -150px; }
.blob2 { width: 500px; height: 500px; background: rgba(224,64,160,.14); bottom: -100px; left: -100px; }
.blob3 { width: 350px; height: 350px; background: rgba(20,184,166,.16); top: 50%; left: 55%; transform: translate(-50%,-50%); }

/* floating cards */
.hero-float {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1rem; z-index: 3;
}
.float-card {
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r2); padding: 1rem 1.4rem;
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  display: flex; align-items: center; gap: .75rem;
  min-width: 200px;
  animation: floatCard 4s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: 1.5s; animation-duration: 5s; }
.float-card:nth-child(3) { animation-delay: 3s; animation-duration: 4.5s; }
@keyframes floatCard { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
.fc-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.fc-icon.purple { background: linear-gradient(135deg,#ede9fe,#ddd6fe); }
.fc-icon.teal   { background: linear-gradient(135deg,#ccfbf1,#99f6e4); }
.fc-icon.gold   { background: linear-gradient(135deg,#fef3c7,#fde68a); }
.fc-title { font-size: .78rem; font-weight: 700; color: var(--dark2); }
.fc-sub   { font-size: .68rem; color:linear-gradient(135deg,#ede9fe,#ddd6fe); margin-top: .1rem; }

.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-image {
  /*position: relative; z-index: 2; width: 620px; height: 100%; border-radius: 15px;*/
  position: relative; z-index: 2; width: 100%; max-width: 620px; min-height: 320px; border-radius: 15px;

  background: url('/img/cevichehtml-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.two-col {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.col { flex: 1; }
.image img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(124,58,237,.2);
  padding: .38rem 1rem; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 1.75rem;
  animation: fadeUp .8s ease both;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad-main); display: block;
}
h1.hero-title {
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 1.4rem;
  animation: fadeUp .85s .1s ease both;
  text-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.hero-sub {
  font-size: 1.1rem; color: var(--lite-lav); line-height: 1.75;
  max-width: 500px; margin-bottom: 2.5rem; font-weight: 400;
  animation: fadeUp .85s .2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .85s .3s ease both;
}
.hero-trust {
  margin-top: 3.5rem; display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; animation: fadeUp .85s .45s ease both;
}
.trust-avatars { display: flex; }
.trust-av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: #fff;
}
.trust-av:first-child { margin-left: 0; }
.trust-text { font-size: .82rem; color: var(--lite-lav); }
.trust-text strong { color: var(--white); font-weight: 700; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-section { padding: 6.5rem 0; background: var(--white); margin-top: 20px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
h2.s-title {
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
  color: var(--dark2); margin-bottom: .75rem;
}
.s-subtitle { font-size: 1rem; color: var(--dark2); max-width: 500px; margin: 0 auto; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card {
  background: var(--grad-card);
  border: 1px solid rgba(124,58,237,.1);
  border-radius: var(--r2); padding: 2.25rem;
  position: relative; overflow: hidden;
  transition: var(--trans); cursor: default;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-main); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(124,58,237,.14); border-color: rgba(124,58,237,.22); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.4rem;
}
.svc-card h3 {
  font-size: 1.25rem; font-weight: 700; color: var(--dark2);
  margin-bottom: .6rem; letter-spacing: -.02em;
}
.svc-card p { font-size: .88rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }
.svc-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--purple);
  transition: gap .2s;
}
.svc-tag::after { content: '→'; }
.svc-card:hover .svc-tag { gap: .6rem; }

/* ═══════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════ */
.benefits-section {
  padding: 6.5rem 0;
  background: linear-gradient(160deg, var(--off) 0%, var(--off2) 100%);
  position: relative; overflow: hidden;
}
.benefits-section::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(20,184,166,.12), transparent 70%);
  top: -150px; right: -150px; pointer-events: none;
}
.benefits-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.benefits-text h2 { text-align: left; margin-bottom: 0; }
.benefits-desc { font-size: .97rem; color: var(--gray); line-height: 1.78; margin: 1.1rem 0 2.5rem; }
.benefits-grid { display: flex; flex-direction: column; gap: 1.1rem; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; border-radius: var(--r2);
  background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.9);
  transition: var(--trans); box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.benefit-item:hover { transform: translateX(6px); box-shadow: 0 8px 24px rgba(124,58,237,.12); border-color: rgba(124,58,237,.15); }
.b-icon {
  width: 44px; height: 44px; border-radius: var(--r); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.benefit-item h4 { font-size: .95rem; font-weight: 700; color: var(--dark2); margin-bottom: .2rem; }
.benefit-item p { font-size: .82rem; color: var(--gray); line-height: 1.55; }

/* benefits visual card */
.benefits-visual { position: relative; }
.bv-main {
  background: var(--dark2); border-radius: var(--r2);
  padding: 2.25rem; overflow: hidden; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.bv-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-main);
}
.bv-label { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.25rem; }
.bv-score {
  font-size: 4.5rem; font-weight: 900; letter-spacing: -.06em;
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: .3rem;
}
.bv-score-label { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 2rem; }
.bv-bars { display: flex; flex-direction: column; gap: .75rem; }
.bv-bar-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.bv-bar-lbl { font-size: .75rem; color: rgba(255,255,255,.55); min-width: 80px; }
.bv-bar-track { flex: 1; height: 5px; background: rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.bv-bar-fill { height: 100%; border-radius: 10px; background: var(--grad-main); }
.bv-bar-val { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.7); min-width: 28px; text-align: right; }
.bv-badge {
  position: absolute; bottom: -1.25rem; right: -1.25rem;
  background: var(--gold); border-radius: var(--r2); padding: 1rem 1.4rem;
  box-shadow: 0 12px 32px rgba(212,168,67,.35);
}
.bv-badge-num { font-size: 1.9rem; font-weight: 900; color: #fff; line-height: 1; }
.bv-badge-lbl { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .08em; }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-section { padding: 6.5rem 0; background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 38px; left: calc(16.67% + 32px); right: calc(16.67% + 32px);
  height: 2px; background: linear-gradient(90deg, var(--purple), var(--teal));
  opacity: .2;
}
.step-card { text-align: center; padding: 2rem 1.5rem; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900;
  color: #fff; background: var(--grad-main);
  box-shadow: 0 8px 24px rgba(124,58,237,.3); position: relative; z-index: 1;
}
.step-card h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--dark2); margin-bottom: .6rem; letter-spacing: -.02em;
}
.step-card p { font-size: .87rem; color: var(--gray); line-height: 1.68; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.reviews-section {
  padding: 6.5rem 0;
  background: linear-gradient(145deg, #0f0e17 0%, #1a1830 100%);
  position: relative; overflow: hidden;
}
.reviews-section::before {
  content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.15), transparent 70%);
  top: -300px; right: -200px; pointer-events: none;
}
.reviews-section::after {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,.1), transparent 70%);
  bottom: -200px; left: -100px; pointer-events: none;
}
.reviews-section .section-tag { color: var(--gold2); }
.reviews-section .section-tag::before { background: var(--grad-gold); }
.reviews-section h2 { color: #fff; }
.reviews-section .s-subtitle { color: rgba(255,255,255,.45); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3.5rem; }
.review-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r2); padding: 2rem;
  transition: var(--trans); position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
}
.review-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-main); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.review-card:hover { border-color: rgba(124,58,237,.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.review-card:hover::before { transform: scaleX(1); }
.review-card.featured { background: rgba(124,58,237,.1); border-color: rgba(124,58,237,.25); }
.review-card.featured::before { transform: scaleX(1); }
.review-q {
  font-size: 3rem; line-height: .8;
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: .75rem; display: block;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.star { color: var(--gold); font-size: .8rem; }
.review-text { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.72; font-style: italic; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.r-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: #fff;
}
.r-name { font-size: .86rem; font-weight: 700; color: #fff; }
.r-role { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: .1rem; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section { padding: 6.5rem 0; background: var(--off); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3.5rem; }
.faq-item {
  background: var(--white); border: 1px solid rgba(124,58,237,.1);
  border-radius: var(--r2); overflow: hidden; transition: var(--trans);
}
.faq-item:hover { border-color: rgba(124,58,237,.25); box-shadow: 0 8px 24px rgba(124,58,237,.1); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 1.5rem; cursor: pointer; gap: 1rem;
  font-weight: 600; font-size: .93rem; color: var(--dark2);
  user-select: none;
}
.faq-q:hover { color: var(--purple); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--trans); color: var(--purple); font-weight: 700;
}
.faq-item.open .faq-icon { background: var(--grad-main); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease;
  font-size: .88rem; color: var(--gray); line-height: 1.7;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.35rem; }

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.cta-section {
  padding: 7rem 0;
  background: var(--grad-main);
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; }
.cta-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  padding: .4rem 1.1rem; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; color: #fff; line-height: 1.1;
  letter-spacing: -.04em; margin-bottom: 1.1rem;
}
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.78); line-height: 1.7; max-width: 480px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--purple); padding: .9rem 2rem; border-radius: 100px; font-weight: 700; font-size: .95rem; box-shadow: 0 8px 28px rgba(0,0,0,.2); transition: var(--trans); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,.25); }
.cta-trust { margin-top: 2.5rem; font-size: .8rem; color: rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-trust span { display: flex; align-items: center; gap: .4rem; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--dark); padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.25rem;
}
.footer-brand-f {
  font-size: 1.2rem; font-weight: 700;
}
.footer-brand-f span { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a { font-size: .8rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.75); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.22); }
.footer-copy a { color: rgba(255,255,255,.4); border-bottom: 1px solid rgba(255,255,255,.15); transition: color .2s; }
.footer-copy a:hover { color: var(--purple2); }



  /* ===== El botón de WhatsApp — esto es lo único que necesitas copiar ===== */
  .whatsapp-btn {
    position: fixed;          /* <- la magia: se queda pegado a la pantalla */
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;      /* verde oficial de WhatsApp */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;            /* siempre por encima de todo */
    transition: transform 0.2s ease;
  }
  .whatsapp-btn:hover {
    transform: scale(1.1);
  }
  .whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
  }

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

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-float { display: none; }
  .benefits-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: .85rem 0; }
  .nav-links, .nav-cta { display: none; }
  .scroll-runway { height: auto; }
  .video-sticky  { position: relative; height: auto; min-height: 100vh; overflow: visible; }
  .hero video { object-position: left center; }
  .hamburger { display: flex; }
  h1.hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .services-grid, .process-steps, .reviews-grid, .faq-grid { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .bv-badge { position: static; margin-top: 1.5rem; display: inline-block; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 5rem 0; }
  .two-col { flex-direction: column; padding: 2em; }
}
