/* =========================================================================
   Amaral Redes de Proteção — Belo Horizonte
   Folha de estilo principal
   ========================================================================= */

/* ---------- tokens ---------- */
:root {
  --ink: #08080a;
  --ink-2: #0d0d11;
  --ink-3: #121218;
  --steel: #1a1a21;
  --steel-2: #22222b;

  --white: #f6f6f8;
  --smoke: #a3a3ae;
  --smoke-2: #6f6f7b;

  --red: #e30613;
  --red-2: #ff2b3a;
  --red-3: #ff6470;
  --red-glow: rgba(227, 6, 19, .5);

  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --glass: rgba(255, 255, 255, .035);
  --glass-2: rgba(255, 255, 255, .06);

  --ff-display: "Oswald", "Arial Narrow", sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --gut: clamp(20px, 5vw, 48px);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
/* o navegador dá margin:1em 40px a <figure> por padrão — sem isso, cada
   card da galeria perdia 80px de largura (bug real, achado num teste mobile) */
figure { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* barra de rolagem */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--red), #7a0309);
  border-radius: 99px;
  border: 3px solid var(--ink-2);
}

/* ---------- utilitários ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { position: relative; padding: clamp(64px, 9vw, 118px) 0; }
.section--tight { padding: clamp(48px, 6vw, 76px) 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--red); color: #fff; padding: 10px 18px;
  border-radius: 0 0 8px 8px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* textura de rede (assinatura da marca) */
.mesh-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48.4%, rgba(255,255,255,.07) 49.4%, rgba(255,255,255,.07) 50.6%, transparent 51.6%),
    linear-gradient(-45deg, transparent 48.4%, rgba(255,255,255,.07) 49.4%, rgba(255,255,255,.07) 50.6%, transparent 51.6%);
  background-size: 34px 34px;
  pointer-events: none;
  opacity: .5;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 75%);
}

/* brilho vermelho de fundo */
.glow-red {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,6,19,.20) 0%, rgba(227,6,19,.06) 40%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

/* ---------- cabeçalhos de seção ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red-3);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red));
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: ""; width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.s-title {
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  max-width: 22ch;
}
.s-title em {
  font-style: normal;
  color: var(--red-2);
  text-shadow: 0 0 34px var(--red-glow);
}
.s-lead {
  color: var(--smoke);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 62ch;
  margin-top: 20px;
}

.head-center { text-align: center; }
.head-center .s-title, .head-center .s-lead { margin-inline: auto; }

/* ======================================================================
   BOTÕES
   ====================================================================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 11px;
  padding: 16px 30px;
  border: 0; border-radius: 99px;
  font-family: var(--ff-body);
  font-size: .95rem; font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

/* varredura de brilho */
.btn::after {
  content: "";
  position: absolute; top: 0; left: -140%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-22deg);
  z-index: 2;
  pointer-events: none;
}
.btn:hover::after { animation: sweep .85s var(--ease); }
@keyframes sweep { to { left: 160%; } }

/* botão primário — vermelho com brilho constante */
.btn--primary {
  background: linear-gradient(135deg, var(--red-2) 0%, var(--red) 55%, #a80510 100%);
  color: #fff;
  box-shadow: 0 10px 30px -8px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--primary:hover {
  box-shadow: 0 18px 46px -10px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.4);
}
/* pulso constante e discreto */
.btn--primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255,255,255,.22) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: idle-shine 4.5s var(--ease) infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes idle-shine {
  0%, 55% { transform: translateX(-100%); }
  85%, 100% { transform: translateX(100%); }
}

/* botão verde (WhatsApp) */
.btn--wa {
  background: linear-gradient(135deg, #2bd47d 0%, #17a75c 55%, #0d7a41 100%);
  color: #05230f;
  box-shadow: 0 10px 30px -8px rgba(23,167,92,.5), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--wa:hover { box-shadow: 0 18px 46px -10px rgba(23,167,92,.62); }

/* botão de vidro / espelhado */
.btn--glass {
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  color: var(--white);
  border: 1px solid var(--line-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 8px 26px -12px rgba(0,0,0,.9);
}
.btn--glass:hover {
  border-color: rgba(255,255,255,.34);
  background: linear-gradient(160deg, rgba(255,255,255,.2), rgba(255,255,255,.07));
}

.btn--lg { padding: 19px 38px; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

/* ======================================================================
   CARTÕES DE VIDRO
   ====================================================================== */
/* Nota: os cards ficam sobre fundo sólido, então usam gradiente translúcido em
   vez de backdrop-filter. O blur real fica só onde há sobreposição de conteúdo
   (cabeçalho, menu, lightbox, etiquetas sobre foto) — isso evita dezenas de
   camadas de composição e mantém a rolagem fluida no celular. */
.glass {
  position: relative;
  background: linear-gradient(158deg, var(--glass-2) 0%, var(--glass) 42%, rgba(255,255,255,.015) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 20px 44px -28px rgba(0,0,0,.95);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
/* reflexo superior */
.glass::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,.07), transparent);
  pointer-events: none;
}
/* holofote que segue o cursor */
.glass::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(227,6,19,.16), transparent 62%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.glass:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 34px 60px -30px rgba(0,0,0,1);
}
.glass:hover::after { opacity: 1; }

/* ======================================================================
   CABEÇALHO
   ====================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .35s var(--ease), background-color .35s var(--ease),
              border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.header::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,.85), rgba(8,8,10,.25) 70%, transparent);
  pointer-events: none;
}
.header.is-stuck {
  height: 64px;
  background: rgba(8, 8, 10, .82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
}
.header.is-stuck::before { opacity: 0; }

.header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; position: relative; z-index: 1;
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img {
  height: 42px; width: auto;
  transition: height .35s var(--ease);
  filter: drop-shadow(0 3px 12px rgba(0,0,0,.6));
}
.header.is-stuck .brand img { height: 36px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 9px 13px;
  font-size: .875rem; font-weight: 500;
  color: var(--smoke);
  border-radius: 8px;
  white-space: nowrap;
  transition: color .25s;
}
.nav a::after {
  content: "";
  position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-3));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--white); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.header-cta .btn { padding: 12px 22px; font-size: .875rem; }

/* botão hambúrguer */
.burger {
  display: none;
  width: 46px; height: 46px;
  background: var(--glass-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* menu móvel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(6, 6, 8, .96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px var(--gut) 40px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 6vw, 2rem);
  text-transform: uppercase;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--smoke);
  opacity: 0; transform: translateY(18px);
  transition: color .25s, opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-menu.is-open nav a { opacity: 1; transform: none; }
.mobile-menu nav a:hover { color: var(--red-2); }
.mobile-menu .btn { margin-top: 30px; }

/* ======================================================================
   HERO
   ====================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 46px) 0 60px;
  overflow: hidden;
  background: radial-gradient(120% 90% at 78% 12%, #1c1c24 0%, var(--ink-2) 42%, var(--ink) 100%);
}
.hero .glow-red { top: -180px; right: -120px; }
.hero .glow-red--2 {
  bottom: -260px; left: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(227,6,19,.13) 0%, transparent 68%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 9px;
  border-radius: 99px;
  background: var(--glass-2);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(12px);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 26px;
}
.hero-badge b {
  background: linear-gradient(135deg, var(--red-2), var(--red));
  color: #fff;
  padding: 4px 11px;
  border-radius: 99px;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .06em;
  box-shadow: 0 0 18px -4px var(--red-glow);
}

.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.55rem);
  line-height: 1.04;
  letter-spacing: -.018em;
}
/* O `overflow:hidden` faz a animação de subida das linhas, mas com line-height
   apertado ele corta til e cedilha (PROTEÇÃO, ESPÍRITO). O padding interno
   devolve espaço para os acentos sem alterar o espaçamento visual das linhas. */
.hero h1 .line {
  display: block;
  overflow: hidden;
  padding: .14em 0 .1em;
  margin-bottom: -.2em;
}
.hero h1 .line > span {
  display: block;
  animation: rise 1s var(--ease) backwards;
}
.hero h1 .line:nth-child(1) > span { animation-delay: .05s; }
.hero h1 .line:nth-child(2) > span { animation-delay: .16s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .27s; }
@keyframes rise { from { transform: translateY(105%); } }

.hero h1 em {
  font-style: normal;
  background: linear-gradient(105deg, var(--red-3) 0%, var(--red-2) 40%, var(--red) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(227,6,19,.45));
}

.hero-lead {
  color: var(--smoke);
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  max-width: 54ch;
  margin: 26px 0 34px;
}
.hero-lead strong { color: var(--white); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.hero-proof {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px 26px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-proof div { display: flex; align-items: center; gap: 9px; font-size: .85rem; color: var(--smoke); }
.hero-proof svg { width: 17px; height: 17px; color: var(--red-2); flex: none; }

/* moldura do retrato */
.hero-figure { position: relative; }
.hero-figure .frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 46px 90px -40px #000, inset 0 1px 0 rgba(255,255,255,.12);
  animation: fade-up 1.1s var(--ease) .3s backwards;
}
@keyframes fade-up { from { opacity: 0; transform: translateY(30px); } }
.hero-figure img { width: 100%; height: auto; }
.hero-figure .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(190deg, transparent 42%, rgba(8,8,10,.72) 88%);
  pointer-events: none;
}
/* varredura espelhada sobre a foto */
.hero-figure .frame::before {
  content: "";
  position: absolute; top: -60%; left: -60%;
  width: 46%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.14), transparent);
  transform: rotate(18deg);
  animation: photo-sheen 7s ease-in-out infinite;
  z-index: 2; pointer-events: none;
}
@keyframes photo-sheen {
  0%, 62% { left: -60%; }
  92%, 100% { left: 130%; }
}

.hero-tag {
  position: absolute; left: -18px; bottom: 34px; z-index: 3;
  display: flex; align-items: center; gap: 13px;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(14,14,18,.82);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px -22px #000;
  animation: fade-up 1s var(--ease) .8s backwards;
}
.hero-tag .n {
  font-family: var(--ff-display);
  font-size: 2.1rem; line-height: 1;
  color: var(--red-2);
  text-shadow: 0 0 26px var(--red-glow);
}
.hero-tag .t { font-size: .77rem; line-height: 1.35; color: var(--smoke); max-width: 15ch; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: grid; place-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--smoke-2);
}
.scroll-hint i {
  display: block; width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--red), transparent);
  animation: hint 2s ease-in-out infinite;
}
@keyframes hint { 0%,100% { opacity: .25; transform: scaleY(.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* ======================================================================
   FAIXA ROLANTE
   ====================================================================== */
.ticker {
  position: relative;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--ink-2), var(--ink-3), var(--ink-2));
  padding: 15px 0;
  overflow: hidden;
}
.ticker-track { display: flex; width: max-content; animation: scroll-x 38s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.ticker-track span {
  display: inline-flex; align-items: center; gap: 16px;
  padding-inline: 22px;
  font-family: var(--ff-display);
  font-size: 1rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--smoke);
  white-space: nowrap;
}
.ticker-track span::after {
  content: ""; width: 7px; height: 7px;
  background: var(--red); transform: rotate(45deg);
  box-shadow: 0 0 12px var(--red-glow);
}

/* ======================================================================
   NÚMEROS
   ====================================================================== */
.stats { position: relative; background: var(--ink-2); overflow: hidden; }
.stats .glow-red { top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .55; }
.stats-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat { padding: 32px 26px; text-align: center; border-radius: var(--r); }
.stat .num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.6vw, 3.5rem);
  line-height: 1;
  background: linear-gradient(180deg, #fff 30%, var(--red-2) 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .num sup { font-size: .5em; vertical-align: super; color: var(--red-2); -webkit-text-fill-color: var(--red-2); }
.stat .lbl {
  margin-top: 10px;
  font-size: .82rem; color: var(--smoke);
  letter-spacing: .04em;
}

/* ======================================================================
   SERVIÇOS
   ====================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 18px;
  margin-top: 52px;
}
.svc {
  padding: 32px 28px 30px;
  display: flex; flex-direction: column;
}
.svc-ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(227,6,19,.24), rgba(227,6,19,.05));
  border: 1px solid rgba(255,60,70,.24);
  color: var(--red-2);
  margin-bottom: 22px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.svc-ico svg { width: 27px; height: 27px; }
.svc:hover .svc-ico {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 0 30px -6px var(--red-glow);
}
.svc h3 { font-size: 1.28rem; margin-bottom: 12px; }
.svc p { color: var(--smoke); font-size: .92rem; }
.svc .tags {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.svc .tags li {
  font-size: .72rem; color: var(--smoke-2);
  padding: 4px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
}
.svc--wide { grid-column: span 2; }

/* ======================================================================
   ONDE INSTALAMOS
   ====================================================================== */
.where { background: var(--ink-2); }
.where-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 14px;
  margin-top: 50px;
}
.where-card {
  position: relative;
  padding: 26px 22px;
  border-radius: var(--r);
  background: var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
}
.where-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(227,6,19,.15), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.where-card:hover { transform: translateY(-5px); border-color: rgba(255,60,70,.32); }
.where-card:hover::before { opacity: 1; }
.where-card svg { width: 30px; height: 30px; color: var(--red-2); position: relative; }
.where-card h3 { font-size: 1rem; margin: 16px 0 7px; position: relative; }
.where-card p { font-size: .82rem; color: var(--smoke); position: relative; }

/* ======================================================================
   POR QUE INSTALAR (risco)
   ====================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.risk-list { display: grid; gap: 14px; margin-top: 34px; }
.risk {
  display: flex; gap: 16px;
  padding: 20px 22px;
  border-radius: var(--r-sm);
  background: var(--glass);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  transition: transform .35s var(--ease), background-color .35s;
}
.risk:hover { transform: translateX(6px); background: var(--glass-2); }
.risk-n {
  font-family: var(--ff-display);
  font-size: 1.5rem; line-height: 1;
  color: var(--red-2);
  flex: none;
  text-shadow: 0 0 20px var(--red-glow);
}
.risk h3 { font-size: 1.02rem; margin-bottom: 5px; }
.risk p { font-size: .87rem; color: var(--smoke); }

.why-media { position: relative; }
/* Fotos de origem são retrato de celular (3:4) e, exibidas em coluna larga
   sem recorte, ficam altas demais e com ar "esticado". Um aspect-ratio fixo
   com object-fit:cover as enquadra sem distorcer. */
.why-media img {
  width: 100%;
  /* o atributo HTML height="1600" vira um hint de apresentação que vence o
     aspect-ratio quando não há altura explícita no CSS — daí a esticada.
     height:auto some com o hint e deixa o aspect-ratio abaixo mandar. */
  height: auto;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px -40px #000;
}
.why-quote {
  position: absolute; right: -14px; bottom: -18px;
  max-width: 300px;
  padding: 22px 24px;
  border-radius: var(--r);
  background: rgba(14,14,18,.94);
  border: 1px solid var(--line-2);
  box-shadow: 0 28px 56px -24px #000;
}
.why-quote p { font-size: .9rem; line-height: 1.55; }
.why-quote cite { display: block; margin-top: 10px; font-size: .78rem; font-style: normal; color: var(--red-3); }

/* ======================================================================
   COMO FUNCIONA
   ====================================================================== */
.steps { background: var(--ink-2); position: relative; overflow: hidden; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 54px;
  position: relative;
}
.step { padding: 32px 26px; position: relative; }
.step .idx {
  font-family: var(--ff-display);
  font-size: 3.6rem; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,60,70,.4);
  margin-bottom: 14px;
  transition: color .45s var(--ease), -webkit-text-stroke-color .45s;
}
.step:hover .idx { color: rgba(227,6,19,.16); -webkit-text-stroke-color: var(--red-2); }
.step h3 { font-size: 1.14rem; margin-bottom: 10px; }
.step p { font-size: .88rem; color: var(--smoke); }

/* ======================================================================
   MATERIAIS
   ====================================================================== */
.mat-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}
.spec-list { display: grid; gap: 2px; margin-top: 34px; }
.spec {
  display: grid; grid-template-columns: 1fr auto;
  gap: 18px; align-items: baseline;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}
.spec dt { font-size: .89rem; color: var(--smoke); }
.spec dd { margin: 0; font-weight: 600; font-size: .93rem; text-align: right; }
.spec dd b { color: var(--red-2); font-weight: 700; }

.color-chips { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.chip {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 10px;
  border-radius: 99px;
  background: var(--glass);
  border: 1px solid var(--line);
  font-size: .8rem;
}
.chip i {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  flex: none;
}

/* ======================================================================
   GALERIA
   ====================================================================== */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 9px;
  justify-content: center;
  margin: 40px 0 34px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 99px;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--smoke);
  font-size: .84rem; font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,.34); }
.filter-btn.is-active {
  background: linear-gradient(135deg, var(--red-2), var(--red));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--red-glow);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}
.g-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  background: var(--ink-3);
  transition: opacity .4s var(--ease), transform .4s var(--ease), border-color .4s;
}
.g-item.is-hidden { display: none; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .5s;
  filter: saturate(.88) contrast(1.04);
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8,8,10,.88));
  opacity: .75; transition: opacity .4s;
}
.g-item:hover { border-color: rgba(255,60,70,.4); transform: translateY(-4px); }
.g-item:hover img { transform: scale(1.07); filter: saturate(1) contrast(1.06); }
.g-item:hover::after { opacity: .95; }
.g-cap {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  font-size: .82rem; font-weight: 500;
  transform: translateY(8px); opacity: 0;
  transition: transform .45s var(--ease), opacity .45s;
}
.g-item:hover .g-cap { transform: none; opacity: 1; }
.g-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(8,8,10,.82);
  border: 1px solid var(--line-2);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--red-3);
}
.gallery-more { text-align: center; margin-top: 36px; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,4,6,.96);
  backdrop-filter: blur(14px);
  display: grid; place-items: center;
  padding: 4vh 4vw;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 84vh;
  border-radius: var(--r);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 90px -30px #000;
  transform: scale(.94);
  transition: transform .4s var(--ease);
}
.lightbox.is-open img { transform: none; }
.lb-cap {
  margin-top: 16px; text-align: center;
  font-size: .88rem; color: var(--smoke);
}
.lb-btn {
  position: absolute;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--line-2);
  cursor: pointer;
  transition: background-color .3s, transform .3s var(--ease);
}
.lb-btn:hover { background: var(--red); transform: scale(1.08); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 20px; top: 50%; margin-top: -25px; }
.lb-next { right: 20px; top: 50%; margin-top: -25px; }

/* ======================================================================
   VÍDEO
   ====================================================================== */
.video-sec { background: var(--ink-2); position: relative; overflow: hidden; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.video-box {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px -40px #000;
  max-width: 380px;
  margin-inline: auto;
}
.video-box video { width: 100%; display: block; background: var(--ink-3); }
.video-play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(8,8,10,.42);
  border: 0; cursor: pointer;
  transition: opacity .35s;
}
.video-play span {
  width: 74px; height: 74px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-2), var(--red));
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse-ring 2.4s ease-out infinite;
}
.video-play svg { width: 26px; height: 26px; color: #fff; margin-left: 4px; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(227,6,19,.55); }
  70% { box-shadow: 0 0 0 24px rgba(227,6,19,0); }
  100% { box-shadow: 0 0 0 0 rgba(227,6,19,0); }
}
.video-box.is-playing .video-play { opacity: 0; pointer-events: none; }

.video-points { display: grid; gap: 16px; margin-top: 32px; }
.video-points li { display: flex; gap: 13px; align-items: flex-start; font-size: .93rem; }
.video-points svg { width: 21px; height: 21px; color: var(--red-2); flex: none; margin-top: 2px; }

/* ======================================================================
   DEPOIMENTOS
   ====================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 52px;
}
.testi { padding: 30px 28px; display: flex; flex-direction: column; }
.testi .stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi .stars svg { width: 16px; height: 16px; color: #ffb703; }
.testi blockquote {
  margin: 0; flex: 1;
  font-size: .96rem; line-height: 1.68;
  color: var(--white);
}
.testi blockquote::before {
  content: "\201C";
  font-family: var(--ff-display);
  font-size: 3.4rem; line-height: 0;
  color: var(--red);
  vertical-align: -.34em;
  margin-right: 5px;
  opacity: .55;
}
.testi footer {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testi .av {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--red-2), #7a0309);
  font-family: var(--ff-display);
  font-size: 1.1rem; color: #fff;
}
.testi .who b { display: block; font-size: .9rem; font-weight: 600; }
.testi .who span { font-size: .76rem; color: var(--smoke-2); }

/* ======================================================================
   ÁREAS ATENDIDAS
   ====================================================================== */
.areas { background: var(--ink-2); }
.areas-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.city-list {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 30px;
}
.city {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 99px;
  background: var(--glass);
  border: 1px solid var(--line);
  font-size: .87rem; font-weight: 500;
  transition: all .35s var(--ease);
}
.city::before {
  content: ""; width: 6px; height: 6px;
  background: var(--red); transform: rotate(45deg);
  box-shadow: 0 0 10px var(--red-glow);
}
.city:hover {
  border-color: rgba(255,60,70,.42);
  background: rgba(227,6,19,.09);
  transform: translateY(-3px);
}

/* ======================================================================
   FAQ
   ====================================================================== */
.faq-list { max-width: 860px; margin: 52px auto 0; display: grid; gap: 12px; }
.faq-item {
  border-radius: var(--r-sm);
  background: var(--glass);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .35s, background-color .35s;
}
.faq-item.is-open { border-color: rgba(255,60,70,.34); background: var(--glass-2); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  background: transparent; border: 0;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
}
.faq-q i {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  position: relative;
  transition: background-color .35s, transform .45s var(--ease), border-color .35s;
}
.faq-q i::before, .faq-q i::after {
  content: ""; position: absolute;
  background: var(--white);
  transition: opacity .3s, background-color .3s;
}
.faq-q i::before { width: 11px; height: 1.5px; }
.faq-q i::after { width: 1.5px; height: 11px; }
.faq-item.is-open .faq-q i {
  background: var(--red); border-color: var(--red);
  transform: rotate(180deg);
}
.faq-item.is-open .faq-q i::after { opacity: 0; }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 24px 22px;
  color: var(--smoke);
  font-size: .93rem;
}

/* ======================================================================
   INSTAGRAM
   ====================================================================== */
.insta { position: relative; overflow: hidden; }
.insta .glow-red { top: 40%; left: 50%; transform: translate(-50%,-50%); }
.insta-card {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--r-lg);
}
.insta-av {
  width: 96px; height: 96px; flex: none;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 210deg, #fdc468, #df4996, #7638fa, #fdc468);
  display: grid; place-items: center;
}
.insta-av img {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 3px solid var(--ink-2);
  background: var(--ink);
  object-fit: contain;
  padding: 10px;
}
.insta-info h3 { font-size: 1.5rem; margin-bottom: 6px; }
.insta-info p { color: var(--smoke); font-size: .92rem; }
.insta-meta { display: flex; gap: 26px; margin-top: 16px; }
.insta-meta b { font-family: var(--ff-display); font-size: 1.35rem; display: block; line-height: 1; }
.insta-meta span { font-size: .74rem; color: var(--smoke-2); }

/* ======================================================================
   CTA FINAL
   ====================================================================== */
.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #1a0508 0%, var(--ink-2) 48%, #12060a 100%);
  border-block: 1px solid var(--line);
}
.cta .glow-red { top: -140px; left: 50%; transform: translateX(-50%); width: 760px; height: 560px; }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta h2 {
  font-size: clamp(2.1rem, 5.6vw, 3.9rem);
  max-width: 20ch; margin-inline: auto;
}
.cta h2 em { font-style: normal; color: var(--red-2); text-shadow: 0 0 40px var(--red-glow); }
.cta p { color: var(--smoke); max-width: 56ch; margin: 22px auto 38px; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-note {
  margin-top: 30px; font-size: .82rem; color: var(--smoke-2);
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center;
}
.cta-note span { display: inline-flex; align-items: center; gap: 7px; }
.cta-note svg { width: 15px; height: 15px; color: #2bd47d; }

/* ======================================================================
   RODAPÉ
   ====================================================================== */
.footer {
  background: var(--ink);
  padding: clamp(52px, 7vw, 80px) 0 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 52px);
}
/* width:auto é obrigatório aqui: com só a altura definida, o atributo
   HTML width="900" vira hint de largura e o navegador estica a logo. */
.footer-brand img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--smoke); font-size: .89rem; max-width: 34ch; }
.footer h4 {
  font-size: .82rem; letter-spacing: .16em;
  color: var(--red-3); margin-bottom: 20px;
}
.footer li { margin-bottom: 3px; }
/* área de toque confortável no celular (mín. ~44px de altura) */
.footer li a, .footer address a {
  display: inline-flex; align-items: center;
  min-height: 40px;
  color: var(--smoke); font-size: .89rem;
  transition: color .25s, padding-left .3s var(--ease);
  font-style: normal;
}
.footer li a:hover { color: var(--white); padding-left: 5px; }
.footer address { font-style: normal; display: grid; gap: 4px; }
.footer address a { display: flex; gap: 11px; align-items: center; }
.footer address svg { width: 17px; height: 17px; color: var(--red-2); flex: none; }
.footer address a:hover { color: var(--white); }

.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
}
.socials a:hover {
  background: var(--red); border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 26px -10px var(--red-glow);
}
.socials svg { width: 19px; height: 19px; }

.footer-bottom {
  margin-top: clamp(40px, 5vw, 60px);
  padding: 26px 0;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between;
  font-size: .8rem; color: var(--smoke-2);
}
.footer-bottom a { color: var(--smoke); }
.footer-bottom a:hover { color: var(--red-3); }

/* ======================================================================
   BOTÃO FLUTUANTE
   ====================================================================== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; align-items: center; gap: 11px;
  padding: 14px 22px 14px 16px;
  border-radius: 99px;
  background: linear-gradient(135deg, #2bd47d, #17a75c);
  color: #05230f;
  font-weight: 700; font-size: .92rem;
  box-shadow: 0 14px 36px -10px rgba(23,167,92,.6);
  transform: translateY(120px);
  transition: transform .5s var(--ease), box-shadow .35s;
  overflow: hidden;
}
.wa-float.is-visible { transform: none; }
.wa-float:hover { box-shadow: 0 20px 48px -12px rgba(23,167,92,.75); }
.wa-float svg { width: 25px; height: 25px; flex: none; }
.wa-float::after {
  content: "";
  position: absolute; top: 0; left: -140%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-22deg);
  animation: float-sheen 5s var(--ease) infinite;
}
@keyframes float-sheen { 0%, 60% { left: -140%; } 90%, 100% { left: 170%; } }

/* barra de progresso do scroll */
.progress {
  position: fixed; top: 0; left: 0; z-index: 101;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--red), var(--red-3));
  box-shadow: 0 0 14px var(--red-glow);
  transition: width .12s linear;
}

/* ======================================================================
   ANIMAÇÕES DE ENTRADA
   ====================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ======================================================================
   RESPONSIVO
   ====================================================================== */
@media (max-width: 1240px) {
  .nav a { padding: 9px 9px; font-size: .82rem; }
  .header-cta .btn--glass { font-size: .8rem; padding: 11px 16px; }
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: grid; }
  .header-cta .btn--glass { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 26px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 440px; margin-inline: auto; width: 100%; }
  /* O retrato é bem vertical: sem limite de altura ele ocupa a tela inteira e
     empurra o título para fora da primeira dobra. Aqui vira um banner cortado. */
  .hero-figure .frame { aspect-ratio: 4 / 3.7; }
  .hero-figure img { height: 100%; object-fit: cover; object-position: 50% 22%; }
  .hero-tag { left: 10px; bottom: 14px; padding: 12px 16px; }
  .scroll-hint { display: none; }
  .why-grid, .mat-grid, .video-grid, .areas-wrap { grid-template-columns: 1fr; }
  .why-media { order: -1; }
  .why-quote { position: static; max-width: none; margin-top: 16px; }
  .insta-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .insta-meta { justify-content: center; }
  .svc--wide { grid-column: span 1; }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .header-cta .btn span { display: none; }
  .header-cta .btn { padding: 12px 15px; }
  .brand img { height: 34px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .g-cap { font-size: .72rem; opacity: 1; transform: none; left: 12px; right: 12px; bottom: 11px; }
  .g-badge { font-size: .6rem; padding: 4px 9px; top: 10px; left: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .wa-float { right: 14px; bottom: 14px; padding: 13px 18px 13px 14px; font-size: .86rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-btn { width: 44px; height: 44px; }
  .spec { grid-template-columns: 1fr; gap: 4px; }
  .spec dd { text-align: left; }
}

@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
}

/* ---------- acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- impressão ---------- */
@media print {
  .header, .wa-float, .progress, .mobile-menu, .lightbox, .scroll-hint { display: none !important; }
  body { background: #fff; color: #000; }
}
