/* Fontes variáveis auto-hospedadas (zero dependência do Google Fonts) */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url('../fonts/bricolage.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/jakarta.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jakarta-italic.woff2') format('woff2');
}

/* ==========================================================================
   ALLEANZA · Site conceito v2 · Veddu Digital
   Direção "Consultoria de rosto quente" (síntese da análise de mercado
   VR + Flash + Caju + Ticket + Alelo + Pluxee + Hirayama, 16/07/2026):
   base creme quente, navy da marca como cor de TEXTO, lima exclusivo do
   CTA (sempre com texto navy), teal editorial, tipografia Bricolage
   Grotesque + Plus Jakarta Sans em sentence case, botões pill e a
   assinatura "orelha do lobo": 3 cantos redondos + 1 faceta diagonal.
   O navy escuro sobrevive em UM lugar por página: o painel de conversão.
   ========================================================================== */

:root {
  /* Paleta com papéis */
  --paper: #fbf8f3;      /* fundo base, creme quente */
  --paper-2: #f4efe6;    /* fundo alternado de seção */
  --white: #ffffff;
  --ink: #233f57;        /* navy da marca: texto, títulos, ícones */
  --ink-soft: #5a7085;   /* texto secundário */
  --navy-deep: #1a3040;  /* painel de conversão + footer (único bloco escuro) */
  --teal: #036675;       /* cor editorial: eyebrows, links, ícones */
  --teal-tint: #e4efef;  /* fundo de apoio */
  --lime: #c4d846;       /* EXCLUSIVO: CTA, checks, highlight de título */
  --lime-tint: #f3f7de;  /* fundo de UMA seção de destaque */
  --lime-press: #a8bc2e; /* hover do CTA */
  --line: #eae3d6;       /* bordas sobre creme */
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: rgba(35, 63, 87, 0.14); /* única sombra do site, navy translúcido */

  /* Tipos */
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;

  /* Métricas */
  --container: 1180px;
  --r-input: 12px;
  --r-card: 20px;
  --r-mega: 32px;
  --facet: var(--paper); /* cor da faceta da "orelha do lobo" (fundo atrás do elemento) */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: #0a8a8f; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--ink);
  font-weight: 800;
}
h3, h4 { font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.3em; }
strong { color: var(--ink); font-weight: 700; }
.section-dark strong, .cta-band strong, footer strong { color: var(--lime); }

::selection { background: var(--lime); color: var(--ink); }

/* Destaque de palavra no título: sublinhado grosso lima no baseline */
.hl, .accent {
  color: inherit;
  background-image: linear-gradient(180deg, transparent 80%, var(--lime) 80%, var(--lime) 97%, transparent 97%);
  background-repeat: no-repeat;
  padding: 0 2px;
}

/* ---------- Utilitários ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Assinatura "orelha do lobo": 3 cantos redondos + faceta no canto superior direito */
.ear {
  position: relative;
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  overflow: hidden;
}
.ear::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 36px; height: 36px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 3;
  pointer-events: none;
}
.ear-mega { border-radius: var(--r-mega); border-top-right-radius: 0; }
.ear-mega::before { width: 52px; height: 52px; }
.clip-ear, .clip-ear-left { border-radius: var(--r-card); overflow: hidden; }

/* Textura de marca: lobo em outline sutil */
.wolf-texture { position: relative; }
.wolf-texture::after {
  content: "";
  position: absolute; right: -40px; bottom: -60px;
  width: 340px; height: 340px;
  background: url("../img/wolf-icon.png") no-repeat center / contain;
  opacity: 0.06;
  transform: rotate(-8deg);
  pointer-events: none;
}

/* Link de pular pro conteúdo (teclado/leitor de tela) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 14px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Barra superior ---------- */
.topbar {
  background: var(--navy-deep);
  color: #b8c6d4;
  font-size: 0.8125rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar a { color: #d7e2ec; font-weight: 500; display: inline-block; padding: 4px 2px; }
.topbar a:hover { color: var(--lime); }
.topbar-contacts { display: flex; gap: 18px; align-items: center; }
.topbar-contacts svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 5px; fill: var(--lime); }
.topbar-addr { display: none; }
@media (min-width: 900px) { .topbar-addr { display: inline; color: #8fa2b5; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 248, 243, 0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 32px -14px var(--shadow); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 48px; width: auto; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > a, .nav-drop > button {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 13px;
  background: none; border: 0; cursor: pointer;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.nav > a:hover, .nav-drop > button:hover {
  color: var(--teal);
  background: var(--teal-tint);
}
.nav > a[aria-current="page"] {
  color: var(--teal);
  background: var(--teal-tint);
}
.nav-drop { position: relative; }
.nav-drop > button::after {
  content: ""; display: inline-block; margin-left: 7px;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 310px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  box-shadow: 0 18px 44px -12px var(--shadow);
  padding: 10px;
  display: none;
}
.nav-drop.open .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
@media (hover: hover) { .nav-drop:hover .nav-drop-menu { display: block; } }
.nav-drop-menu a {
  display: block; padding: 11px 14px;
  color: var(--ink); font-weight: 600; font-size: 0.9375rem;
  border-radius: 12px;
}
.nav-drop-menu a:hover { background: var(--lime-tint); color: var(--ink); }
.nav-drop-menu a small { display: block; color: var(--ink-soft); font-size: 0.78rem; font-weight: 400; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--ink);
  border-radius: 3px;
  margin: 5px 0; transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 1080px) {
  .nav {
    position: fixed; inset: 0; top: 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    background: var(--paper);
    padding: 120px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 55;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav > a, .nav-drop > button { font-size: 1.2rem; width: 100%; text-align: left; border-radius: 14px; }
  .nav-drop { width: 100%; }
  .nav-drop-menu {
    position: static; display: none; background: var(--paper-2);
    border: 0; box-shadow: none; min-width: 0;
  }
  .nav-drop.open .nav-drop-menu { display: block; }
  .nav-toggle { display: block; z-index: 61; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .header-cta { display: none; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700;
  padding: 15px 28px;
  border: 0; cursor: pointer;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s, box-shadow 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn { cursor: pointer; }
.btn:focus-visible, .nav > a:focus-visible, .nav-drop > button:focus-visible,
.card-link:focus-visible, .faq summary:focus-visible, .wa-float:focus-visible,
.footer-links a:focus-visible, .anchor-nav a:focus-visible {
  outline: 3px solid rgba(3, 102, 117, 0.5);
  outline-offset: 2px;
}
.btn svg { width: 19px; height: 19px; fill: currentColor; flex-shrink: 0; }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--ink); color: var(--white); }
.btn-navy { background: var(--ink); color: var(--white); }
.btn-navy:hover { background: var(--lime); color: var(--ink); }
.btn-ghost {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--lime); color: var(--lime); }
.btn-ghost-dark {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn-ghost-dark:hover { color: var(--teal); box-shadow: inset 0 0 0 2px var(--teal); }
.btn-sm { padding: 11px 20px; font-size: 0.9rem; }

/* ---------- Hero (mega-card navy flutuando no creme) ---------- */
.hero { background: var(--paper); padding: 26px 0 0; }
.hero .container { position: relative; }
.hero-card {
  position: relative;
  background: var(--navy-deep);
  color: #e9eff5;
  border-radius: var(--r-mega);
  border-top-right-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  margin-top: 14px;
}
.hero-card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 52px; height: 52px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 4;
}
.hero-card::after {
  content: "";
  position: absolute; left: -60px; bottom: -80px;
  width: 380px; height: 380px;
  background: url("../img/wolf-icon.png") no-repeat center / contain;
  opacity: 0.05;
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero-copy { padding: clamp(40px, 5.5vw, 76px) clamp(28px, 4.5vw, 64px); align-self: center; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: #7fd4c8;
  margin: 0 0 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 0.4em;
}
.hero-card h1 .accent, .hero-card h1 .hl { color: var(--white); }
.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: #c3d0dc;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 600;
  color: #e6eef4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 15px;
  border-radius: 999px;
}
.trust-chip svg { width: 15px; height: 15px; fill: var(--lime); }

.hero-media { position: relative; min-height: 340px; }
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(26, 48, 64, 0) 22%);
  z-index: 1;
}

/* Chips flutuantes sobre a foto */
.float-chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.85rem; font-weight: 700;
  padding: 11px 17px;
  border-radius: 999px;
  box-shadow: 0 12px 32px -8px var(--shadow);
}
.float-chip svg { width: 17px; height: 17px; fill: var(--lime-press); flex-shrink: 0; }
.float-chip small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.75rem; }
.float-chip.pos-bl { left: 22px; bottom: 24px; }
.float-chip.pos-tr { right: 22px; top: 70px; }

/* Captura rápida no hero */
.hero-quick {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 12px;
}
.hero-quick input, .hero-quick select {
  flex: 1 1 190px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.hero-quick input:focus, .hero-quick select:focus { outline: 3px solid rgba(196, 216, 70, 0.5); }
.hero-quick-note { font-size: 0.78rem; color: #8fa2b5; margin: 0 0 22px; }

@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-media { min-height: 300px; order: -1; }
  .hero-media::before { background: linear-gradient(0deg, var(--navy-deep) 0%, rgba(26, 48, 64, 0) 30%); }
}

/* Hero interno (páginas de solução) */
.hero-page .hero-copy { padding: clamp(34px, 4.5vw, 60px) clamp(28px, 4.5vw, 56px); }
.hero-page h1 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.hero-page .hero-media { min-height: 300px; }

/* Faixa de prova logo abaixo do hero */
.proof-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 34px;
  padding: 26px 0 6px;
}
.proof-strip span {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.02rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.proof-strip .dot { color: var(--lime-press); font-size: 1.3rem; line-height: 0; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  padding: 4px 0 12px;
}
.breadcrumbs a { color: var(--teal); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span[aria-current] { color: var(--ink); font-weight: 600; }
.breadcrumbs .sep { margin: 0 8px; color: #b9c1b4; }

/* ---------- Seções ---------- */
.section { padding: clamp(60px, 8.5vw, 104px) 0; }
.section-tight { padding: clamp(40px, 5.5vw, 64px) 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--paper-2); }
.section-teal { background: var(--teal-tint); }
.section-lime { background: var(--lime-tint); }

/* .section-dark agora é o painel de peso (usar com moderação: 1 por página) */
.section-dark {
  background: var(--navy-deep);
  color: #d6e0e9;
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--lime); }
.section-dark .eyebrow { color: #7fd4c8; }

.section-title { font-size: clamp(1.8rem, 3.4vw, 2.65rem); max-width: 720px; font-weight: 800; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 700px; }
.section-dark .lead { color: #b9c7d3; }

.section-head { margin-bottom: clamp(34px, 4.5vw, 52px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-title, .section-head.center .lead { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Grid de cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  padding: 30px 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 30px; height: 30px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
}
.section-white .card { --facet: var(--white); border-color: #efe9dd; }
.section-white .card { border-color: var(--line); }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -14px var(--shadow); }
.card h3 { font-size: 1.28rem; margin-top: 18px; }
.card p { color: var(--ink-soft); font-size: 0.965rem; flex-grow: 1; }
.card-link {
  font-weight: 700; font-size: 0.92rem;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
}
.card-link::after { content: "→"; transition: transform 0.15s; }
.card:hover .card-link::after { transform: translateX(4px); }

.card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--teal-tint);
  border-radius: 50%;
}
.card-icon svg { width: 27px; height: 27px; fill: none; stroke: var(--teal); stroke-width: 1.7; }

.card-img { margin: -30px -28px 0; }
.card-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center 28%;
}

.section-dark .card { background: rgba(255, 255, 255, 0.06); border-color: var(--line-dark); --facet: var(--navy-deep); }
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: #a7b7c4; }
.section-dark .card-link { color: #7fd4c8; }

/* ---------- Split (texto + imagem) ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: stretch; /* imagem acompanha a altura do texto: sem vão morto */
}
.split > div:not(.split-media) { align-self: center; }
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
}
.split-media { position: relative; }
.split-media img {
  position: relative;
  width: 100%; height: 100%; min-height: 340px;
  object-fit: cover;
  border-radius: var(--r-mega);
  border-top-right-radius: 0;
  z-index: 1;
}
.split-media::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 44px; height: 44px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
}
.split-media::after {
  content: "";
  position: absolute; left: 20px; top: 20px; right: -16px; bottom: -16px;
  background: var(--teal-tint);
  border-radius: var(--r-mega);
  z-index: 0;
}
.section-white .split-media { --facet: var(--white); }
.section-lime .split-media::after, .section-teal .split-media::after { background: var(--white); }
.section-dark .split-media { --facet: var(--navy-deep); }
.section-dark .split-media::after { background: rgba(255, 255, 255, 0.07); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checklist li {
  position: relative;
  padding: 7px 0 7px 38px;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 24px; height: 24px;
  background: var(--lime);
  border-radius: 50%;
}
.checklist li::after {
  content: "";
  position: absolute; left: 7px; top: 16px;
  width: 9px; height: 5px;
  border-left: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: rotate(-45deg);
}

/* ---------- Faixa de números (gente, não produto) ---------- */
.stat-band {
  background: var(--lime-tint);
  color: var(--ink);
  border: 0;
  position: relative;
  overflow: hidden;
}
.stat-band::after {
  content: "";
  position: absolute; right: -50px; top: 50%;
  width: 300px; height: 300px;
  transform: translateY(-50%) rotate(-8deg);
  background: url("../img/wolf-icon.png") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; position: relative; z-index: 1; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.6vw, 3.7rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.9rem; color: var(--ink-soft);
  margin-top: 10px;
  font-weight: 600;
}
.section-dark.stat-band h2 { color: var(--ink); }

/* ---------- Passos (como funciona) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { counter-increment: step; position: relative; padding-top: 64px; }
.step::before {
  content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 800;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
}
.step h3 { font-size: 1.13rem; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }
.section-dark .step p { color: #a7b7c4; }
.section-dark .step h3 { color: var(--white); }

/* ---------- Tabela comparativa ---------- */
.table-wrap { overflow-x: auto; margin: 1.5em 0; border-radius: var(--r-card); border: 1px solid var(--line); }
table.compare {
  width: 100%; border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
  min-width: 640px;
}
table.compare caption {
  caption-side: bottom; text-align: left;
  font-size: 0.8rem; color: var(--ink-soft); padding: 10px 16px;
  background: var(--white);
}
table.compare th, table.compare td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--line);
}
table.compare thead th {
  background: var(--ink); color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 700;
}
table.compare tbody tr:nth-child(even) { background: #fdfcf7; }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare td.yes { color: #6d8410; font-weight: 700; }
table.compare td.no { color: #b0433a; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1.06rem; font-weight: 700;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  width: 30px; height: 30px; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 1.25rem; font-weight: 500; color: var(--ink);
  background: var(--lime-tint);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--lime); }
.faq details > div { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.985rem; }
.faq details > div p:last-child { margin-bottom: 0; }
.section-dark .faq details { background: rgba(255, 255, 255, 0.06); border-color: var(--line-dark); }
.section-dark .faq summary { color: var(--white); }
.section-dark .faq details > div { color: #b3c1cd; }

/* ---------- Avaliações Google ---------- */
.review-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.review-score {
  font-family: var(--font-display);
  font-size: 3.4rem; font-weight: 800; color: var(--ink); line-height: 1;
}
.section-dark .review-score { color: var(--white); }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 22px; height: 22px; fill: #f5b301; }
.review-meta { font-size: 0.9rem; color: var(--ink-soft); }
.review-meta a { color: var(--teal); font-weight: 700; }
.section-dark .review-meta { color: #a4b4c2; }
.section-dark .review-meta a { color: #7fd4c8; }
.review-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  padding: 26px;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 28px; height: 28px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.section-teal .review-card { --facet: var(--teal-tint); }
.review-card .stars svg { width: 15px; height: 15px; }
.review-card blockquote {
  margin: 14px 0 16px; padding: 0;
  font-size: 0.975rem; color: var(--ink);
}
.review-card cite {
  font-style: normal;
  font-weight: 700; font-size: 0.9rem;
  color: var(--teal);
}
.review-card cite small { display: block; color: var(--ink-soft); font-weight: 500; }
.section-dark .review-card { background: rgba(255, 255, 255, 0.07); border-color: var(--line-dark); --facet: var(--navy-deep); }
.section-dark .review-card blockquote { color: #ccd8e2; }

/* ---------- Painel de conversão (único bloco escuro) ---------- */
.cta-band {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}
.cta-band-bg { display: none; }
.cta-band::after {
  content: "";
  position: absolute; right: -60px; bottom: -90px;
  width: 380px; height: 380px;
  background: url("../img/wolf-icon.png") no-repeat center / contain;
  opacity: 0.06;
  transform: rotate(-8deg);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band-inner {
  padding: clamp(56px, 8vw, 92px) 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.5rem); max-width: 560px; margin: 0; }
.cta-band p { color: #bcc9d5; margin: 10px 0 0; max-width: 520px; }
.cta-band .btn { flex-shrink: 0; }

/* ---------- Formulário ---------- */
.form-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-mega);
  border-top-right-radius: 0;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}
.form-panel::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 44px; height: 44px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.86rem; font-weight: 700;
  color: var(--ink);
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-input);
  transition: border-color 0.15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal);
  background: var(--white);
}
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }

/* ---------- Calculadora ---------- */
.calc-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-mega);
  border-top-right-radius: 0;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
}
.calc-panel::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 44px; height: 44px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
}
.section-dark .calc-panel, .section-teal .calc-panel { --facet: var(--teal-tint); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-field { margin-bottom: 24px; }
.calc-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.9rem; font-weight: 700;
  color: var(--ink); margin-bottom: 10px;
}
.calc-field output {
  font-size: 1.02rem; color: var(--teal); font-weight: 800;
}
.calc-field input[type="range"] {
  width: 100%; accent-color: var(--teal); cursor: pointer;
}
.calc-field select, .calc-field input[type="number"] {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem;
  padding: 12px 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-input);
  color: var(--ink);
}
.calc-results { display: grid; gap: 14px; align-content: start; }
.calc-result {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
}
.calc-result .label {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.calc-result .value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  font-weight: 800; color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.calc-result.highlight { background: var(--lime-tint); border-color: var(--lime); }
.calc-result.highlight .value { color: var(--ink); }
.calc-disclaimer { font-size: 0.8rem; color: var(--ink-soft); margin-top: 18px; }

/* ---------- Blog ---------- */
.post-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  border-top-right-radius: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 30px; height: 30px;
  background: var(--facet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -14px var(--shadow); }
.post-card img { width: 100%; height: 210px; object-fit: cover; }
.post-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.post-tag {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--teal);
}
.post-card h3 { font-size: 1.25rem; margin: 10px 0 8px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--teal); }
.post-card p { font-size: 0.93rem; color: var(--ink-soft); flex-grow: 1; }
.post-date { font-size: 0.8rem; color: var(--ink-soft); }

/* Artigo */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 1.65rem; margin-top: 1.8em; }
.article-body h3 { font-size: 1.25rem; margin-top: 1.5em; }
.article-body img { border-radius: var(--r-card); margin: 1.6em 0; }
.article-meta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--ink-soft);
}
.article-callout {
  background: var(--lime-tint);
  border-left: 4px solid var(--lime);
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  margin: 1.6em 0;
  font-size: 0.975rem;
}
.article-callout.dark {
  background: var(--navy-deep); color: #dde6ee;
  border-left-color: var(--lime);
}
.article-callout.dark strong { color: var(--lime); }
.article-callout.dark a { color: #7fd4c8; }
.article-disclaimer {
  font-size: 0.82rem; color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 16px; margin-top: 2.4em;
}

/* ---------- Selos / badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-size: 0.86rem; font-weight: 700;
  color: var(--ink);
  border-radius: 999px;
}
.badge svg { width: 17px; height: 17px; fill: var(--lime-press); }
.section-dark .badge { background: rgba(255, 255, 255, 0.08); border-color: var(--line-dark); color: #dce6ee; }
.section-dark .badge svg { fill: var(--lime); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #9fb0be;
  font-size: 0.925rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: clamp(56px, 7vw, 84px) 0 48px;
}
@media (max-width: 980px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-main { grid-template-columns: 1fr; } }
.footer-brand img { height: 44px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { margin-top: 18px; max-width: 300px; font-size: 0.9rem; }
.site-footer h4 {
  color: var(--lime);
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #b6c4d1; }
.footer-links a:hover { color: var(--lime); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: 14px; padding-left: 26px; position: relative; }
.footer-contact svg {
  position: absolute; left: 0; top: 4px;
  width: 15px; height: 15px; fill: var(--lime);
}
.footer-contact a { color: #d7e2ec; font-weight: 600; }
.footer-contact a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.8rem; color: #6d8093;
}
.footer-bottom a { color: #8fa2b5; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(26, 48, 64, 0.35);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: var(--white); }
.wa-float .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float .pulse { animation: none; }
}

/* ---------- Âncoras de conteúdo denso ---------- */
.anchor-nav {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 18px 0;
}
.anchor-nav a {
  font-size: 0.86rem; font-weight: 700;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
}
.anchor-nav a:hover { border-color: var(--lime); color: var(--teal); }

/* ---------- Hero claro (home, mockup aprovado 16/07) ---------- */
.hero-light { background: var(--paper); padding: clamp(24px, 3.5vw, 52px) 0 0; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-light .hero-eyebrow { color: var(--teal); }
.hero-light h1 {
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin-bottom: 0.45em;
}
.hero-light .hero-sub { color: var(--ink-soft); max-width: 520px; }
.hero-light .hero-quick { margin-top: 4px; }

.quick-field { position: relative; flex: 1 1 240px; }
.quick-field svg {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  fill: none; stroke: var(--ink-soft); stroke-width: 1.7;
  pointer-events: none;
}
.quick-field input {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem;
  padding: 16px 18px 16px 48px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.quick-field input:focus { outline: none; border-color: var(--teal); }
.btn-arrow {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy-deep);
  flex-shrink: 0;
}
.btn-arrow svg { width: 12px; height: 12px; fill: var(--lime); }
.btn:hover .btn-arrow { background: var(--white); }
.btn:hover .btn-arrow svg { fill: var(--ink); }

.hero-note {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.83rem; color: var(--ink-soft);
  margin: 12px 0 0;
}
.hero-note svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; }

.trust-row { display: flex; flex-wrap: wrap; row-gap: 16px; margin-top: clamp(24px, 3vw, 38px); }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 2px 26px;
  border-left: 1px solid var(--line);
  font-size: 0.9rem; line-height: 1.3;
  color: var(--ink); font-weight: 700;
}
.trust-item:first-child { padding-left: 0; border-left: 0; }
.trust-item svg { width: 27px; height: 27px; fill: none; stroke: var(--lime-press); stroke-width: 1.6; flex-shrink: 0; }
.trust-item small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.84rem; }

.hero-photo { position: relative; }
.hero-photo::before {
  content: "";
  position: absolute; right: -52px; top: 30%;
  width: 62%; height: 84%;
  background: var(--lime);
  opacity: 0.9;
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  z-index: 0;
}
.hero-photo img {
  position: relative; z-index: 1;
  width: 100%; height: auto; max-height: 520px;
  object-fit: cover;
  border-radius: 28px;
}
.hero-photo .float-chip.pos-tr { top: 22px; right: 22px; }
.float-card {
  position: absolute; right: -18px; bottom: 36px; z-index: 2;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 44px -10px var(--shadow);
  padding: 18px 20px;
  max-width: 232px;
}
.float-card .fc-icon {
  width: 40px; height: 40px;
  border-radius: 13px;
  background: var(--lime-tint);
  display: grid; place-items: center;
  margin-bottom: 10px;
}
.float-card .fc-icon svg { width: 21px; height: 21px; fill: none; stroke: var(--lime-press); stroke-width: 1.8; }
.float-card strong { display: block; font-size: 0.96rem; color: var(--ink); line-height: 1.25; }
.float-card span { display: block; font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; margin-top: 4px; }
@media (max-width: 900px) {
  .hero-photo { margin-top: 8px; }
  .hero-photo::before { right: -12px; }
  .float-card { right: 8px; bottom: 20px; }
}

/* CTAs da hero clara lado a lado (economiza altura na dobra) */
.hero-light .hero-grid { grid-template-columns: 1.16fr 0.84fr; }
.hero-light .hero-ctas { gap: 10px; margin-bottom: 4px; }
.hero-light .hero-ctas .btn {
  padding: 12px 18px;
  font-size: 0.91rem;
  white-space: nowrap;
}
/* na hero clara o ícone do WhatsApp sai do botão (a seta já indica ação; economiza largura) */
.hero-light .hero-ctas .btn > svg { display: none; }
/* botão secundário vira link de texto: cabe ao lado do primário em qualquer página */
.hero-light .hero-ctas .btn-ghost-dark {
  box-shadow: none;
  background: transparent;
  padding: 12px 8px;
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.hero-light .hero-ctas .btn-ghost-dark:hover {
  color: var(--ink);
  box-shadow: none;
  background: transparent;
}
/* régua de confiança mais compacta: 3 itens em uma linha */
.hero-light .trust-item { padding: 2px 16px; font-size: 0.84rem; }
.hero-light .trust-item svg { width: 22px; height: 22px; }
.hero-light .trust-item small { font-size: 0.78rem; }
@media (max-width: 480px) {
  .hero-light .hero-ctas .btn { white-space: normal; width: 100%; justify-content: center; }
}

/* Hero claro compacto (páginas internas) */
.hero-light.hero-page h1 { font-size: clamp(1.9rem, 2.9vw, 2.9rem); }
.hero-light.hero-page .hero-sub { max-width: 500px; }
.hero-light.hero-page .hero-photo img { max-height: 460px; }
.hero-light .breadcrumbs { padding: 0 0 18px; }
.hero-light .hero-grid { padding-bottom: clamp(28px, 4vw, 48px); }
.hero-light.hero-page .trust-item { padding: 2px 16px; font-size: 0.84rem; }

/* ---------- Carrossel de logos (credibilidade) ---------- */
.logo-marquee {
  border-top: 1px solid var(--line);
  margin-top: clamp(22px, 3vw, 38px);
  padding: 18px 0 20px;
  display: flex; align-items: center; gap: 30px;
}
.logo-label {
  flex-shrink: 0;
  max-width: 160px;
  margin: 0;
  font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  line-height: 1.5;
  color: var(--ink-soft);
}
.logo-viewport { position: relative; overflow: hidden; flex: 1; }
.logo-viewport::before, .logo-viewport::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 56px; z-index: 2;
  pointer-events: none;
}
.logo-viewport::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.logo-viewport::after { right: 0; background: linear-gradient(270deg, var(--paper), transparent); }
.logo-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@media (max-width: 700px) { .logo-marquee { flex-direction: column; align-items: flex-start; gap: 14px; } .logo-label { max-width: none; } .logo-viewport { width: 100%; } }
.logo-set {
  display: flex; align-items: center;
  gap: clamp(44px, 6vw, 76px);
  padding-right: clamp(44px, 6vw, 76px);
}
.logo-set img {
  height: 32px; width: auto; max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.2s ease;
}
.logo-set img:hover { filter: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .logo-track .logo-set[aria-hidden] { display: none; }
}

/* ---------- Impressão ---------- */
@media print {
  .topbar, .site-header, .wa-float, .cta-band, .site-footer { display: none; }
}
