/* ============================================================
   VEXUS · POCUS Avançado — Landing
   Design system: dark navy + white, VEXUS blue + cyan accent
   Minimalist / futuristic · premium · ultrasound-wave motifs
   ============================================================ */

:root{
  /* palette */
  --bg:        #060a12;
  --bg-2:      #0a1020;
  --bg-3:      #0e1626;
  --navy:      #081427;
  --panel:     #0c1322;
  --ink:       #eef3fb;
  --ink-dim:   #9eb0c8;
  --ink-faint: #5d6f8a;
  --line:      rgba(255,255,255,.085);
  --line-2:    rgba(255,255,255,.14);

  /* accent — driven by hue so Tweaks can shift it */
  --acc-h: 250;
  --accent:      oklch(0.66 0.12 var(--acc-h));
  --accent-2:    oklch(0.78 0.11 var(--acc-h));
  --accent-deep: oklch(0.50 0.11 var(--acc-h));
  --accent-soft: oklch(0.66 0.12 var(--acc-h) / .14);
  --glow:        oklch(0.66 0.13 var(--acc-h) / .40);
  --cyan:        oklch(0.80 0.11 205);
  --cyan-soft:   oklch(0.80 0.11 205 / .14);

  /* type */
  --f-display: 'Space Grotesk', system-ui, sans-serif;
  --f-body:    'Space Grotesk', system-ui, sans-serif;
  --f-mono:    'Space Mono', ui-monospace, monospace;

  /* metrics */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:17.5px;
  line-height:1.62;
  font-weight:400;
  letter-spacing:0;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--accent-soft); color:#fff; }

/* ---------- layout ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.section{ position:relative; padding-block:clamp(48px,5.5vw,86px); }
.section--tight{ padding-block:clamp(38px,4.5vw,64px); }

/* ---------- type ---------- */
h1,h2,h3{ font-family:var(--f-display); font-weight:500; line-height:1.02; letter-spacing:-0.02em; margin:0; }
.display{
  font-size:clamp(34px,5.6vw,76px);
  font-weight:500;
  line-height:1.0;
  letter-spacing:-0.03em;
}
.h2{ font-size:clamp(28px,3.8vw,50px); line-height:1.04; }
.h3{ font-size:clamp(20px,2vw,27px); line-height:1.1; }
.lead{ font-size:clamp(18px,1.5vw,22px); color:var(--ink-dim); line-height:1.55; }
p{ margin:0 0 1.1em; text-wrap:pretty; }
strong{ color:var(--ink); font-weight:600; }
.accent-text{ color:var(--accent-2); }

/* eyebrow / mono label */
.eyebrow{
  font-family:var(--f-mono);
  font-size:12.5px;
  font-weight:400;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--accent-2);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:""; width:26px; height:1px; background:var(--accent); opacity:.7;
}
.eyebrow--center{ justify-content:center; }
.eyebrow--center::after{
  content:""; width:26px; height:1px; background:var(--accent); opacity:.7;
}

/* ---------- buttons ---------- */
.btn{
  --b-bg: var(--accent);
  font-family:var(--f-body);
  font-weight:700;
  font-size:15.5px;
  letter-spacing:.02em;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:17px 30px;
  border-radius:11px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .25s ease, background .2s ease;
  white-space:nowrap;
  text-transform:uppercase;
}
.btn--primary{
  background:linear-gradient(180deg, var(--accent-2), var(--accent));
  color:#03101e;
  box-shadow:0 0 0 1px var(--accent-deep) inset, 0 18px 40px -16px var(--glow);
}
.btn--primary:hover{ transform:translateY(-2px); box-shadow:0 0 0 1px var(--accent-2) inset, 0 24px 50px -14px var(--glow); }
.btn--ghost{
  background:transparent; color:var(--ink);
  border:1px solid var(--line-2);
  text-transform:none; letter-spacing:0; font-weight:600;
}
.btn--ghost:hover{ border-color:var(--accent); color:var(--accent-2); }
.btn--lg{ padding:20px 38px; font-size:17px; }
.btn--block{ display:flex; width:100%; }

/* ---------- header ---------- */
.header{
  position:fixed; inset:0 0 auto 0; z-index:60;
  display:flex; align-items:center;
  padding-block:16px;
  transition:background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom:1px solid transparent;
}
.header.is-stuck{
  background:color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter:blur(16px) saturate(1.2);
  border-bottom:1px solid var(--line);
  padding-block:11px;
}
.header__row{ display:flex; align-items:center; justify-content:space-between; gap:24px; width:100%; }
.brand{ display:flex; align-items:center; gap:11px; }
.brand img{ height:30px; width:auto; }
.brand__sub{
  font-family:var(--f-mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ink-faint); padding-left:13px; border-left:1px solid var(--line-2);
}
.nav{ display:flex; align-items:center; gap:30px; }
.nav a{ font-size:14.5px; color:var(--ink-dim); font-weight:500; transition:color .2s; }
.nav a:hover{ color:var(--ink); }
.header .btn{ padding:12px 22px; font-size:13px; }
.menu-toggle{ display:none; }

/* ---------- hero ---------- */
.hero{ position:relative; padding-top:clamp(130px,17vh,200px); padding-bottom:clamp(60px,8vw,110px); overflow:hidden; }
.hero__grid{
  display:grid; grid-template-columns:1.08fr .92fr; gap:clamp(32px,5vw,72px); align-items:center;
}
.hero__grid--solo{ grid-template-columns:1fr; max-width:780px; }
.hero__banner{
  margin:clamp(36px,5vw,60px) 0 0; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line); box-shadow:0 40px 90px -50px #000;
}
.hero__banner img{ width:100%; height:auto; display:block; }

/* ---- hero laptop mockup with lid-opening animation ---- */
.laptop{
  max-width:840px; margin:clamp(30px,4vw,52px) auto 0;
  perspective:2200px; perspective-origin:50% 90%;
}
.laptop__screen-wrap{
  transform-style:preserve-3d;
  transform-origin:50% 100%;
  transform:rotateX(-90deg);
  opacity:.2;
  transition:transform 1.7s cubic-bezier(.16,.78,.22,1), opacity 1s ease;
  will-change:transform;
}
.laptop.is-open .laptop__screen-wrap{ transform:rotateX(0deg); opacity:1; }
.laptop__screen{
  position:relative;
  background:linear-gradient(180deg,#10151f,#0b0f17);
  border:1px solid #232b3a;
  border-radius:16px 16px 4px 4px;
  padding:16px 16px 18px;
  box-shadow:0 50px 110px -50px #000, inset 0 1px 0 rgba(255,255,255,.04);
}
.laptop__camera{
  position:absolute; top:7px; left:50%; transform:translateX(-50%);
  width:6px; height:6px; border-radius:50%;
  background:#2b3445; box-shadow:inset 0 0 0 1.5px #161c27;
}
.laptop__display{
  border-radius:6px; overflow:hidden; background:#000;
  border:1px solid #000; line-height:0;
}
.laptop__display video{ width:100%; height:auto; display:block; }
/* slideshow dentro do notebook (POCUS Online) — desliza para o lado */
.laptop-slides{ position:relative; aspect-ratio:16/9; overflow:hidden; background:#000; }
.laptop-slides__track{ display:flex; height:100%; transition:transform .7s cubic-bezier(.45,0,.2,1); will-change:transform; }
.laptop-slides__track img{
  flex:0 0 100%; width:100%; height:100%;
  object-fit:contain; object-position:center; display:block;
}
.laptop__base{
  position:relative; height:clamp(16px,1.8vw,24px);
  background:linear-gradient(180deg,#cdd3dc,#9aa3b1 38%,#6f7888 70%,#4b5360);
  border-radius:3px 3px 12px 12px;
  margin:0 auto; width:103%; max-width:none; left:50%; transform:translateX(-50%);
  box-shadow:0 26px 40px -22px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.5);
}
.laptop__notch{
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:16%; height:clamp(5px,.7vw,8px);
  background:linear-gradient(180deg,#5a6270,#3c434f);
  border-radius:0 0 9px 9px;
}
.hero__video{
  margin:clamp(18px,2.4vw,28px) 0 0; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line); box-shadow:0 40px 90px -50px #000; background:#000;
}
.hero__video video{ width:100%; height:auto; display:block; }
.hero__eyebrow{ margin-bottom:26px; }
.hero h1{ margin-bottom:26px; }
.hero h1 em{ font-style:normal; color:var(--accent-2); }
.hero__sub{ max-width:34em; margin-bottom:34px; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; margin-bottom:26px; }
.hero__micro{
  font-size:13.5px; color:var(--ink-dim); display:flex; flex-wrap:wrap; gap:7px 16px; align-items:center;
}
.hero__micro span{ display:inline-flex; align-items:center; gap:7px; }
.hero__micro .dot{ width:5px; height:5px; border-radius:99px; background:var(--accent); }

/* ultrasound scan visual */
.scan{
  position:relative; aspect-ratio:4/4.4; border-radius:var(--radius);
  border:1px solid var(--line); background:
    radial-gradient(120% 90% at 50% 0%, var(--bg-3), var(--bg-2) 60%, var(--bg) 100%);
  overflow:hidden;
  box-shadow:0 40px 90px -50px #000;
}
.scan__head{
  position:absolute; top:0; left:0; right:0; z-index:3;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px; font-family:var(--f-mono); font-size:11px; letter-spacing:.12em;
  color:var(--ink-faint); border-bottom:1px solid var(--line);
  text-transform:uppercase;
}
.scan__live{ display:inline-flex; align-items:center; gap:7px; color:var(--accent-2); }
.scan__live i{ width:7px; height:7px; border-radius:99px; background:var(--accent-2); box-shadow:0 0 10px var(--accent-2); animation:blink 1.6s infinite; }
@keyframes blink{ 0%,100%{opacity:1} 50%{opacity:.25} }
/* the cone/fan beam */
.scan__cone{
  position:absolute; top:54%; left:50%; transform:translate(-50%,-50%);
  width:84%; aspect-ratio:1/1.18;
  clip-path:polygon(50% 0%, 100% 100%, 0% 100%);
  background:
    conic-gradient(from 180deg at 50% 0%, transparent 0deg, var(--accent-soft) 12deg, transparent 24deg),
    repeating-radial-gradient(circle at 50% 0%, transparent 0 16px, oklch(0.7 0.1 var(--acc-h)/.05) 16px 17px);
  opacity:.9;
}
.scan__sweep{
  position:absolute; top:54%; left:50%; transform-origin:top center;
  width:2px; height:64%; transform:translate(-50%,0) rotate(-26deg);
  background:linear-gradient(180deg, var(--accent-2), transparent);
  box-shadow:0 0 18px var(--glow);
  animation:sweep 3.4s ease-in-out infinite;
  z-index:2;
}
@keyframes sweep{ 0%,100%{ transform:translate(-50%,0) rotate(-26deg) } 50%{ transform:translate(-50%,0) rotate(26deg) } }
.scan__blob{
  position:absolute; border-radius:50%; filter:blur(1px);
  background:radial-gradient(circle, oklch(0.8 0.08 var(--acc-h)/.5), transparent 70%);
}
.scan--photo{ aspect-ratio:auto; height:auto; }
.scan--photo img{ position:relative; z-index:1; }
.scan__caption{
  position:absolute; left:0; right:0; bottom:0; z-index:3;
  padding:14px 16px; border-top:1px solid var(--line);
  font-family:var(--f-mono); font-size:10.5px; letter-spacing:.1em; color:var(--ink-faint);
  display:flex; justify-content:space-between; text-transform:uppercase;
}

/* ---------- hero elegant shapes background ---------- */
.hero-bg{ position:absolute; inset:0; z-index:0; overflow:hidden; pointer-events:none; }
.hero-bg__wash{
  position:absolute; inset:0;
  background:linear-gradient(125deg,
    oklch(0.55 0.13 250 / .10) 0%, transparent 45%, oklch(0.6 0.1 230 / .08) 100%);
  filter:blur(40px);
}
.hero-bg__vignette{
  position:absolute; inset:0;
  background:linear-gradient(to top, var(--bg) 2%, transparent 30%, transparent 70%, color-mix(in oklab,var(--bg) 80%,transparent) 100%);
}
.hero-shapes{ position:absolute; inset:0; }
.shape{
  position:absolute; display:block; border-radius:999px;
  border:2px solid rgba(255,255,255,.14);
  box-shadow:0 8px 32px 0 rgba(120,170,255,.10);
  backdrop-filter:blur(2px);
  opacity:0;
  animation:shape-in 2.2s cubic-bezier(.23,.86,.39,.96) forwards;
}
.shape::after{
  content:""; position:absolute; inset:0; border-radius:999px;
  background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), transparent 70%);
}
.shape__float{ /* wrapper-less: float handled on same element via second animation layer */ }
/* each shape: gradient tint + position + size + rotation, with a gentle float */
.shape--1{ width:min(58vw,600px); height:140px; left:-6%; top:16%; rotate:12deg;
  background:linear-gradient(90deg, oklch(0.6 0.13 252 / .18), transparent);
  animation:shape-in 2.2s cubic-bezier(.23,.86,.39,.96) .3s forwards, float 12s ease-in-out .3s infinite; }
.shape--2{ width:min(48vw,500px); height:120px; right:-4%; top:72%; rotate:-15deg;
  background:linear-gradient(90deg, oklch(0.62 0.11 228 / .18), transparent);
  animation:shape-in 2.2s cubic-bezier(.23,.86,.39,.96) .5s forwards, float 14s ease-in-out .5s infinite; }
.shape--3{ width:min(30vw,300px); height:80px; left:8%; bottom:6%; rotate:-8deg;
  background:linear-gradient(90deg, oklch(0.55 0.14 264 / .18), transparent);
  animation:shape-in 2.2s cubic-bezier(.23,.86,.39,.96) .4s forwards, float 11s ease-in-out .4s infinite; }
.shape--4{ width:min(20vw,220px); height:62px; right:14%; top:9%; rotate:20deg;
  background:linear-gradient(90deg, oklch(0.66 0.1 218 / .18), transparent);
  animation:shape-in 2.2s cubic-bezier(.23,.86,.39,.96) .6s forwards, float 13s ease-in-out .6s infinite; }
.shape--5{ width:min(15vw,160px); height:44px; left:22%; top:4%; rotate:-25deg;
  background:linear-gradient(90deg, oklch(0.6 0.12 240 / .18), transparent);
  animation:shape-in 2.2s cubic-bezier(.23,.86,.39,.96) .7s forwards, float 10s ease-in-out .7s infinite; }
@keyframes shape-in{
  0%{ opacity:0; transform:translateY(-120px) rotate(-10deg); }
  100%{ opacity:1; transform:translateY(0) rotate(0deg); }
}
@keyframes float{
  0%,100%{ translate:0 0; } 50%{ translate:0 15px; }
}
@media (prefers-reduced-motion:reduce){
  .shape{ opacity:1; animation:none !important; }
}

/* shapes that emerge on scroll-into-view */
.hero-bg--reveal .shape{ animation-play-state:paused; }
.hero-bg--reveal.in .shape{ animation-play-state:running; }

/* ---------- background ornament ---------- */
.ornament{ position:absolute; inset:0; pointer-events:none; z-index:0; overflow:hidden; }
.ornament .arc{
  position:absolute; border:1px solid var(--line); border-radius:50%;
  opacity:.5;
}
.grid-bg{
  position:absolute; inset:0; pointer-events:none; z-index:0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 70%);
          mask-image:radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 70%);
  opacity:.5;
}
.section > .wrap{ position:relative; z-index:1; }

/* trust strip */
.trust{ border-block:1px solid var(--line); background:var(--bg-2); }
.trust__row{ display:grid; grid-template-columns:repeat(5,1fr); padding-block:30px; }
.trust__item{ display:flex; flex-direction:column; align-items:center; gap:6px; text-align:center; padding:4px 14px; border-left:1px solid var(--line); }
.trust__item:first-child{ border-left:0; }
.trust__num{ font-family:var(--f-display); font-size:clamp(22px,2.4vw,30px); color:var(--ink); font-weight:600; letter-spacing:-0.02em; white-space:nowrap; }
.trust__lbl{ font-size:13px; color:var(--ink-dim); line-height:1.3; }
.trust__sep{ display:none; }

/* ---------- value / narrative block ---------- */
.method-head{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.05fr); gap:clamp(28px,3.6vw,56px); align-items:center; }
.method-head > .reveal{ max-width:none !important; }
.method-shot{ margin:0; }
.method-shot img{ display:block; width:100%; height:auto; border-radius:14px; border:1px solid var(--line-2); box-shadow:0 28px 70px -30px rgba(0,0,0,.75); }
.method-shot figcaption{ margin-top:12px; font-size:13px; letter-spacing:.01em; color:var(--ink-faint); line-height:1.45; }
@media (max-width:880px){
  .method-head{ grid-template-columns:1fr; }
}
.narr{ max-width:760px; }
.narr-grid{ display:grid; grid-template-columns:minmax(0,1fr) 440px; gap:clamp(28px,3.4vw,52px); align-items:start; }
.narr-grid .narr{ max-width:none; }
.narr-grid .narr p{ text-wrap:pretty; }
.narr-photo{ margin:0; width:440px; position:sticky; top:96px; }
.narr-photo img{ display:block; width:440px; height:auto; border-radius:14px; border:1px solid var(--line-2); box-shadow:0 24px 60px -28px rgba(0,0,0,.7); }
.narr-photo figcaption{ margin-top:12px; font-size:13px; letter-spacing:.01em; color:var(--ink-faint); line-height:1.45; }
@media (max-width:880px){
  .narr-grid{ grid-template-columns:1fr; }
  .narr-photo{ position:static; width:min(440px,100%); margin-top:8px; }
  .narr-photo img{ width:100% !important; height:auto !important; }
}
.narr p{ font-size:clamp(18px,1.55vw,21px); color:var(--ink-dim); }
.narr p strong{ color:var(--ink); }
.narr .kicker{ font-size:clamp(22px,2.4vw,30px); color:var(--ink); font-family:var(--f-display); font-weight:500; line-height:1.2; letter-spacing:-0.02em; }

/* ---------- pain list ---------- */
.pain-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; margin-top:48px; }
.pain{ background:var(--bg-2); padding:30px 30px; display:flex; gap:18px; transition:background .25s; }
.pain:hover{ background:var(--bg-3); }
.pain__n{ font-family:var(--f-mono); font-size:12px; color:var(--accent-2); padding-top:4px; min-width:28px; }
.pain p{ margin:0; font-size:16.5px; color:var(--ink-dim); line-height:1.5; }
.pain__line{
  margin-top:38px; padding:26px 30px; border:1px solid var(--accent-soft);
  border-radius:14px; background:var(--accent-soft);
  font-size:clamp(18px,1.7vw,22px); color:var(--ink); font-family:var(--f-display); font-weight:400; letter-spacing:-0.01em;
}

/* ---------- solution / two-phase ---------- */
.phase{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:54px; }
.phase__card{
  position:relative; border:1px solid var(--line); border-radius:var(--radius);
  background:linear-gradient(180deg, var(--bg-2), var(--bg)); padding:38px 34px; overflow:hidden;
}
.phase__tag{
  font-family:var(--f-mono); font-size:11px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--accent-2); display:flex; align-items:center; gap:10px; margin-bottom:22px;
}
.phase__tag b{ font-family:var(--f-display); font-size:46px; font-weight:500; color:var(--line-2); line-height:1; letter-spacing:-0.03em; }
.phase__card h3{ margin-bottom:14px; }
.phase__card p{ color:var(--ink-dim); font-size:16.5px; }
.chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.chip{
  font-family:var(--f-mono); font-size:11.5px; letter-spacing:.04em;
  padding:7px 12px; border:1px solid var(--line); border-radius:8px; color:var(--ink-dim);
  background:var(--bg-3);
}
.stations{ display:flex; flex-direction:column; gap:14px; margin-top:18px; }
.station{ display:flex; gap:14px; align-items:flex-start; }
.station__ic{ width:30px; height:30px; border-radius:8px; border:1px solid var(--line-2); display:grid; place-items:center; color:var(--accent-2); flex:none; }
.station b{ color:var(--ink); font-weight:600; font-size:16px; }
.station span{ color:var(--ink-dim); font-size:14.5px; }
.phase__hl{
  margin-top:40px; padding:26px 30px; border-radius:14px;
  background:linear-gradient(110deg, var(--accent-deep), var(--accent));
  color:#04121f; font-family:var(--f-display); font-weight:500; font-size:clamp(18px,1.7vw,23px);
  letter-spacing:-0.01em; line-height:1.25;
}
.phase__hl strong{ color:#fff; }

/* ---------- benefits ---------- */
.ben-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; margin-top:50px; }
.ben{ background:var(--bg-2); padding:34px 30px; transition:background .25s; }
.ben:hover{ background:var(--bg-3); }
.ben__ic{ width:42px; height:42px; border-radius:10px; border:1px solid var(--line-2); display:grid; place-items:center; color:var(--accent-2); margin-bottom:22px; }
.ben h3{ font-size:19px; margin-bottom:10px; letter-spacing:-0.01em; }
.ben p{ margin:0; font-size:15px; color:var(--ink-dim); line-height:1.5; }

/* ---------- transformação · collage ---------- */
.transf-collage{ margin-top:50px; display:flex; flex-direction:column; gap:clamp(12px,1.4vw,20px); }
.transf-collage .tc-pair{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(12px,1.4vw,20px); align-items:start; }
.transf-collage figure{ margin:0; border-radius:14px; overflow:hidden; border:1px solid var(--line-2); background:var(--bg-2); box-shadow:0 24px 60px -34px rgba(0,0,0,.7); }
.transf-collage img{ display:block; width:100%; height:auto; object-fit:cover; object-position:center; }
@media (max-width:640px){
  .transf-collage .tc-pair{ grid-template-columns:1fr; }
  .transf-collage img{ height:auto !important; }
}

/* ---------- social proof ---------- */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:18px; }
.testi{ border:1px solid var(--line); border-radius:var(--radius); background:var(--bg-2); padding:28px; display:flex; flex-direction:column; gap:16px; }
.stars{ color:var(--accent-2); letter-spacing:3px; font-size:15px; }
.testi__q{ margin:0; color:var(--ink-dim); font-size:15.5px; line-height:1.55; flex:1; }
.testi__who{ display:flex; align-items:center; gap:12px; border-top:1px solid var(--line); padding-top:16px; }
.testi__who .ph{ width:42px; height:42px; border-radius:99px; flex:none; }
.testi__avatar{
  width:42px; height:42px; border-radius:99px; flex:none; display:grid; place-items:center;
  font-family:var(--f-display); font-weight:600; font-size:17px; color:var(--accent-2);
  background:var(--accent-soft); border:1px solid var(--line-2);
}
.testi__who b{ font-size:14.5px; color:var(--ink); display:block; }
.testi__who span{ font-size:12.5px; color:var(--ink-faint); font-family:var(--f-mono); }

/* whatsapp / real prints */
.prints{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:32px; align-items:start; }
.print{ margin:0; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--bg-2); }

/* video feedback (youtube shorts thumbnails) */
.videos{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:32px; }
.videos__hint{ display:none; }
.video{
  position:relative; margin:0; padding:0; border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; cursor:pointer; background:var(--bg-3); aspect-ratio:9/16;
  display:block; width:100%; transition:transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.video:hover{ transform:translateY(-3px); border-color:var(--accent); box-shadow:0 24px 50px -28px var(--glow); }
.video img{ width:100%; height:100%; object-fit:cover; display:block; }
.video::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(4,8,16,.55) 100%);
}
.video__play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2;
  width:64px; height:64px; border-radius:99px; display:grid; place-items:center;
  background:color-mix(in oklab, var(--accent) 90%, transparent); backdrop-filter:blur(4px);
  box-shadow:0 10px 30px -8px var(--glow); transition:transform .2s ease;
}
.video:hover .video__play{ transform:translate(-50%,-50%) scale(1.08); }
.video__play::before{
  content:""; width:0; height:0; margin-left:5px;
  border-left:18px solid #03101e; border-top:11px solid transparent; border-bottom:11px solid transparent;
}
.video__tag{
  position:absolute; left:12px; bottom:12px; z-index:2;
  font-family:var(--f-mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase;  color:var(--ink); padding:5px 9px; border-radius:7px; background:rgba(4,8,16,.5);
  border:1px solid var(--line-2); backdrop-filter:blur(4px);
}
/* youtube shorts embutidos */
.video--yt{ cursor:default; }
.video--yt::after{ display:none; }
.video--yt:hover{ transform:none; box-shadow:none; border-color:var(--line); }
.video--yt iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }

/* depoimentos e procedimentos · shorts lite-embed */
.video.yt-lite{ cursor:pointer; }
.video.yt-lite iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; z-index:3; }
.video.yt-lite.is-loaded::after{ display:none; }
.video.yt-lite.is-loaded .video__play,
.video.yt-lite.is-loaded .video__tag{ display:none; }

/* mobile: feedback em vídeo vira trilho de 1 por vez */
@media (max-width:600px){
  .videos{
    display:flex; grid-template-columns:none; gap:14px; margin-inline:calc(-1 * var(--gutter));
    padding-inline:var(--gutter); padding-bottom:8px;
    overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .videos::-webkit-scrollbar{ display:none; }
  .video{ flex:0 0 80%; scroll-snap-align:center; }
  .videos__hint{
    display:block; text-align:center; margin-top:14px;
    font-family:var(--f-mono); font-size:11.5px; letter-spacing:.08em; color:var(--ink-faint);
  }
}

/* galeria vexus — 3-up paginated carousel */
.gallery__head{ margin-bottom:8px; }
.carousel{ position:relative; margin-top:34px; padding-inline:56px; }
.carousel__viewport{ overflow:hidden; }
.carousel__track{ display:flex; gap:18px; transition:transform .5s cubic-bezier(.4,.0,.2,1); }
.c-card{
  margin:0; flex:0 0 calc((100% - 36px) / 3); border:1px solid var(--line);
  border-radius:var(--radius); overflow:hidden; background:var(--bg-2);
}
.c-card img{ width:100%; aspect-ratio:1/1; object-fit:cover; object-position:center; display:block; border-bottom:1px solid var(--line); }
.c-card figcaption{ padding:14px 16px; font-size:13.5px; color:var(--ink-dim); line-height:1.45; min-height:3.1em; }
.carousel__arrow{
  position:absolute; top:calc(50% - 24px); transform:translateY(-50%); z-index:3;
  width:46px; height:46px; border-radius:99px; border:1px solid var(--line-2); background:var(--bg-2);
  color:var(--ink); font-size:24px; line-height:1; cursor:pointer; display:grid; place-items:center;
  transition:background .2s, border-color .2s, color .2s, opacity .2s;
}
.carousel__arrow--prev{ left:0; }
.carousel__arrow--next{ right:0; }
.carousel__arrow:hover{ background:var(--accent); border-color:var(--accent); color:#03101e; }
.carousel__dots{ display:flex; gap:8px; justify-content:center; margin-top:26px; }
.carousel__dots button{
  width:8px; height:8px; padding:0; border:0; border-radius:99px; cursor:pointer;
  background:var(--line-2); transition:background .2s, width .2s;
}
.carousel__dots button.active{ background:var(--accent); width:22px; }
@media (max-width:760px){
  .carousel{ padding-inline:0; }
  .carousel__track{ gap:12px; }
  .c-card{ flex-basis:calc((100% - 12px) / 2); }
  .carousel__arrow{ width:40px; height:40px; font-size:20px; background:color-mix(in oklab,var(--bg-2) 85%,transparent); }
  .carousel__arrow--prev{ left:6px; } .carousel__arrow--next{ right:6px; }
}
@media (max-width:480px){
  .c-card{ flex-basis:100%; }
}

/* plain carousel (no captions) — portrait-friendly */
.carousel--plain .c-card img{ aspect-ratio:3/4; border-bottom:0; }

/* video carousel — 1-up, centered portrait frame */
.carousel--video{ max-width:480px; margin-inline:auto; padding-inline:46px; }
.carousel--video .carousel__track{ align-items:stretch; }
.v-card{
  margin:0; flex:0 0 100%; display:flex; justify-content:center;
}
.v-card video{
  width:auto; height:min(72vh,640px); max-width:100%;
  border-radius:18px; border:1px solid var(--line-2); background:#000;
  box-shadow:0 40px 90px -40px #000; display:block; object-fit:contain;
}
@media (max-width:760px){
  .carousel--video{ padding-inline:0; }
  .v-card video{ height:auto; width:100%; max-height:78vh; }
  .v-card .yt-lite{ height:auto; width:100%; max-height:78vh; }
}

/* youtube shorts lite-embed (roda no site ao clicar) */
.v-card .yt-lite{
  position:relative; cursor:pointer; aspect-ratio:9/16;
  height:min(72vh,640px); max-width:100%;
  border-radius:18px; border:1px solid var(--line-2); background:#000; overflow:hidden;
}
.v-card .yt-lite img{ width:100%; height:100%; object-fit:cover; display:block; }
.v-card .yt-lite iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.v-card .yt-lite:hover .video__play{ transform:translate(-50%,-50%) scale(1.08); }

/* video lightbox */
.vlightbox{
  position:fixed; inset:0; z-index:120; display:none; align-items:center; justify-content:center;
  background:rgba(3,6,12,.86); backdrop-filter:blur(8px); padding:24px;
}
.vlightbox.open{ display:flex; }
.vlightbox__frame{
  position:relative; width:min(420px,92vw); aspect-ratio:9/16; max-height:88vh;
  border-radius:18px; overflow:hidden; border:1px solid var(--line-2); background:#000;
  box-shadow:0 40px 90px -30px #000;
}
.vlightbox__frame iframe{ width:100%; height:100%; border:0; display:block; }
.vlightbox__yt{
  position:absolute; left:50%; bottom:14px; transform:translateX(-50%); z-index:3;
  font-family:var(--f-mono); font-size:11.5px; letter-spacing:.06em; white-space:nowrap;
  color:var(--ink); padding:9px 16px; border-radius:99px; background:rgba(4,8,16,.7);
  border:1px solid var(--line-2); backdrop-filter:blur(6px); transition:background .2s, color .2s;
}
.vlightbox__yt:hover{ background:var(--accent); color:#03101e; }
.vlightbox__close{
  position:absolute; top:22px; right:26px; z-index:2; width:46px; height:46px; border-radius:99px;
  border:1px solid var(--line-2); background:rgba(255,255,255,.06); color:var(--ink);
  font-size:26px; line-height:1; cursor:pointer; transition:background .2s, transform .2s;
}
.vlightbox__close:hover{ background:rgba(255,255,255,.14); transform:rotate(90deg); }
.print img{ width:100%; height:auto; display:block; border-bottom:1px solid var(--line); }
.print figcaption{ padding:14px 16px; font-size:13px; color:var(--ink-dim); line-height:1.45; }

/* professores */
.profs{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:46px; }
.prof{ border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg, var(--bg-2), var(--bg)); padding:30px 30px; }
.prof__head{ display:flex; align-items:center; gap:18px; padding-bottom:22px; margin-bottom:22px; border-bottom:1px solid var(--line); }
.prof__photo{ width:84px; height:84px; border-radius:99px; flex:none; border:1px solid var(--line-2); background:var(--bg-3); }
.prof__name{ font-size:22px; letter-spacing:-0.02em; }
.prof__role{ margin:5px 0 0; font-family:var(--f-mono); font-size:12px; letter-spacing:.06em; color:var(--accent-2); text-transform:uppercase; }
.prof__bio{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.prof__bio li{ position:relative; padding-left:20px; font-size:14.5px; color:var(--ink-dim); line-height:1.45; }
.prof__bio li::before{ content:""; position:absolute; left:0; top:9px; width:7px; height:7px; border-radius:2px; background:var(--accent); transform:rotate(45deg); }
.logos{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:30px 44px; margin-top:54px; }
.logo-mark{ height:48px; width:auto; opacity:.92; }
.logo-mark--vexus{ height:30px; }
.logo-seal{ height:104px; width:auto; }
.logo-div{ width:1px; height:46px; background:var(--line); }
@media (max-width:560px){
  .logos{ gap:22px 28px; }
  .logo-div{ display:none; }
}

/* ---------- diferenciais (caixas com foto) ---------- */
.dif-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:46px; }
.dif{
  border:1px solid var(--line); border-radius:var(--radius); background:var(--bg-2);
  overflow:hidden; display:flex; flex-direction:column;
}
.dif__ph{ aspect-ratio:4/3; border-radius:0; }
.dif__media{
  position:relative; aspect-ratio:3/4; background:#000;
  overflow:hidden; cursor:pointer;
}
.dif__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.dif__media iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.dif__media.is-loaded .video__play{ display:none; }
/* zoom pra thumbnail de vídeo vertical com tarjas embutidas (16:9 pillarbox) */
.dif__media--zoom img{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:316%; max-width:none; height:auto;
}
/* o player também: amplia o iframe 16:9 pra faixa central encher o card */
.dif__media--zoom iframe{
  inset:auto; left:50%; top:50%; transform:translate(-50%,-50%);
  width:316%; height:auto; aspect-ratio:16/9; max-width:none;
}
.dif__photo{
  width:100%; aspect-ratio:3/4; object-fit:cover; object-position:center;
  display:block; background:#000;
}
.dif__body{ padding:22px 24px 26px; }
.dif h3{
  margin:0 0 10px; font-family:var(--f-display); font-weight:600;
  font-size:19px; letter-spacing:-0.01em; color:var(--ink);
}
.dif p{ margin:0; font-size:15px; color:var(--ink-dim); line-height:1.55; }
@media (max-width:880px){
  .dif-grid{ grid-template-columns:1fr; max-width:440px; }
}

/* ---------- placeholder (images) ---------- */
.ph{
  position:relative; border-radius:10px; overflow:hidden;
  background:
    repeating-linear-gradient(45deg, var(--bg-3) 0 10px, var(--bg-2) 10px 20px);
  border:1px dashed var(--line-2);
  display:flex; align-items:center; justify-content:center;
}
.ph__label{
  font-family:var(--f-mono); font-size:10.5px; letter-spacing:.08em; color:var(--ink-faint);
  text-transform:uppercase; text-align:center; padding:8px; line-height:1.4;
}

/* ---------- offer ---------- */
.offer{ display:grid; grid-template-columns:1.25fr .75fr; gap:26px; margin-top:50px; align-items:start; }
.offer__list{ border:1px solid var(--line); border-radius:var(--radius); background:var(--bg-2); overflow:hidden; }
.offer__item{ display:flex; align-items:center; gap:16px; padding:18px 26px; border-bottom:1px solid var(--line); }
.offer__item:last-child{ border-bottom:0; }
.offer__check{ width:24px; height:24px; border-radius:7px; background:var(--accent-soft); color:var(--accent-2); display:grid; place-items:center; flex:none; }
.offer__name{ flex:1; font-size:16px; color:var(--ink); }
.offer__name small{ display:block; color:var(--ink-faint); font-size:13px; font-weight:400; margin-top:2px; }
.offer__val{ font-family:var(--f-mono); font-size:13.5px; color:var(--ink-faint); white-space:nowrap; }
.offer__val.bonus{ color:var(--accent-2); }
.price-card{
  position:sticky; top:96px;
  border:1px solid var(--line-2); border-radius:var(--radius); overflow:hidden;
  background:radial-gradient(120% 80% at 50% 0%, var(--bg-3), var(--bg-2)); padding:32px 30px;
}
.price-card__total{ display:flex; justify-content:space-between; align-items:baseline; color:var(--ink-faint); font-size:14.5px; padding-bottom:16px; border-bottom:1px solid var(--line); }
.price-card__total s{ font-family:var(--f-mono); }
.price-card__now{ font-family:var(--f-mono); font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--accent-2); margin:22px 0 4px; }
.price-card__big{ font-family:var(--f-display); font-weight:600; font-size:clamp(40px,5vw,58px); letter-spacing:-0.03em; line-height:1; }
.price-card__big span{ font-size:24px; color:var(--ink-dim); font-weight:500; }
.price-card__split{ color:var(--ink-dim); font-size:14.5px; margin-top:8px; }
.price-card__pix{ margin-top:14px; padding:11px 14px; border:1px solid var(--cyan-soft); background:var(--cyan-soft); border-radius:10px; font-size:14px; color:var(--ink-dim); }
.price-card__perks{ list-style:none; margin:24px 0; padding:0; display:flex; flex-direction:column; gap:11px; }
.price-card__perks li{ display:flex; gap:10px; font-size:14px; color:var(--ink-dim); align-items:center; }
.price-card__perks li::before{ content:""; width:6px; height:6px; border-radius:99px; background:var(--accent); flex:none; }
.price-note{ text-align:center; font-size:12.5px; color:var(--ink-faint); margin-top:14px; }

/* ---------- objections ---------- */
.obj-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:50px; }
.obj{ border:1px solid var(--line); border-radius:14px; background:var(--bg-2); padding:28px 28px; }
.obj__q{ font-family:var(--f-display); font-weight:500; font-size:19px; color:var(--ink); margin-bottom:12px; letter-spacing:-0.01em; display:flex; gap:12px; align-items:flex-start; }
.obj__q .mk{ color:var(--accent-2); font-size:22px; line-height:1; }
.obj p{ margin:0; color:var(--ink-dim); font-size:15.5px; line-height:1.55; }

/* ---------- guarantee ---------- */
.guarantee{ background:var(--navy); border-block:1px solid var(--line); }
.guarantee__row{ display:grid; grid-template-columns:auto 1fr; gap:46px; align-items:center; }
.seal{
  width:170px; height:170px; border-radius:50%; flex:none;
  border:1px solid var(--accent); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  background:radial-gradient(circle, var(--accent-soft), transparent 70%);
  box-shadow:0 0 60px -20px var(--glow), inset 0 0 30px -18px var(--glow);
  position:relative;
}
.seal::before{ content:""; position:absolute; inset:11px; border:1px dashed var(--line-2); border-radius:50%; }
.seal b{ font-family:var(--f-display); font-size:46px; font-weight:600; color:var(--accent-2); line-height:1; letter-spacing:-0.03em; }
.seal span{ display:block; max-width:120px; font-family:var(--f-mono); font-size:10px; letter-spacing:.16em; line-height:1.5; text-transform:uppercase; color:var(--ink-dim); margin-top:8px; }

/* ---------- urgency ---------- */
.urgency{ text-align:center; }
.countdown{ display:flex; justify-content:center; gap:14px; margin:36px 0 30px; }
.cd-unit{ min-width:88px; border:1px solid var(--line-2); border-radius:14px; background:var(--bg-2); padding:18px 10px; }
.cd-unit b{ display:block; font-family:var(--f-display); font-weight:600; font-size:clamp(30px,4vw,44px); letter-spacing:-0.02em; line-height:1; }
.cd-unit span{ font-family:var(--f-mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-faint); margin-top:8px; display:block; }
.coupon{
  display:inline-flex; align-items:center; gap:12px; margin-top:14px;
  font-family:var(--f-mono); font-size:14px; letter-spacing:.04em;
  padding:12px 18px; border:1px dashed var(--accent); border-radius:10px; color:var(--accent-2); background:var(--accent-soft);
}
.coupon b{ color:#fff; letter-spacing:.1em; }

/* ---------- FAQ ---------- */
.faq{ max-width:840px; margin:50px auto 0; border-top:1px solid var(--line); }
.faq__item{ border-bottom:1px solid var(--line); }
.faq__q{
  width:100%; background:none; border:0; cursor:pointer; text-align:left;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:26px 4px; color:var(--ink); font-family:var(--f-display); font-weight:500; font-size:clamp(17px,1.6vw,21px); letter-spacing:-0.01em;
}
.faq__q .pm{ flex:none; width:30px; height:30px; border-radius:8px; border:1px solid var(--line-2); display:grid; place-items:center; color:var(--accent-2); transition:.25s; position:relative; }
.faq__q .pm::before,.faq__q .pm::after{ content:""; position:absolute; background:currentColor; border-radius:2px; }
.faq__q .pm::before{ width:13px; height:1.5px; }
.faq__q .pm::after{ width:1.5px; height:13px; transition:transform .25s; }
.faq__item.open .pm::after{ transform:scaleY(0); }
.faq__item.open .pm{ background:var(--accent-soft); border-color:var(--accent); }
.faq__a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq__a p{ padding:0 4px 26px; margin:0; color:var(--ink-dim); font-size:16px; line-height:1.6; max-width:64ch; }

/* ---------- final CTA ---------- */
.final{ position:relative; text-align:center; overflow:hidden; background:var(--navy); border-top:1px solid var(--line); }
.final h2{ max-width:16ch; margin-inline:auto; margin-bottom:22px; }
.final p{ max-width:46ch; margin-inline:auto; color:var(--ink-dim); }
.final .btn{ margin-top:14px; }
.final__micro{ margin-top:22px; }

/* ---------- PS ---------- */
.ps{ max-width:760px; }
.ps__card{ border-left:2px solid var(--accent); padding:6px 0 6px 28px; }
.ps__card .tag{ font-family:var(--f-mono); font-size:12px; letter-spacing:.2em; text-transform:uppercase; color:var(--accent-2); }
.ps__card p{ color:var(--ink-dim); font-size:17px; margin-top:14px; }

/* ---------- footer ---------- */
.footer{ border-top:1px solid var(--line); background:var(--bg-2); padding-block:48px; }
.footer__row{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:28px; align-items:flex-start; }
.footer img{ height:26px; opacity:.85; margin-bottom:14px; }
.footer p{ color:var(--ink-faint); font-size:13.5px; max-width:42ch; margin:0; }
.footer__links{ display:flex; flex-wrap:wrap; gap:10px 28px; font-size:14px; color:var(--ink-dim); }
.footer__legal{ margin-top:32px; padding-top:20px; border-top:1px solid var(--line); font-size:12px; color:var(--ink-faint); display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:55;
  display:none; align-items:center; justify-content:space-between; gap:14px;
  padding:12px 18px; background:color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter:blur(14px); border-top:1px solid var(--line);
}
.sticky-cta__price b{ font-family:var(--f-display); font-weight:600; font-size:20px; }
.sticky-cta__price span{ display:block; font-size:11px; color:var(--ink-faint); }

/* ---------- reveal ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .scan__sweep,.scan__live i{ animation:none; }
}

/* ---------- responsive ---------- */
@media (max-width:1000px){
  .hero__grid{ grid-template-columns:1fr; }
  .scan{ max-width:440px; }
  .offer{ grid-template-columns:1fr; }
  .price-card{ position:static; }
  .ben-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:820px){
  body{ font-size:17px; }
  .nav{ display:none; }
  .menu-toggle{ display:inline-grid; place-items:center; width:42px; height:42px; border:1px solid var(--line-2); border-radius:10px; background:none; cursor:pointer; }
  .menu-toggle span{ width:18px; height:1.5px; background:var(--ink); position:relative; }
  .menu-toggle span::before,.menu-toggle span::after{ content:""; position:absolute; left:0; width:18px; height:1.5px; background:var(--ink); }
  .menu-toggle span::before{ top:-6px; } .menu-toggle span::after{ top:6px; }
  .phase{ grid-template-columns:1fr; }
  .pain-grid{ grid-template-columns:1fr; }
  .obj-grid{ grid-template-columns:1fr; }
  .testi-grid{ grid-template-columns:1fr; }
  .prints{ grid-template-columns:1fr; max-width:440px; }
  .videos{ grid-template-columns:repeat(2,1fr); }
  .profs{ grid-template-columns:1fr; }
  .guarantee__row{ grid-template-columns:1fr; gap:30px; text-align:center; justify-items:center; }
  .sticky-cta{ display:flex; }
  body{ padding-bottom:74px; }
  .header .btn--header{ display:none; }
}
@media (max-width:560px){
  .ben-grid{ grid-template-columns:1fr; }
  .countdown{ gap:8px; }
  .cd-unit{ min-width:0; flex:1; }
  .trust__sep{ display:none; }
  .trust__row{ grid-template-columns:repeat(2,1fr); gap:24px 0; }
  .trust__item:nth-child(odd){ border-left:0; }
  .trust__item:nth-child(3),.trust__item:nth-child(4),.trust__item:nth-child(5){ padding-top:20px; border-top:1px solid var(--line); }
  .trust__item:nth-child(5){ grid-column:1 / -1; border-left:0; }
  .hero__cta .btn{ width:100%; }
}

/* ---------- light theme (Tweaks) ---------- */
body.theme-light{
  --bg:#f4f7fb; --bg-2:#ffffff; --bg-3:#eef3f9; --navy:#eaf1f8; --panel:#fff;
  --ink:#0c1830; --ink-dim:#42566f; --ink-faint:#8294ac;
  --line:rgba(10,30,60,.10); --line-2:rgba(10,30,60,.18);
}
body.theme-light .header.is-stuck{ background:color-mix(in oklab,#fff 80%,transparent); }
body.theme-light .btn--primary{ color:#fff; }
body.theme-light .phase__hl,body.theme-light .btn--primary{ color:#fff; }

/* ============================================================
   POCUS Avançado — additional components
   ============================================================ */

/* premium "Nível Avançado" badge */
.badge-adv{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-mono); font-size:12px; font-weight:400;
  letter-spacing:.18em; text-transform:uppercase; color:var(--cyan);
  padding:9px 16px 9px 14px; border-radius:999px;
  border:1px solid color-mix(in oklab, var(--cyan) 40%, transparent);
  background:var(--cyan-soft);
}
.badge-adv__dot{ width:7px; height:7px; border-radius:99px; background:var(--cyan); box-shadow:0 0 12px var(--cyan); }

/* 2-day program */
.days{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:46px; }
.day{ border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--bg-2),var(--bg)); padding:32px 30px; }
.day__head{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:14px; }
.day__n{ font-family:var(--f-mono); font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:var(--cyan); padding:6px 12px; border:1px solid color-mix(in oklab,var(--cyan) 35%,transparent); border-radius:8px; }
.day__time{ font-family:var(--f-mono); font-size:12.5px; color:var(--ink-faint); letter-spacing:.04em; }
.day__title{ font-family:var(--f-display); font-weight:500; font-size:clamp(20px,2.1vw,26px); letter-spacing:-0.02em; margin-bottom:20px; }
.day__list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:13px; }
.day__list li{ position:relative; padding-left:24px; font-size:15.5px; color:var(--ink-dim); line-height:1.45; }
.day__list li::before{ content:""; position:absolute; left:0; top:8px; width:9px; height:9px; border-radius:2px; background:var(--accent); transform:rotate(45deg); }

/* professors: 4-up + monogram avatars */
.profs--4{ grid-template-columns:repeat(2,1fr); }
.prof__mono{
  width:114px; height:114px; flex:none; border-radius:16px; display:grid; place-items:center;
  font-family:var(--f-display); font-weight:600; font-size:23px; letter-spacing:.02em; color:var(--accent-2);
  background:linear-gradient(160deg, var(--accent-soft), var(--cyan-soft));
  border:1px solid var(--line-2);
}
.prof__mono--img{ display:block; object-fit:cover; object-position:center 18%; padding:0; background:var(--bg-3); }
.prof__mono--pedro{ object-position:center 12%; }
.prof__mono--tito{ object-position:center 14%; }
.prof__mono--nayara{ object-position:center 16%; }
.prof__mono--yan{ object-position:center 20%; }

/* refund tiers */
.refund{ display:flex; flex-wrap:wrap; gap:10px; }
.refund__item{ flex:1; min-width:120px; border:1px solid var(--line); border-radius:12px; background:var(--bg-2); padding:16px 18px; }
.refund__item b{ display:block; font-family:var(--f-display); font-weight:600; font-size:18px; color:var(--ink); letter-spacing:-0.01em; }
.refund__item span{ font-family:var(--f-mono); font-size:12px; color:var(--ink-faint); letter-spacing:.04em; }

/* price card — "sob consulta" */
.price-card__big--sm{ font-size:clamp(32px,4vw,44px); }

@media (max-width:760px){
  .days{ grid-template-columns:1fr; }
  .profs--4{ grid-template-columns:1fr; }
}
