/* ==========================================================================
   EcoPurise — folha de estilos única
   Paleta operacional (contrastes verificados WCAG 2.2 AA sobre branco):
     Texto principal escuro : #2E5A3A                          (≥ 10:1)
     Texto corpo            : #4E6A57                          (≥ 5.7:1)
     Texto secundário       : #4E6A57 (auxiliar 6E8577 só em >18pt)
     Link azul acessível    : #0F6F82  (≈ 5.2:1) ← substitui #17A8C2 em texto
     Verde escuro acessível : #166534  (≈ 7:1)   ← substitui #37B45F em texto
     WhatsApp acessível     : #157347  (≈ 5.8:1) ← substitui #1FAE54 em botão
   Cores originais da marca (#17A8C2, #37B45F, #5ECCF2) ficam RESERVADAS
   para elementos decorativos grandes: ilustrações SVG, bordas, gradientes
   sem texto por cima, ícones ≥ 24px. Nunca em texto normal ou em botão
   com texto branco.
   ========================================================================== */

/* ---------- Fontes locais (Poppins subset latin) ---------- */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/poppins-800.woff2') format('woff2'); }

/* ---------- Reset mínimo ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: #ffffff;
  color: #4E6A57;
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { line-height: 1.15; margin: 0; color: #2E5A3A; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: #0F6F82; text-decoration: none; transition: color .18s; }
a:hover { color: #2E5A3A; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

::selection { background: rgba(55, 180, 95, .22); }
:focus-visible { outline: 3px solid #0F6F82; outline-offset: 3px; border-radius: 6px; }

/* Skip-link — acessibilidade WCAG 2.4.1 */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 100;
  background: #2E5A3A;
  color: #fff;
  padding: .6em 1em;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus { top: 8px; color: #fff; }

/* ---------- Wrapper e utilitários ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0F6F82;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #37B45F, #17A8C2);
  display: inline-block;
}

.sec-title {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-top: .7rem;
}
.sec-lead {
  margin-top: 1rem;
  color: #4E6A57;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 60ch;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-weight: 600;
  font-size: 1rem;
  padding: .95em 1.6em;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, border-color .18s, color .18s;
  font-family: inherit;
  text-align: center;
}
/* Gradiente escuro o suficiente para texto branco atender WCAG AA (≥ 4.5:1) */
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #166534 0%, #0F6F82 100%);
  box-shadow: 0 12px 26px -10px rgba(15, 111, 130, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(15, 111, 130, .65); color: #fff; }
.btn-ghost {
  color: #2E5A3A;
  background: #fff;
  border: 1px solid #CFE0D6;
}
.btn-ghost:hover { transform: translateY(-2px); border-color: #0F6F82; color: #0F6F82; }
.btn-wa {
  color: #fff;
  background: #157347;
  box-shadow: 0 12px 26px -12px rgba(21, 115, 71, .6);
  width: 100%;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(21, 115, 71, .7); color: #fff; }
.btn svg { flex: none; }

/* ---------- Header / navegação ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px) saturate(1.15);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.header.scrolled {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: #E4EDE7;
  box-shadow: 0 6px 24px -12px rgba(46, 90, 58, .22);
}
.nav { display: flex; align-items: center; gap: 2rem; height: 76px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 1.7rem; margin-left: auto; align-items: center; }
.nav-links a { font-size: .94rem; font-weight: 500; color: #2E5A3A; }
.nav-links a:hover { color: #0F6F82; }
.nav-cta {
  margin-left: .3rem;
  padding: .62em 1.15em;
  border-radius: 12px;
  font-size: .9rem;
  color: #fff;
  background: linear-gradient(135deg, #166534 0%, #0F6F82 100%);
  box-shadow: 0 8px 20px -10px rgba(15, 111, 130, .55);
  font-weight: 600;
  transition: transform .18s, box-shadow .18s;
}
.nav-cta:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 26px -10px rgba(15, 111, 130, .65); }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  color: #2E5A3A;
  margin-left: auto;
  border-radius: 8px;
}
.burger:hover { background: #F1F6F2; }

.mobile-menu {
  display: none;
  border-top: 1px solid #E4EDE7;
  background: #fff;
  padding: 12px clamp(20px, 5vw, 40px) 20px;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .8em 0;
  font-weight: 500;
  color: #2E5A3A;
  border-bottom: 1px solid #F1F6F2;
  font-size: 1rem;
}
.mobile-menu .nav-cta {
  margin-top: 12px;
  text-align: center;
  padding: .9em;
  color: #fff;
  display: block;
}

/* Só o CTA de dentro do <nav> (filho direto) some no mobile.
   O CTA que vive dentro de .mobile-menu continua visível quando o menu abre. */
@media (max-width: 860px) {
  .nav-links,
  .nav > .nav-cta { display: none; }
  .burger { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 90% at 85% -10%, #EAF7FA 0%, #F5FBFC 46%, #ffffff 100%);
}
.hero-decor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 220px;
  opacity: .5;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 108px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  margin-top: 1.1rem;
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-wrap: balance;
}
/* Em texto grande (h1), #0F6F82 sobre branco dá contraste sobrado */
.hero h1 .wet { color: #0F6F82; white-space: nowrap; }
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: #4E6A57;
  max-width: 40ch;
}
.hero-cta { display: flex; gap: .9rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-strip { display: flex; gap: 2.4rem; margin-top: 2.8rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: .15rem; }
.stat .num { font-size: 1.6rem; font-weight: 800; color: #2E5A3A; line-height: 1.1; }
.stat .lbl { font-size: .82rem; color: #4E6A57; }
.hero-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
}
.tank {
  position: absolute; inset: 0;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #EFF8FA);
  border: 1px solid #DCEBEE;
  box-shadow: 0 30px 70px -30px rgba(46, 90, 58, .28), inset 0 1px 0 rgba(255, 255, 255, .6);
}
.tank-photo {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.tank-badge {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid #E4EDE7;
  padding: .5rem .8rem;
  border-radius: 12px;
  font-size: .78rem;
  color: #2E5A3A;
  box-shadow: 0 6px 18px -8px rgba(46, 90, 58, .2);
}
.tank-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #37B45F;
  box-shadow: 0 0 0 4px rgba(55, 180, 95, .2);
}
.float-chip {
  position: absolute;
  z-index: 4;
  background: #fff;
  border-radius: 14px;
  padding: .6rem .85rem;
  box-shadow: 0 14px 30px -12px rgba(46, 90, 58, .28);
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: #2E5A3A;
  border: 1px solid #E4EDE7;
}
.float-chip.a { top: 5%; right: -5%; }
.float-chip.b { bottom: 11%; right: -7%; }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ---------- Faixa de setores ---------- */
.sectors {
  background: #fff;
  border-top: 1px solid #E4EDE7;
  border-bottom: 1px solid #E4EDE7;
}
.sectors .wrap {
  padding: 26px clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  flex-wrap: wrap;
}
.sectors .cap {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4E6A57;
  font-weight: 700;
}
.sectors ul {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  flex-wrap: wrap;
  font-weight: 600;
  color: #2E5A3A;
}
.sectors li { display: flex; align-items: center; gap: .5rem; font-size: .95rem; }

/* ---------- Sections base ---------- */
.section { padding: clamp(72px, 10vw, 132px) 0; }
.section.alt { background: #F4F8F5; }
.section.alt-top { background: #F4F8F5; border-top: 1px solid #E4EDE7; }
.sec-head { max-width: 62ch; margin-bottom: clamp(34px, 5vw, 54px); }

/* Cards de vantagens */
.grid-adv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid #E4EDE7;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 1px 2px rgba(46, 90, 58, .04);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px -18px rgba(46, 90, 58, .3);
  border-color: #BEE3CB;
}
.card h3 { font-size: 1.14rem; margin-bottom: .5rem; }
.card p { color: #4E6A57; font-size: .95rem; }
.card p small { color: #4E6A57; font-size: .85rem; }
.card .ic {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.ic-blue { background: rgba(15, 111, 130, .12); color: #0F6F82; }
.ic-green { background: rgba(22, 101, 52, .12); color: #166534; }

/* Grid de produtos */
.grid-prod {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prod {
  background: #fff;
  border: 1px solid #E4EDE7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(46, 90, 58, .04);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.prod:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -26px rgba(46, 90, 58, .34); }
.prod-shot {
  position: relative;
  aspect-ratio: 16/11;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #EBF8FB, #D6EEF2);
  color: #17A8C2; /* stroke SVG grande, decorativo */
}
.prod-shot .tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  background: #fff;
  color: #0F6F82;
  border: 1px solid #CFE0D6;
  padding: .32rem .6rem;
  border-radius: 8px;
}
.prod-shot svg { width: 44%; filter: drop-shadow(0 10px 16px rgba(46, 90, 58, .16)); }
.prod-shot picture { position: absolute; inset: 0; }
.prod-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.prod-body p { color: #4E6A57; font-size: .93rem; margin-top: .5rem; flex: 1; }
.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #E4EDE7;
}
.prod-foot .mode {
  font-size: .78rem;
  color: #4E6A57;
  letter-spacing: .03em;
  font-weight: 500;
}
.prod-foot a { font-weight: 600; color: #0F6F82; font-size: .9rem; display: inline-flex; align-items: center; gap: .3rem; }
.prod-foot a:hover { color: #2E5A3A; }

/* Passos como funciona */
.grid-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  padding: 28px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #E4EDE7;
  box-shadow: 0 1px 2px rgba(46, 90, 58, .04);
}
.step .n {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #166534, #0F6F82);
  width: 36px; height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.step p { color: #4E6A57; font-size: .92rem; }

@media (max-width: 960px) {
  .grid-adv, .grid-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .grid-prod { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .grid-adv, .grid-steps { grid-template-columns: 1fr; }
}

/* Área de atuação */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.chip {
  font-size: .85rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #CFE0D6;
  color: #2E5A3A;
  font-weight: 500;
}
.map-card {
  aspect-ratio: 5/4;
  border-radius: 18px;
  border: 1px solid #E4EDE7;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #EBF8FB, #D6EEF2);
  color: #17A8C2; /* linha do grid — decorativa */
  box-shadow: 0 14px 34px -18px rgba(46, 90, 58, .3);
  display: grid;
  place-items: center;
  transition: transform .2s, box-shadow .2s;
}
.map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -18px rgba(46, 90, 58, .4);
}
.map-card::before {
  content: "";
  position: absolute; inset: 0;
  opacity: .2;
  background-image: linear-gradient(#17A8C2 1px, transparent 1px), linear-gradient(90deg, #17A8C2 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-pin { text-align: center; z-index: 2; }
.map-pin .lg { font-size: 1.5rem; font-weight: 800; color: #2E5A3A; }
.map-pin .sm { font-size: .82rem; color: #4E6A57; margin-top: 4px; }
.map-pin svg { margin-bottom: 8px; }

@media (max-width: 840px) {
  .area-grid { grid-template-columns: 1fr; }
}

/* Nossa operação */
.ops-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.ops-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #E4EDE7;
  box-shadow: 0 14px 34px -18px rgba(46, 90, 58, .3);
}
.ops-photo img { width: 100%; height: auto; display: block; }
@media (max-width: 840px) {
  .ops-grid { grid-template-columns: 1fr; }
}

/* Selo "Em breve" no rodapé do card de produto */
.prod-foot .soon {
  font-size: .78rem;
  padding: .3rem .7rem;
  border-radius: 6px;
  background: #F1F6F2;
  color: #2E5A3A;
  font-weight: 600;
}

/* Contato / formulário */
.contact {
  background: linear-gradient(160deg, #F7FCFD 0%, #EAF6F2 100%);
  border-top: 1px solid #E4EDE7;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-list a, .contact-list div, .contact-list span {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: #2E5A3A;
  font-size: 1rem;
  font-weight: 500;
}
.contact-list a { color: #2E5A3A; }
.contact-list a:hover { color: #0F6F82; }
.contact-list svg { flex: none; }
.contact-list .phones { display: flex; flex-direction: column; gap: .3rem; }
.contact-list .phones a { padding: 0; }

.form-card {
  background: #fff;
  border: 1px solid #E4EDE7;
  border-radius: 20px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 26px 60px -30px rgba(46, 90, 58, .34);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #2E5A3A;
  margin: 0 0 .4rem;
}
.field input, .field select {
  width: 100%;
  padding: .8em .9em;
  border-radius: 11px;
  border: 1px solid #CFE0D6;
  background: #F7FBF9;
  color: #2E5A3A;
  font-size: .95rem;
  font-family: inherit;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: #0F6F82;
  box-shadow: 0 0 0 3px rgba(15, 111, 130, .25);
}
.form-note {
  font-size: .82rem;
  color: #4E6A57;
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.form-note a { color: #0F6F82; text-decoration: underline; }

@media (max-width: 840px) {
  .cta-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: #ffffff;
  color: #4E6A57;
  padding: clamp(48px, 6vw, 72px) 0 28px;
  border-top: 1px solid #E4EDE7;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: clamp(28px, 5vw, 56px);
}
.footer .brand img { height: 42px; margin-bottom: 1rem; }
.foot-about {
  font-size: .92rem;
  color: #4E6A57;
  max-width: 34ch;
}
.socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.3rem;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #F4F8F5;
  border: 1px solid #CFE0D6;
  color: #0F6F82;
  transition: all .18s;
}
.socials a:hover {
  background: #0F6F82;
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.foot-col h4 {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #2E5A3A;
  margin: 0 0 1rem;
  font-weight: 700;
}
.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.foot-col a {
  font-size: .94rem;
  color: #2E5A3A;
}
.foot-col a:hover { color: #0F6F82; }
.foot-contact div {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .92rem;
  margin-bottom: .8rem;
  color: #2E5A3A;
}
.foot-contact svg { flex: none; margin-top: 3px; }
.foot-contact .phones { display: flex; flex-direction: column; gap: .3rem; }
.foot-contact a { color: #2E5A3A; }
.foot-contact a:hover { color: #0F6F82; }
.foot-base {
  border-top: 1px solid #E4EDE7;
  margin-top: clamp(36px, 5vw, 52px);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: #4E6A57;
}

@media (max-width: 840px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ---------- WhatsApp flutuante ---------- */
.wa-fab {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #157347;
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(21, 115, 71, .7);
  transition: transform .18s;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.05); color: #fff; }

/* --------------------------------------------------------------------------
   Progressive enhancement do "reveal on scroll".
   REGRA: sem JS, o conteúdo é 100% visível — nada depende do main.js
   pra aparecer. Quando o main.js executa, ele adiciona .js no <html>
   ANTES do primeiro paint (script no <head>) e SÓ então os elementos
   .reveal começam invisíveis pra entrar com transição via IntersectionObserver.
   -------------------------------------------------------------------------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; }
}

/* ---------- Páginas simples (privacidade, 404) ---------- */
.doc {
  padding: clamp(56px, 8vw, 96px) 0;
  max-width: 720px;
}
.doc h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.doc h2 {
  font-size: 1.35rem;
  margin: 2.2rem 0 .8rem;
  font-weight: 700;
}
.doc p { margin-bottom: 1rem; }
.doc ul { list-style: disc; margin: 0 0 1rem 1.2rem; }
.doc ul li { margin-bottom: .3rem; }
.doc .back { display: inline-flex; align-items: center; gap: .4rem; margin-top: 2rem; font-weight: 600; color: #0F6F82; }
.doc .meta { color: #4E6A57; font-size: .9rem; margin-bottom: 2rem; }

/* Página 404 (regras específicas — não usar em outras páginas). */
.doc-404 { text-align: center; margin-inline: auto; }
.doc-404 .eyebrow { justify-content: center; }
.doc-404-contact { margin-top: 2rem; }
