/* ==========================================================================
   APICAL — Contabilidade para Dentistas · design system
   Verde petróleo domina, dourado é acento, base creme, tipografia serifada.
   ========================================================================== */

:root {
  --green-950: #06201D;
  --green-900: #0B2D2A; /* verde da marca */
  --green-800: #123D38;
  --green-700: #1B4E47;
  --green-600: #2A6459;
  --green-500: #3E7D6F;
  --green-400: #6BA093;
  --green-300: #9DC2B7;
  --green-200: #C9DED7;
  --green-100: #E7F0EC;
  --green-50:  #F2F7F4;

  --gold:      #BE8723; /* dourado da marca */
  --gold-deep: #8A5E0C; /* dourado escuro p/ texto pequeno sobre creme (contraste AA >=4.5:1) */
  --gold-300:  #E0B75F; /* dourado claro p/ fundo escuro */
  --gold-soft: #F1E4C6;

  --cream:   #F9F3ED; /* base */
  --cream-2: #F2E9DC; /* painel */
  --cream-3: #ECDECB;

  --ink:   #142320;   /* texto principal */
  --muted: #626C68;   /* texto secundário (afim ao cinza da tagline) */
  --line:  rgba(11,45,42,.12);
  --white: #ffffff;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --wrap: 74rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;

  --shadow-soft: 0 1px 2px rgba(11,45,42,.05), 0 10px 30px rgba(11,45,42,.07);
  --shadow-lift: 0 4px 10px rgba(11,45,42,.06), 0 24px 60px rgba(11,45,42,.13);
  --shadow-gold: 0 10px 26px -10px rgba(190,135,35,.5);

  --ease: cubic-bezier(.16,1,.3,1);
  --header-h: 4.75rem;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
:target, [id] { scroll-margin-top: 6.5rem; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3, h4 { color: var(--green-900); line-height: 1.12; text-wrap: balance; }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.005em; }
h3, h4 { font-family: var(--font); font-weight: 600; letter-spacing: -.01em; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }
em { font-style: normal; }

::selection { background: var(--gold-soft); color: var(--green-950); }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; border-radius: 4px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--green-900); color: #fff; padding: .6rem 1rem; border-radius: 8px; }
.skip-link:focus { left: 1rem; top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 768px) { .wrap { padding-inline: 2rem; } }

.section { position: relative; padding-block: 3.75rem; }
@media (min-width: 768px) { .section { padding-block: 6.5rem; } }
.section--tint { background: var(--white); }
.section--dark { background: var(--green-950); color: var(--cream); overflow: hidden; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font); font-size: .74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em; color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 16px; height: 1.5px; background: var(--gold); }
.section--dark .eyebrow, .final-cta .eyebrow { color: var(--gold-300); }
.section--dark .eyebrow::before, .final-cta .eyebrow::before { background: var(--gold-300); }

.sec-head { display: flex; flex-direction: column; gap: 1.05rem; max-width: 44rem; }
.sec-head--center { align-items: center; text-align: center; margin-inline: auto; }
.sec-head h2 { font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.1rem); }
.sec-head p { font-size: 1.1rem; color: var(--muted); max-width: 40rem; }
.section--dark .sec-head p { color: var(--green-200); }

.text-gold {
  background: linear-gradient(100deg, var(--gold-deep) 0%, #B27C1B 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section--dark .text-gold, .final-cta .text-gold {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }

.glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: 0; }
.glow--a { left: -8rem; top: -6rem; width: 26rem; height: 26rem; background: rgba(42,100,89,.5); }
.glow--b { right: -8rem; bottom: -8rem; width: 26rem; height: 26rem; background: rgba(190,135,35,.14); }

/* reveal (gate no .js: sem JavaScript, tudo fica visível) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 2.85rem; padding-inline: 1.4rem; border: 0; cursor: pointer;
  border-radius: var(--radius-pill); font-family: var(--font); font-size: .95rem; font-weight: 600;
  white-space: nowrap; transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn:active { transform: scale(.98); }
.btn--lg { height: 3.35rem; padding-inline: 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn svg { width: 1.15rem; height: 1.15rem; }
.btn--primary { background: var(--gold); color: var(--green-950); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: #cf962e; transform: translateY(-1px); }
.btn--secondary { background: var(--green-900); color: var(--cream); }
.btn--secondary:hover { background: var(--green-800); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--green-900); box-shadow: inset 0 0 0 1.5px var(--green-200); }
.btn--ghost:hover { background: var(--green-50); box-shadow: inset 0 0 0 1.5px var(--green-300); }
.btn--ondark { background: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
.btn--ondark:hover { background: rgba(255,255,255,.16); }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- header ---------- */
.site-header { position: fixed; inset-inline: 0; top: 0; z-index: 50; transition: background .3s var(--ease), box-shadow .3s var(--ease); border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(249,243,237,.88); backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 2.5rem; width: auto; }
.brand__logo--light { display: none; }
/* páginas internas: header transparente sobre hero escuro -> logo e nav claros */
body:not(.is-home) .site-header:not(.is-scrolled) .brand__logo--color { display: none; }
body:not(.is-home) .site-header:not(.is-scrolled) .brand__logo--light { display: block; }
body:not(.is-home) .site-header:not(.is-scrolled) .nav a { color: rgba(249,243,237,.82); }
body:not(.is-home) .site-header:not(.is-scrolled) .nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
body:not(.is-home) .site-header:not(.is-scrolled) .nav a.current-menu-item { color: #fff; }
body:not(.is-home) .site-header:not(.is-scrolled) .header__phone { color: rgba(249,243,237,.9); }
body:not(.is-home) .site-header:not(.is-scrolled) .header__phone svg { color: var(--gold-300); }
body:not(.is-home) .site-header:not(.is-scrolled) .nav-toggle { color: var(--cream); }
.nav { display: none; align-items: center; gap: .35rem; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { position: relative; padding: .5rem .62rem; font-size: .92rem; font-weight: 500; color: var(--green-800); border-radius: 8px; transition: color .2s, background .2s; white-space: nowrap; }
.nav a:hover { color: var(--green-900); background: var(--green-50); }
.nav a.current-menu-item { color: var(--green-900); }
.nav a.current-menu-item::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .28rem; height: 2px; background: var(--gold); border-radius: 2px; }

.header__cta { display: none; align-items: center; gap: .9rem; }
@media (min-width: 1024px) { .header__cta { display: flex; } }
.header__phone { display: none; align-items: center; gap: .45rem; font-size: .9rem; font-weight: 500; color: var(--green-800); white-space: nowrap; }
@media (min-width: 1220px) { .header__phone { display: inline-flex; } }
.header__phone svg { width: 1.05rem; height: 1.05rem; color: var(--gold-deep); }
.header__phone:hover { color: var(--green-900); }

.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border: 0; background: transparent; color: var(--green-900); cursor: pointer; border-radius: 10px; }
.nav-toggle svg { width: 1.6rem; height: 1.6rem; }
.nav-toggle .icon-close { display: none; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-open .nav-toggle .icon-open { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

.mobile-nav { position: fixed; inset: 0; top: var(--header-h); z-index: 40; visibility: hidden; }
.mobile-nav.is-open { visibility: visible; }
.mobile-nav__backdrop { position: absolute; inset: 0; background: rgba(6,32,29,.4); opacity: 0; transition: opacity .3s var(--ease); }
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }
.mobile-nav__panel { position: absolute; inset-inline: 0; top: 0; background: var(--cream); border-bottom: 1px solid var(--line); padding: 1rem 1.25rem 1.5rem; transform: translateY(-12px); opacity: 0; transition: transform .3s var(--ease), opacity .3s var(--ease); box-shadow: var(--shadow-lift); }
.mobile-nav.is-open .mobile-nav__panel { transform: none; opacity: 1; }
.nav-link { display: flex; align-items: center; justify-content: space-between; padding: .9rem .25rem; font-size: 1.05rem; font-weight: 500; color: var(--green-900); border-bottom: 1px solid var(--line); }
.nav-link svg { width: 1.1rem; height: 1.1rem; color: var(--green-300); }
.mobile-nav__cta { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.25rem; }
.header__phone--mob { display: inline-flex; justify-content: center; height: 3rem; box-shadow: inset 0 0 0 1.5px var(--green-200); border-radius: var(--radius-pill); }
/* o painel do menu é sempre creme: telefone escuro mesmo quando o header está no modo claro */
body:not(.is-home) .site-header:not(.is-scrolled) .mobile-nav__panel .header__phone { color: var(--green-900); }
body:not(.is-home) .site-header:not(.is-scrolled) .mobile-nav__panel .header__phone svg { color: var(--gold-deep); }
body.nav-locked { overflow: hidden; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; overflow: hidden; }
@media (min-width: 768px) { .hero { padding-top: calc(var(--header-h) + 4.5rem); padding-bottom: 5.5rem; } }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; }
.hero__glow--a { left: -10rem; top: -4rem; width: 32rem; height: 32rem; background: rgba(157,194,183,.4); }
.hero__glow--b { right: -8rem; top: 6rem; width: 26rem; height: 26rem; background: rgba(190,135,35,.12); }
.hero__grid { position: relative; z-index: 1; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; } }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-deep); }
.hero__eyebrow::before { content: ""; width: 16px; height: 1.5px; background: var(--gold); }
.hero h1 { margin-top: 1.4rem; font-size: clamp(2.6rem, 1.7rem + 4.2vw, 4.4rem); line-height: 1.04; }
.hero__desc { margin-top: 1.5rem; max-width: 34rem; font-size: 1.15rem; color: var(--muted); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2rem; }
.hero__checks span { display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; font-weight: 500; color: var(--green-800); }
.hero__checks svg { width: 1.1rem; height: 1.1rem; color: var(--gold-deep); }
.hero__art { position: relative; z-index: 1; }

/* hero card (resumo do mês) */
.hcard { position: relative; max-width: 24rem; margin-inline: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); padding: 1.4rem 1.5rem 1.5rem; }
.hcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.hcard__brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; color: var(--green-900); font-size: .95rem; }
.hcard__mark { display: inline-flex; align-items: center; justify-content: center; width: 1.9rem; height: 1.9rem; border-radius: 8px; background: var(--green-900); color: var(--gold-300); }
.hcard__mark svg { width: 1.1rem; height: 1.1rem; }
.hcard__period { font-size: .72rem; font-weight: 600; color: var(--muted); background: var(--cream-2); padding: .25rem .6rem; border-radius: var(--radius-pill); }
.hcard__rows { display: flex; flex-direction: column; }
.hcard__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.hcard__row .l { font-size: .9rem; color: var(--muted); display: inline-flex; align-items: center; gap: .5rem; }
.hcard__row .v { font-size: .95rem; font-weight: 600; color: var(--green-900); font-variant-numeric: tabular-nums; }
.tag-anexo { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--green-700); background: var(--green-100); padding: .1rem .4rem; border-radius: 5px; }
.hcard__row--total { border-bottom: 0; border-top: 1px solid var(--line); margin-top: .35rem; padding-top: .85rem; }
.hcard__row--total .l { color: var(--green-900); font-weight: 600; font-size: .95rem; }
.hcard__row--total .v { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-deep); }
.hcard__compare { margin-top: 1rem; padding-top: 1.1rem; border-top: 1px dashed var(--line); }
.hcard__compare-t { font-size: .82rem; font-weight: 600; color: var(--green-900); margin-bottom: .65rem; }
.hbar { display: grid; grid-template-columns: 4.2rem 1fr auto; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.hbar__label { font-size: .72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.hbar__track { height: .55rem; border-radius: 99px; background: rgba(11,45,42,.07); overflow: hidden; }
.hbar__fill { display: block; height: 100%; border-radius: 99px; }
.hbar__fill--bad { background: var(--green-200); }
.hbar__fill--good { background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.hbar__val { font-size: .78rem; font-weight: 600; color: var(--green-900); font-variant-numeric: tabular-nums; }
.hcard__compare-s { font-size: .75rem; color: var(--muted); margin-top: .55rem; }
.hcard__badge { position: absolute; top: -.85rem; right: 1.2rem; display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 600; color: var(--green-950); background: var(--gold-300); padding: .35rem .7rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-soft); }
.hcard__badge svg { width: .9rem; height: .9rem; }
.hcard__note { position: absolute; bottom: -1.5rem; right: .2rem; font-size: .68rem; color: var(--muted); font-style: italic; }

/* ---------- diff (por que) ---------- */
.diff { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.6rem 1.7rem; overflow: hidden; }
.diff__num { position: absolute; top: 1rem; right: 1.3rem; font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--cream-3); line-height: 1; }
.diff__icon { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 12px; background: var(--green-900); color: var(--gold-300); margin-bottom: 1.1rem; }
.diff__icon svg { width: 1.5rem; height: 1.5rem; }
.diff__kicker { display: block; font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-deep); margin-bottom: .35rem; }
.diff h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.diff p { color: var(--muted); font-size: .96rem; }

/* ---------- cards (serviços) ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.6rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.card--hover { position: relative; overflow: hidden; }
.card--hover::before { content: ""; position: absolute; top: 0; left: 1.6rem; right: 1.6rem; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--green-200); }
.card--hover:hover::before { transform: scaleX(1); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 12px; background: var(--green-900); color: var(--gold-300); margin-bottom: 1.1rem; }
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.card h3 { font-size: 1.18rem; margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- process (dark) ---------- */
.steps { position: relative; display: grid; gap: 2rem; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.steps__line { display: none; }
@media (min-width: 720px) { .steps__line { display: block; position: absolute; top: 1.75rem; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(224,183,95,.4), transparent); } }
.step { position: relative; }
.step__badge { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--green-800); color: var(--gold-300); box-shadow: inset 0 0 0 1px rgba(224,183,95,.35); margin-bottom: 1.1rem; }
.step__badge svg { width: 1.5rem; height: 1.5rem; }
.step__badge .n { position: absolute; top: -.4rem; right: -.4rem; font-size: .66rem; font-weight: 700; color: var(--green-950); background: var(--gold-300); width: 1.35rem; height: 1.35rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 1.15rem; color: #fff; margin-bottom: .5rem; }
.step p { color: var(--green-200); font-size: .93rem; }

/* ---------- audiences ---------- */
.aud { display: flex; gap: 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; }
.aud__icon { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 12px; background: var(--green-900); color: var(--gold-300); }
.aud__icon svg { width: 1.5rem; height: 1.5rem; }
.aud h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.aud p { color: var(--muted); font-size: .95rem; }
.painbox { margin-top: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--cream-2); padding: 1.8rem; }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
.chip { display: inline-flex; align-items: center; gap: .45rem; font-size: .88rem; font-weight: 500; color: var(--green-800); background: var(--white); border: 1px solid var(--line); padding: .45rem .85rem; border-radius: var(--radius-pill); }
.chip svg { width: 1rem; height: 1rem; color: var(--gold-deep); }

/* ---------- plans ---------- */
.plans { display: grid; gap: 1.25rem; align-items: stretch; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.7rem; display: flex; flex-direction: column; }
.plan--feat { border-color: var(--green-900); box-shadow: var(--shadow-lift); background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--gold-soft) 18%, #fff) 100%); }
@media (min-width: 900px) { .plan--feat { transform: translateY(-.75rem); } }
.plan__badge { position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green-950); background: var(--gold-300); padding: .35rem .85rem; border-radius: var(--radius-pill); white-space: nowrap; }
.plan h3 { font-size: 1.5rem; font-family: var(--font-display); font-weight: 600; }
.plan__tag { color: var(--muted); font-size: .92rem; margin-top: .3rem; min-height: 2.6em; }
.plan__price { margin: 1.1rem 0 1.2rem; }
.plan__price .from { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .2rem; }
.plan__price .line { display: inline-flex; align-items: baseline; gap: .15rem; }
.plan__price .cur { font-size: 1.1rem; font-weight: 600; color: var(--green-900); }
.plan__price .num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--green-900); line-height: 1; }
.plan__price .cad { font-size: .95rem; color: var(--muted); }
.plan__feats { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.6rem; }
.plan__feats li { display: flex; gap: .6rem; font-size: .94rem; color: var(--green-800); }
.check-dot { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--green-100); color: var(--green-700); margin-top: .1rem; }
.check-dot svg { width: .8rem; height: .8rem; }
.plan__qualifier { margin: 0 0 1.1rem; padding-top: .9rem; border-top: 1px solid var(--line); font-size: .8rem; color: var(--muted); }
.plan__cta { margin-top: auto; }
.plans-note { text-align: center; margin-top: 1.75rem; font-size: .92rem; color: var(--muted); max-width: 44rem; margin-inline: auto; }
.plans-note a { color: var(--gold-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
/* mobile: o plano em destaque vem primeiro */
@media (max-width: 899px) { .plan--feat { order: -1; } }

/* ---------- pacotes: transparência ---------- */
.transp { display: grid; gap: 1.25rem; margin-top: 3.5rem; }
@media (min-width: 720px) { .transp { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .transp { grid-template-columns: repeat(3, 1fr); } }
.transp__item { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.transp__ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 2.6rem; height: 2.6rem; border-radius: 10px; background: var(--green-50); color: var(--green-700); }
.transp__ic svg { width: 1.3rem; height: 1.3rem; }
.transp__item h3 { font-size: 1.02rem; }
.transp__item p { margin-top: .35rem; color: var(--muted); font-size: .9rem; }

/* ---------- pacotes: bloco carnê-leão (PF) ---------- */
.pf-block__head { max-width: 46rem; }
.pf-block__head h2 { margin-top: 1.2rem; font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.7rem); }
.pf-block__head p { margin-top: 1.1rem; color: var(--green-200); font-size: 1.05rem; }
.pf-block__foot { margin-top: 3rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 2rem; }
.pf-block__foot p { max-width: 36rem; color: var(--green-200); font-size: 1rem; }
.pf-block__foot em { color: var(--gold-300); font-style: italic; }

/* ---------- trust ---------- */
.trust { background: var(--green-950); color: var(--cream); }
.trust .wrap { padding-block: 3rem; }
.trust__grid { display: grid; gap: 1.75rem; }
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__item { display: flex; gap: .9rem; align-items: flex-start; }
.trust__item .ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 2.6rem; height: 2.6rem; border-radius: 10px; background: rgba(224,183,95,.14); color: var(--gold-300); }
.trust__item .ic svg { width: 1.35rem; height: 1.35rem; }
.trust__item .t { font-weight: 600; color: #fff; font-size: 1rem; }
.trust__item .d { color: var(--green-200); font-size: .88rem; margin-top: .2rem; }

/* ---------- faq ---------- */
.split--faq { grid-template-columns: 1fr; }
@media (min-width: 900px) { .split--faq { grid-template-columns: .8fr 1.2fr; align-items: start; gap: 3rem; } }
.faq-aside { margin-top: 1.75rem; padding: 1.4rem; border-radius: var(--radius); background: var(--cream-2); border: 1px solid var(--line); }
.faq-aside p { font-size: .95rem; color: var(--muted); margin-bottom: .9rem; }
.faq { display: flex; flex-direction: column; gap: .75rem; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq__item.is-open { border-color: var(--green-200); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--font); font-size: 1.02rem; font-weight: 600; color: var(--green-900); }
.faq__q .ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 1.7rem; height: 1.7rem; border-radius: 50%; background: var(--green-50); color: var(--green-700); transition: transform .3s var(--ease), background .2s; }
.faq__q .ic svg { width: 1rem; height: 1rem; }
.faq__item.is-open .faq__q .ic { transform: rotate(45deg); background: var(--gold-300); color: var(--green-950); }
.faq__a { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .3s var(--ease), visibility .3s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; visibility: visible; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 1.3rem 1.25rem; color: var(--muted); font-size: .96rem; }

/* ---------- final cta ---------- */
.final-cta { background: var(--cream); padding-block: 1rem 5rem; }
.final-cta__box { position: relative; overflow: hidden; border-radius: 2rem; background: var(--green-950); color: var(--cream); padding: 3.5rem 1.5rem; }
@media (min-width: 768px) { .final-cta__box { padding: 4.5rem 2rem; } }
.final-cta__inner { position: relative; z-index: 1; max-width: 40rem; margin-inline: auto; text-align: center; }
.final-cta__inner h2 { margin-top: 1.3rem; color: #fff; font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); }
.final-cta__inner p { margin: 1.2rem auto 0; max-width: 34rem; font-size: 1.1rem; color: var(--green-200); }
.final-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; margin-top: 2.25rem; }

/* ---------- page hero (inner) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--green-950); color: var(--cream); padding-top: calc(var(--header-h) + 3.5rem); padding-bottom: 3.5rem; }
@media (min-width: 768px) { .page-hero { padding-top: calc(var(--header-h) + 5rem); padding-bottom: 4.5rem; } }
.page-hero__glow { position: absolute; right: -6rem; top: -4rem; width: 28rem; height: 28rem; border-radius: 50%; filter: blur(120px); background: rgba(42,100,89,.55); pointer-events: none; }
.page-hero__inner { position: relative; z-index: 1; max-width: 46rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--green-200); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--green-200); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: .9rem; height: .9rem; color: var(--green-400); }
.page-hero .eyebrow { color: var(--gold-300); }
.page-hero .eyebrow::before { background: var(--gold-300); }
.page-hero h1 { margin-top: 1rem; color: #fff; font-size: clamp(2.3rem, 1.6rem + 3.2vw, 3.6rem); }
.page-hero .lead { margin-top: 1.2rem; font-size: 1.15rem; color: var(--green-200); max-width: 40rem; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* ---------- about ---------- */
.split--about { align-items: start; }
.prose { color: var(--ink); }
.prose p { font-size: 1.08rem; color: var(--ink); margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--green-900); font-weight: 700; }
.prose h2 { font-size: 1.9rem; margin: 2rem 0 1rem; }
.prose h3 { font-size: 1.3rem; margin: 1.5rem 0 .75rem; }
.prose a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { display: flex; flex-direction: column; gap: .6rem; margin: 1rem 0; }
.prose ul li { position: relative; padding-left: 1.5rem; color: var(--ink); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .6rem; width: .5rem; height: .5rem; border-radius: 50%; background: var(--gold); }
.prose-open { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--green-900); line-height: 1.3; }

/* ---------- timeline (história) ---------- */
.timeline { margin-top: 3rem; }
.tl-item { display: grid; grid-template-columns: 1fr; gap: .6rem; padding: 2rem 0; border-top: 1px solid var(--line); }
@media (min-width: 720px) { .tl-item { grid-template-columns: 8.5rem 1fr; gap: 2.5rem; } }
.tl-year { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1; color: var(--gold-deep); }
.tl-body { max-width: 44rem; }
.tl-body h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.tl-body p { color: var(--muted); font-size: 1rem; margin-bottom: .8rem; }
.tl-body p:last-child { margin-bottom: 0; }

/* ---------- equipe ---------- */
.people { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 860px) { .people { grid-template-columns: repeat(2, 1fr); align-items: start; } }
.person { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.person__photo { aspect-ratio: 4 / 3.6; overflow: hidden; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.person__body { padding: 1.8rem 1.7rem 2rem; }
.person__body h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; }
.person__role { margin-top: .3rem; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-deep); }
.person__bio { margin-top: .9rem; color: var(--muted); font-size: .97rem; }
.person__creds { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px dashed var(--line); }
.person__creds li { display: flex; gap: .6rem; font-size: .92rem; color: var(--green-800); }

.namecard { position: relative; background: var(--green-950); color: var(--cream); border-radius: var(--radius-lg); padding: 2.2rem; overflow: hidden; }
.namecard__mark { display: inline-flex; align-items: center; justify-content: center; width: 3.2rem; height: 3.2rem; border-radius: 14px; background: rgba(224,183,95,.14); color: var(--gold-300); margin-bottom: 1.2rem; }
.namecard__mark svg { width: 1.7rem; height: 1.7rem; }
.namecard h2 { color: #fff; font-size: 1.9rem; margin-bottom: .8rem; }
.namecard p { color: var(--green-200); font-size: 1.02rem; }

/* ---------- contact ---------- */
.contact { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact { grid-template-columns: 1fr 1.05fr; gap: 3.5rem; align-items: start; } }
.contact__info h2 { font-size: 2rem; }
.contact__lead { color: var(--muted); margin-top: .75rem; font-size: 1.05rem; }
.contact__wa { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; padding: 1.1rem 1.3rem; border-radius: var(--radius); background: var(--green-900); color: var(--cream); box-shadow: var(--shadow-soft); transition: transform .2s var(--ease), background .2s; }
.contact__wa:hover { background: var(--green-800); transform: translateY(-2px); }
.contact__wa .ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 12px; background: rgba(224,183,95,.16); color: var(--gold-300); }
.contact__wa .ic svg { width: 1.5rem; height: 1.5rem; }
.contact__wa .tx { display: flex; flex-direction: column; }
.contact__wa .tx strong { font-size: 1.02rem; }
.contact__wa .tx span { font-size: .88rem; color: var(--green-200); }
.contact__wa .arrow { margin-left: auto; flex: none; width: 1.5rem; height: 1.5rem; color: var(--gold-300); }
.contact__list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.75rem; }
.contact__list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact__list .ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 10px; background: var(--green-50); color: var(--green-700); }
.contact__list .ic svg { width: 1.25rem; height: 1.25rem; }
.contact__list .l { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact__list a, .contact__list span { color: var(--green-900); font-weight: 500; }
.contact__form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-soft); }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--green-900); }
.field input, .field select, .field textarea { font-family: var(--font); font-size: .98rem; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: .8rem .9rem; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(42,100,89,.15); }
.field ::placeholder { color: var(--muted); opacity: 1; }
.field textarea { resize: vertical; }
.contact__form-note { font-size: .82rem; color: var(--muted); margin-top: .9rem; text-align: center; }

/* ---------- footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--green-950); color: var(--green-200); padding-block: 3.5rem 2rem; }
.footer__grid { display: grid; gap: 2.5rem; position: relative; z-index: 1; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; } }
.footer__brand img { height: 3.1rem; width: auto; margin-bottom: 1.1rem; }
.footer__brand p { font-size: .92rem; color: var(--green-300); max-width: 22rem; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem; border-radius: 10px; background: rgba(255,255,255,.06); color: var(--cream); transition: background .2s, color .2s; }
.footer__social a:hover { background: var(--gold-300); color: var(--green-950); }
.footer__social svg { width: 1.2rem; height: 1.2rem; }
.footer__col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer__col a { color: var(--green-200); font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: center; gap: .6rem; color: var(--green-200); font-size: .92rem; }
.footer__contact svg { width: 1.05rem; height: 1.05rem; color: var(--gold-300); flex: none; }
.footer__bottom { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; color: var(--green-300); }
.footer__bottom .links { display: flex; gap: 1.25rem; }
.footer__bottom a:hover { color: #fff; }

/* ---------- wa fab + cookie ---------- */
.wa-fab { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60; display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: #25D366; color: #fff; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .2s var(--ease); }
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 1.8rem; height: 1.8rem; }
/* cookie: canto inferior ESQUERDO (oposto ao FAB do WhatsApp); no mobile deixa o FAB livre */
.cookie { position: fixed; left: 1rem; right: 5.9rem; bottom: 1rem; z-index: 70; max-width: 30rem; background: var(--green-950); color: var(--cream); border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-lift); transform: translateY(180%); transition: transform .4s var(--ease); }
.cookie.is-show { transform: none; }
.cookie p { font-size: .86rem; color: var(--green-200); }
.cookie a { color: var(--gold-300); text-decoration: underline; }
.cookie__row { display: flex; justify-content: flex-end; margin-top: .8rem; }
@media (min-width: 640px) { .cookie { left: 1.1rem; right: auto; bottom: 1.1rem; } }

/* ---------- blog ---------- */
.teaser-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.more-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .92rem; font-weight: 600; color: var(--green-900); white-space: nowrap; }
.more-link svg { width: 1.05rem; height: 1.05rem; flex: none; transition: transform .2s var(--ease); }
.more-link:hover svg { transform: translateX(3px); }
.post-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--green-200); }
.post-cover { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--green-950); }
.post-cover .cglow { position: absolute; right: -2.5rem; top: -3rem; width: 10rem; height: 10rem; border-radius: 50%; filter: blur(40px); background: rgba(42,100,89,.55); }
.post-cover .cicon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 3.75rem; height: 3.75rem; display: flex; align-items: center; justify-content: center; border-radius: 1rem; background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); color: var(--gold-300); }
.post-cover .cicon svg { width: 2rem; height: 2rem; }
.post-cover .ccat { position: absolute; left: 1.1rem; top: 1.1rem; z-index: 1; border-radius: var(--radius-pill); background: rgba(6,32,29,.55); padding: .28rem .75rem; font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--cream); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); backdrop-filter: blur(6px); }
.post-cover--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.4rem 1.5rem; }
.post-card__body h3 { font-size: 1.12rem; line-height: 1.35; }
.post-card__body p { margin-top: .55rem; color: var(--muted); font-size: .92rem; }
.post-meta { display: flex; align-items: center; gap: .6rem; margin-top: auto; padding-top: 1rem; font-size: .8rem; color: var(--muted); }
.post-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--green-300); }
.single-related h2 { font-size: 1.5rem; }
.single-cover { max-width: 48rem; margin: 0 0 2.25rem; }
.single-cover img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }

/* ---------- misc ---------- */
.paginate a, .paginate span { display: inline-flex; align-items: center; justify-content: center; min-width: 2.4rem; height: 2.4rem; padding-inline: .6rem; border-radius: 8px; border: 1px solid var(--line); color: var(--green-800); }
.paginate .current { background: var(--green-900); color: #fff; border-color: var(--green-900); }
