/* ============================================================
   Clínica Viver — Landing de captação
   Tokens do design-system.md (verde-vida + Open Sans + slate)
   ============================================================ */

:root {
  /* Cores */
  --primary: #00A860;
  --primary-dark: #008049;
  --primary-deep: #007A47;   /* verde texto sobre branco (AA) */
  --accent: #07BE32;
  --secondary: #1F2937;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --bg: #FFFFFF;
  --surface: #F8F8FA;
  --fg: #333333;
  --heading: #1F2937;
  --muted: #6B6B6B;
  --muted-soft: #868686;
  --border: #DCDCDE;
  --error: #C0392B;

  /* Tipografia */
  --font: 'Open Sans', system-ui, -apple-system, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Forma e espaço */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-full: 9999px;
  --u: 8px;

  /* Sombra e movimento */
  --sh-sm: 0 1px 2px rgba(16,24,40,0.06);
  --sh-md: 0 4px 14px rgba(16,24,40,0.10);
  --sh-lg: 0 14px 38px rgba(16,24,40,0.14);
  --dur: 250ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { color: var(--heading); line-height: 1.2; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { scroll-margin-top: 96px; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-deep);
}
.eyebrow.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 28px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  min-height: 48px;
  text-align: center;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; border-radius: var(--r-full); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-accent { background: var(--accent); color: #fff; border-radius: var(--r-full); }
.btn-accent:hover { background: #06a52b; }

.btn-outline {
  background: #fff;
  color: var(--primary-deep);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--surface); }

.btn-ghost {
  background: transparent;
  color: var(--heading);
  padding: 14px 18px;
  font-weight: 600;
}
.btn-ghost:hover { color: var(--primary-deep); }

.btn-block { width: 100%; }

/* ---------- Topbar (utility) ---------- */
.topbar {
  background: var(--secondary);
  color: #cfd5dd;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: #cfd5dd; transition: color var(--dur); }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; }
.topbar .resultado {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
}
.topbar .resultado:hover { color: #fff; background: #06a52b; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .mark {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  color: #fff;
}
.brand .mark svg { width: 23px; height: 23px; }
.brand .mark-img { height: 40px; width: auto; display: block; }
.footer .brand .mark-img { height: 38px; }
.brand .word { display: flex; flex-direction: column; line-height: 1.05; }
.brand .word b { font-size: 1.18rem; font-weight: 700; color: var(--heading); letter-spacing: -0.01em; }
.brand .word b em { color: var(--primary-deep); font-style: normal; }
.brand .word span { font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a { font-weight: 600; font-size: 0.95rem; color: var(--heading); transition: color var(--dur); }
.nav a:hover { color: var(--primary-deep); }
.header-cta { margin-left: 8px; padding: 10px 18px; min-height: 40px; font-size: 0.9rem; }
.header-cta .wa-ico svg { width: 18px; height: 18px; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, #fff 0%, var(--surface) 100%); padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 6vw, 84px); }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 18px; display: block; }
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero h1 .hl { color: var(--primary-deep); }
.hero .subhead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--fg); max-width: 36ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note {
  margin-top: 22px;
  display: flex; align-items: center; gap: 9px;
  font-size: 0.9rem; color: var(--muted);
}
.hero-note svg { width: 17px; height: 17px; color: var(--primary); }

.hero-media { position: relative; }
.hero-media .ph { aspect-ratio: 4 / 4.4; border-radius: var(--r-lg); }
.hero-photo { display: block; width: 100%; height: auto; aspect-ratio: 4 / 4.4; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.hero-badge {
  position: absolute;
  left: -18px; bottom: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 13px;
  max-width: 250px;
}
.hero-badge .ico { width: 42px; height: 42px; border-radius: var(--r-full); background: rgba(0,168,96,0.12); display: grid; place-items: center; color: var(--primary-deep); flex: 0 0 auto; }
.hero-badge .ico svg { width: 22px; height: 22px; }
.hero-badge b { color: var(--heading); font-size: 0.96rem; display: block; }
.hero-badge span { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }

/* ---------- Placeholder (imagens a dropar) ---------- */
.ph {
  background-color: var(--surface);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(0,168,96,0.05) 0, rgba(0,168,96,0.05) 11px,
    rgba(0,168,96,0.10) 11px, rgba(0,168,96,0.10) 22px
  );
  border: 1px dashed rgba(0,128,73,0.4);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  text-align: center;
  padding: 18px;
}
.ph span {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--primary-deep);
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  line-height: 1.45;
  max-width: 85%;
}

/* ---------- Trust bar ---------- */
.trust { background: #fff; border-block: 1px solid var(--border); }
.trust .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-block: clamp(26px, 3.4vw, 40px);
}
.trust .stat { text-align: center; padding-inline: 10px; position: relative; }
.trust .stat b { display: block; font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--primary-deep); font-weight: 700; line-height: 1; letter-spacing: -0.01em; }
.trust .stat span { display: block; margin-top: 8px; font-size: 0.9rem; color: var(--muted); }

/* ---------- Generic section ---------- */
.section { padding-block: clamp(54px, 7vw, 100px); }
.section.surface { background: var(--surface); }
.section-head { max-width: 680px; margin-bottom: clamp(34px, 4vw, 54px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -0.015em; text-wrap: balance; }
.section-head p { margin-top: 14px; font-size: 1.08rem; color: var(--muted); }

/* ---------- Diferenciais ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 28px 24px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.feature .ico {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: rgba(0,168,96,0.10); color: var(--primary-deep);
  display: grid; place-items: center; margin-bottom: 18px;
}
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 9px; }
.feature p { font-size: 0.96rem; color: var(--muted); }
.center-cta { margin-top: clamp(34px, 4vw, 48px); display: flex; justify-content: center; }

/* ---------- Exames ---------- */
.exam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.exam-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 26px 24px 22px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.exam-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(0,168,96,0.45); }
.exam-card .ico {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: rgba(0,168,96,0.10); color: var(--primary-deep);
  display: grid; place-items: center; margin-bottom: 16px; flex: 0 0 auto;
}
.exam-card .ico svg { width: 24px; height: 24px; }
.exam-card h3 { font-size: 1.14rem; margin-bottom: 10px; }
.exam-card .desc { font-size: 0.95rem; color: var(--fg); margin-bottom: 12px; }
.exam-card .hint { font-size: 0.85rem; color: var(--muted); font-style: italic; margin-bottom: 20px; }
.exam-card .exam-cta { margin-top: auto; }
.exam-card .exam-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem; color: var(--primary-deep);
  transition: gap var(--dur) var(--ease);
}
.exam-card .exam-cta a svg { width: 17px; height: 17px; }
.exam-card:hover .exam-cta a { gap: 12px; }

.exam-note {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 26px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
  justify-content: space-between;
}
.exam-note p { font-size: 1rem; color: var(--fg); }
.exam-note p b { color: var(--heading); }

/* ---------- Convênios ---------- */
.conv-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.conv-wrap > * { min-width: 0; }
.conv-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.conv-logos .ph { aspect-ratio: 16 / 7; min-width: 0; }
.conv-logos .ph span { font-size: 0.66rem; }

/* ---------- Depoimentos ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 28px 28px 24px;
  display: flex; flex-direction: column;
}
.quote .stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 14px; }
.quote .stars svg { width: 18px; height: 18px; }
.quote blockquote { font-size: 1.05rem; color: var(--fg); line-height: 1.6; margin-bottom: 18px; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .who .av {
  width: 42px; height: 42px; border-radius: var(--r-full);
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--primary-deep); font-weight: 700; font-size: 1rem;
}
.quote .who b { color: var(--heading); font-size: 0.96rem; }
.quote .who span { display: block; font-size: 0.82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq details[open] { box-shadow: var(--sh-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700; color: var(--heading); font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; color: var(--primary-deep); transition: transform var(--dur) var(--ease); flex: 0 0 auto; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .answer { padding: 0 22px 20px; color: var(--muted); font-size: 0.98rem; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative; overflow: hidden; text-align: center;
  padding-block: clamp(64px, 8vw, 110px);
  background: linear-gradient(150deg, #0c2318 0%, #143028 46%, #1F2937 100%);
  color: #e9edf2;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(62% 90% at 50% -18%, rgba(0,168,96,0.38), transparent 70%);
  pointer-events: none;
}
.final-cta::after {
  content: ""; position: absolute; right: -56px; bottom: -84px;
  width: min(46vw, 520px); aspect-ratio: 1590 / 921;
  background: url('assets/viver-mark-white.png') no-repeat center / contain;
  opacity: 0.055; pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .eyebrow-light {
  display: inline-block; color: #7be0a6; font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.final-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -0.02em; margin-bottom: 18px; text-wrap: balance; }
.final-cta p { font-size: 1.12rem; color: #c8d0da; max-width: 56ch; margin: 0 auto; }
.final-cta .final-actions { margin-top: 32px; display: flex; justify-content: center; }
.final-cta .final-actions .btn { font-size: 1.05rem; padding: 17px 34px; }
.final-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px;
}
.final-trust li {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-full); padding: 9px 16px; font-size: 0.9rem; color: #e3e9f0; font-weight: 600;
}
.final-trust li svg { width: 16px; height: 16px; color: #7be0a6; }
.final-cta .support { margin-top: 26px; font-size: 0.92rem; color: #93b7a6; }
.finecprint { font-size: 0.72rem; line-height: 1.45; color: var(--muted); margin-top: 12px; text-align: center; }
.finecprint-dark { color: #7e94a0; margin-top: 10px; max-width: 60ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.footer { background: #161d27; color: #aeb6c1; padding-block: clamp(46px, 5vw, 70px) 30px; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.footer ul a { word-break: break-word; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .brand .word b { color: #fff; }
.footer .brand .word span { color: #7e8896; }
.footer .brand .mark { background: var(--primary); }
.footer .blurb { margin-top: 18px; max-width: 34ch; color: #8c95a1; line-height: 1.6; }
.footer h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer .unit { margin-bottom: 18px; }
.footer .unit b { color: #d7dce2; display: block; margin-bottom: 3px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { transition: color var(--dur); display: inline-flex; align-items: center; gap: 8px; }
.footer ul a:hover { color: #fff; }
.footer ul svg { width: 15px; height: 15px; color: var(--primary); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.09);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: 0.82rem; color: #79828f;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  background: var(--whatsapp); color: #fff;
  border-radius: var(--r-full);
  box-shadow: var(--sh-lg);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px 14px 16px;
  font-weight: 700;
  transition: transform var(--dur) var(--ease), background var(--dur);
}
.wa-float:hover { transform: translateY(-2px); background: var(--whatsapp-dark); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float .lbl { font-size: 0.95rem; }

/* ---------- Reveal on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .nav { gap: 18px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .exam-grid { grid-template-columns: repeat(2, 1fr); }
  .conv-logos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav { display: none; }
  /* Mobile: apenas o ícone do WhatsApp (sem caixa), ao lado do menu */
  .header-cta {
    display: inline-flex; align-items: center; margin-left: auto;
    width: auto; height: 46px; min-height: 0; padding: 0 4px; font-size: 0;
    background: transparent; border-radius: 0; box-shadow: none;
  }
  .header-cta:hover { background: transparent; }
  .header-cta .wa-ico { margin: 0; color: var(--whatsapp); }
  .header-cta .wa-ico svg { width: 30px; height: 30px; }
  .nav-toggle {
    display: inline-grid; place-items: center; margin-left: 10px;
    width: 46px; height: 46px; border: 1px solid var(--border); border-radius: var(--r-sm);
    background: #fff; cursor: pointer; color: var(--heading);
  }
  .nav-toggle svg { width: 24px; height: 24px; }
  .site-header.open .nav {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 14px var(--gutter) 22px; gap: 4px; margin: 0;
  }
  .site-header.open .nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--surface); }

  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; width: 100%; max-width: 460px; margin-inline: auto; }
  .hero-media .ph { aspect-ratio: 16 / 11; }
  .hero-photo { aspect-ratio: 16 / 11; }
  .hero-badge { display: none; }
  .hero .subhead { max-width: 48ch; }

  /* Mobile: textos da hero centralizados */
  .hero-copy { text-align: center; }
  .hero-copy .subhead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-note { justify-content: center; }

  .conv-wrap { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .topbar { display: none; }
  .trust .container { grid-template-columns: repeat(2, 1fr); gap: 22px 8px; }
  .trust .stat:nth-child(odd) + .stat::before,
  .trust .stat::before { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .exam-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .wa-float .lbl { display: none; }
  .wa-float { padding: 15px; }
  .exam-note { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   v2 — Oferta Hormozi · Catálogo · Unidades · Mobile CTA
   ============================================================ */

/* Trust bar com 5 stats */
.trust .container.five { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 760px) {
  .trust .container.five { grid-template-columns: repeat(2, 1fr); gap: 24px 8px; }
  .trust .container.five .stat::before { display: none; }
}

/* Badge accent suave */
.badge-soft {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(7,190,50,0.12);
  color: var(--primary-deep);
  font-weight: 700; font-size: 0.82rem;
  padding: 7px 15px; border-radius: var(--r-full);
  letter-spacing: 0.01em;
}
.badge-soft svg { width: 16px; height: 16px; }

/* ---------- Oferta (value stack) ---------- */
.offer-card {
  max-width: 940px; margin-inline: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: clamp(28px, 4vw, 48px);
}
.offer-card .badge-soft { margin-bottom: 24px; }
.value-stack { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 34px; }
.value-stack li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--fg); }
.value-stack li .ck {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: var(--r-full);
  background: rgba(0,168,96,0.12); color: var(--primary-deep);
  display: grid; place-items: center; margin-top: 1px;
}
.value-stack li .ck svg { width: 16px; height: 16px; }
.value-stack li b { color: var(--heading); }

.guarantees {
  margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.guarantee { display: flex; flex-direction: column; gap: 8px; }
.guarantee .gi {
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--primary-deep);
}
.guarantee .gi svg { width: 22px; height: 22px; }
.guarantee b { color: var(--heading); font-size: 0.98rem; }
.guarantee p { font-size: 0.9rem; color: var(--muted); }

.offer-foot { margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.scarcity-note { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--muted); }
.scarcity-note svg { width: 16px; height: 16px; color: var(--primary-deep); }

@media (max-width: 720px) {
  .value-stack { grid-template-columns: 1fr; }
  .guarantees { grid-template-columns: 1fr; }
}

/* ---------- Como funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .num {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: var(--r-full); background: var(--primary); color: #fff;
  display: grid; place-items: center; font-size: 1.6rem; font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,168,96,0.28);
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.96rem; color: var(--muted); max-width: 28ch; margin-inline: auto; }
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; left: calc(50% + 44px); right: calc(-50% + 44px);
  height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps .step::after { display: none; }
}

/* ---------- Catálogo ---------- */
.cat-search { position: relative; max-width: 520px; margin: 0 auto clamp(22px, 3vw, 34px); }
.cat-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--muted); pointer-events: none; }
.cat-search input {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--fg);
  padding: 14px 16px 14px 46px; border: 1px solid var(--border); border-radius: var(--r-full);
  background: #fff; transition: border-color var(--dur), box-shadow var(--dur);
}
.cat-search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,168,96,0.16); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(26px, 3vw, 40px); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border); color: var(--heading);
  font-weight: 600; font-size: 0.9rem; padding: 9px 15px; border-radius: var(--r-full);
  cursor: pointer; transition: all var(--dur) var(--ease);
}
.chip .st { color: var(--accent); display: inline-flex; }
.chip .st svg { width: 14px; height: 14px; }
.chip:hover { border-color: var(--primary); color: var(--primary-deep); transform: translateY(-2px); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.chip.active .st { color: #fff; }

.cat-list { max-width: 900px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.cat-cat {
  border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; overflow: hidden;
  transition: box-shadow var(--dur);
}
.cat-cat.open { box-shadow: var(--sh-md); }
.cat-cat > .cat-head {
  width: 100%; cursor: pointer; border: none; background: #fff; text-align: left;
  display: flex; align-items: center; gap: 16px; padding: 20px 22px; font-family: var(--font);
}
.cat-cat > .cat-head .ci {
  width: 46px; height: 46px; border-radius: var(--r-md); flex: 0 0 auto;
  background: rgba(0,168,96,0.10); color: var(--primary-deep); display: grid; place-items: center;
}
.cat-cat > .cat-head .ci svg { width: 24px; height: 24px; }
.cat-cat > .cat-head .ct { flex: 1 1 auto; }
.cat-cat > .cat-head .ct b { display: block; font-size: 1.12rem; color: var(--heading); font-weight: 700; }
.cat-cat > .cat-head .ct span { font-size: 0.9rem; color: var(--muted); }
.cat-cat > .cat-head .count { font-size: 0.82rem; color: var(--muted); font-weight: 600; background: var(--surface); padding: 4px 10px; border-radius: var(--r-full); border: 1px solid var(--border); }
.cat-cat > .cat-head .chev { width: 22px; height: 22px; color: var(--primary-deep); transition: transform var(--dur) var(--ease); flex: 0 0 auto; }
.cat-cat.open > .cat-head .chev { transform: rotate(180deg); }

.cat-body { display: none; padding: 4px 22px 20px; }
.cat-cat.open .cat-body { display: block; }
.cat-blurb { font-size: 0.94rem; color: var(--muted); font-style: italic; margin: 4px 0 14px; }
.exam-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.exam-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 11px 6px; border-bottom: 1px solid var(--surface);
}
.exam-row .ename { font-size: 0.96rem; color: var(--fg); display: flex; align-items: center; gap: 8px; }
.exam-row .ename .star { color: var(--accent); display: inline-flex; flex: 0 0 auto; }
.exam-row .ename .star svg { width: 14px; height: 14px; }
.exam-row .book {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 0.84rem; color: var(--primary-deep);
  border: 1px solid var(--border); border-radius: var(--r-full); padding: 6px 13px;
  transition: all var(--dur) var(--ease); white-space: nowrap;
}
.exam-row .book:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.exam-row .book svg { width: 14px; height: 14px; }
.cat-empty { text-align: center; color: var(--muted); padding: 30px; font-size: 1rem; }
@media (max-width: 720px) { .exam-list { grid-template-columns: 1fr; } }

/* ---------- Unidades ---------- */
.units { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.unit-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column;
}
.unit-card .map { aspect-ratio: 16 / 7; border: none; border-bottom: 1px solid var(--border); }
.unit-card iframe.map { width: 100%; display: block; }
.unit-card .map span { font-size: 0.72rem; }
.unit-card .ubody { padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.unit-card h3 { font-size: 1.2rem; }
.unit-card .addr { color: var(--fg); font-size: 0.98rem; }
.unit-card .hours { color: var(--muted); font-size: 0.9rem; display: inline-flex; gap: 8px; align-items: center; }
.unit-card .hours svg { width: 16px; height: 16px; color: var(--primary-deep); }
.unit-card .uactions { margin-top: 14px; display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) { .units { grid-template-columns: 1fr; } }

/* ---------- Google rating ---------- */
.grating {
  display: inline-flex; align-items: center; gap: 12px; margin: 0 auto clamp(28px,3vw,40px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-full);
  padding: 10px 20px; box-shadow: var(--sh-sm);
}
.grating .g { font-weight: 700; color: var(--heading); font-size: 1.5rem; }
.grating .gstars { display: flex; gap: 2px; color: #FBBC05; }
.grating .gstars svg { width: 18px; height: 18px; }
.grating .glabel { font-size: 0.86rem; color: var(--muted); }
.grating .glabel b { color: var(--heading); display: block; font-size: 0.92rem; }
.proof-rating { display: flex; justify-content: center; }

/* ---------- Mobile fixed CTA bar ---------- */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--border); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 18px rgba(16,24,40,0.10);
}
.mobile-cta .btn { width: 100%; }
@media (max-width: 760px) {
  .mobile-cta { display: block; }
  .wa-float { display: none; }
  body { padding-bottom: 76px; }
}

/* ---------- Convênios marquee ---------- */
.conv-ticker { background: #fff; border-bottom: 1px solid var(--border); padding: 9px 0; display: flex; align-items: center; }
.conv-ticker-label {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 4px;
  height: 42px; padding: 0 18px 0 max(var(--gutter), 18px); margin-right: 4px;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--primary-deep); border-right: 1px solid var(--border); white-space: nowrap;
}
.conv-ticker-label svg { width: 16px; height: 16px; }
.conv-ticker .marquee { padding: 0; flex: 1 1 auto; min-width: 0; }
.conv-ticker .marquee::before { background: linear-gradient(90deg, #fff, transparent); width: clamp(20px, 4vw, 50px); }
.conv-ticker .marquee::after { background: linear-gradient(270deg, #fff, transparent); }
.conv-ticker .marquee-track { gap: 6px; animation-duration: 95s; }
.conv-ticker .conv-chip {
  height: 42px; min-width: 0; padding: 0 28px;
  background: transparent; border: none; box-shadow: none; border-radius: 0;
}
.conv-ticker .conv-chip img {
  max-height: 30px; max-width: 100px;
  filter: grayscale(1); opacity: 0.62; transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.conv-ticker .conv-chip:hover { transform: none; }
.conv-ticker .conv-chip:hover img { filter: none; opacity: 1; }
@media (max-width: 600px) { .conv-ticker .conv-chip { padding: 0 20px; } .conv-ticker .conv-chip img { max-height: 26px; max-width: 84px; } }

.conv-head { max-width: 720px; margin: 0 auto clamp(30px, 4vw, 46px); text-align: center; }
.conv-head .eyebrow { display: block; margin-bottom: 14px; }
.conv-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); letter-spacing: -0.015em; text-wrap: balance; }
.conv-head p { margin-top: 14px; color: var(--muted); font-size: 1.06rem; }
.conv-head .conv-cta { margin-top: 24px; display: flex; justify-content: center; }

.marquee { position: relative; overflow: hidden; padding: 6px 0; }
.marquee + .marquee { margin-top: 16px; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(40px, 8vw, 120px); z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: flex; gap: 16px; width: max-content; will-change: transform; animation: conv-scroll 70s linear infinite; }
.marquee.rtl .marquee-track { animation-direction: reverse; animation-duration: 84s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
#convRow1 { animation-duration: 130s; }
#convRow2 { animation-duration: 150s; }
#convRow3 { animation-duration: 116s; }
@keyframes conv-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.conv-chip {
  flex: 0 0 auto; height: 82px; min-width: 172px; padding: 0 28px;
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--sh-sm); transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
}
.conv-chip img {
  max-height: 48px; max-width: 134px; width: auto; height: auto; object-fit: contain;
  display: block;
}
.conv-chip:hover { border-color: rgba(0,168,96,0.45); box-shadow: var(--sh-md); transform: translateY(-2px); }

/* Chip de convênio em texto (planos sem logo, ex.: PMDF, CBMDF) */
.conv-chip-text { flex-direction: column; gap: 2px; line-height: 1.1; }
.conv-chip-text b { font-size: 1.32rem; font-weight: 700; color: var(--heading); letter-spacing: .01em; }
.conv-chip-text span { font-size: .76rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.conv-ticker .conv-chip-text { gap: 1px; }
.conv-ticker .conv-chip-text b { font-size: .96rem; color: var(--heading); opacity: .62; transition: opacity var(--dur) var(--ease); }
.conv-ticker .conv-chip-text span { font-size: .6rem; opacity: .62; }
.conv-ticker .conv-chip-text:hover b { opacity: 1; }
.conv-note { text-align: center; margin-top: clamp(22px, 3vw, 32px); color: var(--muted); font-size: 0.96rem; }
.conv-note b { color: var(--heading); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .marquee::before, .marquee::after { display: none; }
}
@media (max-width: 600px) {
  .conv-chip { height: 70px; min-width: 146px; padding: 0 22px; }
  .conv-chip img { max-height: 40px; max-width: 112px; }
  .conv-chip-text b { font-size: 1.12rem; }
}

/* ============================================================
   Hero — animação de entrada (cascata + traço no "hoje" + pulso CTA)
   Base = estado final visível. Movimento só com motion permitido.
   ============================================================ */
/* traço verde sob "hoje" (base: visível) */
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -1px; right: -1px; bottom: 0.04em;
  height: 0.11em; border-radius: 4px; background: var(--primary);
  transform: scaleX(1); transform-origin: left center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > .eyebrow { animation: heroRise 0.6s var(--ease) 0.05s both; }
  .hero-copy > h1 { animation: heroRise 0.6s var(--ease) 0.16s both; }
  .hero-copy > .subhead { animation: heroRise 0.6s var(--ease) 0.28s both; }
  .hero-copy > .hero-actions { animation: heroRise 0.6s var(--ease) 0.40s both; }
  .hero-copy > .hero-note { animation: heroRise 0.6s var(--ease) 0.52s both; }
  .hero-media { animation: heroRise 0.7s var(--ease) 0.34s both; }

  .hero h1 .hl::after { animation: drawUnderline 0.5s var(--ease) 0.9s both; }

  .hero-actions .btn-whatsapp { animation: waPulse 3.6s ease-in-out 1.9s infinite; }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes drawUnderline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.42); }
  60% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


