/* ============================================================
   HELLO PIZZAS — style.css
   Pizzaria de bairro, Cuiabá-MT. Ver DESIGN.md.
   ============================================================ */

:root {
  /* superfícies (ritmo claro / tom / escuro) */
  --canvas:          hsl(28, 44%, 96%);
  --superficie:      hsl(26, 40%, 92%);
  --canvas-tom:      hsl(24, 42%, 88%);
  --canvas-escuro:   hsl(9, 40%, 11%);
  --canvas-escuro-2: hsl(9, 32%, 15%);

  /* tinta */
  --tinta:               hsl(12, 28%, 14%);
  --texto-suave:         hsl(12, 12%, 37%);
  --texto-inverso:       hsl(28, 44%, 96%);
  --texto-inverso-suave: hsl(26, 24%, 78%);

  /* acento textual = tomate (AA sobre creme) */
  --acento:       hsl(6, 70%, 46%);
  --acento-hover: hsl(6, 72%, 38%);

  /* âmbar = decoração / selo / estrelas sobre escuro */
  --ambar:        hsl(38, 84%, 52%);
  --ambar-escuro: hsl(34, 80%, 44%);

  /* linhas e sombras */
  --hairline:         rgba(30, 16, 12, .12);
  --hairline-forte:   rgba(30, 16, 12, .24);
  --hairline-inversa: rgba(248, 240, 230, .16);
  --sombra:       0 16px 44px rgba(60, 24, 16, .10);
  --sombra-hover: 0 26px 66px rgba(60, 24, 16, .18);

  /* tipografia */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --text-h1: clamp(2rem, 8vw, 3.5rem);
  --text-h2: clamp(1.75rem, 4vw, 2.9rem);
  --text-h3: clamp(1.15rem, 2vw, 1.4rem);
  --text-body: clamp(1rem, calc(.35vw + .95rem), 1.1rem);
  --text-number: clamp(3.5rem, 11vw, 6.5rem);
  --text-kicker: .72rem;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --section-space: clamp(3.25rem, 7vw, 6rem);
  --header-h: 68px;

  /* raios e easing */
  --r-sm: 12px; --r-md: 20px; --r-lg: 30px; --r-pill: 999px;
  --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);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; letter-spacing: -.01em; }
address { font-style: normal; }
ul { list-style: none; padding: 0; }

/* ---------- utilitários ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.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 {
  display: inline-block;
  font-size: var(--text-kicker);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--acento);
}
.kicker--inverso { color: var(--ambar); }

.sec-cabeca { max-width: 42rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-titulo { font-size: var(--text-h2); margin-top: .5rem; }
.sec-titulo--inverso { color: var(--texto-inverso); }
.sec-intro { margin-top: 1rem; color: var(--texto-suave); max-width: 38rem; }

.pular {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--acento); color: #fff; padding: .6rem 1rem; border-radius: 0 0 var(--r-sm) 0;
}
.pular:focus { left: 0; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--r-sm); border: 1.5px solid transparent;
  min-height: 48px; cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}
.btn--acento { background: var(--acento); color: #fff; box-shadow: var(--sombra); }
.btn--acento:hover { background: var(--acento-hover); transform: translateY(-2px); box-shadow: var(--sombra-hover); }
.btn--acento:active { transform: translateY(0); box-shadow: var(--sombra); }
.btn--fantasma { background: transparent; border-color: rgba(248,240,230,.4); color: var(--texto-inverso); }
.btn--fantasma:hover { border-color: #fff; transform: translateY(-2px); }
.btn--compacto { padding: 10px 18px; min-height: 42px; font-size: .95rem; }
.btn--grande { padding: 16px 32px; font-size: 1.08rem; min-height: 54px; }
.ico-zap { flex: 0 0 auto; }

.link-zap {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 600; color: var(--acento); min-height: 44px;
  transition: gap 200ms var(--ease), color 200ms var(--ease);
}
.link-zap:hover { gap: .65rem; color: var(--acento-hover); }
.link-inverso {
  display: inline-flex; align-items: center; gap: .4rem; min-height: 44px;
  font-weight: 600; color: var(--ambar);
  transition: gap 200ms var(--ease);
}
.link-inverso:hover { gap: .7rem; }

/* ============================================================
   HEADER
   ============================================================ */
.cabecalho {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  border-bottom: 1px solid transparent;
}
.cabecalho.is-scrolled {
  background: color-mix(in srgb, var(--canvas) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline);
  box-shadow: 0 6px 22px rgba(60,24,16,.06);
}
.cabecalho-inner {
  max-width: var(--maxw); margin-inline: auto;
  min-height: var(--header-h);
  padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 1rem;
}
.marca { display: inline-flex; align-items: center; gap: .5rem; color: var(--texto-inverso); }
.cabecalho.is-scrolled .marca { color: var(--tinta); }
.marca-icone { display: inline-flex; color: var(--ambar); }
.marca-texto { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.01em; }
.marca-texto em { font-style: normal; color: var(--acento); }
.nav { margin-left: auto; display: flex; gap: 1.5rem; }
.nav a {
  font-weight: 500; font-size: .95rem; color: var(--texto-inverso);
  position: relative; padding: .3rem 0; opacity: .9;
}
.cabecalho.is-scrolled .nav a { color: var(--tinta); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--acento); transform: scaleX(0); transform-origin: left;
  transition: transform 250ms var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.cabecalho .btn--compacto { margin-left: 1rem; }
.nav + .btn--compacto { margin-left: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-midia { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  filter: saturate(1.15) brightness(1.04);
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,14,11,.42) 0%, rgba(28,14,11,.30) 38%, rgba(24,12,10,.72) 78%, rgba(20,10,8,.90) 100%),
    radial-gradient(120% 80% at 15% 90%, rgba(150,40,25,.42), transparent 60%);
}
.hero-conteudo {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.hero-conteudo > * { max-width: 40rem; }

.selo-1999 {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 108px; height: 108px; border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, var(--ambar), var(--ambar-escuro));
  color: hsl(12, 40%, 14%);
  border: 2px solid rgba(255,255,255,.5);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  font-family: var(--font-display); line-height: 1; text-align: center;
  margin-bottom: 1.25rem;
  transform: rotate(-5deg) scale(1);
}
.selo-1999-topo { font-size: .62rem; text-transform: uppercase; letter-spacing: .22em; font-weight: 700; }
.selo-1999-ano { font-size: 2rem; font-weight: 800; margin: 2px 0; }
.selo-1999-base { font-size: .62rem; text-transform: uppercase; letter-spacing: .22em; font-weight: 700; }

.hero-titulo { font-size: var(--text-h1); font-weight: 800; color: #fff; text-wrap: balance; }
.hero-sub { margin-top: 1.15rem; color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.6vw, 1.2rem); }
.hero-ctas { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-microcopy { margin-top: 1.1rem; font-size: .9rem; color: rgba(255,255,255,.72); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { padding-block: clamp(1.75rem, 4vw, 2.75rem); }
.trust-lista {
  display: flex; flex-wrap: wrap; gap: 1rem clamp(1.5rem, 5vw, 4rem);
  align-items: center; justify-content: center;
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
}
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 0; }
.trust-item strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.trust-item span { font-size: .85rem; color: var(--texto-suave); }
.estrelinha { color: var(--ambar-escuro); }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(1rem, 2.5vw, 1.75rem); }
.card-dif {
  background: var(--superficie); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.card-dif:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); border-color: color-mix(in srgb, var(--acento) 45%, transparent); }
.card-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: color-mix(in srgb, var(--acento) 12%, var(--canvas));
  color: var(--acento); margin-bottom: 1.1rem;
}
.card-dif h3 { font-size: var(--text-h3); margin-bottom: .5rem; }
.card-dif p { color: var(--texto-suave); font-size: .98rem; }

/* ============================================================
   CARDAPIO
   ============================================================ */
.cards-cardapio { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: clamp(1rem, 2.5vw, 1.75rem); }
.card-menu {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.card-menu:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); border-color: color-mix(in srgb, var(--acento) 40%, transparent); }
.card-menu-foto { aspect-ratio: 4 / 3; overflow: hidden; background: var(--canvas-tom); }
.card-menu-foto img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 600ms var(--ease); filter: saturate(1.08); }
.card-menu:hover .card-menu-foto img { transform: scale(1.05); }
.card-menu-corpo { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-menu-corpo h3 { font-size: 1.2rem; }
.card-menu-corpo p { color: var(--texto-suave); font-size: .94rem; flex: 1; }
.card-menu-corpo .link-zap { margin-top: .25rem; }

/* ============================================================
   GALERIA
   ============================================================ */
.galeria-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr)); gap: clamp(.6rem, 1.6vw, 1rem); }
.galeria-item { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3 / 4; background: var(--canvas-tom); box-shadow: var(--sombra); }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 600ms var(--ease); filter: saturate(1.08); }
.galeria-item:hover img { transform: scale(1.05); }

/* ============================================================
   AVALIACOES (escuro)
   ============================================================ */
.avaliacoes .kicker--inverso { color: var(--ambar); }
.av-topo { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.av-nota { display: flex; flex-direction: column; }
.av-numero { font-family: var(--font-display); font-weight: 800; font-size: var(--text-number); line-height: .95; color: var(--ambar); }
.av-numero-label { font-size: .95rem; color: var(--texto-inverso-suave); text-transform: uppercase; letter-spacing: .12em; margin-top: .25rem; }
.av-estrelas { color: var(--ambar); font-size: 1.5rem; margin-top: .8rem; letter-spacing: .1em; }
.av-estrelas .meia { color: color-mix(in srgb, var(--ambar) 45%, var(--canvas-escuro)); }
.av-media { color: var(--texto-inverso-suave); font-size: .9rem; margin-top: .35rem; }

.review-heroi {
  position: relative; background: var(--canvas-escuro-2);
  border: 1px solid var(--hairline-inversa); border-left: 4px solid var(--ambar);
  border-radius: var(--r-md); padding: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
}
.review-aspas { position: absolute; top: .2rem; left: 1.1rem; font-family: var(--font-display); font-size: 5rem; line-height: 1; color: color-mix(in srgb, var(--ambar) 35%, transparent); }
.review-heroi blockquote p { font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-family: var(--font-display); font-weight: 600; line-height: 1.35; color: var(--texto-inverso); position: relative; }
.review-heroi figcaption { margin-top: 1.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem; }
.review-nome { font-weight: 700; }
.review-estrelas { color: var(--ambar); letter-spacing: .08em; }

.chips-review { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.chip-review {
  display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  background: var(--canvas-escuro-2); border: 1px solid var(--hairline-inversa);
  border-radius: var(--r-pill); padding: .5rem 1rem; font-size: .92rem;
}
.chip-estrelas { color: var(--ambar); font-size: .8rem; letter-spacing: .05em; }
.chip-nome { color: var(--texto-inverso-suave); font-size: .85rem; }

.av-rodape { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.5rem; }
.av-consulta { font-size: .82rem; color: var(--texto-inverso-suave); }

/* ============================================================
   ONDE PEDIR (delivery, horarios, faq, mapa)
   ============================================================ */
.op-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
.op-sub { font-size: 1.35rem; margin-bottom: 1rem; }
.op-sub--mt { margin-top: 2.25rem; }

.horarios { border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: hidden; background: var(--canvas); }
.horarios li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .7rem 1.1rem; border-bottom: 1px solid var(--hairline); }
.horarios li:last-child { border-bottom: 0; }
.horarios .hora { color: var(--texto-suave); font-variant-numeric: tabular-nums; }
.horarios .fechado { background: color-mix(in srgb, var(--acento) 9%, var(--canvas)); }
.horarios .fechado span:first-child { font-weight: 700; }
.horarios .fechado .hora { color: var(--acento); font-weight: 700; }
.op-nota { margin-top: 1rem; color: var(--texto-suave); font-size: .92rem; }

.faq { display: flex; flex-direction: column; gap: .6rem; }
.faq-item { border: 1px solid var(--hairline); border-radius: var(--r-sm); background: var(--canvas); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1rem 1.1rem; min-height: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-family: var(--font-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mais { position: relative; flex: 0 0 auto; width: 16px; height: 16px; }
.faq-mais::before, .faq-mais::after { content: ""; position: absolute; background: var(--acento); border-radius: 2px; transition: transform 250ms var(--ease); }
.faq-mais::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-mais::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item[open] .faq-mais::after { transform: scaleY(0); }
.faq-corpo { overflow: hidden; }
.faq-corpo > p { padding: 0 1.1rem 1.1rem; color: var(--texto-suave); font-size: .95rem; }

.endereco { color: var(--texto-suave); margin-bottom: 1.25rem; line-height: 1.7; }
.op-coluna .btn--acento { margin-bottom: 1.5rem; }
.mapa { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--hairline); box-shadow: var(--sombra); }
.mapa iframe { width: 100%; height: 300px; border: 0; }

/* ============================================================
   FECHAMENTO
   ============================================================ */
.fechamento { text-align: center; }
.fechamento-inner { max-width: 46rem; display: flex; flex-direction: column; align-items: center; }
.fechamento .sec-titulo { margin: .6rem 0 1.75rem; text-wrap: balance; }
.fechamento-micro { margin-top: 1.1rem; color: var(--texto-inverso-suave); font-size: .9rem; }

/* ============================================================
   RODAPE
   ============================================================ */
.rodape { background: var(--canvas-escuro-2); color: var(--texto-inverso-suave); }
.rodape-inner { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.rodape-marca .marca-texto { color: var(--texto-inverso); font-size: 1.3rem; }
.rodape-marca em { font-style: normal; color: var(--acento); }
.rodape-marca p { margin-top: .5rem; font-size: .92rem; }
.rodape-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--texto-inverso); margin-bottom: .75rem; }
.rodape-col p { margin-bottom: .4rem; font-size: .95rem; }
.rodape-col a { transition: color 200ms var(--ease); min-height: 24px; display: inline-block; }
.rodape-col a:hover { color: var(--ambar); }
.rodape-col address { font-size: .92rem; line-height: 1.7; }
.rodape-base {
  border-top: 1px solid var(--hairline-inversa);
  padding: 1.25rem var(--gutter); text-align: center;
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .8rem;
}

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--canvas) 92%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
  transform: translateY(115%);
  transition: transform .35s var(--ease);
  display: none;
}
.sticky-cta .btn { width: 100%; }
.sticky-cta.is-on { transform: translateY(0); }

/* ============================================================
   ZAP FLOAT DESKTOP
   ============================================================ */
.zap-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 85;
  width: 58px; height: 58px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  background: var(--acento); color: #fff;
  box-shadow: 0 12px 30px rgba(60,24,16,.32);
  transform: scale(0);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .2s 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; }

/* ============================================================
   MOTION — reveal + assinatura do selo
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 60ms);
}
[data-reveal="zoom"] { transform: scale(.95); }
[data-reveal].is-in { opacity: 1; transform: none; }

@keyframes hero-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-conteudo > .hero-titulo,
.hero-conteudo > .hero-sub,
.hero-conteudo > .hero-microcopy { animation: hero-rise .8s var(--ease) both; }
.hero-conteudo > .hero-sub { animation-delay: .16s; }
.hero-conteudo > .hero-microcopy { animation-delay: .32s; }
/* CTA do hero SEM delay (aparece cedo, junto do titulo) */
.hero-conteudo > .hero-ctas { animation: hero-rise .8s var(--ease) both; animation-delay: .06s; }
.hero-img { animation: hero-zoom 1.6s var(--ease-expo) both; }
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* Selo "Desde 1999" que se carimba */
@keyframes carimbo {
  0%   { opacity: 0; transform: rotate(-16deg) scale(1.18); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: rotate(-5deg) scale(1); }
}
.selo-1999[data-carimbo] { opacity: 0; transform: rotate(-5deg) scale(1); }
.selo-1999[data-carimbo].is-carimbado { animation: carimbo .7s var(--ease-expo) both; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 860px) {
  .nav { display: none; }
  .cabecalho .btn--compacto { margin-left: auto; }
}
@media (min-width: 720px) {
  .op-grid { grid-template-columns: 1fr 1fr; }
  .rodape-inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .av-topo { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
}
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}
@media (min-width: 769px) {
  .zap-float { display: inline-flex; }
}
@media (min-width: 620px) {
  .galeria-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   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;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .selo-1999[data-carimbo] { opacity: 1 !important; transform: rotate(-5deg) scale(1) !important; }
}
