/* =================================================================
   1º Ofício de Notas e Protesto, e RCPN de Campos Altos/MG
   Folha de estilo única e compartilhada.
   Organização:
     00. Reset / base
     01. Tokens (variáveis de design — paleta do brasão)
     02. Tipografia
     03. Acessibilidade (skip-link, foco, utilitários)
     04. Layout (container, section, cabeçalho de seção)
     05. Botões
     06. Top bar (mote)
     07. Header + navegação (desktop e mobile)
     08. Hero (home)
     09. Cards de acesso rápido / grades de cards
     10. Blocos institucionais (split, valores, faixas)
     11. Accordion (serviços)
     12. Listas de documentos / tabelas / callouts
     13. Mapa "Como chegar"
     14. Cabeçalho de página interna
     15. Footer (rodapé)
     16. Botão flutuante de WhatsApp (seletor)
     17. Motion (reveal) + prefers-reduced-motion
     18. Media queries (aprimoramentos para telas maiores)
   ================================================================= */

/* ============================ 00. RESET / BASE ============================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tinta);
  background: var(--branco);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  /* faixa cívica dourada no topo absoluto da página */
  border-top: 4px solid var(--dourado);
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--azul-strong); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--verde); }
ul, ol { padding-left: 1.2em; }
button { font: inherit; color: inherit; cursor: pointer; }
:where(h1, h2, h3, h4) { line-height: 1.18; font-weight: 600; }

/* =========================== 01. TOKENS ============================ */
:root {
  /* Paleta derivada do brasão (hibisco azul / verde / creme / dourado) */
  --azul:        #1E7FE0;   /* azul-hibisco — acento decorativo, ícones, foco */
  --azul-strong: #155FBF;   /* azul para texto/links/botões (contraste AA) */
  --verde:       #1F6B3A;   /* verde institucional — marca, títulos de seção */
  --verde-900:   #143E22;   /* verde escuro — rodapé */
  --creme:       #FAF7E8;   /* creme — fundos de respiro */
  --creme-200:   #F1ECD6;   /* creme mais fechado — bordas suaves */
  --dourado:     #D8B24A;   /* dourado — divisores finos, detalhes de selo */
  --dourado-700: #9A7A21;   /* dourado escuro — texto sobre creme se preciso */
  --tinta:       #2B2B2B;   /* texto corrido */
  --tinta-soft:  #555a55;   /* texto secundário */
  --branco:      #FFFFFF;
  --linha:       #E6E2D2;   /* linhas/bordas sutis */

  /* WhatsApp */
  --wa:        #128A45;     /* botões de ação (texto branco AA) */
  --wa-bright: #25D366;     /* círculo do botão flutuante */

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-h1:   clamp(2.05rem, 1.4rem + 3vw, 3.35rem);
  --fs-h2:   clamp(1.55rem, 1.2rem + 1.7vw, 2.35rem);
  --fs-h3:   clamp(1.18rem, 1.05rem + .6vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 1rem + .4vw, 1.22rem);
  --fs-sm:   .92rem;

  /* Espaçamento / formas */
  --container: 1140px;
  --pad-x: 1.25rem;
  --section-y: clamp(3rem, 1.8rem + 4.5vw, 5.5rem);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Sombras suaves */
  --sh-sm: 0 1px 2px rgba(20,30,20,.06), 0 1px 3px rgba(20,30,20,.05);
  --sh-md: 0 6px 18px rgba(20,40,25,.08), 0 2px 6px rgba(20,40,25,.05);
  --sh-lg: 0 18px 40px rgba(18,45,28,.14);

  /* Transições */
  --t-fast: 150ms;
  --t-med: 280ms;
  --ease: cubic-bezier(.2,.7,.2,1);

  --focus: var(--azul);
}

/* =========================== 02. TIPOGRAFIA ============================ */
.display, h1, h2 { font-family: var(--font-display); letter-spacing: -.01em; }
h1 { font-size: var(--fs-h1); font-weight: 600; }
h2 { font-size: var(--fs-h2); font-weight: 600; }
h3 { font-size: var(--fs-h3); font-family: var(--font-display); font-weight: 600; }
h4 { font-size: 1.02rem; font-weight: 700; letter-spacing: .01em; }
p { max-width: 72ch; }
.lead { font-size: var(--fs-lead); color: var(--tinta-soft); max-width: 60ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--verde);
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 2px; background: var(--dourado); border-radius: 2px;
}
.text-azul { color: var(--azul-strong); }
.text-verde { color: var(--verde); }

/* ===================== 03. ACESSIBILIDADE / UTILS ===================== */
.skip-link {
  position: absolute; left: .75rem; top: -3.5rem;
  background: var(--verde); color: #fff; padding: .6rem 1rem; border-radius: var(--r-sm);
  z-index: 200; transition: top var(--t-fast) var(--ease); font-weight: 600;
}
.skip-link:focus { top: .75rem; color: #fff; }

:where(a, button, input, select, textarea, [tabindex], summary):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.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;
}
.is-hidden { display: none !important; }

/* ============================ 04. LAYOUT ============================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--creme); }
.section--green { background: var(--verde); color: #fff; }
.section--tight { padding-block: clamp(2rem, 1.4rem + 3vw, 3.5rem); }
.section + .section { border-top: 1px solid transparent; }

.section-head { max-width: 62ch; margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head h2 { margin-top: .5rem; }
.section-head .lead { margin-top: .85rem; }

.divider-gold { height: 2px; border: 0; background: linear-gradient(90deg, transparent, var(--dourado), transparent); margin-block: 0; }

.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }

/* ============================ 05. BOTÕES ============================ */
.btn {
  --btn-bg: var(--azul-strong); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.4rem; min-height: 48px;
  font-weight: 600; font-size: .98rem; line-height: 1.1;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1.5px solid transparent; border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease), background var(--t-fast) var(--ease);
  box-shadow: var(--sh-sm);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--wa { --btn-bg: var(--wa); }
.btn--wa:hover { background: #0f7a3c; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--verde); border-color: var(--verde); box-shadow: none; }
.btn--ghost:hover { --btn-fg: #fff; background: var(--verde); }
.btn--gold { --btn-bg: var(--dourado); --btn-fg: #3a2c00; }
.btn--gold:hover { background: #c79f37; }
.btn--lg { padding: .95rem 1.8rem; font-size: 1.05rem; min-height: 54px; }
.btn--block { width: 100%; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--verde); }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ============================ 06. TOP BAR ============================ */
.topbar { background: var(--verde); color: #eef3ec; font-size: .86rem; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 1rem 1.5rem; flex-wrap: wrap; padding-block: .5rem; text-align: center; }
.topbar__mote { font-weight: 600; display: inline-flex; align-items: center; gap: .5rem; }
.topbar__mote::before { content: "🔒"; font-size: .9em; }
.topbar__links { display: inline-flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }
.topbar a:hover { color: var(--dourado); }
.topbar svg { width: 1.05em; height: 1.05em; }

/* ===================== 07. HEADER + NAVEGAÇÃO ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--linha);
  transition: box-shadow var(--t-med) var(--ease);
}
.site-header.is-stuck { box-shadow: var(--sh-md); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--verde); }
.brand__seal { width: 50px; height: 50px; flex: none; filter: drop-shadow(0 2px 5px rgba(15,40,25,.28)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--verde); }
.brand__sub { font-size: .72rem; color: var(--tinta-soft); letter-spacing: .01em; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: transparent; border: 1.5px solid var(--linha); border-radius: var(--r-sm);
}
.nav-toggle__bars { position: relative; width: 22px; height: 16px; }
.nav-toggle__bars span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--verde); border-radius: 2px; transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease); }
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 7px; }
.nav-toggle__bars span:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav { display: flex; align-items: center; gap: 1.05rem; }
.primary-nav__list { display: flex; align-items: center; gap: .3rem; list-style: none; padding: 0; margin: 0; }
.primary-nav__list a {
  display: inline-block; padding: .5rem .55rem; border-radius: var(--r-sm);
  color: var(--tinta); text-decoration: none; font-weight: 600; font-size: .92rem; white-space: nowrap;
  position: relative; transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.primary-nav__list a::after {
  content: ""; position: absolute; left: .75rem; right: .75rem; bottom: .3rem; height: 2px;
  background: var(--dourado); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform var(--t-med) var(--ease);
}
.primary-nav__list a:hover { color: var(--verde); }
.primary-nav__list a:hover::after { transform: scaleX(1); }
.primary-nav__list a[aria-current="page"] { color: var(--verde); }
.primary-nav__list a[aria-current="page"]::after { transform: scaleX(1); }

/* ============================ 08. HERO ============================ */
.hero { position: relative; overflow: hidden; background: var(--creme); }
.hero::before { /* respiro radial azul-hibisco bem sutil */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 85% 10%, rgba(30,127,224,.10), transparent 60%),
    radial-gradient(50% 60% at 5% 95%, rgba(31,107,58,.08), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; gap: clamp(1.6rem, 4vw, 2.5rem); padding-block: clamp(2.6rem, 2rem + 5vw, 5rem); align-items: center; }
.hero__seal { justify-self: center; }
.hero__seal img { width: clamp(120px, 34vw, 190px); height: auto; filter: drop-shadow(0 10px 22px rgba(20,60,35,.18)); border-radius: 50%; }
.hero__content { text-align: center; }
.hero h1 { margin-top: .6rem; color: var(--verde-900); }
.hero h1 .accent { color: var(--azul-strong); }
.hero__lead { margin: 1rem auto 0; }
.hero__cta { margin-top: 1.8rem; justify-content: center; }
.hero__meta { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: center; font-size: .9rem; color: var(--tinta-soft); }
.hero__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__meta svg { width: 1.05em; height: 1.05em; color: var(--verde); }

/* ===================== 09. CARDS DE ACESSO RÁPIDO ===================== */
.cards { display: grid; gap: clamp(1rem, 2vw, 1.4rem); grid-template-columns: repeat(2, 1fr); }
.card {
  display: flex; flex-direction: column; gap: .6rem;
  padding: 1.4rem; background: #fff; border: 1px solid var(--linha); border-radius: var(--r-md);
  text-decoration: none; color: var(--tinta);
  position: relative; overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--dourado); transform: scaleX(0); transform-origin: left; transition: transform var(--t-med) var(--ease); }
a.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--creme-200); color: var(--tinta); }
a.card:hover::before { transform: scaleX(1); }
.card__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: rgba(30,127,224,.10); color: var(--azul-strong); }
.card__icon svg { width: 24px; height: 24px; }
.card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--verde); }
.card__desc { font-size: .9rem; color: var(--tinta-soft); margin: 0; }
.card__more { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--azul-strong); display: inline-flex; align-items: center; gap: .35rem; }
.card__more svg { width: 1em; height: 1em; transition: transform var(--t-fast) var(--ease); }
a.card:hover .card__more svg { transform: translateX(3px); }

/* Variantes coloridas por atribuição */
.card--notas .card__icon { background: rgba(30,127,224,.12); color: var(--azul-strong); }
.card--protesto .card__icon { background: rgba(216,178,74,.18); color: var(--dourado-700); }
.card--civil .card__icon { background: rgba(31,107,58,.12); color: var(--verde); }

/* Grade de "features" simples (3 colunas em desktop) */
.feature-grid { display: grid; gap: clamp(1rem, 2.4vw, 1.7rem); grid-template-columns: 1fr; }
.feature { padding: 1.5rem; background: #fff; border: 1px solid var(--linha); border-radius: var(--r-md); box-shadow: var(--sh-sm); }
.feature__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--creme); color: var(--verde); margin-bottom: .9rem; }
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { color: var(--verde); margin-bottom: .4rem; }
.feature p { font-size: .95rem; color: var(--tinta-soft); margin: 0; }

/* ===================== 10. BLOCOS INSTITUCIONAIS ===================== */
.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.split__seal { width: clamp(170px, 44vw, 300px); margin-inline: auto; }
.split__media img.split__seal { border-radius: 0; box-shadow: none; filter: drop-shadow(0 22px 34px rgba(20,60,35,.30)); }
.split h2 { color: var(--verde-900); }
.split .lead { margin-top: .8rem; }

/* Cartões de Missão / Visão / Valores */
.values-grid { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); grid-template-columns: 1fr; }
.value-card { padding: 1.6rem; border-radius: var(--r-md); background: #fff; border: 1px solid var(--linha); border-top: 3px solid var(--dourado); box-shadow: var(--sh-sm); }
.value-card h3 { color: var(--verde); display: flex; align-items: center; gap: .6rem; }
.value-card h3 svg { width: 1.4rem; height: 1.4rem; color: var(--azul-strong); }
.value-card p, .value-card ul { font-size: .96rem; color: var(--tinta-soft); margin-top: .6rem; }

/* Faixa de destaque (horário, CTA emolumentos) */
.band { background: var(--verde); color: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.6rem); display: grid; gap: 1.2rem; align-items: center; text-align: center; box-shadow: var(--sh-md); }
.band--gold { background: linear-gradient(120deg, #16502b, #1F6B3A); }
.band h2, .band h3 { color: #fff; font-family: var(--font-display); }
.band p { color: #eaf2e6; margin-inline: auto; }
.band .btn-row { justify-content: center; }
.band__hours { display: grid; gap: .35rem; font-size: 1.05rem; }
.band__hours strong { color: var(--dourado); }

/* Lista de base legal / chips */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 0; list-style: none; }
.chip { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem; border-radius: var(--r-pill); background: var(--creme); border: 1px solid var(--creme-200); font-size: .9rem; font-weight: 600; color: var(--verde); }
.chip svg { width: 1.05em; height: 1.05em; color: var(--dourado-700); }

/* ============================ 11. ACCORDION ============================ */
.attribution { margin-top: clamp(2rem, 4vw, 3rem); scroll-margin-top: 90px; }
.attribution__head { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; border-radius: var(--r-md); color: #fff; margin-bottom: 1.2rem; }
.attribution__head h2 { color: #fff; font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); margin: 0; }
.attribution__head p { color: rgba(255,255,255,.9); font-size: .92rem; margin: .2rem 0 0; }
.attribution__icon { width: 52px; height: 52px; flex: none; display: grid; place-items: center; background: rgba(255,255,255,.18); border-radius: 12px; }
.attribution__icon svg { width: 28px; height: 28px; color: #fff; }
.attribution--notas .attribution__head { background: linear-gradient(120deg, #155FBF, #1E7FE0); }
.attribution--protesto .attribution__head { background: linear-gradient(120deg, #9A7A21, #D8B24A); }
.attribution--protesto .attribution__head h2,
.attribution--protesto .attribution__head p { color: #2a2102; }
.attribution--protesto .attribution__icon svg { color: #2a2102; }
.attribution--civil .attribution__head { background: linear-gradient(120deg, #16502b, #1F6B3A); }

.accordion { display: grid; gap: .7rem; }
.accordion__item { border: 1px solid var(--linha); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease); }
.accordion__item:hover { border-color: var(--creme-200); }
.accordion__item:has(.accordion__trigger[aria-expanded="true"]) { box-shadow: var(--sh-sm); border-color: var(--dourado); }
.accordion__header { margin: 0; }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.2rem; background: transparent; border: 0; text-align: left;
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; color: var(--verde);
}
.accordion__trigger:hover { color: var(--azul-strong); }
.accordion__icon { width: 26px; height: 26px; flex: none; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--dourado); color: var(--dourado-700); position: relative; transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease); }
.accordion__icon::before, .accordion__icon::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.accordion__icon::before { width: 11px; height: 2px; }
.accordion__icon::after { width: 2px; height: 11px; transition: transform var(--t-med) var(--ease); }
.accordion__trigger[aria-expanded="true"] .accordion__icon { background: var(--dourado); color: #3a2c00; transform: rotate(180deg); }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); }

/* painel: animação por max-height (altura definida via JS); padrão aberto (no-JS legível) */
.accordion__panel { overflow: hidden; }
.accordion.is-enhanced .accordion__panel { max-height: 0; transition: max-height var(--t-med) var(--ease); }
.accordion__inner { overflow: hidden; }
.accordion__content { padding: 0 1.2rem 1.3rem; border-top: 1px solid var(--linha); }
.accordion__content > * + * { margin-top: .85rem; }
.accordion__content p { font-size: .96rem; color: var(--tinta-soft); }
.accordion__content h4 { color: var(--verde); margin-top: 1.1rem; }

/* ===================== 12. DOC-LISTS / TABELAS / CALLOUTS ===================== */
.doc-list { list-style: none; padding: 0; margin: .4rem 0 0; display: grid; gap: .45rem; }
.doc-list li { position: relative; padding-left: 1.7rem; font-size: .95rem; color: var(--tinta); }
.doc-list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 1.05rem; height: 1.05rem;
  background: var(--azul-strong);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}

.note { display: flex; gap: .8rem; padding: 1rem 1.1rem; border-radius: var(--r-md); background: var(--creme); border: 1px solid var(--creme-200); border-left: 3px solid var(--dourado); font-size: .92rem; }
.note svg { width: 1.3rem; height: 1.3rem; flex: none; color: var(--dourado-700); margin-top: .1rem; }
.note strong { color: var(--verde); }
.note--info { background: rgba(30,127,224,.06); border-color: rgba(30,127,224,.25); border-left-color: var(--azul-strong); }
.note--info svg { color: var(--azul-strong); }
.placeholder { color: var(--dourado-700); font-style: italic; font-weight: 600; }

.table-wrap { overflow-x: auto; border: 1px solid var(--linha); border-radius: var(--r-md); }
table.data { width: 100%; border-collapse: collapse; min-width: 520px; }
table.data caption { text-align: left; padding: 1rem 1.1rem; font-weight: 600; color: var(--verde); font-family: var(--font-display); }
table.data th, table.data td { padding: .8rem 1.1rem; text-align: left; border-top: 1px solid var(--linha); font-size: .95rem; vertical-align: top; }
table.data thead th { background: var(--creme); color: var(--verde); border-top: 0; }
table.data tbody tr:hover { background: rgba(250,247,232,.6); }

/* prosa simples para páginas de texto (LGPD, Código de Ética) */
.prose { max-width: 75ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { color: var(--verde-900); margin-top: 2.2rem; }
.prose h3 { color: var(--verde); margin-top: 1.6rem; }
.prose ul, .prose ol { display: grid; gap: .5rem; }
.prose li { padding-left: .2rem; }
.prose strong { color: var(--tinta); }
.anchor-offset { scroll-margin-top: 90px; }

/* índice lateral de páginas longas */
.toc { background: var(--creme); border: 1px solid var(--creme-200); border-radius: var(--r-md); padding: 1.2rem 1.3rem; }
.toc h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; color: var(--verde); margin-bottom: .7rem; }
.toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.toc a { display: inline-flex; gap: .5rem; font-weight: 600; font-size: .92rem; text-decoration: none; color: var(--tinta); }
.toc a:hover { color: var(--azul-strong); }
.toc a::before { content: "—"; color: var(--dourado); }

/* ===================== 13. MAPA "COMO CHEGAR" ===================== */
.map-block { display: grid; gap: clamp(1.2rem, 3vw, 2rem); align-items: stretch; }
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--linha); min-height: 280px; background: var(--creme); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; }
.contact-list .ci { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 12px; background: var(--creme); color: var(--verde); }
.contact-list .ci svg { width: 22px; height: 22px; }
.contact-list .ct strong { display: block; color: var(--verde); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-list .ct a, .contact-list .ct span { color: var(--tinta); text-decoration: none; font-size: 1.02rem; }
.contact-list .ct a:hover { color: var(--azul-strong); }

/* ===================== 14. CABEÇALHO DE PÁGINA INTERNA ===================== */
.page-hero { position: relative; background: var(--verde-900); color: #fff; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 100% 0%, rgba(30,127,224,.30), transparent 55%); }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--dourado), transparent); }
.page-hero__inner { position: relative; padding-block: clamp(2.2rem, 1.6rem + 4vw, 3.8rem); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .85rem; list-style: none; padding: 0; margin: 0 0 .8rem; color: rgba(255,255,255,.75); }
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--dourado); }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: rgba(255,255,255,.4); }
.breadcrumb [aria-current="page"] { color: #fff; font-weight: 600; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero .lead { color: rgba(255,255,255,.85); margin-top: .8rem; max-width: 65ch; }

/* ============================ 15. FOOTER ============================ */
.site-footer { background: var(--verde-900); color: #d8e2d6; font-size: .94rem; border-top: 3px solid var(--dourado); }
.site-footer a { color: #eef3ec; text-decoration: none; }
.site-footer a:hover { color: var(--dourado); }
.site-footer__top { display: grid; gap: clamp(1.6rem, 4vw, 2.4rem); padding-block: clamp(2.4rem, 4vw, 3.4rem); grid-template-columns: 1fr; }
.site-footer__brand { display: grid; gap: .9rem; max-width: 34ch; }
.site-footer__brand .seal-ring { width: 64px; height: 64px; }
.site-footer__name { font-family: var(--font-display); color: #fff; font-weight: 600; font-size: 1.05rem; line-height: 1.25; }
.site-footer__brand p { font-size: .9rem; color: #bfcdbd; }
.site-footer h3 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; font-family: var(--font-body); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 1.1rem; height: 1.1rem; flex: none; margin-top: .2rem; color: var(--dourado); }
.seal-ring { display: grid; place-items: center; border-radius: 50%; overflow: hidden; border: 2px solid var(--dourado); background: #fff; }
.seal-ring img { width: 112%; height: 112%; object-fit: cover; border-radius: 50%; }
.cert-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.cert-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-sm); font-size: .8rem; color: #d8e2d6; background: rgba(255,255,255,.04); }
.cert-badge svg { width: 1.2rem; height: 1.2rem; color: var(--dourado); }
.social-row { display: flex; gap: .6rem; }
.social-row a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); }
.social-row a:hover { background: rgba(255,255,255,.08); border-color: var(--dourado); }
.social-row svg { width: 20px; height: 20px; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.1rem; display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; justify-content: space-between; align-items: center; font-size: .82rem; color: #aebbac; }
.site-footer__bar a { color: #cdd8cb; }
.site-footer__bar .footer-credit { display: inline-flex; align-items: center; gap: .45rem; color: #aebbac; text-decoration: none; }
.site-footer__bar .footer-credit:hover { color: var(--dourado); }
.footer-credit strong { color: #cdd8cb; font-weight: 600; }
.footer-credit img { height: 22px; width: auto; display: inline-block; }

/* ===================== 16. WHATSAPP FLUTUANTE ===================== */
.wa-fab { position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem); z-index: 120; }
.wa-fab__btn {
  width: 60px; height: 60px; border-radius: 50%; border: 0;
  background: var(--wa-bright); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(18,138,69,.45); position: relative;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.wa-fab__btn:hover { transform: scale(1.06); }
.wa-fab__btn svg { width: 32px; height: 32px; }
.wa-fab__btn::after { /* pulso sutil */
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa-bright);
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .6; } 70%,100% { transform: scale(1.6); opacity: 0; } }
.wa-fab__label { position: absolute; right: 74px; top: 50%; transform: translateY(-50%); background: var(--verde-900); color: #fff; padding: .5rem .85rem; border-radius: var(--r-pill); font-size: .85rem; font-weight: 600; white-space: nowrap; box-shadow: var(--sh-md); opacity: 0; pointer-events: none; transition: opacity var(--t-fast) var(--ease); }
.wa-fab:hover .wa-fab__label { opacity: 1; }

.wa-menu {
  position: absolute; right: 0; bottom: 76px; width: min(86vw, 300px);
  background: #fff; border: 1px solid var(--linha); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: .8rem; display: grid; gap: .5rem;
  transform-origin: bottom right; transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.wa-menu[hidden] { display: none; }
.wa-menu.is-anim { opacity: 0; transform: translateY(8px) scale(.96); }
.wa-menu__title { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--tinta-soft); font-weight: 700; padding: .2rem .3rem .1rem; }
.wa-opt { display: flex; align-items: center; gap: .7rem; padding: .7rem .8rem; border-radius: var(--r-sm); text-decoration: none; color: var(--tinta); border: 1px solid var(--linha); transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.wa-opt:hover { background: var(--creme); border-color: var(--dourado); color: var(--tinta); }
.wa-opt__ic { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.wa-opt__ic svg { width: 20px; height: 20px; }
.wa-opt--civil .wa-opt__ic { background: var(--verde); }
.wa-opt--notas .wa-opt__ic { background: var(--azul-strong); }
.wa-opt--protesto .wa-opt__ic { background: var(--dourado-700); }
.wa-opt strong { display: block; font-size: .96rem; color: var(--verde); }
.wa-opt span { font-size: .8rem; color: var(--tinta-soft); }

/* ===================== 17. MOTION (REVEAL) ===================== */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .wa-fab__btn::after { display: none; }
}

/* ===================== 18. MEDIA QUERIES ===================== */
/* >= 600px : ajustes de grade */
@media (min-width: 37.5em) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .band { grid-auto-flow: column; justify-content: space-between; text-align: left; }
  .band p { margin-inline: 0; }
  .band .btn-row { justify-content: flex-end; }
}

/* >= 768px : layout split, mapa em 2 colunas */
@media (min-width: 48em) {
  .hero__inner { grid-template-columns: minmax(0,1fr) 1.3fr; text-align: left; }
  .hero__content { text-align: left; }
  .hero__seal { justify-self: start; order: 2; }
  .hero__seal img { width: clamp(170px, 22vw, 230px); }
  .hero__lead { margin-inline: 0; }
  .hero__cta, .hero__meta { justify-content: flex-start; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first .split__media { order: -1; }
  .map-block { grid-template-columns: 1.1fr 1fr; }
  .map-block--map-first .map-frame { order: -1; }
  .cards--6 { grid-template-columns: repeat(3, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .with-toc { display: grid; grid-template-columns: 250px 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
  .toc { position: sticky; top: 92px; }
}

/* >= 1024px : refinos finos */
@media (min-width: 64em) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
}

/* Navegação mobile (até 860px) — header colapsa em painel */
@media (max-width: 67.99em) {
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .4rem;
    background: #fff; border-bottom: 1px solid var(--linha); box-shadow: var(--sh-md);
    padding: 1rem var(--pad-x) 1.4rem;
    clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
    transition: clip-path var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
  }
  .primary-nav.is-open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .primary-nav__list { flex-direction: column; align-items: stretch; gap: .15rem; }
  .primary-nav__list a { padding: .8rem .6rem; border-radius: var(--r-sm); font-size: 1.05rem; }
  .primary-nav__list a::after { display: none; }
  .primary-nav__list a[aria-current="page"] { background: var(--creme); }
  .primary-nav .nav-cta { width: 100%; margin-top: .5rem; }
}

@media (min-width: 68em) {
  .nav-toggle { display: none; }
  .primary-nav { position: static; clip-path: none; opacity: 1; pointer-events: auto; }
}

/* =================================================================
   PARTE 2 — REDESIGN MODERNO (LANDING)
   Hero full-bleed com foto, header transparente sobre o hero,
   faixa de números, "como funciona" em etapas, split com foto,
   e refinamentos gerais (cards, sombras, ritmo).
   ================================================================= */

:root {
  --ink-900: #0E2A19;          /* verde quase preto — títulos fortes */
  --surface-2: #F4F7F5;        /* cinza-frio claro p/ seções (alternativa ao creme) */
  --shadow-soft: 0 10px 30px rgba(15,42,25,.10);
  --shadow-card: 0 18px 44px rgba(15,42,25,.14);
  --hero-overlay: linear-gradient(104deg, rgba(8,26,17,.94) 0%, rgba(10,40,28,.82) 40%, rgba(11,46,70,.55) 72%, rgba(30,127,224,.30) 100%);
}

/* ---------- refinamentos globais (todas as páginas) ---------- */
.section-head h2 { color: var(--ink-900); }
.section--surface { background: var(--surface-2); }
.card { border-radius: 18px; box-shadow: var(--shadow-soft); }
a.card:hover { box-shadow: var(--shadow-card); }
.feature { border-radius: 18px; }
.value-card { border-radius: 18px; }
.section--tight + .section--tight { padding-top: 0; }

/* ---------- header transparente sobre o hero (somente home) ----------
   Estado "sobre o hero" só vale enquanto NÃO está fixo (:not(.is-stuck)).
   Ao rolar, o JS adiciona .is-stuck e as cores-base (sólidas) voltam sozinhas. */
body.page-home .site-header:not(.is-stuck) {
  position: absolute; top: auto; left: 0; right: 0;
  background: transparent; backdrop-filter: none; border-bottom-color: transparent; box-shadow: none;
}
body.page-home .site-header:not(.is-stuck) .brand__name { color: #fff; }
body.page-home .site-header:not(.is-stuck) .brand__sub { color: rgba(255,255,255,.82); }
body.page-home .site-header:not(.is-stuck) .primary-nav__list a { color: rgba(255,255,255,.92); }
body.page-home .site-header:not(.is-stuck) .primary-nav__list a:hover { color: #fff; }
body.page-home .site-header:not(.is-stuck) .nav-toggle { border-color: rgba(255,255,255,.45); }
body.page-home .site-header:not(.is-stuck) .nav-toggle__bars span { background: #fff; }
/* fixo ao rolar */
body.page-home .site-header.is-stuck { position: fixed; top: 0; left: 0; right: 0; box-shadow: var(--sh-md); }
/* no mobile, o menu (dropdown branco) precisa de links escuros mesmo sobre o hero */
@media (max-width: 67.99em) {
  body.page-home .site-header:not(.is-stuck) .primary-nav { background: #fff; }
  body.page-home .site-header:not(.is-stuck) .primary-nav__list a { color: var(--tinta); }
  body.page-home .site-header:not(.is-stuck) .primary-nav__list a:hover { color: var(--verde); }
}

/* ---------- HERO MODERNO (foto full-bleed) ---------- */
.hero-modern { position: relative; isolation: isolate; color: #fff; background: var(--ink-900); overflow: hidden; }
.hero-modern__bg {
  position: absolute; inset: 0; z-index: -2;
  background: var(--ph, url("../assets/photo-hero.jpg")) center/cover no-repeat;
  transform: scale(1.02);
}
.hero-modern::after { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--hero-overlay); }
.hero-modern__inner {
  max-width: var(--container); margin-inline: auto;
  padding: calc(96px + clamp(2rem,5vw,4rem)) var(--pad-x) clamp(5.5rem, 9vw, 8.5rem);
  min-height: min(90vh, 800px); display: flex; flex-direction: column; justify-content: center;
}
.hero-modern .eyebrow { color: #fff; }
.hero-modern .eyebrow::before { background: var(--dourado); }
.hero-modern h1 {
  color: #fff; margin-top: 1rem; max-width: 18ch;
  font-size: clamp(2.5rem, 1.4rem + 4.4vw, 4.4rem); line-height: 1.04; letter-spacing: -.02em;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-modern h1 .accent { color: var(--dourado); }
.hero-modern__lead { color: rgba(255,255,255,.92); max-width: 50ch; font-size: var(--fs-lead); margin-top: 1.2rem; }
.hero-modern__cta { margin-top: 2.1rem; }
.hero-modern__chips { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.hero-chip {
  display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem;
  border: 1px solid rgba(255,255,255,.28); border-radius: var(--r-pill);
  background: rgba(255,255,255,.10); backdrop-filter: blur(6px);
  font-size: .9rem; font-weight: 600; color: #fff;
}
.hero-chip svg { width: 1.05em; height: 1.05em; color: var(--dourado); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.65); box-shadow: none; }
.btn--ghost-light:hover { --btn-fg: var(--verde-900); background: #fff; border-color: #fff; }

/* ---------- faixa de cards sobreposta ao hero ---------- */
.pull-up { position: relative; z-index: 3; margin-top: clamp(-6.5rem, -8vw, -4.5rem); }
.overlap-cards { display: grid; gap: clamp(1rem, 2vw, 1.4rem); grid-template-columns: 1fr; }
@media (min-width: 48em) { .overlap-cards { grid-template-columns: repeat(3, 1fr); } }
.atrib-card {
  display: flex; flex-direction: column; gap: .6rem; padding: 1.7rem;
  background: #fff; border: 1px solid var(--linha); border-radius: 20px; box-shadow: var(--shadow-card);
  text-decoration: none; color: var(--tinta); position: relative; overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.atrib-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--dourado); transform: scaleY(0); transform-origin: top; transition: transform var(--t-med) var(--ease); }
.atrib-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px rgba(15,42,25,.18); color: var(--tinta); }
.atrib-card:hover::before { transform: scaleY(1); }
.atrib-card__ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff; }
.atrib-card__ic svg { width: 28px; height: 28px; }
.atrib-card--notas .atrib-card__ic { background: linear-gradient(135deg, #155FBF, #1E7FE0); }
.atrib-card--protesto .atrib-card__ic { background: linear-gradient(135deg, #9A7A21, #D8B24A); }
.atrib-card--civil .atrib-card__ic { background: linear-gradient(135deg, #16502b, #1F6B3A); }
.atrib-card h3 { font-size: 1.25rem; color: var(--ink-900); }
.atrib-card p { font-size: .95rem; color: var(--tinta-soft); margin: 0; }
.atrib-card__more { margin-top: auto; font-weight: 600; color: var(--azul-strong); display: inline-flex; align-items: center; gap: .4rem; }
.atrib-card__more svg { width: 1em; height: 1em; transition: transform var(--t-fast) var(--ease); }
.atrib-card:hover .atrib-card__more svg { transform: translateX(4px); }

/* ---------- "como funciona" — etapas numeradas ---------- */
.steps { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 37.5em) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: 1.7rem; background: #fff; border: 1px solid var(--linha); border-radius: 18px; box-shadow: var(--shadow-soft); }
.step__n { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--verde), var(--ink-900)); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; display: grid; place-items: center; margin-bottom: 1.1rem; box-shadow: 0 6px 16px rgba(20,62,34,.25); }
.step h3 { color: var(--ink-900); font-size: 1.12rem; }
.step p { font-size: .93rem; color: var(--tinta-soft); margin-top: .4rem; }

/* ---------- faixa de números ---------- */
.stats { background: linear-gradient(120deg, var(--ink-900), var(--verde) 70%, #1b6f3c); color: #fff; border-radius: var(--r-lg); padding: clamp(2rem, 4vw, 3.2rem); box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.stats::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(216,178,74,.25), transparent 70%); }
.stats__grid { position: relative; display: grid; gap: 1.6rem; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 48em) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__num { font-family: var(--font-display); font-size: clamp(1.7rem, 1.1rem + 2vw, 2.5rem); color: var(--dourado); font-weight: 600; line-height: 1; }
.stat__label { color: rgba(255,255,255,.85); font-size: .92rem; margin-top: .5rem; }

/* ---------- split com foto ---------- */
.photo-split__media { position: relative; }
.photo-split__media img { width: 100%; height: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-card); display: block; }
a.photo-split__media { display: block; text-decoration: none; cursor: pointer; }
a.photo-split__media img { transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease); }
a.photo-split__media:hover img { transform: translateY(-4px); box-shadow: 0 26px 50px rgba(15,42,25,.20); }
.photo-split__badge { position: absolute; left: -14px; bottom: 22px; background: #fff; border-radius: 16px; padding: 1rem 1.2rem; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: .8rem; max-width: 75%; }
.photo-split__badge .seal-ring { width: 48px; height: 48px; flex: none; }
.photo-split__badge strong { display: block; color: var(--verde); font-size: .95rem; }
.photo-split__badge span { font-size: .82rem; color: var(--tinta-soft); }
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; }
.check-list svg { width: 1.4rem; height: 1.4rem; flex: none; color: var(--verde); }

/* imagem ilustrativa banner (faixa fina com foto) */
.photoband { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); color: #fff; }
.photoband img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; z-index: -2; }
.photoband::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,26,17,.85), rgba(11,46,70,.45)); }
.photoband__inner { padding: clamp(2rem, 5vw, 3.5rem); display: grid; gap: 1.2rem; }
.photoband h2 { color: #fff; }
.photoband p { color: rgba(255,255,255,.9); }

@media (prefers-reduced-motion: reduce) {
  .hero-modern__bg { transform: none; }
}

/* ===================== RESPONSIVO — POLIMENTO ===================== */
/* topbar compacta no celular */
@media (max-width: 37.5em) {
  .topbar { font-size: .8rem; }
  .topbar__inner { gap: .3rem 1rem; padding-block: .45rem; }
}
