/* ══════════════════════════════════════════════════════════
   STYLE.CSS — Dr. David Cássio · Landing Page Premium
   Alma ClearPath + Identidade Azul própria
   ══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --p:       #2A6FA8;
  --p-d:     #0D3F6B;
  --p-m:     #5B8AB5;
  --p-l:     #A8CBE8;
  --p-g:     #EAF4FD;
  --off:     #F7F9FC;
  --white:   #FFFFFF;
  --ink:     #0A2840;
  --body:    #2A4A6B;
  --muted:   #5B7A9A;
  --border:  rgba(42,111,168,.12);
  --serif:   'Crimson Text', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
  --ease:    cubic-bezier(.25,.46,.45,.94);
  --sv:      clamp(80px, 10vw, 130px);
  --px:      clamp(20px, 6vw, 100px);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--off);
  color: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); }

/* ── CURSOR CUSTOMIZADO ──────────────────────────────────── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 40px; height: 40px;
  border: 1.5px solid var(--p);
  border-radius: 50%;
  pointer-events: none;
  transition: transform .1s var(--ease), border-color .3s, width .3s, height .3s, opacity .3s;
  mix-blend-mode: multiply;
}
#cursor.hover  { width: 60px; height: 60px; border-color: var(--p-d); background: rgba(42,111,168,.06); }
#cursor.hidden { opacity: 0; }
#cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 6px; height: 6px;
  background: var(--p);
  border-radius: 50%;
  pointer-events: none;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.rv.rv-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }
.rv-d4 { transition-delay: .4s; }
.rv-d5 { transition-delay: .5s; }

/* ── NOISE LAYER ─────────────────────────────────────────── */
.noise-layer {
  position: absolute; inset: 0;
  opacity: .055;
  pointer-events: none;
  z-index: 1;
}

/* ── GHOST NUMBERS ───────────────────────────────────────── */
.ghost-num {
  font-family: var(--serif);
  font-size: clamp(160px, 20vw, 260px);
  font-weight: 400;
  color: var(--p-g);
  line-height: 1;
  letter-spacing: -8px;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), color .3s;
}
.ghost-num.ghost-visible { opacity: 1; transform: none; }

/* ── BOTÕES ──────────────────────────────────────────────── */
.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--white);
  border-radius: 99px; padding: 16px 32px;
  font-size: 14px; font-weight: 500; letter-spacing: .03em;
  border: none; cursor: none;
  transition: background .3s, transform .25s;
}
.btn-main:hover { background: var(--p-d); transform: scale(1.03); }
.btn-main .arr { display: inline-block; transition: transform .25s; }
.btn-main:hover .arr { transform: translateX(5px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--muted);
  border: 1px solid rgba(42,111,168,.25);
  border-radius: 99px; padding: 16px 26px;
  font-size: 14px; cursor: none;
  transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: var(--p); color: var(--p); }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--ink);
  border-radius: 99px; padding: 16px 32px;
  font-size: 14px; font-weight: 500;
  border: none; cursor: none;
  transition: opacity .2s, transform .25s;
}
.btn-white:hover { opacity: .9; transform: scale(1.02); }

/* ── NAV ─────────────────────────────────────────────────── */
#main-nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200; height: 72px;
  padding: 0 var(--px);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s, box-shadow .35s;
}
#main-nav.scrolled {
  background: rgba(247,249,252,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: var(--serif); font-size: 19px; font-weight: 400;
  color: var(--white); letter-spacing: -.3px;
  display: flex; align-items: center; gap: 9px;
  transition: color .3s;
}
.nav-logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--p-l); transition: background .3s; }
#main-nav.scrolled .nav-logo { color: var(--ink); }
#main-nav.scrolled .nav-logo-dot { background: var(--p); }
.nav-links { display: flex; gap: 30px; }
.nav-link {
  font-size: 11px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.75); transition: color .2s; cursor: none;
}
#main-nav.scrolled .nav-link { color: var(--muted); }
.nav-link:hover { color: var(--white); }
#main-nav.scrolled .nav-link:hover { color: var(--p); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ink);
  border-radius: 99px; padding: 10px 22px;
  font-size: 12px; font-weight: 500;
  transition: all .25s; cursor: none;
}
#main-nav.scrolled .nav-cta { background: var(--p); color: var(--white); }
.nav-cta:hover { transform: scale(1.04); }
.nav-cta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--p); transition: background .3s; }
#main-nav.scrolled .nav-cta-dot { background: var(--p-l); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; padding: 8px; }
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--white); transition: background .3s; display: block; }
#main-nav.scrolled .nav-hamburger span { background: var(--ink); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: linear-gradient(145deg, #08203A 0%, #0D3560 40%, #1C5490 100%);
}
.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-parallax {
  position: absolute; inset: -15% 0;
  will-change: transform;
}
.hero-parallax img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-parallax-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #0A2840 0%, #1A5A9A 50%, #3A8CC4 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  color: rgba(255,255,255,.3); font-size: 13px; letter-spacing: .08em;
}
.hero-parallax-placeholder .ph-icon { font-size: 64px; opacity: .2; }
.hero-media-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, rgba(8,32,58,1) 0%, rgba(8,32,58,.5) 25%, rgba(8,32,58,0) 55%);
}
.hero-svg-lines {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none; opacity: .15;
}
.hero-content {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px var(--px) 90px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--p-l); margin-bottom: 28px; opacity: .9;
}
.hero-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--p-l); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 6.5vw, 92px);
  font-weight: 400; line-height: 1.05;
  color: var(--white); letter-spacing: -3px;
  margin-bottom: 32px;
}
.hero-h1 em { font-style: italic; color: var(--p-l); }
.hero-desc {
  font-size: 16px; color: rgba(255,255,255,.68);
  line-height: 1.8; max-width: 420px; font-weight: 300;
  margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-anchor { font-size: 11px; color: rgba(255,255,255,.38); letter-spacing: .06em; }

/* ── STATEMENT (radial + noise) ──────────────────────────── */
.statement {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 55%, #3590C8 0%, #1A5A9A 35%, #0A2840 68%, #061520 100%);
}
.statement-rings {
  position: absolute; inset: 0;
  pointer-events: none; opacity: .06;
}
.statement-inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 760px;
  padding: 80px var(--px);
}
.statement-kicker {
  font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--p-l); margin-bottom: 24px; opacity: .75;
}
.statement-h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400; line-height: 1.1;
  color: var(--white); letter-spacing: -2px; margin-bottom: 26px;
}
.statement-h2 em { font-style: italic; color: var(--p-l); }
.statement-body {
  font-size: 17px; color: rgba(255,255,255,.58);
  line-height: 1.8; max-width: 500px; margin: 0 auto 44px; font-weight: 300;
}
.statement-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; color: rgba(255,255,255,.75);
  line-height: 1.55; max-width: 560px; margin: 0 auto 40px;
}
.statement-quote-author { font-size: 12px; color: rgba(255,255,255,.38); letter-spacing: .1em; margin-top: 12px; }
.statement-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px; padding: 14px 28px;
  font-size: 13px; letter-spacing: .04em; cursor: none;
  transition: background .25s; backdrop-filter: blur(8px);
}
.statement-cta:hover { background: rgba(255,255,255,.16); }
.statement-cta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--p-l); }

/* ── SOBRE ───────────────────────────────────────────────── */
.sobre {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh; overflow: hidden; background: var(--white);
}
.sobre-media {
  position: relative;
  background: linear-gradient(160deg, var(--p-g) 0%, #C8DFF3 50%, var(--p-l) 100%);
  overflow: hidden;
}
.sobre-media-inner {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
}
.sobre-photo-frame {
  width: 78%; height: 84%; margin-top: auto;
  background: linear-gradient(180deg, rgba(42,111,168,.15), rgba(42,111,168,.45));
  border-radius: 20px 20px 0 0;
  border: 1px solid rgba(168,203,232,.5);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: rgba(255,255,255,.4); font-size: 13px;
  overflow: hidden;
}
.sobre-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.sobre-float-badge {
  position: absolute; top: 40px; right: -18px;
  background: var(--white); border-radius: 14px;
  padding: 18px 22px; box-shadow: 0 20px 60px rgba(10,40,64,.14);
  z-index: 3;
}
.sobre-float-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.sobre-float-val   { font-size: 15px; font-weight: 500; color: var(--ink); }
.sobre-float-sub   { font-size: 11px; color: var(--muted); margin-top: 3px; }
.sobre-content {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.sec-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--p); margin-bottom: 16px;
}
.sec-h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400; line-height: 1.1;
  color: var(--ink); letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.sec-h2 em { font-style: italic; color: var(--p); }
.sec-lead {
  font-size: 16px; color: var(--muted);
  font-weight: 300; line-height: 1.75;
  max-width: 560px; margin-bottom: 48px;
}
.sobre-p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-weight: 300; }
.sobre-creds { margin-top: 32px; display: flex; flex-direction: column; gap: 1px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.sobre-cred { padding: 16px 20px; background: var(--white); display: flex; align-items: flex-start; gap: 14px; border-bottom: 1px solid var(--border); transition: background .2s; }
.sobre-cred:last-child { border-bottom: none; }
.sobre-cred:hover { background: var(--p-g); }
.sobre-cred-ic  { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.sobre-cred-t   { font-size: 13px; font-weight: 500; color: var(--ink); }
.sobre-cred-d   { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── SEÇÃO GENÉRICA ──────────────────────────────────────── */
.sec { padding: var(--sv) var(--px); }
.sec-inner { max-width: 1200px; margin: 0 auto; }

/* ── PATOLOGIAS ──────────────────────────────────────────── */
.patologias-sec { background: var(--off); }
.pat-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 2px; background: var(--border);
  border-radius: 20px; overflow: hidden;
  margin-top: 48px;
}
.pat-card {
  background: var(--white); padding: 26px 20px;
  transition: background .25s, transform .2s; cursor: none;
}
.pat-card:hover { background: var(--p-g); }
.pat-ic   { font-size: 24px; margin-bottom: 12px; display: block; }
.pat-name { font-size: 12px; font-weight: 500; color: var(--ink); line-height: 1.4; margin-bottom: 6px; }
.pat-desc { font-size: 11px; color: var(--muted); line-height: 1.55; }

/* ── SERVIÇOS (full-bleed cards) ─────────────────────────── */
.servicos-sec { background: var(--white); padding-bottom: var(--sv); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
  border-radius: 24px; overflow: hidden;
  margin-top: 48px;
}
.svc-card {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; cursor: none;
  transition: transform .5s var(--ease);
}
.svc-card:hover { z-index: 2; }
.svc-card-bg {
  position: absolute; inset: 0;
  transition: transform .6s var(--ease);
}
.svc-card:hover .svc-card-bg { transform: scale(1.05); }
.svc-bg-1 { background: linear-gradient(165deg, #08203A, #1A5A9A 65%, #2E7CB8); }
.svc-bg-2 { background: linear-gradient(165deg, #060E1C, #0D3F6B 55%, #1A5A9A); }
.svc-bg-3 { background: linear-gradient(165deg, #0A1E30, #1D4E7A 60%, #2A6FA8); }
.svc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,14,28,.95) 0%, rgba(6,14,28,.3) 55%, transparent 100%);
}
.svc-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 32px; z-index: 2;
}
.svc-num   { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--p-l); opacity: .7; margin-bottom: 10px; }
.svc-title { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--white); letter-spacing: -1px; line-height: 1.1; margin-bottom: 14px; }
.svc-body  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65; font-weight: 300; }
.svc-dot   { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35); margin-top: 20px; }

/* ── PLANO ───────────────────────────────────────────────── */
.plano-sec {
  position: relative; min-height: 88vh;
  background: linear-gradient(145deg, #060E1C 0%, #0D3560 55%, #1A5080 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.plano-content { position: relative; z-index: 2; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.plano-eyebrow { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--p-l); margin-bottom: 18px; opacity: .8; }
.plano-h2      { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 52px); font-weight: 400; color: var(--white); line-height: 1.12; letter-spacing: -1.5px; margin-bottom: 14px; }
.plano-sub     { font-size: 15px; color: rgba(255,255,255,.52); margin-bottom: 40px; font-weight: 300; line-height: 1.7; }
.plano-items   { display: flex; flex-direction: column; gap: 16px; }
.plano-item    { display: flex; align-items: flex-start; gap: 14px; }
.plano-line    { width: 1px; min-height: 18px; flex-shrink: 0; background: rgba(168,203,232,.35); margin-top: 4px; }
.plano-item-t  { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.5; }
.plano-right   { position: relative; z-index: 2; padding: 80px 52px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(168,203,232,.1); }
.plano-dur-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(168,203,232,.55); margin-bottom: 8px; }
.plano-dur     { font-family: var(--serif); font-size: 68px; font-weight: 400; color: var(--white); line-height: 1; letter-spacing: -3px; margin-bottom: 6px; }
.plano-dur-sub { font-size: 13px; color: rgba(255,255,255,.3); margin-bottom: 36px; }
.plano-box     { background: rgba(255,255,255,.07); border: 1px solid rgba(168,203,232,.12); border-radius: 20px; padding: 32px; backdrop-filter: blur(8px); }
.plano-box-title { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(168,203,232,.45); margin-bottom: 18px; }
.plano-cta-btn {
  width: 100%; background: var(--white); color: var(--ink);
  border: none; border-radius: 99px; padding: 15px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  cursor: none; transition: all .2s; margin-top: 22px;
}
.plano-cta-btn:hover { background: var(--p-g); color: var(--p-d); }

/* ── PROTOCOLOS ──────────────────────────────────────────── */
.protocolos-sec { background: var(--off); }
.prot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }
.prot-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px 44px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.prot-card:hover { transform: translateY(-8px); box-shadow: 0 40px 80px rgba(42,111,168,.09); }
.prot-card-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--p), var(--p-l)); }
.prot-ghost-num {
  font-family: var(--serif); font-size: 140px; font-weight: 400;
  color: var(--p-g); line-height: 1; letter-spacing: -6px;
  position: absolute; top: -24px; right: 20px;
  pointer-events: none; transition: color .3s;
}
.prot-card:hover .prot-ghost-num { color: rgba(42,111,168,.09); }
.prot-ic    { font-size: 34px; margin-bottom: 20px; display: block; position: relative; z-index: 1; }
.prot-title { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--ink); letter-spacing: -1px; margin-bottom: 14px; position: relative; z-index: 1; }
.prot-body  { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; font-weight: 300; position: relative; z-index: 1; }
.prot-tags  { display: flex; gap: 8px; flex-wrap: wrap; position: relative; z-index: 1; }
.prot-tag   { font-size: 11px; font-weight: 500; background: var(--p-g); color: var(--p-d); padding: 5px 14px; border-radius: 99px; border: 1px solid rgba(42,111,168,.14); letter-spacing: .04em; }
.prot-aviso { margin-top: 28px; padding: 18px 24px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.65; font-weight: 300; }
.prot-aviso-ic { color: var(--p); flex-shrink: 0; font-size: 15px; margin-top: 1px; }

/* ── PROCESSO (ghost numbers) ────────────────────────────── */
.processo-sec { background: var(--white); overflow: hidden; }
.processo-list { margin-top: 56px; display: flex; flex-direction: column; gap: 0; }
.passo {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  padding: 64px 0; border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.passo:last-child { border-bottom: none; }
.passo-reverse { direction: rtl; }
.passo-reverse > * { direction: ltr; }
.passo-content {}
.passo-eyebrow { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--p); margin-bottom: 12px; }
.passo-title   { font-family: var(--serif); font-size: clamp(26px, 2.8vw, 40px); font-weight: 400; color: var(--ink); letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px; }
.passo-body    { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.passo-ghost   { display: flex; align-items: center; justify-content: center; }

/* ── DEPOIMENTOS (story-split) ───────────────────────────── */
.depoimentos-sec { background: var(--off); }
.dep-grid { margin-top: 52px; }
.dep-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; border-top: 1px solid var(--border);
}
.dep-split:last-child { border-bottom: 1px solid var(--border); }
.dep-media {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0A2840, #2A6FA8);
  min-height: 400px;
}
.dep-media-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 36px; z-index: 2; }
.dep-media-name  { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--white); letter-spacing: -.5px; }
.dep-media-city  { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; letter-spacing: .08em; }
.dep-content { padding: 60px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.dep-qmark   { font-family: var(--serif); font-size: 90px; color: var(--p-g); line-height: .6; margin-bottom: 20px; }
.dep-text    { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--ink); line-height: 1.55; letter-spacing: -.3px; }
.dep-text em { font-style: italic; color: var(--p); }

/* ── STATS ───────────────────────────────────────────────── */
.stats-sec { background: var(--ink); padding: 80px var(--px); }
.stats-inner { max-width: 1000px; margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(168,203,232,.1); border-radius: 20px; overflow: hidden; }
.stat-item { padding: 50px 40px; text-align: center; background: rgba(255,255,255,.03); }
.stat-num  { font-family: var(--serif); font-size: clamp(36px,5vw,60px); font-weight: 400; color: var(--white); line-height: 1; letter-spacing: -2px; }
.stat-lbl  { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.65); margin-top: 10px; }
.stat-desc { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 6px; line-height: 1.5; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-sec { background: var(--off); }
.faq-list { max-width: 700px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: none;
  font-size: 16px; font-weight: 400; color: var(--ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--p); }
.faq-ch { font-size: 22px; color: var(--p-m); transition: transform .35s var(--ease); flex-shrink: 0; }
.faq-a  { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease), padding .3s; padding: 0; font-size: 15px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.faq-item.open .faq-a  { max-height: 280px; padding-bottom: 24px; }
.faq-item.open .faq-ch { transform: rotate(180deg); }

/* ── LOCALIZAÇÕES ────────────────────────────────────────── */
.locs-sec { background: var(--white); }
.loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border-radius: 24px; overflow: hidden; margin-top: 48px; }
.loc-card { background: var(--white); padding: 40px 32px; transition: background .25s; cursor: none; }
.loc-card:hover { background: var(--p-g); }
.loc-cidade { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--ink); letter-spacing: -.5px; margin-bottom: 5px; }
.loc-nome   { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--p); margin-bottom: 14px; }
.loc-end    { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 20px; }
.loc-maps-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--p); border: 1px solid rgba(42,111,168,.2); border-radius: 99px; padding: 8px 16px; transition: all .2s; cursor: none; }
.loc-maps-btn:hover { background: var(--p); color: var(--white); border-color: var(--p); }
.loc-online { background: var(--ink); grid-column: 1/-1; padding: 32px 40px; text-align: center; font-size: 14px; color: rgba(255,255,255,.6); }
.loc-online strong { color: var(--p-l); }

/* ── CTA FINAL ───────────────────────────────────────────── */
.cta-final-sec {
  position: relative; min-height: 80vh;
  background: radial-gradient(ellipse at 60% 40%, #2A7BC4 0%, #0D3F6B 45%, #060E1C 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.cta-final-rings { position: absolute; inset: 0; pointer-events: none; opacity: .05; }
.cta-final-inner { position: relative; z-index: 2; max-width: 700px; padding: 80px var(--px); }
.cta-h2   { font-family: var(--serif); font-size: clamp(44px, 5.5vw, 72px); font-weight: 400; color: var(--white); line-height: 1.08; letter-spacing: -2.5px; margin-bottom: 22px; }
.cta-h2 em { font-style: italic; color: var(--p-l); }
.cta-sub  { font-size: 17px; color: rgba(255,255,255,.52); line-height: 1.8; margin-bottom: 44px; font-weight: 300; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: #04101C; padding: 56px var(--px) 36px; }
.footer-top { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand .f-logo    { font-family: var(--serif); font-size: 22px; color: rgba(255,255,255,.5); letter-spacing: -.3px; }
.footer-brand .f-tagline { font-size: 12px; color: rgba(255,255,255,.22); margin-top: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.f-link { font-size: 12px; color: rgba(255,255,255,.28); letter-spacing: .06em; transition: color .2s; cursor: none; }
.f-link:hover { color: rgba(255,255,255,.7); }
.footer-copy { max-width: 1200px; margin: 0 auto; font-size: 11px; color: rgba(255,255,255,.18); text-align: center; }

/* ── WA FLOAT ────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 8px 32px rgba(37,211,102,.38);
  transition: transform .25s, box-shadow .25s; cursor: none;
}
.wa-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,.48); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero          { grid-template-columns: 1fr; }
  .hero-media    { display: none; }
  .hero-h1       { font-size: clamp(48px,8vw,72px); }
  .sobre         { grid-template-columns: 1fr; }
  .sobre-media   { min-height: 360px; }
  .plano-sec     { grid-template-columns: 1fr; }
  .plano-right   { border-left: none; border-top: 1px solid rgba(168,203,232,.1); }
  .passo         { grid-template-columns: 1fr; gap: 32px; }
  .dep-split     { grid-template-columns: 1fr; }
  .dep-media     { min-height: 280px; }
  .pat-grid      { grid-template-columns: repeat(3,1fr); }
  .prot-grid     { grid-template-columns: 1fr; }
  .loc-grid      { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr; }
  .svc-grid      { grid-template-columns: 1fr; }
  .svc-card      { aspect-ratio: 16/9; }
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 640px) {
  .pat-grid   { grid-template-columns: repeat(2,1fr); }
  .hero-btns  { flex-direction: column; }
  .cta-btns   { flex-direction: column; align-items: center; }
  .passo      { padding: 40px 0; }
  .dep-content { padding: 36px 28px; }
  .sobre-float-badge { display: none; }
  body { cursor: auto; }
  #cursor, #cursor-dot { display: none; }
}
