/* =========================================================
   Dr. Bruno Roder — Cirurgião Dentista
   Paleta: azul-petróleo premium + creme do logo. Ver DESIGN.md
   ========================================================= */

:root {
  /* superfícies */
  --canvas:          hsl(40 22% 90%);
  --superficie:      hsl(40 15% 97%);
  --canvas-tom:      hsl(38 18% 84%);
  --canvas-escuro:   hsl(200 20% 12%);
  --canvas-escuro-2: hsl(200 16% 17%);

  /* tinta */
  --tinta:            hsl(210 14% 18%);
  --texto-suave:      hsl(210 8% 40%);
  --texto-inverso:    hsl(40 22% 92%);
  --texto-inverso-suave: hsl(40 12% 72%);

  /* acento */
  --acento:       hsl(192 46% 34%);
  --acento-hover: hsl(192 52% 25%);
  --acento-claro: hsl(192 44% 60%);

  /* linhas e sombras */
  --hairline: hsl(210 14% 18% / .12);
  --hairline-forte: hsl(210 14% 18% / .22);
  --hairline-inversa: hsl(40 22% 92% / .16);
  --sombra: 0 18px 55px hsl(200 25% 20% / .10);
  --sombra-hover: 0 26px 70px hsl(200 25% 20% / .16);

  /* tipografia */
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --text-h1: clamp(2.35rem, 5.4vw, 4.25rem);
  --text-h2: clamp(1.85rem, 3.6vw, 3rem);
  --text-h3: clamp(1.15rem, 1.8vw, 1.4rem);
  --text-body: clamp(1rem, calc(.35vw + .94rem), 1.125rem);
  --text-number: clamp(3.5rem, 8vw, 5.5rem);
  --text-kicker: .75rem;

  /* layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(3.5rem, 7vw, 6.25rem);
  --content-gap: clamp(1.5rem, 3vw, 2.75rem);
  --header-h: 72px;

  /* raios e easing */
  --r-sm: 12px; --r-md: 20px; --r-lg: 30px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--tinta);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; }
ul, ol { list-style: none; padding: 0; }

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

/* ---------- seções e ritmo ---------- */
.sec { padding-block: var(--section-space); position: relative; }
.sec--claro  { background: var(--canvas); color: var(--tinta); }
.sec--tom    { background: var(--canvas-tom); color: var(--tinta); }
.sec--escuro { background: var(--canvas-escuro); color: var(--texto-inverso); }

.kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: var(--text-kicker);
  font-weight: 600;
  color: var(--acento-hover);
  margin-bottom: .85rem;
}
.kicker--claro { color: var(--acento-claro); }

.sec-cab { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-cab--esq { margin-bottom: 1.75rem; }
.sec-titulo { font-size: var(--text-h2); }
.sec-intro { margin-top: 1rem; color: var(--texto-suave); max-width: 42rem; }
.sec--escuro .sec-intro { color: var(--texto-inverso-suave); }
.sec-acao { margin-top: clamp(2rem, 4vw, 3rem); }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.15;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease),
              background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
  text-align: center;
}
.btn-primario { background: var(--acento); color: #fff; box-shadow: var(--sombra); }
.btn-primario:hover { background: var(--acento-hover); transform: translateY(-2px); box-shadow: var(--sombra-hover); }
.btn-primario:active { transform: translateY(0); box-shadow: var(--sombra); }
.btn-secundario { border-color: var(--hairline-forte); color: var(--tinta); background: transparent; }
.btn-secundario:hover { border-color: var(--acento-hover); color: var(--acento-hover); transform: translateY(-2px); }
.btn-claro { background: var(--texto-inverso); color: var(--canvas-escuro); }
.btn-claro:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--sombra-hover); }
.btn-grande { padding: 17px 36px; font-size: 1.075rem; }
.btn-compacto { padding: 10px 18px; min-height: 44px; font-size: .95rem; }
.ico-zap { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* =========================================================
   HEADER FIXO
   ========================================================= */
#topo {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 250ms var(--ease), box-shadow 250ms var(--ease), border-color 250ms var(--ease);
  border-bottom: 1px solid transparent;
}
#topo.is-scrolled {
  background: hsl(40 22% 90% / .88);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline);
  box-shadow: 0 6px 24px hsl(200 25% 20% / .07);
}
.barra {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marca { display: inline-flex; align-items: center; gap: .65rem; min-height: 44px; }
.marca-mono {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: .02em;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--superficie);
  color: var(--tinta);
  border: 1px solid var(--hairline);
  border-radius: 11px;
  flex-shrink: 0;
}
.marca-mono--claro { background: var(--canvas-escuro-2); color: var(--texto-inverso); border-color: var(--hairline-inversa); }
.marca-txt { display: flex; flex-direction: column; line-height: 1.15; }
.marca-txt strong { font-size: 1.02rem; font-weight: 600; }
.marca-txt small { font-size: .72rem; color: var(--texto-suave); letter-spacing: .04em; text-transform: uppercase; }
.nav-ancoras { margin-left: auto; display: flex; gap: 1.75rem; }
.nav-ancoras a {
  font-weight: 600; font-size: .95rem; color: var(--tinta);
  position: relative; padding: 6px 0;
}
.nav-ancoras a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--acento-hover); transform: scaleX(0); transform-origin: left;
  transition: transform 260ms var(--ease);
}
.nav-ancoras a:hover { color: var(--acento-hover); }
.nav-ancoras a:hover::after { transform: scaleX(1); }
#topo .btn-compacto { margin-left: 1rem; }

/* =========================================================
   HERO
   ========================================================= */
.sec-hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(1.5rem, 5vw, 3.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-fundo {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, hsl(40 24% 92%) 0%, hsl(38 18% 84%) 100%);
}
.hero-fundo::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(hsl(210 14% 18% / .05) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: .8;
}
.hero-blob {
  position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-blob--1 { width: 42vw; max-width: 520px; aspect-ratio: 1; top: -8%; right: -6%; background: hsl(192 46% 34% / .16); }
.hero-blob--2 { width: 34vw; max-width: 420px; aspect-ratio: 1; bottom: -14%; left: -10%; background: hsl(192 30% 50% / .12); }

.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-conteudo { max-width: 40rem; }
.hero-titulo {
  font-size: var(--text-h1);
  margin-bottom: 1.35rem;
  overflow-wrap: anywhere;
}
.palavra-assinada { position: relative; display: inline-block; color: var(--acento-hover); }
.traco {
  position: absolute; left: 0; right: 0; bottom: -.32em;
  width: 100%; height: .5em;
  color: var(--acento);
  overflow: visible;
}
.traco path { stroke-dasharray: 640; stroke-dashoffset: 640; }
.traco.draw path { transition: stroke-dashoffset 1.15s var(--ease-expo) .3s; stroke-dashoffset: 0; }

.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--texto-suave); max-width: 34rem; margin-bottom: 1.9rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-microcopy { margin-top: 1rem; font-size: .9rem; color: var(--texto-suave); }

.hero-badge {
  margin-top: 2rem;
  display: inline-flex; align-items: center; gap: .85rem;
  padding: .7rem 1.1rem;
  background: var(--superficie);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  box-shadow: var(--sombra);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.hero-badge:hover { transform: translateY(-2px); box-shadow: var(--sombra-hover); }
.badge-nota { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--acento-hover); line-height: 1; }
.badge-info { display: flex; flex-direction: column; gap: .1rem; }
.badge-estrelas { color: var(--acento); letter-spacing: .08em; font-size: .95rem; }
.badge-txt { font-size: .82rem; color: var(--texto-suave); max-width: 15rem; }

/* brand mark (logo) */
.hero-marca { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.marca-cartao {
  width: 100%; max-width: 320px;
  background: var(--superficie);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(1rem, 2vw, 1.75rem);
  box-shadow: var(--sombra);
}
.marca-cartao img { width: 100%; height: auto; border-radius: var(--r-sm); }
.marca-legenda { font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: var(--texto-suave); }

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--content-gap); }
.pilar {
  background: var(--superficie);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.pilar:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); border-color: var(--acento); }
.pilar-ico, .serv-ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--canvas-tom);
  color: var(--acento-hover);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}
.pilar-ico svg, .serv-ico svg { width: 28px; height: 28px; }
.pilar h3, .serv-card h3 { font-size: var(--text-h3); margin-bottom: .6rem; }
.pilar p { color: var(--texto-suave); }

/* =========================================================
   PROCEDIMENTOS
   ========================================================= */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--content-gap); }
.serv-card {
  background: var(--superficie);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.serv-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); border-color: var(--acento); }
.serv-ico { width: 48px; height: 48px; margin-bottom: 1rem; }
.serv-ico svg { width: 24px; height: 24px; }
.serv-card p { color: var(--texto-suave); font-size: .96rem; }

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.fluxo { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.75rem); }
.passo { display: flex; gap: 1.1rem; align-items: flex-start; }
.passo-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--acento);
  opacity: .32;
  line-height: 1; flex-shrink: 0;
  min-width: 2ch;
}
.passo-txt h3 { font-size: var(--text-h3); margin-bottom: .4rem; }
.passo-txt p { color: var(--texto-suave); }

/* =========================================================
   AVALIAÇÕES (escuro)
   ========================================================= */
.aval-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.nota-grande {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-number); line-height: 1;
  color: var(--texto-inverso);
  margin: .25rem 0 .5rem;
}
.nota-estrelas { display: flex; gap: .3rem; margin-bottom: 1rem; }
.nota-estrelas .est {
  width: 1.6rem; height: 1.6rem;
  background: var(--acento-claro);
  -webkit-mask: var(--estrela) center / contain no-repeat;
          mask: var(--estrela) center / contain no-repeat;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .5s var(--ease);
}
.nota-estrelas.on .est { clip-path: inset(0); }
.nota-estrelas.on .est:nth-child(2) { transition-delay: .08s; }
.nota-estrelas.on .est:nth-child(3) { transition-delay: .16s; }
.nota-estrelas.on .est:nth-child(4) { transition-delay: .24s; }
.nota-estrelas.on .est:nth-child(5) { transition-delay: .32s; }
:root { --estrela: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l7.1-1.01L12 2z'/%3E%3C/svg%3E"); }
.nota-legenda { color: var(--texto-inverso-suave); max-width: 24rem; margin-bottom: 1.25rem; }
.link-google {
  display: inline-block; font-weight: 600; color: var(--acento-claro);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: border-color 220ms var(--ease);
}
.link-google:hover { border-bottom-color: var(--acento-claro); }

.review {
  background: var(--canvas-escuro-2);
  border: 1px solid var(--hairline-inversa);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  position: relative;
}
.review-aspas {
  font-family: var(--font-display); font-size: 4.5rem; line-height: .5;
  color: var(--acento-claro); opacity: .5;
  display: block; height: .5em;
}
.review blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--texto-inverso);
  margin: .5rem 0 1.5rem;
}
.review figcaption { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem; }
.review-autor { font-weight: 600; color: var(--texto-inverso); }
.review-estrelas { color: var(--acento-claro); letter-spacing: .08em; }
.review-quando { font-size: .85rem; color: var(--texto-inverso-suave); }
.aval-acao { margin-top: clamp(2rem, 4vw, 3rem); }

/* =========================================================
   LOCALIZAÇÃO E FAQ
   ========================================================= */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.local-lista { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.local-lista li { display: flex; gap: .85rem; align-items: flex-start; }
.local-lista a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 600; color: var(--acento-hover); }
.local-lista a:hover { text-decoration: underline; }
.local-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--superficie); border: 1px solid var(--hairline);
  color: var(--acento-hover); border-radius: 50%;
}
.local-ico svg { width: 22px; height: 22px; }

.horarios-tit { font-family: var(--font-display); font-size: var(--text-h3); margin-bottom: .9rem; }
.tabela-horarios { width: 100%; border-collapse: collapse; }
.tabela-horarios th, .tabela-horarios td {
  text-align: left; padding: .6rem .25rem;
  border-bottom: 1px solid var(--hairline); font-size: .96rem;
}
.tabela-horarios th { font-weight: 600; width: 40%; }
.tabela-horarios td { color: var(--texto-suave); }
.tabela-horarios .fechado { color: var(--texto-suave); opacity: .7; }
.tabela-horarios tr.hoje th { color: var(--acento-hover); }
.tabela-horarios tr.hoje td { color: var(--acento-hover); font-weight: 600; }
.tabela-horarios tr.hoje { background: hsl(192 46% 34% / .08); }
.horarios-obs { margin-top: 1rem; font-size: .9rem; color: var(--texto-suave); }

.local-mapa {
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--sombra);
  aspect-ratio: 4 / 3;
}
.local-mapa iframe { width: 100%; height: 100%; border: 0; }

/* FAQ */
.faq-bloco { }
.faq { display: flex; flex-direction: column; gap: .75rem; max-width: 52rem; }
.faq details {
  background: var(--superficie);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  min-height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 2px solid var(--acento-hover); outline-offset: -2px; border-radius: var(--r-sm); }
.faq-chevron { width: 12px; height: 12px; flex-shrink: 0; border-right: 2px solid var(--acento-hover); border-bottom: 2px solid var(--acento-hover); transform: rotate(45deg); transition: transform 260ms var(--ease); margin-top: -4px; }
.faq details[open] .faq-chevron { transform: rotate(-135deg); margin-top: 2px; }
.faq-corpo { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms var(--ease); }
.faq details[open] .faq-corpo { grid-template-rows: 1fr; }
.faq-corpo > p { overflow: hidden; padding: 0 1.25rem; color: var(--texto-suave); }
.faq details[open] .faq-corpo > p { padding-bottom: 1.15rem; }

/* =========================================================
   FECHAMENTO + RODAPÉ (escuro)
   ========================================================= */
.sec-fechamento { padding-bottom: 0; }
.fechamento-conteudo { text-align: center; max-width: 40rem; margin-inline: auto; padding-bottom: var(--section-space); }
.fechamento-titulo { font-size: var(--text-h2); margin: .35rem 0 1rem; }
.fechamento-sub { color: var(--texto-inverso-suave); margin-bottom: 2rem; }

.rodape { border-top: 1px solid var(--hairline-inversa); padding-block: clamp(2.5rem, 4vw, 3.5rem); }
.rodape-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; align-items: start; }
.rodape-marca { display: flex; align-items: center; gap: .75rem; }
.rodape-marca strong { display: block; font-size: 1.05rem; }
.rodape-marca small { color: var(--texto-inverso-suave); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.rodape-col p { color: var(--texto-inverso-suave); font-size: .92rem; margin-bottom: .6rem; }
.rodape-col a { color: var(--texto-inverso); min-height: 44px; display: inline-flex; align-items: center; }
.rodape-col a:hover { color: var(--acento-claro); }
.rodape-legal p { font-size: .85rem; }

/* =========================================================
   FLUTUANTES: sticky CTA mobile + zap-float
   ========================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: hsl(40 22% 90% / .92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
  display: none;
}
.sticky-cta.is-on { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

.zap-float {
  position: fixed; right: clamp(1rem, 2.5vw, 2rem); bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--acento);
  display: grid; place-items: center;
  box-shadow: var(--sombra-hover);
  transform: scale(0);
  transition: transform .35s var(--ease), opacity .35s var(--ease), background 200ms var(--ease);
}
.zap-float.is-ready { transform: scale(1); }
.zap-float:hover { background: var(--acento-hover); }
.zap-float.is-hidden { opacity: 0; transform: scale(.6); pointer-events: none; }
.zap-float svg { width: 30px; height: 30px; fill: #fff; }

/* =========================================================
   MOTION: reveal on scroll
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--d, 0) * 80ms);
}
[data-reveal="zoom"] { transform: scale(.96); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* hero entrance */
@keyframes hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-conteudo > * { animation: hero-rise .7s var(--ease) both; }
.hero-conteudo > *:nth-child(2) { animation-delay: .1s; }
.hero-conteudo > *:nth-child(3) { animation-delay: .2s; }
.hero-conteudo > *:nth-child(4) { animation-delay: .3s; }
.hero-conteudo > *:nth-child(5) { animation-delay: .4s; }
.hero-conteudo > *:nth-child(6) { animation-delay: .5s; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-marca { max-width: 320px; margin-inline: auto; }
  .hero-conteudo { max-width: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .local-grid { grid-template-columns: 1fr; }
  .rodape-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-ancoras { display: none; }
  #topo .btn-compacto { margin-left: auto; }
  .sticky-cta { display: block; }
  .zap-float { display: none; }
  body { padding-bottom: 76px; }
  .aval-grid { grid-template-columns: 1fr; }
  .fluxo { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .rodape-grid { grid-template-columns: 1fr; }
  .hero-badge { width: 100%; }
  /* reveals horizontais viram vertical em telas estreitas (não há left/right aqui,
     mas mantemos a regra defensiva caso surjam em edições futuras) */
  [data-reveal="left"], [data-reveal="right"] { transform: translateY(20px); }
}

@media (max-width: 400px) {
  .marca-txt small { display: none; }
}

/* =========================================================
   PREFERS-REDUCED-MOTION (regra dura)
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .traco path { stroke-dashoffset: 0 !important; }
  .nota-estrelas .est { clip-path: inset(0) !important; }
}
