:root{
  --navy: #061B3A;
  --navy-2: #0B2A52;
  --blue: #2E6BFF;
  --blue-light: #6FA0FF;
  --blue-pale: #EAF1FF;
  --ink: #0B1A2B;
  --paper: #FFFFFF;
  --mist: #F4F7FC;
  --muted: #5B6B82;
  --line: #E3E9F2;
  --success: #1FB67A;
  --radius: 18px;
  --maxw: 1180px;
  --shadow-soft: 0 20px 50px -20px rgba(6,27,58,0.25);
  --shadow-card: 0 10px 30px -12px rgba(6,27,58,0.15);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}

/* accessibility: visible focus state for keyboard navigation */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:3px solid var(--blue-light); outline-offset:2px; border-radius:4px;
}
body{
  font-family:'Manrope', sans-serif;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{font-family:'Sora', sans-serif; line-height:1.15; letter-spacing:-0.01em;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
img,svg{display:block; max-width:100%;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--blue);
  margin-bottom:16px;
}
.eyebrow::before{content:""; width:7px; height:7px; border-radius:50%; background:var(--blue); display:inline-block;}
.section{padding:72px 0;}
.section-tight{padding:56px 0;}
.center{text-align:center;}
.lede{color:var(--muted); font-size:18px; line-height:1.65; max-width:620px;}
.center .lede{margin-left:auto;margin-right:auto;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 28px; border-radius:100px; font-weight:700; font-size:15px;
  cursor:pointer; border:none; transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  font-family:'Manrope',sans-serif;
}
.btn-primary{background:var(--blue); color:#fff; box-shadow:0 14px 30px -10px rgba(46,107,255,.55);}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 18px 36px -8px rgba(46,107,255,.65);}
.btn-ghost{background:transparent; color:var(--paper); border:1.5px solid rgba(255,255,255,.35);}
.btn-ghost:hover{background:rgba(255,255,255,.12); transform:translateY(-2px);}
.btn-dark{background:var(--navy); color:#fff;}
.btn-dark:hover{transform:translateY(-2px); box-shadow:0 14px 30px -10px rgba(6,27,58,.5);}
.btn-outline{background:transparent;border:1.5px solid var(--line); color:var(--ink);}
.btn-outline:hover{border-color:var(--blue); color:var(--blue); transform:translateY(-2px);}

/* ---------- TOPBAR ---------- */
.topbar{
  position:fixed; top:0; left:0; right:0; z-index:1001;
  height:28px; background:var(--navy);
  display:flex; align-items:center; justify-content:center;
}
.topbar a{
  color:rgba(255,255,255,.88); font-size:11.5px; font-weight:600;
  font-family:'Manrope',sans-serif; letter-spacing:.01em;
  display:flex; align-items:center; gap:6px; transition:opacity .2s ease;
}
.topbar a:hover{opacity:.75;}
.topbar a strong{color:#fff; font-weight:800;}

/* ---------- NAV CLINIC LINK ---------- */
.nav-links .nav-clinic{
  color:var(--blue); font-weight:700; font-size:13px;
  background:var(--blue-pale); border-radius:100px; padding:4px 11px;
  transition:background .2s ease, color .2s ease;
}
.nav-links .nav-clinic:hover{background:var(--blue); color:#fff;}

/* ---------- BLUU CLINIC BANNER ---------- */
.clinic-banner{
  background:linear-gradient(105deg,#eef4ff 0%,#ddeaff 100%);
  border-top:3px solid var(--blue); border-bottom:3px solid var(--blue);
  padding:36px 0;
}
.clinic-banner-inner{
  display:flex; align-items:center; gap:28px; flex-wrap:wrap;
}
.clinic-banner-badge{
  flex-shrink:0; display:inline-flex; align-items:center;
  background:var(--blue); color:#fff;
  font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  padding:5px 12px; border-radius:100px;
}
.clinic-banner-text{flex:1; min-width:220px;}
.clinic-banner-text h3{
  font-family:'Sora',sans-serif; font-size:22px; font-weight:800;
  color:var(--ink); margin-bottom:6px;
}
.clinic-banner-text h3 span{color:var(--blue);}
.clinic-banner-text p{color:var(--muted); font-size:15px; line-height:1.55; max-width:540px;}
.btn-clinic{
  flex-shrink:0; background:var(--blue); color:#fff;
  padding:14px 26px; border-radius:100px; font-weight:700; font-size:15px;
  font-family:'Manrope',sans-serif;
  display:inline-flex; align-items:center; gap:8px;
  box-shadow:0 10px 28px -8px rgba(46,107,255,.55);
  transition:transform .25s ease, box-shadow .25s ease;
  white-space:nowrap;
}
.btn-clinic:hover{transform:translateY(-2px); box-shadow:0 16px 34px -8px rgba(46,107,255,.7);}
@media (max-width:768px){
  .clinic-banner-inner{flex-direction:column; align-items:flex-start; gap:18px;}
  .clinic-banner{padding:28px 0;}
  .clinic-banner-text h3{font-size:19px;}
}

/* ---------- HEADER ---------- */
header{
  position:fixed; top:28px; left:0; right:0; z-index:1000;
  background:#fff;
  box-shadow:0 2px 18px -8px rgba(6,27,58,.12);
  transition:box-shadow .35s ease, padding .35s ease;
  padding:16px 0;
}
header.scrolled{
  box-shadow:0 8px 30px -16px rgba(6,27,58,.22);
  padding:12px 0;
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:24px;}
.logo{display:flex; align-items:center; gap:10px; font-family:'Sora',sans-serif; font-weight:800; font-size:21px; color:var(--navy);}
.logo .dot{width:10px;height:10px;border-radius:3px;background:linear-gradient(135deg,var(--blue),var(--blue-light)); display:inline-block;}
.logo-mark{flex-shrink:0;}
.logo-text{display:flex; flex-direction:column; line-height:1.05; font-family:'Sora',sans-serif; font-weight:800; font-size:18px; color:var(--navy);}
.logo-text small{font-family:'Manrope',sans-serif; font-weight:700; font-size:8.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--blue); margin-top:3px;}
.logo-img{height:28px; width:auto; display:block;}
.nav-links{display:flex; align-items:center; gap:30px;}
.nav-links a{color:var(--muted); font-size:14.5px; font-weight:600; transition:color .2s ease; position:relative;}
.nav-links a:hover{color:var(--blue);}
.nav-cta{display:flex; align-items:center; gap:14px;}
.burger{display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:8px;}
.burger span{width:24px;height:2px;background:var(--navy);border-radius:2px;}

/* dropdown: especialidades */
.has-dropdown{position:relative; display:flex; align-items:center; cursor:default;}
.nav-caret{display:inline-block; margin-left:5px; font-size:10px; transition:transform .2s ease;}
.has-dropdown:hover .nav-caret{transform:rotate(180deg);}
.dropdown{
  position:absolute; top:140%; left:50%; transform:translateX(-50%) translateY(8px);
  min-width:250px; background:#0B2A52; border:1px solid rgba(255,255,255,.12);
  border-radius:14px; padding:10px; box-shadow:var(--shadow-soft);
  opacity:0; visibility:hidden; transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index:50;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
}
.dropdown a{display:flex; align-items:center; justify-content:space-between; padding:10px 14px; border-radius:9px; font-size:14px; color:rgba(255,255,255,.85);}
.dropdown a:hover{background:rgba(255,255,255,.08); color:#fff;}
.dropdown a.active{color:var(--blue-light); font-weight:700;}

/* breadcrumb pill on specialty pages */
.crumb{
  display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18); padding:8px 16px; border-radius:100px;
  font-size:13px; color:rgba(255,255,255,.78); margin-bottom:22px;
}
.crumb a{font-weight:700; color:#fff;}
.crumb svg{width:13px;height:13px;}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  background:radial-gradient(120% 140% at 80% -10%, #103a72 0%, var(--navy) 45%, #040f23 100%);
  color:#fff;
  padding:176px 0 84px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.5), transparent 70%);
  opacity:.5;
}
.hero-glow{
  position:absolute; width:620px; height:620px; border-radius:50%;
  background:radial-gradient(circle, rgba(46,107,255,.45), transparent 70%);
  top:-220px; right:-160px; filter:blur(10px);
}
.hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; position:relative; z-index:2;}
.hero h1{font-size:50px; font-weight:800; max-width:600px; letter-spacing:-0.02em;}
.hero h1 .accent{color:var(--blue-light);}
.hero p.sub{margin-top:22px; font-size:18.5px; color:rgba(255,255,255,.78); max-width:520px; line-height:1.65;}
.hero-ctas{display:flex; gap:14px; margin-top:32px; flex-wrap:wrap;}
.hero-trust{display:flex; gap:28px; margin-top:40px; flex-wrap:wrap;}
.hero-trust div{font-size:13px; color:rgba(255,255,255,.6); border-left:2px solid var(--blue); padding-left:12px;}
.hero-trust strong{display:block; font-family:'Sora',sans-serif; font-size:22px; color:#fff; font-weight:700;}

.hero-visual{position:relative;}
.dash-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  padding:26px;
  backdrop-filter:blur(8px);
  box-shadow:var(--shadow-soft);
}
.dash-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:18px;}
.dash-head span{font-size:12.5px; color:rgba(255,255,255,.6); font-weight:600; letter-spacing:.04em; text-transform:uppercase;}
.dash-head strong{font-family:'Sora',sans-serif; color:#fff; font-size:15px;}
.dash-bars{display:flex; align-items:flex-end; gap:10px; height:130px; margin:18px 0 8px;}
.dash-bars i{flex:1; background:linear-gradient(180deg,var(--blue-light),var(--blue)); border-radius:8px 8px 3px 3px; opacity:.9;}
.dash-row{display:flex; justify-content:space-between; padding:13px 0; border-top:1px solid rgba(255,255,255,.1); font-size:13.5px; color:rgba(255,255,255,.75);}
.dash-row strong{color:#fff;}
.pill-up{color:var(--success); background:rgba(31,182,122,.15); padding:2px 9px; border-radius:100px; font-size:12px; font-weight:700;}
.dash-illustrative{display:block; margin-top:14px; font-size:10.5px; color:rgba(255,255,255,.42); letter-spacing:.02em; text-align:right;}
.float-chip{
  position:absolute; background:#fff; color:var(--ink); border-radius:14px; padding:14px 16px;
  box-shadow:0 18px 40px -16px rgba(0,0,0,.45); display:flex; align-items:center; gap:10px; font-size:13px; font-weight:700;
}
.float-chip svg{width:18px;height:18px;flex-shrink:0;}
.chip-1{top:-22px; left:-30px; animation:floatY 5s ease-in-out infinite;}
.chip-2{bottom:-18px; right:-22px; animation:floatY 6s ease-in-out infinite reverse;}
@keyframes floatY{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:999;
  width:60px; height:60px; border-radius:50%;
  background:#21C063; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(33,192,99,.6);
  transition:transform .25s ease;
}
.wa-float:hover{transform:scale(1.08);}
.wa-float svg{width:30px;height:30px;}
.wa-pulse{position:absolute; inset:0; border-radius:50%; background:#21C063; opacity:.55; animation:pulse 2.2s ease-out infinite;}
@keyframes pulse{0%{transform:scale(1); opacity:.55;}100%{transform:scale(1.9); opacity:0;}}

/* ---------- REVEAL ---------- */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- PAIN SECTION ---------- */
.pain{background:var(--mist);}
.pain-head{max-width:680px;}
.pain h2{font-size:36px; font-weight:800;}
.pain-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:38px;}
.pain-card{
  background:#fff; border-radius:16px; padding:26px 22px; border:1px solid var(--line);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pain-card:hover{transform:translateY(-5px); box-shadow:var(--shadow-card); border-color:transparent;}
.pain-card .ic{width:42px;height:42px; border-radius:11px; background:var(--blue-pale); display:flex; align-items:center; justify-content:center; margin-bottom:16px;}
.pain-card .ic svg{width:22px;height:22px; stroke:var(--blue);}
.pain-card p{font-size:14.5px; font-weight:700; line-height:1.4; color:var(--ink);}

/* ---------- AUDIENCE ---------- */
.audience-group{margin-top:32px;}
.audience-group:first-of-type{margin-top:34px;}
.audience-group h3{font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--blue); margin-bottom:18px;}
.audience-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
.audience-grid-3{grid-template-columns:repeat(3,1fr);}
.aud-card{
  border:1px solid var(--line); border-radius:16px; padding:24px 20px;
  transition:all .25s ease; position:relative; overflow:hidden;
}
.aud-card:hover{border-color:var(--blue); box-shadow:var(--shadow-card); transform:translateY(-4px);}
.aud-card .ic{width:40px;height:40px;border-radius:10px;background:var(--navy);display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.aud-card .ic svg{width:20px;height:20px;stroke:#fff;}
.aud-card h4{font-size:15px; font-weight:700;}
.audience-note{margin-top:24px; max-width:760px; color:var(--muted); font-size:16px; line-height:1.65;}

/* ---------- FRENTES ---------- */
.frentes{background:var(--navy); color:#fff; position:relative; overflow:hidden;}
.frentes::before{content:"";position:absolute;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(46,107,255,.35),transparent 70%);bottom:-220px;left:-160px;}
.frentes h2{color:#fff;}
.frentes .lede{color:rgba(255,255,255,.7);}
.frentes-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:38px; position:relative; z-index:2;}
.frentes-grid.single{grid-template-columns:1fr; max-width:760px; margin-left:auto; margin-right:auto;}
.frente-card{
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); border-radius:22px; padding:30px;
  backdrop-filter:blur(6px);
}
.frente-card .tag{display:inline-block; font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--blue-light); margin-bottom:12px;}
.frente-card h3{font-size:24px; margin-bottom:12px;}
.frente-card p.desc{color:rgba(255,255,255,.72); font-size:15px; line-height:1.6; margin-bottom:18px;}
.frente-list{display:grid; gap:10px; margin-bottom:22px;}
.frente-list li{display:flex; gap:10px; font-size:14.5px; color:rgba(255,255,255,.9); align-items:flex-start;}
.frente-list svg{width:17px;height:17px; stroke:var(--success); flex-shrink:0; margin-top:2px;}

/* ---------- DIAGNOSTICO ---------- */
.diag-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:50px;}
.diag-card{
  border-radius:20px; padding:34px; border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,var(--mist));
}
.diag-card .num{font-family:'Sora',sans-serif; font-size:13px; font-weight:800; color:var(--blue); letter-spacing:.05em;}
.diag-card h3{font-size:21px; margin:10px 0 12px;}
.diag-card p{color:var(--muted); font-size:15px; line-height:1.65; margin-bottom:22px;}

/* ---------- DIFERENCIAIS ---------- */
.dif-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:34px;}
.dif-card{padding:22px; border-radius:16px; background:#fff; border:1px solid var(--line); transition:all .25s ease;}
.dif-card:hover{box-shadow:var(--shadow-card); transform:translateY(-4px); border-color:transparent;}
.dif-card .ic{width:44px;height:44px;border-radius:12px;background:var(--blue-pale);display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.dif-card .ic svg{width:23px;height:23px;stroke:var(--blue);}
.dif-card h4{font-size:16px; margin-bottom:8px;}
.dif-card p{font-size:14px; color:var(--muted); line-height:1.55;}

/* ---------- NOSSA JORNADA ---------- */
.jornada{background:var(--mist);}
.niveis{display:grid; grid-template-columns:repeat(5,1fr); gap:14px; margin-top:32px; position:relative;}
.niveis::before{content:""; position:absolute; top:24px; left:0; right:0; height:2px; background:var(--line); z-index:0;}
.nivel{position:relative; z-index:1; text-align:left; background:#fff; border:1px solid var(--line); border-radius:16px; padding:20px 16px; transition:transform .25s ease, box-shadow .25s ease;}
.nivel:hover{transform:translateY(-4px); box-shadow:var(--shadow-card);}
.nivel .nivel-n{
  display:inline-flex; align-items:center; justify-content:center; padding:0 14px; height:28px; border-radius:100px;
  background:linear-gradient(120deg,var(--blue),#1846c4); color:#fff;
  font-family:'Sora',sans-serif; font-weight:800; font-size:12px; letter-spacing:.03em; text-transform:uppercase;
  margin-bottom:12px; box-shadow:0 8px 18px -8px rgba(46,107,255,.6);
}
.nivel h4{font-size:16px; margin-bottom:6px; font-family:'Sora',sans-serif;}
.nivel p{font-size:13.5px; color:var(--muted); line-height:1.55;}
.jornada-cta{margin-top:30px; text-align:center;}

/* ---------- QUEM A BLUU ATENDE (ACCORDION) ---------- */
.atende-accordion{display:grid; gap:12px; margin-top:32px;}
.atende-item{border:1px solid var(--line); border-radius:16px; background:#fff; overflow:hidden;}
.atende-item summary{
  list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:16px 22px; font-family:'Sora',sans-serif; font-weight:700; font-size:16px; color:var(--ink);
}
.atende-item summary::-webkit-details-marker{display:none;}
.atende-item summary .atende-chevron{width:22px; height:22px; flex-shrink:0; stroke:var(--blue); stroke-width:2; fill:none; transition:transform .25s ease;}
.atende-item[open] summary .atende-chevron{transform:rotate(180deg);}
.atende-item summary .atende-count{font-size:12.5px; font-weight:700; color:var(--blue); background:var(--blue-pale); padding:4px 10px; border-radius:100px; margin-right:auto; margin-left:14px;}
.atende-panel{padding:0 22px 20px;}
.atende-note{margin-top:18px; max-width:760px; color:var(--muted); font-size:14.5px; line-height:1.6;}

/* ---------- PLANOS: VERSÃO INSTITUCIONAL ---------- */
.plans-simple-card{
  margin-top:32px; border-radius:22px; padding:36px 40px; border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,var(--mist)); max-width:760px; margin-left:auto; margin-right:auto;
  text-align:center;
}
.plans-simple-card p{color:var(--muted); font-size:15.5px; line-height:1.7; margin-top:10px;}
.plans-simple-card .btn{margin-top:20px;}

/* ---------- SOBRE ---------- */
.sobre-grid{display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:center;}
.sobre-visual{
  border-radius:24px; background:linear-gradient(160deg,var(--navy),#0e3464);
  aspect-ratio:4/5; position:relative; overflow:hidden; box-shadow:var(--shadow-soft);
}
.sobre-visual::before{content:"";position:absolute;inset:0;background-image:radial-gradient(circle at 30% 20%, rgba(46,107,255,.5), transparent 55%);}
.sobre-mark{position:absolute; bottom:30px; left:30px; right:30px; color:#fff;}
.sobre-mark .yr{font-family:'Sora',sans-serif; font-size:46px; font-weight:800; line-height:1;}
.sobre-mark span{font-size:13px; color:rgba(255,255,255,.7);}
.sobre h2{font-size:32px; margin-bottom:18px;}
.sobre p{color:var(--muted); font-size:16px; line-height:1.75; margin-bottom:16px;}
.sobre strong{color:var(--ink);}

/* ---------- CTA MEIO ---------- */
.cta-mid{
  background:linear-gradient(120deg,var(--blue),#1846c4);
  color:#fff; border-radius:28px; padding:48px 48px;
  display:flex; align-items:center; justify-content:space-between; gap:30px;
  margin:0 24px; max-width:calc(var(--maxw) - 48px); margin-left:auto; margin-right:auto;
}
.cta-mid h2{font-size:28px; max-width:520px;}
.cta-mid p{color:rgba(255,255,255,.85); margin-top:10px; max-width:480px; font-size:15.5px;}

/* ---------- FAQ ---------- */
.faq-list{max-width:760px; margin:36px auto 0;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:22px 4px; cursor:pointer; font-weight:700; font-size:16px; font-family:'Sora',sans-serif;
}
.faq-q .plus{width:26px;height:26px;border-radius:50%;border:1.5px solid var(--line); flex-shrink:0; position:relative; transition:transform .3s ease, border-color .3s ease;}
.faq-q .plus::before,.faq-q .plus::after{content:"";position:absolute;background:var(--ink);transition:transform .3s ease;}
.faq-q .plus::before{top:50%;left:6px;right:6px;height:1.5px;transform:translateY(-50%);}
.faq-q .plus::after{left:50%;top:6px;bottom:6px;width:1.5px;transform:translateX(-50%);}
.faq-item.open .plus{transform:rotate(135deg); border-color:var(--blue);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .35s ease;}
.faq-a p{padding:0 4px 22px; color:var(--muted); font-size:15px; line-height:1.65; max-width:680px;}

/* ---------- CTA FINAL ---------- */
.cta-final{
  background:radial-gradient(120% 160% at 50% 0%, #103a72 0%, var(--navy) 55%, #030c1c 100%);
  color:#fff; text-align:center; position:relative; overflow:hidden;
}
.cta-final h2{font-size:38px; max-width:700px; margin:0 auto 16px;}
.cta-final .lede{color:rgba(255,255,255,.75);}
.cta-final .hero-ctas{justify-content:center;}

/* ---------- FOOTER ---------- */
footer{background:#040E1F; color:rgba(255,255,255,.65); padding:56px 0 36px;}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;}
.foot-logo{display:flex;align-items:center;gap:9px;font-family:'Sora',sans-serif;font-weight:800;font-size:19px;color:#fff;margin-bottom:14px;}
.foot-logo-img{height:28px; width:auto; display:block;}
footer h5{color:#fff; font-size:13.5px; letter-spacing:.04em; text-transform:uppercase; margin-bottom:18px;}
footer ul{display:grid; gap:11px;}
footer a{font-size:14.5px; transition:color .2s ease;}
footer a:hover{color:#fff;}
.foot-bottom{
  border-top:1px solid rgba(255,255,255,.1); margin-top:36px; padding-top:22px;
  display:flex; justify-content:space-between; align-items:center; font-size:13px; flex-wrap:wrap; gap:12px;
}
.foot-social{display:flex; gap:14px;}
.foot-social a{width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;}
.foot-social a:hover{border-color:var(--blue); background:rgba(46,107,255,.15);}
.foot-social svg{width:16px;height:16px; stroke:#fff;}

/* ---------- PLANOS ---------- */
.plans-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:50px;}
.plan-card{
  display:flex; flex-direction:column; border-radius:20px; padding:30px 26px; border:1px solid var(--line);
  background:#fff; transition:all .25s ease; position:relative;
}
.plan-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-card); border-color:transparent;}
.plan-card.featured{border:1.5px solid var(--blue); background:linear-gradient(180deg,#fff,var(--blue-pale));}
.plan-card .plan-badge{display:inline-block; font-size:11.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--blue); background:var(--blue-pale); padding:5px 12px; border-radius:100px; margin-bottom:16px; width:fit-content;}
.plan-card.featured .plan-badge{background:var(--blue); color:#fff;}
.plan-card h3{font-size:19px; margin-bottom:10px;}
.plan-card p.plan-desc{color:var(--muted); font-size:13.5px; line-height:1.55; margin-bottom:18px;}
.plan-list{display:grid; gap:9px; margin-bottom:24px; flex:1;}
.plan-list li{display:flex; gap:8px; font-size:13.5px; color:var(--ink); align-items:flex-start;}
.plan-list svg{width:15px;height:15px; stroke:var(--success); flex-shrink:0; margin-top:2px;}
.plan-card .btn{font-size:13.5px; padding:13px 18px; width:100%;}
.plans-note{margin-top:30px; text-align:center; color:var(--muted); font-size:14.5px;}

/* ---------- DIAGNOSTICO UNIFICADO ---------- */
.diag-unified{
  margin-top:34px; border-radius:22px; padding:38px; border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,var(--mist)); max-width:980px; margin-left:auto; margin-right:auto;
}
.diag-unified h3{font-size:24px; margin-bottom:12px;}
.diag-unified > p{color:var(--muted); font-size:15.5px; line-height:1.7; max-width:760px; margin-bottom:28px;}
.pillar-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:28px;}
.pillar{border:1px solid var(--line); border-radius:14px; padding:16px; background:#fff;}
.pillar .pillar-n{font-family:'Sora',sans-serif; font-size:12px; font-weight:800; color:var(--blue); letter-spacing:.04em; text-transform:uppercase; margin-bottom:6px;}
.pillar h4{font-size:14.5px;}
.diag-items{display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-bottom:26px;}
.diag-items li{display:flex; gap:9px; font-size:14px; color:var(--ink); align-items:flex-start;}
.diag-items svg{width:16px;height:16px; stroke:var(--blue); flex-shrink:0; margin-top:2px;}
.diag-unified .hero-ctas{margin-top:0;}

/* ---------- SOBRE MARK v2 ---------- */
.sobre-mark-v2{position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; padding:24px; text-align:center;}
.sobre-mark-v2 .mark-logo{width:280px; height:280px; border-radius:48px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25); display:flex; align-items:center; justify-content:center; backdrop-filter:blur(6px);}
.sobre-mark-v2 .mark-logo img{width:230px; height:auto; object-fit:contain;}
.sobre-mark-v2 .mark-yr{font-family:'Sora',sans-serif; font-size:11px; color:rgba(255,255,255,.5); letter-spacing:.04em; order:3;}
.sobre-mark-v2 .mark-badges{display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:0;}
.sobre-mark-v2 .mark-badges span{font-size:10.5px; font-weight:700; color:#fff; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); padding:5px 11px; border-radius:100px;}
@media (max-width: 980px){
  .sobre-mark-v2 .mark-logo{width:210px; height:210px;}
  .sobre-mark-v2 .mark-logo img{width:170px;}
}

/* ---------- PERFIS / ATIVIDADES ---------- */
.profile-groups{display:grid; gap:30px; margin-top:34px;}
.profile-group h3{font-size:15px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--blue); margin-bottom:16px;}
.profile-chip-grid{display:flex; flex-wrap:wrap; gap:10px;}
.profile-chip{
  display:inline-flex; align-items:center; font-size:14px; font-weight:600; color:var(--ink);
  border:1px solid var(--line); border-radius:100px; padding:9px 16px; transition:all .2s ease;
}
.profile-chip.linked{color:var(--blue); border-color:var(--blue); font-weight:700;}
.profile-chip.linked:hover{background:var(--blue); color:#fff;}
.notfound-card{
  margin-top:30px; border-radius:20px; padding:28px 32px; background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.notfound-card h4{font-size:19px; margin-bottom:8px;}
.notfound-card p{color:rgba(255,255,255,.72); font-size:14.5px; max-width:520px; line-height:1.55;}

/* ---------- PLANOS: SELETOR DE REGIME ---------- */
.regime-select{display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:14px; margin-top:32px;}
.regime-label{font-size:13.5px; font-weight:700; color:var(--muted); letter-spacing:.01em;}
.regime-pills{display:flex; flex-wrap:wrap; gap:10px;}
.regime-pill{font-size:13.5px; font-weight:700; color:var(--blue); background:var(--blue-pale); border:1px solid var(--blue-pale); padding:8px 18px; border-radius:100px;}
.plan-includes{font-size:12.5px; font-weight:700; color:var(--blue); margin:-6px 0 12px; letter-spacing:.01em;}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{display:none;}
  .hero h1{font-size:38px;}
  .pain-grid{grid-template-columns:repeat(2,1fr);}
  .audience-grid{grid-template-columns:repeat(2,1fr);}
  .frentes-grid{grid-template-columns:1fr;}
  .diag-grid{grid-template-columns:1fr;}
  .dif-grid{grid-template-columns:repeat(2,1fr);}
  .niveis{grid-template-columns:repeat(2,1fr);}
  .niveis::before{display:none;}
  .sobre-grid{grid-template-columns:1fr;}
  .sobre-visual{aspect-ratio:16/9;}
  .foot-grid{grid-template-columns:1fr 1fr;}
  .cta-mid{flex-direction:column; align-items:flex-start; padding:36px 28px;}
  .plans-grid{grid-template-columns:repeat(2,1fr);}
  .pillar-grid{grid-template-columns:repeat(2,1fr);}
  .diag-items{grid-template-columns:1fr;}
  .diag-unified{padding:32px;}
  .notfound-card{flex-direction:column; align-items:flex-start;}
}
@media (max-width: 680px){
  .nav-links{display:none;}
  .burger{display:flex; min-width:44px; min-height:44px; align-items:center; justify-content:center;}
  .nav-cta .btn-primary{padding:11px 16px; font-size:13px;}
  .hero{padding:148px 0 60px;}
  .hero h1{font-size:30px;}
  .pain-grid{grid-template-columns:1fr;}
  .audience-grid{grid-template-columns:1fr;}
  .dif-grid{grid-template-columns:1fr;}
  .niveis{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr;}
  .plans-grid{grid-template-columns:1fr;}
  .pillar-grid{grid-template-columns:1fr;}
  .diag-unified{padding:24px;}
  .section{padding:48px 0;}
  .cta-final h2{font-size:28px;}
  .btn{min-height:44px;}
  .wa-float{width:50px; height:50px; bottom:18px; right:16px;}
  .wa-float svg{width:26px;height:26px;}
  form .btn-primary{margin-right:64px;}
}

/* Mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0; background:rgba(4,12,28,.98); z-index:1100;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:20px;
  transform:translateY(-100%); transition:transform .35s ease; opacity:0;
  overflow-y:auto; padding:80px 24px;
}
.mobile-nav.open{transform:translateY(0); opacity:1;}
.mobile-nav a{color:#fff; font-size:21px; font-weight:700; font-family:'Sora',sans-serif;}
.mobile-close{position:fixed; top:26px; right:26px; background:none; border:none; color:#fff; font-size:30px; cursor:pointer;}
.mobile-label{font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:#9CC0FF; margin-top:10px;}
.mobile-sub{display:flex; flex-direction:column; gap:14px; align-items:center;}
.mobile-sub a{font-size:16px; font-weight:600; color:rgba(255,255,255,.75);}
.mobile-sub a.active{color:#fff;}
