/* =====================================================================
   Bolt Vet Care — folha de estilos principal
   Sem frameworks: CSS moderno, leve e acessível.
   ===================================================================== */

/* ---------- Fonte (auto-hospedada) + fallback métrico p/ evitar "pulo" de layout ---------- */
@font-face {
  font-family: "Jakarta";
  src: url("../fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Jakarta Fallback";
  src: local("Arial"), local("Helvetica"), local("Liberation Sans");
  size-adjust: 104.98%;
  ascent-override: 98.88%;
  descent-override: 21.15%;
  line-gap-override: 0%;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #13232f;
  --ink-2: #3d5260;
  --muted: #5b6f7c;
  --bg: #ffffff;
  --bg-soft: #f2fafc;
  --bg-pink: #fff4f7;
  --line: #e2edf1;
  --line-2: #cfe0e7;

  --cyan: #00c8e4;
  --cyan-soft: #d9f6fb;
  --teal: #007c91;
  --teal-d: #006d80;
  --pink: #ff4270;
  --pink-soft: #ffe3ea;
  --pink-text: #e0245e;
  --pink-d: #d81b57;
  --pink-dd: #b8164a;
  --navy: #0f2a3a;
  --navy-2: #16384b;
  --wa: #15803d;
  --wa-d: #116631;
  --amber-soft: #fff6e0;
  --danger: #b42318;
  --danger-soft: #fef0ee;

  --radius-s: 12px;
  --radius: 20px;
  --radius-l: 28px;
  --shadow-s: 0 1px 2px rgba(15, 42, 58, .06), 0 2px 10px rgba(15, 42, 58, .06);
  --shadow: 0 2px 4px rgba(15, 42, 58, .04), 0 14px 34px -10px rgba(15, 42, 58, .16);
  --shadow-l: 0 30px 70px -24px rgba(15, 42, 58, .35);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(64px, 8vw, 112px);
  --header-h: 72px;
  --font: "Jakarta", "Jakarta Fallback", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: var(--teal); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--teal-d); text-decoration-thickness: 2px; }
p, li, figcaption { text-wrap: pretty; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -.02em; font-weight: 800; text-wrap: balance; }
strong { font-weight: 700; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
[hidden] { display: none !important; }
::selection { background: var(--pink-soft); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

@view-transition { navigation: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 12px; color: #fff; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 2 * var(--gutter), 860px); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--pink { background: var(--bg-pink); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.75rem); margin-block: 12px 14px; }
.section-head p { color: var(--ink-2); font-size: 1.125rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-d);
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 0 4px var(--pink-soft);
}
.eyebrow--pill {
  background: #fff; border: 1px solid var(--line); padding: 8px 14px 8px 12px; border-radius: 999px;
  box-shadow: var(--shadow-s); text-transform: none; letter-spacing: 0; font-size: .875rem; font-weight: 700;
  color: var(--ink-2);
}
.eyebrow--pill::before { display: none; }
.eyebrow--pill .icon { color: var(--pink-d); width: 18px; height: 18px; }

.hl { color: var(--pink-text); }

/* ---------- Ícones ---------- */
.icon {
  width: 1.25em; height: 1.25em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.icon--lg { width: 28px; height: 28px; }
.icon--xl { width: 36px; height: 36px; }

.icon-tile {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: var(--cyan-soft); color: var(--teal-d); flex: none;
}
.icon-tile--pink { background: var(--pink-soft); color: var(--pink-d); }
.icon-tile .icon { width: 28px; height: 28px; }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 50px; padding: .75em 1.35em; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg); border: 2px solid var(--btn-bd);
  font-weight: 750; font-size: 1rem; line-height: 1.2; text-decoration: none; text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s, color .2s, border-color .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { color: var(--btn-fg); text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.3em; height: 1.3em; }
.btn--primary { --btn-bg: var(--pink-d); box-shadow: 0 10px 24px -10px rgba(216, 27, 87, .65); }
.btn--primary:hover { --btn-bg: var(--pink-dd); box-shadow: 0 14px 28px -10px rgba(216, 27, 87, .7); }
.btn--wa { --btn-bg: var(--wa); box-shadow: 0 10px 24px -10px rgba(21, 128, 61, .6); }
.btn--wa:hover { --btn-bg: var(--wa-d); }
.btn--ghost { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn--ghost:hover { --btn-bd: var(--teal); --btn-fg: var(--teal-d); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--navy); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .5); }
.btn--outline-light:hover { --btn-bd: #fff; }
.btn--sm { min-height: 42px; padding: .55em 1.05em; font-size: .9375rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 750; text-decoration: none; color: var(--teal-d);
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

.icon-btn {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line-2); color: var(--ink);
  transition: background-color .2s, border-color .2s, color .2s, opacity .2s;
}
.icon-btn:hover:not(:disabled) { border-color: var(--teal); color: var(--teal-d); }
.icon-btn:disabled { opacity: .35; cursor: default; }

/* ---------- Chips / tags ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 800; letter-spacing: .02em;
  padding: 5px 10px; border-radius: 999px; background: var(--cyan-soft); color: var(--teal-d);
}
.tag--pink { background: var(--pink-soft); color: var(--pink-dd); }
.tag--white { background: #fff; color: var(--ink-2); box-shadow: var(--shadow-s); }

.chip {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--line-2); background: #fff;
  font-weight: 700; font-size: .9375rem; color: var(--ink-2);
  transition: background-color .2s, border-color .2s, color .2s;
}
.chip:hover { border-color: var(--teal); color: var(--teal-d); }
.chip[aria-pressed="true"], .chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* =====================================================================
   Cabeçalho
   ===================================================================== */
.topbar { background: var(--navy); color: #d6e4eb; font-size: .875rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar__list { display: flex; gap: 22px; list-style: none; padding: 0; }
.topbar__list li { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar .icon { width: 16px; height: 16px; color: var(--cyan); }
.topbar__social { display: flex; gap: 4px; }
.topbar__social a { color: #d6e4eb; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; }
.topbar__social a:hover { color: #fff; background: rgba(255, 255, 255, .08); }
@media (max-width: 719px) {
  .topbar__list li:nth-child(n+2), .topbar__social { display: none; }
  .topbar__inner { justify-content: center; }
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
/* O desfoque fica num pseudo-elemento: assim o menu mobile (position: fixed) ocupa a tela inteira */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  backdrop-filter: saturate(1.6) blur(14px);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(15, 42, 58, .5); }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; flex: none; border-radius: 8px; }
.brand img { width: 176px; height: auto; }
@media (max-width: 380px) { .brand img { width: 150px; } }

.nav { margin-left: auto; display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: 4px; min-height: 44px; padding: 8px 12px; border-radius: 10px;
  font-weight: 700; font-size: .9688rem; color: var(--ink-2); text-decoration: none; white-space: nowrap;
  transition: color .2s, background-color .2s;
}
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--ink); background: var(--bg-soft); text-decoration: none; }
.nav__link.is-current { color: var(--pink-d); }
.nav__link .icon { width: 16px; height: 16px; transition: transform .2s; }
.nav__link[aria-expanded="true"] .icon { transform: rotate(180deg); }
.nav__cta { margin-left: 10px; }

.dropdown { position: relative; }
.dropdown__panel {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 0; width: 360px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-l);
  padding: 10px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s var(--ease), visibility 0s .18s;
}
.dropdown.is-open .dropdown__panel { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.dropdown__panel a {
  display: flex; gap: 12px; align-items: center; padding: 10px 12px; border-radius: 12px; text-decoration: none;
  color: var(--ink);
}
.dropdown__panel a:hover { background: var(--bg-soft); }
.dropdown__panel .icon-tile { width: 40px; height: 40px; border-radius: 12px; }
.dropdown__panel .icon-tile .icon { width: 20px; height: 20px; }
.dropdown__panel strong { display: block; font-size: .9375rem; line-height: 1.3; }
.dropdown__panel small { display: block; color: var(--muted); font-size: .8125rem; line-height: 1.35; }

.menu-toggle {
  display: none; margin-left: auto; align-items: center; gap: 8px; min-height: 44px; padding: 8px 14px;
  border-radius: 999px; border: 1.5px solid var(--line-2); font-weight: 750; font-size: .9375rem;
}
.menu-toggle .icon { width: 22px; height: 22px; }

@media (max-width: 1099px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0; z-index: 200; margin: 0;
    background: #fff; padding: 20px var(--gutter) 32px; overflow-y: auto; overscroll-behavior: contain;
    display: flex; flex-direction: column; align-items: stretch;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .22s, transform .22s var(--ease), visibility 0s .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .nav__top { display: flex !important; align-items: center; justify-content: space-between; margin-bottom: 18px; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { font-size: 1.1875rem; padding: 12px 8px; width: 100%; justify-content: space-between; }
  .dropdown__panel {
    position: static; translate: none; width: auto; box-shadow: none; border: 0; padding: 0 0 8px 0;
    opacity: 1; visibility: visible; transform: none; display: none;
  }
  .dropdown.is-open .dropdown__panel { display: block; }
  .nav__cta { margin: 20px 0 0; }
  .nav__cta .btn { width: 100%; }
  .nav__foot { display: block !important; margin-top: auto; padding-top: 28px; color: var(--muted); font-size: .9375rem; }
}
.nav__top, .nav__foot { display: none; }
body.menu-open { overflow: hidden; }

/* =====================================================================
   Hero (home)
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 70% at 100% 0%, rgba(0, 200, 228, .16), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(255, 66, 112, .09), transparent 70%),
    linear-gradient(180deg, #f6fcfe 0%, #fff 100%);
  padding-block: clamp(36px, 6vw, 80px) clamp(96px, 11vw, 150px);
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero__title { font-size: clamp(2.35rem, 1.2rem + 4vw, 4.05rem); line-height: 1.03; letter-spacing: -.035em; margin-block: 20px 22px; }
.hero__title em { font-style: normal; color: var(--pink-text); position: relative; white-space: nowrap; }
.hero__title em::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: -.12em; height: .3em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M2 14 C 40 4, 70 4, 100 11 S 160 18, 200 9 S 262 3, 298 12' fill='none' stroke='%2300c8e4' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero__lead { font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem); color: var(--ink-2); max-width: 36em; }
.hero__lead strong { color: var(--ink); }
.hero .btn-row { margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; padding: 0; list-style: none; font-size: .9375rem; font-weight: 700; color: var(--ink-2); }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .icon { color: var(--teal); width: 20px; height: 20px; }

.hero__media { position: relative; justify-self: center; width: min(100%, 470px); isolation: isolate; }
.hero__photo {
  position: relative; z-index: 1; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: 999px 999px 36px 36px; box-shadow: var(--shadow-l); background: var(--cyan-soft);
  border: 6px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.blob {
  position: absolute; z-index: -1; aspect-ratio: 1;
  border-radius: 42% 58% 63% 37% / 43% 38% 62% 57%;
}
.hero__media .blob--cyan { width: 82%; right: -14%; bottom: -8%; background: var(--cyan); opacity: .9; }
.hero__media .blob--pink { width: 30%; left: -8%; top: 8%; background: var(--pink); opacity: .85; border-radius: 50%; }
.hero__media .dots {
  position: absolute; z-index: -1; left: -14%; bottom: 10%; width: 120px; height: 120px;
  background-image: radial-gradient(var(--teal) 1.6px, transparent 1.8px); background-size: 16px 16px; opacity: .35;
}
.float-card {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 18px; padding: 12px 16px 12px 12px; box-shadow: var(--shadow);
  font-size: .875rem; line-height: 1.3; font-weight: 700; max-width: 250px;
}
.float-card small { display: block; font-weight: 600; color: var(--muted); font-size: .8125rem; }
.float-card .icon-tile { width: 44px; height: 44px; border-radius: 12px; }
.float-card .icon-tile .icon { width: 22px; height: 22px; }
.float-card--a { top: 9%; left: -16%; animation: floaty 6s ease-in-out infinite; }
.float-card--b { bottom: 7%; right: -8%; animation: floaty 7s ease-in-out -2s infinite; }
@media (max-width: 1299px) { .float-card--b { right: -3%; } .float-card--a { left: -10%; } }
.avatars { display: flex; }
.avatars img { width: 38px; height: 38px; border-radius: 50%; border: 3px solid #fff; object-fit: cover; margin-left: -12px; background: var(--cyan-soft); }
.avatars img:first-child { margin-left: 0; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 899px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { width: min(86%, 400px); margin-top: 8px; }
  .float-card--a { left: -10%; top: 6%; }
  .float-card--b { right: -8%; }
}
@media (max-width: 520px) {
  .float-card { font-size: .8125rem; padding: 10px 12px 10px 10px; max-width: 210px; }
  .float-card--a { left: -6%; top: 3%; }
  .float-card--b { right: -5%; bottom: 4%; }
  .hero .btn-row .btn { flex: 1 1 100%; }
}

/* Faixa de credenciais */
.credentials { position: relative; z-index: 3; margin-top: calc(-1 * clamp(56px, 7vw, 88px)); }
.credentials__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow);
}
.credentials__grid li { padding: 22px 24px; position: relative; }
.credentials__grid li + li::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 1px; background: var(--line); }
.credentials__grid strong { display: block; font-size: clamp(1.35rem, 1rem + 1vw, 1.75rem); letter-spacing: -.02em; color: var(--pink-d); line-height: 1.2; }
.credentials__grid span { display: block; color: var(--ink-2); font-size: .9375rem; line-height: 1.45; margin-top: 4px; }
@media (max-width: 899px) {
  .credentials__grid { grid-template-columns: repeat(2, 1fr); }
  .credentials__grid li:nth-child(3)::before { display: none; }
  .credentials__grid li:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 420px) {
  .credentials__grid li { padding: 16px 14px; }
}

/* =====================================================================
   Como funciona
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; list-style: none; padding: 0; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 24px; counter-increment: step; transition: transform .25s var(--ease), box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step::before {
  content: counter(step, decimal-leading-zero); position: absolute; top: 18px; right: 20px;
  font-weight: 800; font-size: 2rem; color: var(--line-2); letter-spacing: -.04em; line-height: 1;
}
.step h3 { font-size: 1.1875rem; margin: 18px 0 8px; }
.step p { color: var(--ink-2); font-size: .9688rem; line-height: 1.55; }
@media (max-width: 999px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* O que está incluso (planos) */
.plans-wrap { margin-top: clamp(44px, 6vw, 72px); }
.plans-title { text-align: center; font-size: clamp(1.45rem, 1.1rem + 1.2vw, 2rem); margin-bottom: 26px; }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; list-style: none; padding: 0; max-width: 960px; margin: 0 auto; }
.plan {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-l); background: var(--bg-soft); border: 1px solid var(--line);
}
.plan h4 { font-size: 1.375rem; letter-spacing: -.02em; line-height: 1.2; }
.plan .checklist { margin-top: 2px; margin-bottom: 8px; flex: 1; align-content: start; }
.plan .checklist li { color: var(--ink); font-weight: 600; }
.plan--featured { position: relative; overflow: hidden; background: linear-gradient(155deg, var(--navy) 0%, #174a5f 100%); color: #fff; border-color: transparent; box-shadow: var(--shadow); }
.plan--featured::after { content: ""; position: absolute; right: -70px; top: -70px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 66, 112, .35), transparent 70%); pointer-events: none; }
.plan--featured .checklist li { color: #f1f7fa; }
.plan--featured .checklist li::before {
  background-color: rgba(255, 255, 255, .14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300c8e4' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } .plan .btn { align-self: stretch; } }
.plan-box { margin-top: 16px; padding: 22px 24px; border-radius: var(--radius); background: var(--bg-pink); border: 1px solid #ffd6e1; }
.plan-box .checklist { margin-top: 0; }
.plan-box .checklist li { color: var(--ink); font-weight: 600; }
.plan-box .btn { margin-top: 18px; }

/* =====================================================================
   Verificador de sinais
   ===================================================================== */
.checker {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .95fr);
  background: #fff; border-radius: var(--radius-l); border: 1px solid var(--line); box-shadow: var(--shadow);
  overflow: hidden;
}
.checker__form { padding: clamp(24px, 3.5vw, 44px); }
.checker fieldset { border: 0; padding: 0; min-width: 0; }
.checker legend { font-weight: 800; font-size: 1.0625rem; margin-bottom: 12px; padding: 0; }
.checker fieldset + fieldset { margin-top: 26px; }
.seg-group { display: inline-flex; gap: 6px; background: var(--bg-soft); padding: 6px; border-radius: 999px; border: 1px solid var(--line); }
.seg { position: relative; }
.seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg span {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 20px; border-radius: 999px;
  font-weight: 750; color: var(--ink-2); transition: background-color .2s, color .2s, box-shadow .2s;
}
.seg input:checked + span { background: #fff; color: var(--ink); box-shadow: var(--shadow-s); }
.seg input:focus-visible + span { outline: 3px solid var(--teal); outline-offset: 2px; }

.sign-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.sign { position: relative; display: block; }
.sign input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.sign span {
  display: flex; align-items: center; gap: 10px; min-height: 52px; height: 100%;
  padding: 10px 14px; border-radius: 14px; border: 1.5px solid var(--line-2); background: #fff;
  font-weight: 650; font-size: .9375rem; line-height: 1.3; color: var(--ink-2); cursor: pointer;
  transition: border-color .15s, background-color .15s, color .15s;
}
.sign span .icon { color: var(--teal); width: 20px; height: 20px; }
.sign span::after {
  content: ""; margin-left: auto; flex: none; width: 20px; height: 20px; border-radius: 6px;
  border: 1.5px solid var(--line-2); background: #fff center / 14px no-repeat;
}
.sign:hover span { border-color: var(--teal); }
.sign input:checked + span { border-color: var(--pink-d); background: var(--bg-pink); color: var(--ink); }
.sign input:checked + span::after {
  background-color: var(--pink-d); border-color: var(--pink-d);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.sign input:focus-visible + span { outline: 3px solid var(--teal); outline-offset: 2px; }
.checker__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 18px; font-size: .9375rem; color: var(--muted); }
.checker__actions button { font-weight: 750; color: var(--teal-d); text-decoration: underline; text-underline-offset: .2em; min-height: 44px; }

.checker__result {
  background: linear-gradient(160deg, var(--bg-soft), #fff 60%);
  border-left: 1px solid var(--line); padding: clamp(24px, 3.5vw, 44px); display: flex; flex-direction: column;
}
.checker__empty { text-align: center; margin-block: auto; }
.checker__empty img { width: min(240px, 70%); margin: 0 auto 18px; }
.checker__empty p { color: var(--ink-2); }
.checker__result h3 { font-size: 1.25rem; margin-bottom: 14px; }
.match-list { list-style: none; padding: 0; display: grid; gap: 12px; counter-reset: m; }
.match {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; counter-increment: m;
  animation: pop .35s var(--ease) both;
}
.match__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.match__head a { font-weight: 800; color: var(--ink); text-decoration: none; }
.match__head a:hover { color: var(--pink-d); }
.match__bar { height: 6px; border-radius: 99px; background: var(--line); overflow: hidden; margin: 10px 0 8px; }
.match__bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--pink)); transform-origin: left; animation: grow .6s var(--ease) both; }
.match__signs { font-size: .8438rem; color: var(--muted); line-height: 1.45; }
.checker__note { font-size: .8438rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.checker__note .icon { display: inline-block; width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; color: var(--teal-d); }
.checker__cta { margin-top: 16px; }
@keyframes pop { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 959px) {
  .checker { grid-template-columns: 1fr; }
  .checker__result { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 520px) { .sign-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Serviços
   ===================================================================== */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; }
.service {
  display: flex; flex-direction: column; gap: 14px; padding: 28px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service h3 { font-size: 1.25rem; }
.service p { color: var(--ink-2); font-size: .9688rem; line-height: 1.6; flex: 1; }
.service--featured {
  background: linear-gradient(155deg, var(--navy) 0%, #174a5f 100%); color: #fff; border-color: transparent;
  position: relative; overflow: hidden;
}
.service--featured::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 228, .45), transparent 70%);
}
.service--featured p { color: #cfe0e8; }
.service--featured .icon-tile { background: rgba(255, 255, 255, .12); color: var(--cyan); }
.service--featured .link-arrow { color: #fff; }
@media (max-width: 999px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .services > .service:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (max-width: 620px) { .services { grid-template-columns: 1fr; } }

/* =====================================================================
   Doenças (o que tratamos)
   ===================================================================== */
.conditions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; }
.condition {
  position: relative; display: flex; flex-direction: column; gap: 10px; padding: 26px;
  border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.condition:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.condition__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.condition h3 { font-size: 1.25rem; }
.condition h3 a { color: var(--ink); text-decoration: none; }
.condition h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.condition p { color: var(--ink-2); font-size: .9688rem; line-height: 1.55; flex: 1; }
.condition .link-arrow { position: relative; }
.condition:hover .link-arrow .icon { transform: translateX(3px); }
.condition--other { background: var(--bg-pink); border-color: #ffd6e1; }
.condition--other ul { list-style: none; padding: 0; display: grid; gap: 8px; margin-top: 4px; }
.condition--other li { display: flex; gap: 10px; align-items: flex-start; font-size: .9688rem; color: var(--ink-2); line-height: 1.45; }
.condition--other li .icon { color: var(--pink-d); width: 18px; height: 18px; margin-top: 2px; }
.condition--wide { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px 28px; padding: 22px 26px; }
.condition__wide-head { display: flex; align-items: center; gap: 14px; flex: none; }
.condition--wide ul { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; flex: 1 1 420px; }
.condition--wide li { align-items: center; gap: 8px; padding: 8px 14px 8px 12px; border-radius: 999px; background: #fff; border: 1px solid #ffd6e1; font-weight: 650; font-size: .9375rem; color: var(--ink); line-height: 1.3; }
.condition--wide li .icon { margin-top: 0; }
@media (max-width: 620px) { .condition--wide li { border-radius: 14px; } }
@media (max-width: 999px) { .conditions { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .conditions { grid-template-columns: 1fr; } }

/* =====================================================================
   Sobre
   ===================================================================== */
.about { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 88px); align-items: center; }
.about__media { position: relative; isolation: isolate; width: min(100%, 460px); justify-self: center; }
.about__photo { aspect-ratio: 4 / 5; border-radius: 36px; overflow: hidden; box-shadow: var(--shadow-l); border: 6px solid #fff; background: var(--pink-soft); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__media .blob--pink { width: 78%; left: -12%; top: -8%; background: var(--pink); opacity: .9; }
.about__media .blob--cyan { width: 34%; right: -8%; bottom: -6%; background: var(--cyan); border-radius: 50%; }
.about__badge {
  position: absolute; z-index: 2; left: -6%; bottom: 8%; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 12px 16px; display: flex; gap: 10px; align-items: center; font-weight: 800; font-size: .9375rem;
}
.about__badge small { display: block; font-weight: 600; color: var(--muted); font-size: .8125rem; }
.about__text h2 { font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.75rem); margin-block: 12px 18px; }
.about__text p { color: var(--ink-2); }
.about__text p + p { margin-top: 14px; }
.about__signature { font-weight: 800; color: var(--ink); margin-top: 18px; }
.checklist { list-style: none; padding: 0; display: grid; gap: 10px; margin-top: 22px; }
.checklist li { position: relative; padding-left: 34px; color: var(--ink-2); line-height: 1.5; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .12em; width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23006d80' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.about__text .btn-row { margin-top: 28px; }
@media (max-width: 899px) { .about { grid-template-columns: 1fr; } .about__media { width: min(86%, 420px); } }

/* =====================================================================
   Pacientes (carrossel)
   ===================================================================== */
.carousel__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.carousel__nav { display: flex; gap: 10px; }
@media (max-width: 620px) {
  .carousel__bar { flex-wrap: nowrap; }
  .filters { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--gutter), #000 calc(100% - 28px), transparent); mask-image: linear-gradient(90deg, transparent 0, #000 var(--gutter), #000 calc(100% - 28px), transparent); }
  .filters::-webkit-scrollbar { display: none; }
  .filters .chip { flex: none; }
  .carousel__nav { display: none; }
}
.carousel__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, calc((100% - 3 * 20px) / 4));
  gap: 20px; list-style: none; padding: 4px 4px 22px; margin: -4px -4px 0;
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: thin; scrollbar-color: var(--line-2) transparent;
}
.carousel__track::-webkit-scrollbar { height: 8px; }
.carousel__track::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 99px; }
.carousel__track > * { scroll-snap-align: start; }
@media (max-width: 1099px) { .carousel__track { grid-auto-columns: minmax(260px, calc((100% - 2 * 20px) / 3)); } }
@media (max-width: 760px) { .carousel__track { grid-auto-columns: 78%; } }

.patient {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-s); height: 100%;
}
.patient__photo { position: relative; aspect-ratio: 4 / 5; background: var(--cyan-soft); overflow: hidden; }
.patient__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.patient:hover .patient__photo img { transform: scale(1.04); }
.patient__photo .tag { position: absolute; left: 12px; top: 12px; }
.patient__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.patient__body h3 { font-size: 1.25rem; }
.patient__meta { font-size: .875rem; font-weight: 700; color: var(--teal-d); }
.patient__body p:last-child { color: var(--ink-2); font-size: .9375rem; line-height: 1.55; }
.patients-note { margin-top: 10px; font-size: .875rem; color: var(--muted); }

/* Grade de pacientes (páginas internas) */
.patient-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; list-style: none; padding: 0; }

/* =====================================================================
   Avaliações
   ===================================================================== */
.reviews-box {
  min-height: 220px; border-radius: var(--radius-l); background: #fff; border: 1px solid var(--line); padding: clamp(16px, 3vw, 32px);
}
.reviews-fallback { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; padding: 24px 8px; color: var(--ink-2); }
.reviews-fallback .stars { display: flex; gap: 4px; color: #f5a524; }
.reviews-fallback .stars .icon { fill: currentColor; stroke: none; width: 26px; height: 26px; }
.reviews-box.is-loaded .reviews-fallback { display: none; }

/* =====================================================================
   Certificados
   ===================================================================== */
.certs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; }
.cert { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, transform .25s var(--ease); }
.cert:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cert__thumb { position: relative; display: block; width: 100%; aspect-ratio: 1.414; background: var(--bg-soft); overflow: hidden; cursor: zoom-in; }
.cert__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cert__thumb::after {
  content: ""; position: absolute; right: 12px; bottom: 12px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(15, 42, 58, .78) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E") center / 20px no-repeat;
  opacity: 0; transform: scale(.8); transition: opacity .2s, transform .2s var(--ease);
}
.cert__thumb:hover::after, .cert__thumb:focus-visible::after { opacity: 1; transform: none; }
.cert__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.cert__meta { display: flex; flex-wrap: wrap; gap: 6px; }
.cert h3 { font-size: 1rem; line-height: 1.35; letter-spacing: -.01em; }
.cert p { font-size: .875rem; color: var(--muted); line-height: 1.4; }
.js .certs.is-collapsed > li:nth-child(n+7) { display: none; }
.certs-more { display: flex; justify-content: center; margin-top: 28px; }
@media (max-width: 999px) { .certs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .certs { grid-template-columns: 1fr; } .js .certs.is-collapsed > li:nth-child(n+4) { display: none; } }

/* Lightbox */
.lightbox {
  width: min(96vw, 1180px); max-height: 94vh; padding: 0; border: 0; border-radius: 20px; background: #0b1f2b;
  color: #fff; overflow: hidden;
}
.lightbox::backdrop { background: rgba(6, 18, 26, .82); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lightbox[open] { display: flex; flex-direction: column; animation: pop .25s var(--ease); }
.lightbox__stage { position: relative; display: grid; place-items: center; min-height: 0; flex: 1; padding: 56px 64px 12px; touch-action: pan-y; }
.lightbox__stage img { max-height: calc(94vh - 150px); width: auto; max-width: 100%; border-radius: 10px; background: #fff; }
.lightbox__caption { padding: 12px 24px 22px; text-align: center; font-size: .9375rem; color: #cfe0e8; }
.lightbox__caption strong { color: #fff; display: block; font-size: 1rem; }
.lightbox__btn {
  position: absolute; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, .12); color: #fff; transition: background-color .2s;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .24); }
.lightbox__close { top: 10px; right: 10px; }
.lightbox__prev { left: 10px; top: 50%; translate: 0 -50%; }
.lightbox__next { right: 10px; top: 50%; translate: 0 -50%; }
.lightbox__count { position: absolute; top: 20px; left: 22px; font-size: .875rem; color: #9fb6c3; font-weight: 700; }
@media (max-width: 620px) {
  .lightbox__stage { padding: 56px 10px 10px; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: -58px; translate: none; }
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 18px; transition: box-shadow .2s, border-color .2s; }
.faq details[open] { box-shadow: var(--shadow-s); border-color: var(--line-2); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none;
  padding: 18px 22px; font-weight: 750; font-size: 1.0625rem; line-height: 1.4; min-height: 60px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--bg-soft) center / 16px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23006d80' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  transition: transform .25s var(--ease), background-color .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--pink-soft); }
.faq__a { padding: 0 22px 20px; color: var(--ink-2); }
.faq__a p + p { margin-top: 10px; }

/* =====================================================================
   Conteúdos (blog, redes, e-books)
   ===================================================================== */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; }
.post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, transform .25s var(--ease); position: relative; }
.post:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.post__img { aspect-ratio: 16 / 10; background: var(--bg-soft); overflow: hidden; }
.post__img img { width: 100%; height: 100%; object-fit: cover; }
.post__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post time { font-size: .8125rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.post h3 { font-size: 1.0625rem; line-height: 1.35; }
.post h3 a { color: var(--ink); text-decoration: none; }
.post h3 a::after { content: ""; position: absolute; inset: 0; }
.post p { font-size: .9375rem; color: var(--ink-2); line-height: 1.55; }
.post--blog { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 24px; padding: 28px; background: linear-gradient(120deg, var(--bg-soft), #fff); }
.post--blog .post__body { padding: 0; }
@media (max-width: 899px) { .posts { grid-template-columns: 1fr; } .post--blog { flex-direction: column; align-items: flex-start; } }

.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; margin-top: 20px; }
.channel {
  position: relative; display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); transition: box-shadow .25s, transform .25s var(--ease);
}
.channel:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.channel__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: #fff; flex: none; }
.channel__icon .icon { width: 26px; height: 26px; }
.channel--ig .channel__icon { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.channel--yt .channel__icon { background: #e62117; }
.channel--tt .channel__icon { background: #111; }
.channel strong { display: block; font-size: 1.0625rem; }
.channel a { color: var(--ink); text-decoration: none; }
.channel a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.channel div > span { color: var(--muted); font-size: .9375rem; }
@media (max-width: 760px) { .channels { grid-template-columns: 1fr; } }

.ebooks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; list-style: none; padding: 0; margin-top: 20px; }
.ebook { position: relative; display: flex; gap: 16px; align-items: center; padding: 20px 22px; border-radius: var(--radius); background: var(--bg-pink); border: 1px solid #ffd6e1; }
.ebook strong { display: block; }
.ebook a { color: var(--ink); text-decoration: none; }
.ebook a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.ebook div > span { color: var(--ink-2); font-size: .9375rem; }
.ebook:hover { box-shadow: var(--shadow); }
@media (max-width: 760px) { .ebooks { grid-template-columns: 1fr; } }
.sub-h { font-size: 1.25rem; margin: 48px 0 0; }

/* =====================================================================
   CTA final
   ===================================================================== */
.cta-band {
  position: relative; overflow: hidden; border-radius: 36px; color: #fff; isolation: isolate;
  background: linear-gradient(135deg, var(--navy) 0%, #134257 55%, #0f5a6d 100%);
  padding: clamp(36px, 6vw, 72px); display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: 32px; align-items: center;
}
.cta-band::before {
  content: ""; position: absolute; z-index: -1; right: -120px; top: -140px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 228, .5), transparent 65%);
}
.cta-band::after {
  content: ""; position: absolute; z-index: -1; left: -100px; bottom: -160px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 66, 112, .4), transparent 65%);
}
.cta-band h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); }
.cta-band p { color: #cfe0e8; margin-top: 14px; font-size: 1.125rem; max-width: 34em; }
.cta-band .btn-row { margin-top: 28px; }
.cta-band__info { list-style: none; padding: 0; display: grid; gap: 14px; }
.cta-band__info li { display: flex; gap: 12px; align-items: flex-start; color: #e3eef3; }
.cta-band__info .icon { color: var(--cyan); margin-top: 3px; }
.cta-band__info a { color: #fff; }
.cta-band__info strong { display: block; color: #fff; }
@media (max-width: 899px) { .cta-band { grid-template-columns: 1fr; } }

/* =====================================================================
   Rodapé
   ===================================================================== */
.site-footer { background: var(--navy); color: #b9cdd8; padding-top: clamp(56px, 7vw, 88px); font-size: .9688rem; }
.site-footer a { color: #e3eef3; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand img { width: 190px; }
.footer__brand p { margin-top: 18px; max-width: 30em; line-height: 1.6; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, .08); }
.footer__social a:hover { background: rgba(255, 255, 255, .16); text-decoration: none; }
.footer__title { color: #fff; font-size: 1rem; font-weight: 800; letter-spacing: 0; margin-bottom: 16px; }
.footer__list { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer__list li { display: flex; gap: 10px; align-items: flex-start; }
.footer__list .icon { color: var(--cyan); width: 18px; height: 18px; margin-top: 3px; }
.footer__bottom { margin-top: 56px; border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 24px 32px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: .875rem; color: #9fb6c3; }
.footer__disclaimer { max-width: 60em; }
@media (max-width: 999px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* WhatsApp flutuante */
.fab-wa {
  position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 90;
  display: inline-flex; align-items: center; gap: 10px; min-height: 58px; padding: 0 22px 0 18px; border-radius: 999px;
  background: var(--wa); color: #fff; font-weight: 800; text-decoration: none; box-shadow: 0 14px 30px -10px rgba(21, 128, 61, .7);
  transition: transform .3s var(--ease), opacity .3s, background-color .2s;
}
.fab-wa:hover { background: var(--wa-d); color: #fff; text-decoration: none; }
.fab-wa .icon { width: 28px; height: 28px; }
.js .fab-wa:not(.is-visible) { opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none; }
@media (max-width: 620px) { .fab-wa { width: 58px; padding: 0; justify-content: center; } .fab-wa span { display: none; } }

/* =====================================================================
   Páginas internas
   ===================================================================== */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(55% 80% at 100% 0%, rgba(0, 200, 228, .15), transparent 70%),
    linear-gradient(180deg, #f6fcfe, #fff);
  padding-block: clamp(24px, 4vw, 40px) clamp(48px, 6vw, 80px);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; font-size: .875rem; color: var(--muted); }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--line-2); }
.breadcrumb a { color: var(--muted); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--teal-d); text-decoration: underline; }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(32px, 5vw, 64px); align-items: center; margin-top: clamp(20px, 3vw, 36px); }
.page-hero h1 { font-size: clamp(2.1rem, 1.3rem + 3vw, 3.4rem); letter-spacing: -.03em; margin-block: 14px 18px; }
.page-hero h1 small { display: block; font-size: .5em; font-weight: 700; color: var(--muted); letter-spacing: -.01em; margin-top: 8px; }
.page-hero__lead { font-size: 1.1875rem; color: var(--ink-2); max-width: 38em; }
.page-hero .btn-row { margin-top: 26px; }
.page-hero__media { position: relative; isolation: isolate; width: min(100%, 360px); justify-self: center; }
.page-hero__media .blob--cyan { width: 80%; right: -14%; bottom: -10%; background: var(--cyan); opacity: .85; }
.page-hero__media .blob--pink { width: 26%; left: -8%; top: 6%; background: var(--pink); border-radius: 50%; opacity: .85; }
.page-hero__photo { aspect-ratio: 4 / 5; border-radius: 32px; overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow-l); background: var(--cyan-soft); }
.page-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__caption { position: absolute; z-index: 2; left: -8%; bottom: 7%; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 10px 14px; font-size: .8125rem; font-weight: 700; max-width: 240px; line-height: 1.35; }
.page-hero__caption small { display: block; color: var(--muted); font-weight: 600; }
@media (max-width: 899px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__media { width: min(76%, 320px); }
}

.summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; list-style: none; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow); position: relative; z-index: 2; margin-top: calc(-1 * clamp(28px, 4vw, 44px)); }
.summary li { padding: 18px 20px; position: relative; }
.summary li + li::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 1px; background: var(--line); }
.summary strong { display: block; font-size: .8125rem; text-transform: uppercase; letter-spacing: .06em; color: var(--pink-d); margin-bottom: 4px; }
.summary span { display: block; font-size: .9375rem; color: var(--ink-2); line-height: 1.5; }
@media (max-width: 999px) { .summary { grid-template-columns: repeat(2, 1fr); } .summary li:nth-child(3)::before { display: none; } .summary li:nth-child(n+3) { border-top: 1px solid var(--line); } }
@media (max-width: 560px) { .summary { grid-template-columns: 1fr; } .summary li + li::before { display: none; } .summary li + li { border-top: 1px solid var(--line); } }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 5vw, 72px); align-items: start; }
.article > section + section { margin-top: clamp(40px, 5vw, 56px); }
.article h2 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem); margin-bottom: 16px; }
.article p { color: var(--ink-2); }
.article p + p, .article p + ul, .article ul + p, .article .callout + p { margin-top: 14px; }
.article p + .callout, .article ul + .callout { margin-top: 20px; }
.article ul:not([class]) { padding-left: 1.2em; color: var(--ink-2); }
.dotlist { list-style: none; padding: 0; display: grid; gap: 12px; margin-top: 12px; }
.dotlist li { position: relative; padding-left: 26px; color: var(--ink-2); }
.dotlist li::before { content: ""; position: absolute; left: 4px; top: .6em; width: 9px; height: 9px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px var(--pink-soft); }
.dotlist strong, .checklist strong { color: var(--ink); }

.callout { display: flex; gap: 14px; padding: 16px 18px; border-radius: 16px; background: var(--amber-soft); border: 1px solid #f8e1a8; color: var(--ink); font-size: .9688rem; line-height: 1.55; }
.callout .icon { width: 22px; height: 22px; margin-top: 2px; color: #a15c00; }
.callout--danger { background: var(--danger-soft); border-color: #f9c9c3; }
.callout--danger .icon { color: var(--danger); }
.callout--info { background: var(--bg-soft); border-color: var(--line-2); }
.callout--info .icon { color: var(--teal-d); }

.aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }
.toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.toc h2 { font-size: .8125rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.toc ol { list-style: none; padding: 0; display: grid; gap: 2px; }
.toc a { display: block; padding: 6px 10px; border-radius: 8px; text-decoration: none; color: var(--ink-2); font-weight: 650; font-size: .9375rem; border-left: 3px solid transparent; }
.toc a:hover { background: #fff; color: var(--ink); }
.toc a.is-current { border-left-color: var(--pink); background: #fff; color: var(--ink); }
.aside-cta { background: linear-gradient(155deg, var(--navy), #174a5f); color: #fff; border-radius: var(--radius); padding: 24px; }
.aside-cta h2 { font-size: 1.25rem; }
.aside-cta p { color: #cfe0e8; font-size: .9375rem; margin: 8px 0 18px; }
.aside-cta .btn { width: 100%; }
@media (max-width: 999px) {
  .article-layout { grid-template-columns: 1fr; }
  .aside { position: static; order: -1; }
  .aside-cta { display: none; }
}

.author { display: flex; gap: 20px; align-items: center; padding: 24px; border-radius: var(--radius); background: var(--bg-pink); border: 1px solid #ffd6e1; }
.author picture { flex: none; }
.author img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex: none; border: 3px solid #fff; }
.author strong { display: block; font-size: 1.0625rem; }
.author p { font-size: .9375rem; color: var(--ink-2); margin-top: 4px; }
.disclaimer { font-size: .875rem; color: var(--muted); margin-top: 18px; }

.related { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; list-style: none; padding: 0; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; list-style: none; padding: 0; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.feature h3 { font-size: 1.125rem; margin: 16px 0 6px; }
.feature p { font-size: .9375rem; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 999px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); }
.panel h3 { font-size: 1.25rem; margin-bottom: 6px; }
.panel--pink { background: var(--bg-pink); border-color: #ffd6e1; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.split__media { border-radius: 32px; overflow: hidden; aspect-ratio: 4 / 5; max-width: 440px; justify-self: center; box-shadow: var(--shadow-l); border: 6px solid #fff; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 899px) { .split { grid-template-columns: 1fr; } .split__media { max-width: 360px; } }

/* 404 */
.notfound { text-align: center; padding-block: clamp(64px, 10vw, 140px); }
.notfound img { width: min(280px, 70%); margin: 0 auto 24px; }
.notfound h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }
.notfound p { color: var(--ink-2); margin: 12px auto 28px; max-width: 34em; }
.notfound .btn-row { justify-content: center; }

/* =====================================================================
   Animações de entrada (só com JS e sem "reduzir movimento")
   ===================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .js [data-reveal].is-in { opacity: 1; transform: none; }
  .js [data-reveal-group] > * { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .js [data-reveal-group].is-in > * { opacity: 1; transform: none; }
  .js [data-reveal-group].is-in > *:nth-child(2) { transition-delay: .07s; }
  .js [data-reveal-group].is-in > *:nth-child(3) { transition-delay: .14s; }
  .js [data-reveal-group].is-in > *:nth-child(4) { transition-delay: .21s; }
  .js [data-reveal-group].is-in > *:nth-child(5) { transition-delay: .28s; }
  .js [data-reveal-group].is-in > *:nth-child(6) { transition-delay: .35s; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  html { scroll-behavior: auto; }
  @view-transition { navigation: none; }
}

/* Impressão */
@media print {
  .topbar, .site-header, .fab-wa, .site-footer, .cta-band, .checker, .carousel__nav, .aside-cta { display: none !important; }
  body { font-size: 12pt; }
  a { color: inherit; }
}
