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

:root {
  --black:         #080808;
  --dark:          #0f0f0f;
  --surface:       #161616;
  --border:        #252525;
  --text:          #f0f0f0;
  --muted:         #b0b0b0;
  --fuchsia:       #e8007f;
  --fuchsia-mid:   #c4006b;
  --fuchsia-light: #ff4db3;
  --fuchsia-glow:  rgba(232,0,127,0.3);
  --ease:          cubic-bezier(0.25,0.46,0.45,0.94);
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  overscroll-behavior: none;
}

behold-widget { display: block; max-width: 100%; }

img { display: block; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--fuchsia); }

/* ── REVEAL ── */
.reveal       { opacity:0; transform:translateY(50px);  transition:opacity .9s var(--ease),transform .9s var(--ease); }
.reveal-left  { opacity:0; transform:translateX(-60px); transition:opacity .9s var(--ease),transform .9s var(--ease); }
.reveal-right { opacity:0; transform:translateX(60px);  transition:opacity .9s var(--ease),transform .9s var(--ease); }
.reveal.visible,.reveal-left.visible,.reveal-right.visible { opacity:1; transform:none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s} .d6{transition-delay:.6s}

/* ── NAV ── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: background .5s var(--ease), padding .4s var(--ease);
}
nav.solid {
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: .9rem 4rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.nav-logo > img {
  height: 44px;
  transition: height .4s var(--ease);
  flex-shrink: 0;
}
nav.solid .nav-logo > img { height: 34px; }
.nav-logo-text {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  transition: height .4s var(--ease);
}
nav.solid .nav-logo-text { height: 34px; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(240,240,240,.7);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--fuchsia);
  transition: width .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--fuchsia-light); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

.nav-btn {
  padding: .55rem 1.5rem;
  background: var(--fuchsia) !important;
  color: #fff !important;
  border-radius: 2px;
  transition: background .2s, box-shadow .2s !important;
}
.nav-btn::after { display:none !important; }
.nav-btn:hover { background: var(--fuchsia-light) !important; box-shadow: 0 0 24px var(--fuchsia-glow); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { display:block; width:22px; height:1.5px; background:var(--text); transition:.3s; }

/* mobile nav */
.mob-nav {
  position: fixed; inset: 0;
  z-index: 190;
  background: rgba(0,0,0,0);
  opacity: 0; pointer-events: none;
  transition: opacity .35s, background .35s;
}
.mob-nav.open { opacity:1; pointer-events:all; background:rgba(0,0,0,.55); }
.mob-nav-inner {
  position: absolute; top:0; right:0;
  width: 75%; max-width: 300px; height: 100%;
  background: #0d0d0d;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 2rem; padding: 2rem 2.5rem;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.mob-nav.open .mob-nav-inner { transform: translateX(0); }
.mob-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--text);
  text-decoration: none; transition: color .2s;
}
.mob-nav a:hover { color: var(--fuchsia-light); }

/* ── SHARED TYPOGRAPHY ── */
.section-no {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--fuchsia-light);
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1.4rem;
}
.section-no::before { content:''; width:30px; height:1px; background:var(--fuchsia); display:block; }

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem,3.5vw,3.4rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -.02em; margin-bottom: 2rem;
}
.section-h2 em { font-style:italic; color:var(--fuchsia-light); }

/* ── BUTTONS ── */
.btn-fill {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--fuchsia); color: #fff;
  text-decoration: none; font-size: .75rem;
  font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; border-radius: 2px;
  transition: background .25s, box-shadow .25s, transform .25s;
  box-shadow: 0 4px 30px var(--fuchsia-glow);
}
.btn-fill:hover { background:var(--fuchsia-light); box-shadow:0 6px 50px rgba(232,0,127,.5); transform:translateY(-2px); }

.btn-ghost {
  display: inline-block;
  padding: 1rem 2.4rem;
  border: 1px solid rgba(240,240,240,.25);
  color: var(--text); text-decoration: none;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  border-radius: 2px; transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color:var(--fuchsia-light); color:var(--fuchsia-light); }

.btn-outline {
  display: inline-block;
  padding: .85rem 2.2rem;
  border: 1px solid var(--fuchsia);
  color: var(--fuchsia-light); text-decoration: none;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  border-radius: 2px; transition: background .25s, color .25s, box-shadow .25s;
}
.btn-outline:hover { background:var(--fuchsia); color:#fff; box-shadow:0 0 30px var(--fuchsia-glow); }

/* ── PAGE HERO (subpáginas) ── */
.page-hero {
  padding: 9rem 5rem 5rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: attr(data-title);
  position: absolute;
  right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 16vw, 18rem);
  font-weight: 900; font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232,0,127,.12);
  pointer-events: none; line-height: 1; white-space: nowrap;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem,6vw,5.5rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -.03em; max-width: 800px;
}
.page-hero h1 em { font-style:italic; color:var(--fuchsia-light); }
.page-hero .page-lead {
  margin-top: 1.5rem; font-size: 1.1rem;
  color: var(--muted); line-height: 1.8; max-width: 600px;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 2rem; font-size: .7rem;
  font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase;
}
.page-breadcrumb a { color: var(--fuchsia); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--fuchsia-light); }
.page-breadcrumb span { color: var(--muted); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--fuchsia);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 2.8rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem,4vw,3.6rem);
  font-weight: 900; color:#fff;
  display: block; line-height: 1; margin-bottom: .4rem;
}
.stat-label { font-size:.68rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.7); }

/* ── VIDEO STRIP ── */
.video-strip { position:relative; height:70vh; overflow:hidden; }
.video-strip video { width:100%; height:100%; object-fit:cover; filter:brightness(.4) grayscale(30%); }
.video-strip-overlay { position:absolute; inset:0; background:rgba(8,8,8,.45); display:flex; align-items:center; justify-content:center; }
.video-quote { text-align:center; max-width:820px; padding:0 2rem; }
.video-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,4vw,3.6rem);
  font-style: italic; font-weight: 700;
  line-height: 1.25; color:#fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.8);
}
.video-quote blockquote em { font-style:normal; color:var(--fuchsia-light); text-shadow:0 0 60px rgba(232,0,127,.6); }
.video-quote cite { display:block; margin-top:1.2rem; font-style:normal; font-size:.72rem; letter-spacing:.3em; text-transform:uppercase; color:rgba(240,240,240,.4); }

/* ── CTA FUCHSIA ── */
.cta-section {
  background: var(--fuchsia);
  padding: 8rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem,5vw,4.4rem);
  font-weight: 900; line-height: 1.05;
  color:#fff; letter-spacing:-.02em;
}
.cta-text h2 em { font-style:italic; color:rgba(255,255,255,.6); }
.cta-text p { margin-top:1.5rem; font-size:1.05rem; color:rgba(255,255,255,.75); line-height:1.8; }
.cta-actions { display:flex; flex-direction:column; gap:1.2rem; }
.cta-btn {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.4rem 2rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px; color:#fff;
  text-decoration: none;
  transition: background .25s, border-color .25s, transform .25s;
}
.cta-btn:hover { background:rgba(255,255,255,.22); border-color:rgba(255,255,255,.5); transform:translateX(6px); }
.cta-btn-icon { width:44px; height:44px; background:rgba(255,255,255,.2); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.cta-btn-text strong { display:block; font-size:.68rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.6); margin-bottom:.2rem; }
.cta-btn-text span { font-size:1rem; font-weight:600; }

/* ── FOOTER ── */
footer { background:var(--dark); border-top:1px solid var(--border); }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:4rem; padding:5rem 5rem 4rem; }
.footer-logo-wrap { display:flex; align-items:center; gap:8px; margin-bottom:1.2rem; }
.footer-logo-icon { height:52px; flex-shrink:0; }
.footer-logo-text { height:52px; width:auto; flex-shrink:0; }
.footer-brand p { font-size:.85rem; color:var(--muted); line-height:1.8; max-width:300px; }
.footer-col h4 { font-size:.65rem; font-weight:700; letter-spacing:.25em; text-transform:uppercase; color:var(--fuchsia); margin-bottom:1.4rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.7rem; }
.footer-col a { color:var(--muted); text-decoration:none; font-size:.88rem; transition:color .2s; }
.footer-col a:hover { color:var(--fuchsia-light); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding:1.6rem 5rem; border-top:1px solid var(--border); font-size:.75rem; color:#555; }
.footer-bottom a { color:#555; text-decoration:none; transition:color .2s; }
.footer-bottom a:hover { color:var(--fuchsia-light); }
.footer-legal { display:flex; gap:2rem; }

/* ── SECTION FLEX HEADER ── */
.section-flex-head { display:flex; align-items:flex-end; justify-content:space-between; }
@media (max-width:768px) {
  .section-flex-head { flex-direction:column; align-items:flex-start; gap:.5rem; }
}

/* ── REVIEWS GRID ── */
.reviews-wrap { overflow: hidden; }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:3rem; }
.reviews-dots { display:none; justify-content:center; gap:8px; margin-top:1.5rem; }
.reviews-dot { width:7px; height:7px; border-radius:50%; background:rgba(240,240,240,.2); cursor:pointer; transition:background .3s, transform .3s; }
.reviews-dot.active { background:var(--fuchsia); transform:scale(1.4); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding:1rem 2rem; }
  nav.solid { padding:.8rem 2rem; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .page-hero { padding:7rem 2rem 3.5rem; }
  .page-hero::before { display:none; }
  .cta-section { grid-template-columns:1fr; padding:5rem 2rem; gap:3rem; }
  .stats-bar { grid-template-columns:1fr 1fr; }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.15); }
  .stat-item:nth-child(odd) { border-right:1px solid rgba(255,255,255,.15); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom:none; }
  .footer-top { grid-template-columns:1fr 1fr; padding:4rem 2rem 3rem; }
  .footer-bottom { flex-direction:column; gap:1rem; padding:1.5rem 2rem; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns:1fr; }
  .stats-bar { grid-template-columns:1fr 1fr; }
  .reviews-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 1rem;
  }
  .reviews-wrap::-webkit-scrollbar { display:none; }
  .reviews-grid {
    display: flex;
    gap: 12px;
  }
  .reviews-dots { display:flex; }
  .reviews-grid > div {
    flex: 0 0 82%;
    scroll-snap-align: start;
    border-radius: 12px;
    border: 1px solid rgba(232,0,127,.2);
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float { position:fixed; bottom:2rem; right:2rem; z-index:999; width:56px; height:56px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,.4); transition:transform .2s, box-shadow .2s; text-decoration:none; }
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,.6); }
.wa-float svg { flex-shrink:0; }
