:root{
  --deep:#2f5368;
  --abyss:#122e3c;
  --aqua:#7edddd;
  --teal:#95dbd3;
  --shell:#f5f0f3;
  --muted:#9fc2c6;
  --line: rgba(126,221,221,0.18);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--shell);
  color:var(--deep);
  font-family:'Jost', sans-serif;
  -webkit-font-smoothing:antialiased;
}
img,video{max-width:100%;display:block;}

.serif{font-family:'Cormorant Garamond', serif;}

/* ---------- Nav ---------- */
.nav{
  position:sticky; top:0; z-index:50;
  background:var(--abyss);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:1200px; margin:0 auto; padding:14px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.nav-brand{
  display:flex; align-items:center; text-decoration:none; white-space:nowrap;
}
.nav-logo{
  height:30px; width:auto; display:block;
}
.nav-links{
  display:flex; gap:4px; align-items:center;
}
.nav-links a{
  color:var(--muted); text-decoration:none; font-size:12.5px; letter-spacing:.08em;
  text-transform:uppercase; padding:8px 14px; border-radius:20px; white-space:nowrap;
  transition:background .2s, color .2s;
  display:inline-flex; align-items:center; gap:6px;
}
.nav-links a:hover, .nav-links a.active{ background:rgba(126,221,221,0.14); color:var(--aqua); }
.nav-cta{
  background:var(--aqua); color:var(--abyss); text-decoration:none;
  font-size:12.5px; font-weight:600; letter-spacing:.04em; padding:9px 16px;
  border-radius:20px; white-space:nowrap; transition:opacity .2s;
  display:inline-flex; align-items:center; gap:6px;
}
.nav-icon{ width:15px; height:15px; flex-shrink:0; }
.nav-cta:hover{opacity:.85;}

/* ---------- Hero ---------- */
.hero{
  position:relative; color:var(--shell);
  padding:130px 20px 100px; text-align:center; overflow:hidden;
  background:var(--abyss);
}
.hero-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:0;
}
.hero::before{
  content:''; position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(18,46,60,0.55) 0%, rgba(18,46,60,0.35) 45%, rgba(18,46,60,0.75) 100%);
}
.hero-content{position:relative; z-index:2;}
.eyebrow{
  font-size:12.5px; letter-spacing:.22em; text-transform:uppercase; color:var(--aqua);
  font-weight:600; margin:0 0 18px;
  text-shadow:0 2px 12px rgba(18,46,60,0.6);
}
.eyebrow-short{display:none;}
@media(max-width:480px){
  .eyebrow-full{display:none;}
  .eyebrow-short{display:inline;}
}
.hero h1{
  font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500;
  font-size:clamp(38px, 6vw, 66px); line-height:1.08; margin:0 0 22px;
  text-shadow:0 4px 20px rgba(18,46,60,0.65);
}
.hero-script{
  font-family:'Alex Brush', cursive; font-style:normal; font-weight:400;
  font-size:clamp(52px, 9vw, 100px); line-height:1; margin:0 0 22px;
  background:linear-gradient(100deg, #cdf1ec 0%, #7edddd 45%, #ffffff 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  filter:drop-shadow(0 4px 18px rgba(18,46,60,0.5));
}
.hero p{
  max-width:560px; margin:0 auto; color:var(--shell); font-size:16px; line-height:1.6;
  text-shadow:0 2px 14px rgba(18,46,60,0.7);
}
.hero-scroll{
  margin-top:46px; font-size:11px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--shell); opacity:.85;
  text-shadow:0 2px 10px rgba(18,46,60,0.6);
}

/* ---------- Category pills row (mobile-friendly quick jump) ---------- */
.quickjump{
  max-width:1200px; margin:-40px auto 0; padding:0 20px; position:relative; z-index:2;
}
.quickjump-inner{
  background:linear-gradient(180deg, rgba(47,83,104,0.92), var(--deep) 40%);
  border-radius:18px; padding:18px 14px 14px;
  box-shadow:0 20px 40px rgba(18,46,60,0.25);
}
.quickjump-title{
  font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500;
  color:var(--shell); text-align:center; font-size:clamp(18px,2.4vw,24px);
  margin:0 0 14px;
}
.quickjump-inner .qj-grid{
  display:grid; grid-template-columns:repeat(6,1fr); gap:8px;
}
.qj-item{
  color:var(--shell); text-decoration:none; text-align:center; font-size:11.5px;
  letter-spacing:.04em; padding:10px 4px; border-radius:12px; transition:background .2s;
}
.qj-item:hover{ background:rgba(126,221,221,0.16); }
@media(max-width:760px){
  .quickjump-inner .qj-grid{grid-template-columns:repeat(3,1fr);}
}

/* ---------- Category section ---------- */
.category{
  max-width:1200px; margin:0 auto; padding:90px 20px 30px;
  scroll-margin-top:76px;
}
.category-head{ margin-bottom:36px; }
.category-eyebrow{
  font-size:12.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--deep);
  opacity:.6; font-weight:600; margin:0 0 10px;
}
.category-title{
  font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500;
  font-size:clamp(30px, 4vw, 46px); margin:0 0 12px; color:var(--abyss);
}
.category-desc{ max-width:620px; color:var(--deep); opacity:.75; font-size:15px; line-height:1.6; margin:0;}

/* ---------- Certificados hero ---------- */
.cert-section{ padding-top:70px; }
.cert-hero{
  position:relative; border-radius:22px; overflow:hidden;
  min-height:560px; display:flex; align-items:center; justify-content:center;
  margin-bottom:26px;
}
.cert-hero-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.cert-hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(14,30,36,0.72) 0%, rgba(14,40,48,0.42) 55%, rgba(14,40,48,0.66) 100%);
}
.cert-hero-content{
  position:relative; z-index:2; text-align:center; padding:56px 24px;
  display:flex; flex-direction:column; align-items:center;
}
.cert-hero-logo{ height:44px; margin-bottom:16px; }
.cert-hero .flourish{ width:56px; height:13px; margin-bottom:20px; }
.cert-hero-title{
  font-family:'Cormorant Garamond', serif; font-weight:500; color:#fff;
  font-size:clamp(36px,6vw,58px); line-height:1.05; margin:0 0 14px;
}
.cert-hero-title em{ color:var(--teal-light,#7eddd6); font-style:italic; }
.cert-hero-sub{
  font-size:14.5px; letter-spacing:.14em; text-transform:uppercase; color:#fff; opacity:.9;
  margin:0 0 6px; font-weight:600;
}
.cert-hero-tag{
  font-family:'Cormorant Garamond', serif; font-style:italic; color:var(--aqua);
  font-size:19px; margin:0 0 30px;
}
.cert-whatsapp{
  display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,0.95);
  color:var(--abyss); text-decoration:none; padding:13px 22px; border-radius:30px;
  font-size:14px; font-weight:500; box-shadow:0 10px 30px rgba(0,0,0,0.25);
  transition:transform .2s;
}
.cert-whatsapp:hover{ transform:translateY(-2px); }
.cert-whatsapp svg{ width:19px; height:19px; color:#25D366; flex-shrink:0; }

.cert-features{
  display:grid; grid-template-columns:repeat(4,1fr); gap:10px;
  margin:34px 0 6px; padding:26px 10px 6px; border-top:1px solid rgba(14,77,84,0.12);
}
.cert-feature{
  display:flex; flex-direction:column; align-items:center; gap:9px; text-align:center;
  color:var(--deep); font-size:12.5px; line-height:1.35; font-weight:500;
}
.cert-feature svg{ width:26px; height:26px; color:var(--teal,#1f8a86); }
.cert-footer-tag{
  text-align:center; font-family:'Cormorant Garamond', serif; font-style:italic;
  color:var(--deep); opacity:.75; font-size:17px; margin:22px 0 0;
}
.cert-services{
  display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin:0 0 30px;
}
.cert-service-btn{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  background:var(--cream,#f1efe9); border-radius:16px; padding:22px 8px;
  text-decoration:none; color:var(--abyss); text-align:center;
  font-size:12.5px; font-weight:700; letter-spacing:.03em; text-transform:uppercase;
  line-height:1.3; border:1px solid rgba(14,77,84,0.08);
  transition:transform .2s, box-shadow .2s, background .2s;
}
.cert-service-btn:hover{ background:#fff; transform:translateY(-3px); box-shadow:0 12px 26px rgba(14,77,84,0.12); }
.cert-service-btn svg{ width:34px; height:34px; color:var(--deep); }
@media(max-width:640px){
  .cert-services{ grid-template-columns:repeat(2,1fr); gap:10px; }
  .cert-service-btn{ padding:18px 8px; }
  .cert-service-btn svg{ width:28px; height:28px; }
}
.cert-alt-pay{ margin:32px auto 0; max-width:760px; text-align:center; }
.cert-alt-label{
  font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--deep);
  opacity:.6; font-weight:600; margin:0 0 14px;
}
.cert-alt-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.cert-alt-btn{
  display:flex; flex-direction:column; align-items:center; gap:8px;
  padding:16px 8px; border-radius:14px; border:1px solid rgba(14,77,84,0.16);
  color:var(--deep); text-decoration:none; font-size:12.5px; font-weight:500;
  background:#fff; transition:border-color .2s, transform .2s, box-shadow .2s;
}
.cert-alt-btn:hover{ border-color:var(--teal,#1f8a86); transform:translateY(-2px); box-shadow:0 10px 24px rgba(14,77,84,0.1); }
.cert-alt-btn svg{ width:24px; height:24px; color:var(--teal,#1f8a86); }
@media(max-width:640px){
  .cert-alt-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
}
@media(max-width:640px){
  .cert-hero{ min-height:460px; border-radius:16px; }
  .cert-hero-content{ padding:40px 18px; }
  .cert-whatsapp{ font-size:12.5px; padding:11px 16px; text-align:left; }
  .cert-features{ grid-template-columns:repeat(2,1fr); gap:20px 10px; }
}

/* hero video for category */
.cat-hero{
  position:relative; border-radius:20px; overflow:hidden; margin:28px 0 44px;
  background:var(--abyss); aspect-ratio:16/7; max-height:420px; cursor:pointer;
}
.cat-hero video{width:100%;height:100%;object-fit:cover;}
.cat-hero-overlay{
  position:absolute; inset:0; display:flex; align-items:flex-end;
  background:linear-gradient(180deg, rgba(18,46,60,0) 40%, rgba(18,46,60,0.75) 100%);
  padding:22px; pointer-events:none;
}
.cat-hero-tag{
  color:var(--shell); font-family:'Cormorant Garamond', serif; font-style:italic; font-size:22px;
}
.sound-btn{
  position:absolute; top:16px; right:16px; z-index:2;
  display:flex; align-items:center; gap:7px;
  background:rgba(10,26,34,0.55); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,0.35); color:#fff;
  padding:8px 14px 8px 10px; border-radius:30px; cursor:pointer;
  font-size:12.5px; font-family:'Jost',sans-serif; font-weight:500; letter-spacing:.02em;
  transition:background .2s, transform .2s;
}
.sound-btn:hover{ background:rgba(10,26,34,0.75); transform:translateY(-1px); }
.sound-btn svg{ width:16px; height:16px; flex-shrink:0; }

/* ---------- Treatment grid & cards ---------- */
.grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(210px,1fr)); gap:18px;
}

/* ---------- Masajes carousel ---------- */
.carousel-wrap{ position:relative; margin:0 -4px; }
.carousel{
  display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:4px 4px 18px; scrollbar-width:none; -ms-overflow-style:none;
  scroll-behavior:smooth;
}
.carousel::-webkit-scrollbar{ display:none; }
.carousel > .card{
  flex:0 0 auto; width:240px; scroll-snap-align:start;
}
.car-arrow{
  position:absolute; top:calc(50% - 9px); transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%; border:none; cursor:pointer;
  background:rgba(14,40,48,0.55); backdrop-filter:blur(6px); color:#fff;
  display:flex; align-items:center; justify-content:center; z-index:3;
  box-shadow:0 8px 20px rgba(14,40,48,0.25); transition:background .2s, transform .2s;
}
.car-arrow:hover{ background:rgba(14,40,48,0.8); }
.car-arrow svg{ width:20px; height:20px; }
.car-prev{ left:-6px; }
.car-next{ right:-6px; }
@media(max-width:760px){
  .carousel > .card{ width:198px; }
  .car-arrow{ width:36px; height:36px; }
  .car-arrow svg{ width:16px; height:16px; }
  .car-prev{ left:2px; }
  .car-next{ right:2px; }
}
.card{
  position:relative; border-radius:16px; overflow:hidden; background:var(--deep);
  aspect-ratio:3/4.3; cursor:pointer; isolation:isolate;
}
.card video{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
}
.card-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:top; z-index:0;
}
.card-noop{cursor:default;}
.card .fallback-bg{
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(circle at 20% 15%, rgba(126,221,221,0.25), transparent 55%),
    radial-gradient(circle at 85% 85%, rgba(149,219,211,0.18), transparent 50%),
    linear-gradient(160deg, var(--deep), var(--abyss));
}
.card-scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(18,46,60,0.05) 45%, rgba(18,46,60,0.92) 100%);
}
.card-body{ position:absolute; left:0; right:0; bottom:0; z-index:2; padding:14px 14px 16px; }
.card-name{ color:#fff; font-weight:600; font-size:14.5px; margin:0 0 3px; line-height:1.25;}
.card-meta{ color:var(--muted); font-size:11.5px; margin:0; display:flex; gap:8px; flex-wrap:wrap;}
.card-price{ color:var(--aqua); font-weight:700; }
.play-badge{
  position:absolute; top:12px; right:12px; z-index:2;
  width:34px; height:34px; border-radius:50%; background:var(--aqua);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 14px rgba(0,0,0,0.25);
}
.play-badge svg{ width:12px; height:12px; margin-left:2px; }
.soon-badge{
  position:absolute; top:12px; left:12px; z-index:2;
  background:rgba(245,240,243,0.14); color:var(--muted); font-size:10px;
  letter-spacing:.06em; text-transform:uppercase; padding:5px 9px; border-radius:20px;
  border:1px solid rgba(159,194,198,0.35);
}

/* ---------- Pay button (PayPal) ---------- */
.pay-btn{
  margin-top:9px; display:inline-flex; align-items:center; gap:6px;
  background:var(--aqua); color:var(--abyss); text-decoration:none; font-weight:700;
  font-size:11.5px; letter-spacing:.02em; padding:8px 12px; border-radius:20px;
  transition:opacity .2s; width:fit-content;
}
.pay-btn:hover{opacity:.85;}
.pay-btn svg{ flex:0 0 auto; }

/* ---------- Pay cards (certificados / pareja) ---------- */
.grid-pay{ grid-template-columns:repeat(auto-fill, minmax(230px,1fr)); }
.card-cert{ aspect-ratio:4/3.4; }
.card-cert .card-scrim-cert{
  background:linear-gradient(180deg, rgba(18,46,60,0) 72%, rgba(18,46,60,0.88) 100%);
}
.card-body-cert{ display:flex; justify-content:center; padding-bottom:12px; }
@media(max-width:640px){
  .grid-pay{ grid-template-columns:repeat(3,1fr); gap:8px; }
  .card-body-cert{ padding-bottom:8px; }
  .grid-pay .pay-btn{ font-size:9px; padding:6px 7px; gap:3px; }
  .grid-pay .pay-btn svg{ width:11px; height:11px; }
}
.paycard{
  border-radius:16px; overflow:hidden; background:#fff;
  box-shadow:0 4px 18px rgba(18,46,60,0.08); border:1px solid rgba(47,83,104,0.08);
}
.paycard-img{ width:100%; aspect-ratio:1/1; object-fit:cover; display:block; }
.paycard-body{ padding:14px 16px 16px; }
.paycard-body .card-name{ color:var(--abyss); }
.paycard-body .card-meta{ color:var(--deep); opacity:.7; }
.paycard-body .card-price{ color:var(--deep); opacity:1; }
.paycard-desc{ color:var(--deep); opacity:.75; font-size:12.5px; line-height:1.5; margin:2px 0 8px; }

.grid-pareja{ grid-template-columns:repeat(auto-fill, minmax(280px,1fr)); }
.paycard-wide .paycard-img{ aspect-ratio:4/3; }

/* ---------- Promo pack (gancho de depilación) ---------- */
.promo-pack{
  display:flex; gap:0; border-radius:20px; overflow:hidden; margin:28px 0;
  background:var(--abyss); box-shadow:0 8px 30px rgba(18,46,60,0.14);
}
.promo-pack-img{ width:38%; max-width:280px; object-fit:cover; }
.promo-pack-body{ flex:1; padding:26px 28px; color:var(--shell); display:flex; flex-direction:column; justify-content:center; }
.promo-pack-eyebrow{ margin:0 0 6px; font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--aqua); font-weight:600; }
.promo-pack-title{ margin:0 0 6px; font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500; font-size:30px; color:#fff; }
.promo-pack-sessions{ margin:0 0 2px; color:var(--muted); font-size:13px; }
.promo-pack-price{ margin:0 0 10px; color:var(--aqua); font-weight:700; font-size:22px; }
.promo-pack-gift{ margin:0 0 16px; font-size:13px; color:var(--muted); }
.promo-pack-gift strong{ color:var(--shell); }
.promo-pack .pay-btn{ margin-top:0; }

@media (max-width:560px){
  .promo-pack{ flex-direction:column; }
  .promo-pack-img{ width:100%; max-width:none; aspect-ratio:4/3; }
}

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:100; background:#0a1a22;
  display:none; align-items:center; justify-content:center; padding:24px;
}
.lightbox.open{display:flex;}
.lightbox-inner{ position:relative; max-width:420px; width:100%; }
.lightbox video{ width:100%; border-radius:14px; background:#000; max-height:80vh; }
.lightbox img{ width:100%; border-radius:14px; display:block; max-height:80vh; object-fit:contain; background:#000; }
.lightbox-close{
  position:absolute; top:-42px; right:0; color:var(--shell); background:none; border:none;
  font-size:15px; letter-spacing:.08em; text-transform:uppercase; cursor:pointer;
}
.lightbox-title{ color:var(--shell); text-align:center; margin-top:14px; font-family:'Cormorant Garamond',serif; font-style:italic; font-size:20px;}

/* ---------- Momentos gallery (unassigned clips) ---------- */
.momentos{
  margin-top:10px; padding:26px; border-radius:18px; background:rgba(47,83,104,0.06);
  border:1px dashed rgba(47,83,104,0.25);
}
.momentos-head{ margin-bottom:16px; }
.momentos-head p.title{ margin:0 0 4px; font-weight:600; color:var(--deep); font-size:14.5px;}
.momentos-head p.sub{ margin:0; color:var(--deep); opacity:.65; font-size:13px; }
.momentos-row{
  display:flex; gap:14px; overflow-x:auto; padding-bottom:6px; scrollbar-width:thin;
}
.momento-card{
  position:relative; flex:0 0 130px; aspect-ratio:3/4.6; border-radius:12px; overflow:hidden;
  background:var(--deep); cursor:pointer;
}
.momento-card video{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}
.momento-card .play-badge{width:28px;height:28px; top:8px; right:8px;}
.momento-card .play-badge svg{width:10px;height:10px;}

/* ---------- teaser (categories without per-treatment video yet) ---------- */
.teaser{
  border-radius:18px; background:var(--deep); color:var(--shell);
  padding:30px 26px; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.teaser p{ margin:0; color:var(--muted); font-size:14px; max-width:480px; line-height:1.6;}
.teaser strong{color:var(--shell);}
.teaser a{
  background:var(--aqua); color:var(--abyss); text-decoration:none; font-weight:600;
  font-size:13px; padding:11px 20px; border-radius:22px; white-space:nowrap;
}

/* ---------- testimonials ---------- */
.testi{ background:var(--abyss); padding:80px 20px; margin-top:40px;}
.testi-inner{max-width:1200px;margin:0 auto;}
.testi-head{ text-align:center; margin-bottom:36px; }
.testi-head .category-eyebrow{color:var(--aqua); opacity:1;}
.testi-head h2{color:var(--shell); font-family:'Cormorant Garamond', serif; font-style:italic; font-size:clamp(28px,4vw,40px); margin:8px 0 0;}
.testi-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; max-width:600px; margin:0 auto;}
.testi-card{ position:relative; border-radius:16px; overflow:hidden; aspect-ratio:3/4.3; background:#000; cursor:pointer;}
.testi-card video{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}

/* ---------- footer ---------- */
footer{ background:var(--abyss); color:var(--muted); text-align:center; padding:40px 20px 50px; border-top:1px solid var(--line);}
footer .foot-tag{ font-family:'Cormorant Garamond', serif; font-style:italic; color:var(--shell); font-size:20px; margin:0 0 18px;}
footer .foot-links{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; }
footer .foot-links a{ color:var(--muted); text-decoration:none; }

@media(max-width:600px){
  .cat-hero{aspect-ratio:3/4; max-height:320px;}
}
