/* =========================================================
   Radiadores Bela Vista — folha de estilo única
   Linguagem visual: preto profundo + azul/vermelho da marca, vidro fosco,
   cantos retos (4px), Chakra Petch nos títulos.
   ========================================================= */

:root {
  /* superfícies */
  --bg:        #0a0a0a;
  --bg-black:  #000000;
  --bg-raise:  #111111;
  --surface:   rgba(255, 255, 255, .04);
  --surface-2: rgba(255, 255, 255, .06);
  --surface-3: rgba(255, 255, 255, .09);
  --line:      rgba(255, 255, 255, .08);
  --line-2:    rgba(255, 255, 255, .14);

  /* texto */
  --text:  #f2f2f2;
  --muted: #9ca3af;
  --dim:   #7d8593;   /* 5,1:1 sobre o preto — o #6b7280 anterior reprovava */

  /* acentos */
  --brand-blue:  #0024cb;   /* azul da marca */
  --brand-red:   #eb3c27;   /* vermelho da marca */
  --accent:      #2b7fff;   /* azul elétrico — 5,26:1 sobre o preto */
  --accent-2:    #6aa8ff;
  --accent-3:    #a3ccff;
  --accent-tint: rgba(43, 127, 255, .14);
  --accent-line: rgba(43, 127, 255, .38);
  --red-tint:    rgba(235, 60, 39, .12);
  --red-line:    rgba(235, 60, 39, .38);
  --cool:      #4fc3f7;
  --wa:        #25d366;
  --wa-2:      #1fb855;
  --danger:    #e5484d;

  --r:    4px;
  --r-lg: 6px;

  --shadow:    0 20px 60px rgba(0, 0, 0, .6);

  --wrap: 1220px;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Chakra Petch", "Montserrat", system-ui, "Segoe UI", sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); margin: 0 0 .5em; color: #fff; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.08; letter-spacing: -.005em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.14; letter-spacing: -.005em; }
h3 { font-size: 1.18rem; line-height: 1.3; letter-spacing: 0; font-weight: 600; }
p  { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
sup { font-size: .7em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.sr-only, .skip:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip:focus {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  background: var(--accent); color: #000; padding: .7rem 1.1rem; border-radius: var(--r); font-weight: 600;
}
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }

.destaque { color: var(--accent-2); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .9rem; line-height: 1;
  letter-spacing: .01em;
  padding: .9rem 1.4rem; border-radius: var(--r); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 19px; height: 19px; flex: none; }
.btn-lg { padding: 1.05rem 1.7rem; font-size: .98rem; }
.btn-block { width: 100%; }

.btn-brand { background: var(--brand-red); color: #fff; }
.btn-brand:hover { background: #ff5238; box-shadow: 0 8px 26px rgba(235, 60, 39, .35); }

.btn-wa { background: var(--wa); color: #042a16; }
.btn-wa:hover { background: var(--wa-2); box-shadow: 0 8px 26px rgba(37, 211, 102, .26); }

.btn-outline { background: transparent; color: #fff; border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-2); background: var(--accent-tint); }

/* ---------- barra superior ---------- */
.topbar {
  background: var(--bg-black); border-bottom: 1px solid var(--line);
  font-size: .78rem; color: var(--dim); letter-spacing: .01em;
}
.topbar-inner { display: flex; align-items: center; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.tb-item { display: inline-flex; align-items: center; gap: .4rem; min-height: 32px; }
.tb-item svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
.tb-sep { width: 1px; height: 14px; background: var(--line-2); }
.tb-spacer { flex: 1 1 auto; }
.tb-link { text-decoration: none; transition: color .2s ease; }
.tb-link:hover { color: var(--accent-2); }

/* ---------- cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10, 10, 10, .82);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck { background: rgba(6, 6, 6, .95); box-shadow: 0 10px 40px rgba(0, 0, 0, .55); }
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 76px; }

.brand { display: flex; flex: none; align-items: center; gap: .9rem; text-decoration: none; margin-right: auto; }
.brand-logo { display: block; flex: none; height: 52px; width: auto; max-width: none; }
.brand-tag {
  font-size: .7rem; line-height: 1.5; color: var(--dim); max-width: 108px;
  letter-spacing: .2em; text-transform: uppercase;
  padding-left: .9rem; border-left: 1px solid var(--line-2);
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav ul { display: flex; gap: 1.5rem; }
.nav ul a {
  position: relative; text-decoration: none; font-size: .84rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase; color: var(--muted);
  padding: .7rem 0; display: inline-flex; align-items: center; min-height: 34px;
  transition: color .2s ease;
}
.nav ul a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--accent); transition: right .3s ease;
}
.nav ul a:hover, .nav ul a.is-active { color: #fff; }
.nav ul a:hover::after, .nav ul a.is-active::after { right: 0; }

.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--bg-black); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -40% -20% auto -20%; height: 160%; pointer-events: none;
  background:
    radial-gradient(42% 52% at 72% 26%, rgba(43, 127, 255, .22), transparent 70%),
    radial-gradient(38% 46% at 14% 82%, rgba(79, 195, 247, .10), transparent 72%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
}
.hero-inner {
  position: relative; display: block;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4.5rem, 9vw, 7.5rem);
}
.hero-copy { max-width: 42rem; }

.rating-badge {
  display: inline-flex; align-items: center; gap: .6rem; text-decoration: none;
  background: var(--accent-tint); border: 1px solid var(--accent-line);
  border-radius: 999px; padding: .5rem 1rem; margin-bottom: 1.6rem;
  font-size: .8rem; color: var(--text); transition: background-color .2s ease;
}
.rating-badge:hover { background: rgba(43, 127, 255, .18); }
.rating-badge strong { font-size: .95rem; color: var(--accent-3); }
.rb-sep { width: 1px; height: 14px; background: var(--accent-line); }
.stars { color: var(--accent-2); letter-spacing: .12em; font-size: .82rem; }
.stars-lg { font-size: 1.25rem; letter-spacing: .16em; }

.eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
}
.hero h1 { margin-bottom: 1.2rem; }
.lead { font-size: clamp(1rem, 1.35vw, 1.12rem); color: var(--muted); max-width: 56ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.4rem; }

.hero-seals { display: flex; flex-wrap: wrap; gap: 1.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero-seals li { display: inline-flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--muted); }
.seal-ico {
  width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent-tint); border: 1px solid var(--accent-line);
  color: var(--accent-2); font-size: .62rem; flex: none;
}

/* painel de números do hero */
.hero-panel {
  background: linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 1.9rem 1.8rem 1.4rem; box-shadow: var(--shadow);
}
.panel-tag {
  display: inline-block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent-line); background: var(--accent-tint);
  padding: .3rem .7rem; border-radius: var(--r); margin-bottom: .9rem;
}
.panel-title { font-size: 1.45rem; margin-bottom: 1.6rem; }
.panel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.panel-stats li { background: #0c0c0c; padding: 1.15rem 1rem; }
.panel-stats strong {
  display: block; white-space: nowrap; font-family: var(--font-head); font-size: 2.1rem; line-height: 1;
  color: var(--accent-2); letter-spacing: -.02em; margin-bottom: .45rem;
}
.panel-stats span { font-size: .78rem; color: var(--muted); line-height: 1.45; display: block; }
.panel-stats em { font-style: normal; color: var(--dim); font-size: .74rem; }
.panel-stats .unit { display: inline; font-size: .5em; color: inherit; letter-spacing: .02em; margin-left: .12em; }
.panel-art { margin-top: 1.6rem; display: grid; place-items: center; }
.panel-art img { width: 186px; height: auto; }

/* ---------- faixa de credibilidade ---------- */
.strip { background: var(--bg-raise); border-block: 1px solid var(--line); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.strip-item {
  background: var(--bg-raise); display: flex; gap: .85rem; align-items: flex-start;
  padding: 1.6rem 1.4rem;
}
.strip-item svg { width: 24px; height: 24px; color: var(--accent); flex: none; margin-top: .1rem; }
.strip-item strong { display: block; font-size: .95rem; font-weight: 600; margin-bottom: .15rem; }
.strip-item span { font-size: .8rem; color: var(--dim); line-height: 1.45; }

/* ---------- seções ---------- */
.section { padding: clamp(4rem, 7.5vw, 6.5rem) 0; }
.section-black { background: var(--bg-black); }

.sec-head { max-width: 68ch; margin-bottom: 3rem; }
.kicker {
  font-size: .72rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .8rem;
}
.sec-sub { color: var(--muted); font-size: 1.02rem; margin: 0; }

/* ---------- cards de serviço ---------- */
.grid { display: grid; gap: 1px; }
.cards {
  grid-template-columns: repeat(3, 1fr);
  background: var(--line); border: 1px solid var(--line); margin-bottom: 3.5rem;
}
.card { background: var(--bg); padding: 2rem 1.7rem; transition: background-color .25s ease; }
.card:hover { background: #101010; }
.card-ico {
  width: 44px; height: 44px; border-radius: var(--r); display: grid; place-items: center;
  background: var(--accent-tint); border: 1px solid var(--accent-line); color: var(--accent-2);
  margin-bottom: 1.2rem;
}
.card-ico svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .89rem; margin: 0; line-height: 1.6; }

/* ---------- tabelas ---------- */
.table-block {
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  overflow: hidden;
}
.table-head { padding: 1.6rem 1.7rem 1.2rem; border-bottom: 1px solid var(--line); }
.table-head h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.table-head p { margin: 0; font-size: .85rem; color: var(--dim); }
.table-scroll { overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 640px; }
.tbl thead th {
  text-align: left; font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  padding: 1rem 1.2rem; background: rgba(43, 127, 255, .07);
  border-bottom: 1px solid var(--accent-line); white-space: nowrap;
}
.tbl tbody th {
  text-align: left; font-weight: 600; color: #fff; font-size: .89rem;
  padding: 1rem 1.2rem; vertical-align: top;
}
.tbl td { padding: 1rem 1.2rem; color: var(--muted); vertical-align: top; }
.tbl tbody tr { border-bottom: 1px solid var(--line); transition: background-color .2s ease; }
.tbl tbody tr:last-child { border-bottom: 0; }
.tbl tbody tr:hover { background: rgba(255, 255, 255, .03); }
.table-foot { margin: 0; padding: 1rem 1.7rem 1.3rem; font-size: .78rem; color: var(--dim); border-top: 1px solid var(--line); }

.badge {
  display: inline-block; font-size: .72rem; font-weight: 600; white-space: nowrap;
  padding: .28rem .6rem; border-radius: var(--r);
  background: var(--surface-2); border: 1px solid var(--line-2); color: var(--text);
}
.urg { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .6rem; border-radius: var(--r); }
.urg-alta  { background: rgba(229, 72, 77, .14); color: #ff8a8d; border: 1px solid rgba(229, 72, 77, .32); }
.urg-media { background: rgba(232, 145, 44, .14); color: #f3b45f; border: 1px solid rgba(232, 145, 44, .32); }
.urg-baixa { background: rgba(156, 163, 175, .12); color: var(--muted); border: 1px solid var(--line-2); }

.tbl-matrix td { text-align: center; white-space: nowrap; }
.tbl-matrix thead th:not(:first-child) { text-align: center; }
.tbl .y { color: var(--wa); font-weight: 600; }
.tbl .n { color: var(--dim); }
.tbl .c { color: var(--accent-2); font-weight: 500; }
.tbl-compare .hl { color: var(--text); }
.tbl-compare thead th:nth-child(2) { color: var(--accent-2); }
.tbl-hours { min-width: 0; font-size: .92rem; }
.tbl-hours tbody th { padding: .8rem 0; color: var(--muted); font-weight: 500; }
.tbl-hours td { padding: .8rem 0; text-align: right; color: #fff; font-weight: 600; }
.tbl-hours .closed { color: var(--dim); font-weight: 500; }

/* ---------- alerta ---------- */
.alert-box {
  margin-top: 2rem; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  background: rgba(229, 72, 77, .07); border: 1px solid rgba(229, 72, 77, .28);
  border-radius: var(--r-lg); padding: 1.5rem 1.7rem;
}
.alert-ico { flex: none; color: #ff8a8d; }
.alert-ico svg { width: 32px; height: 32px; }
.alert-box > div:nth-child(2) { flex: 1 1 340px; }
.alert-box strong { display: block; color: #fff; font-size: .98rem; margin-bottom: .3rem; }
.alert-box p { margin: 0; font-size: .87rem; color: var(--muted); }

/* ---------- marcas ---------- */
.brands { margin-top: 3rem; }
.brands-label { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--dim); margin-bottom: 1.1rem; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chips li {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: .5rem 1rem; font-size: .82rem; color: var(--muted);
  transition: border-color .2s ease, color .2s ease;
}
.chips li:hover { border-color: var(--accent-line); color: var(--text); }
.chip-more { color: var(--accent-2) !important; border-color: var(--accent-line) !important; }

/* ---------- passos ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { background: var(--bg); padding: 1.9rem 1.5rem; }
.step-n {
  display: block; font-family: var(--font-head); font-size: 2.4rem; line-height: 1;
  color: var(--accent); opacity: .45; margin-bottom: 1rem; letter-spacing: -.03em;
}
.step h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .85rem; margin: 0; line-height: 1.6; }

/* ---------- garantia ---------- */
.guarantee {
  display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center;
  background: linear-gradient(120deg, rgba(43, 127, 255, .10), rgba(43, 127, 255, .02));
  border: 1px solid var(--accent-line); border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.2rem);
}
.guarantee-badge {
  width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent-tint); border: 1px solid var(--accent-line); color: var(--accent-2);
}
.guarantee-badge svg { width: 48px; height: 48px; }
.guarantee-copy h2 { margin-bottom: .7rem; }
.guarantee-copy > p { color: var(--muted); max-width: 62ch; }
.guarantee-list { display: grid; gap: .55rem; margin-top: 1.4rem; }
.guarantee-list li { position: relative; padding-left: 1.6rem; font-size: .9rem; color: var(--text); }
.guarantee-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent-2); font-weight: 700; }

/* ---------- avaliações ---------- */
.reviews-layout { display: grid; grid-template-columns: 320px 1fr; gap: 1.6rem; align-items: start; }
.rating-card {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem; position: sticky; top: 100px;
}
.rating-score { text-align: center; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); margin-bottom: 1.3rem; }
.rating-score strong {
  display: block; font-family: var(--font-head); font-size: 3.6rem; line-height: 1;
  color: #fff; letter-spacing: -.03em;
}
.rating-score .stars { display: block; margin: .5rem 0 .4rem; }
.rating-score small { color: var(--dim); font-size: .78rem; }
.rating-bars { display: grid; gap: .5rem; margin-bottom: 1.5rem; }
.rating-bars li { display: grid; grid-template-columns: 26px 1fr 34px; gap: .6rem; align-items: center; font-size: .74rem; color: var(--dim); }
.bar { height: 6px; background: var(--surface-3); border-radius: 999px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--accent); border-radius: 999px; }

.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.review {
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem 1.5rem 1.3rem;
  transition: border-color .25s ease;
}
.review:hover { border-color: var(--accent-line); }
.review blockquote { margin: .8rem 0 1.1rem; }
.review blockquote p { margin: 0; font-size: .9rem; color: var(--text); line-height: 1.65; }
.review figcaption strong { display: block; font-size: .88rem; color: #fff; }
.review figcaption span { font-size: .74rem; color: var(--dim); }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line); background: var(--surface); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 3rem 1.25rem 1.6rem;
  font-size: .98rem; font-weight: 600; color: #fff; position: relative;
  transition: color .2s ease, background-color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.6rem; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq summary:hover { color: var(--accent-2); background: rgba(255,255,255,.02); }
.faq details[open] summary { color: var(--accent-2); }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-body { padding: 0 3rem 1.4rem 1.6rem; }
.faq-body p { margin: 0; font-size: .89rem; color: var(--muted); line-height: 1.7; }

/* ---------- contato e formulário ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.two-col > * { min-width: 0; }

.contact-list { display: grid; gap: 1.3rem; margin: 2rem 0 2.2rem; }
.contact-list li { display: flex; gap: 1rem; }
.contact-list a { overflow-wrap: anywhere; }
.ci {
  flex: none; width: 40px; height: 40px; border-radius: var(--r); display: grid; place-items: center;
  background: var(--accent-tint); border: 1px solid var(--accent-line); color: var(--accent-2);
}
.ci svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin-bottom: .3rem; }
.contact-list p { margin: 0 0 .25rem; font-size: .95rem; color: var(--text); }
.link { color: var(--accent-2); text-decoration: none; font-weight: 500; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.link:hover { border-bottom-color: currentColor; }

.hours { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 1.5rem 1.6rem; }
.hours h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.hours-note { margin: .9rem 0 0; font-size: .78rem; color: var(--dim); }

.quote-form {
  background: linear-gradient(170deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow);
}
.quote-form h3 { font-size: 1.45rem; margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 100px; gap: .8rem; }
.field label {
  display: block; font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .45rem;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .92rem; color: var(--text);
  background: rgba(0, 0, 0, .45); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: .8rem .95rem; transition: border-color .2s ease, background-color .2s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #5a6470; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(0, 0, 0, .6);
}
.field select {
  appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 13px) calc(50% + 2px);
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.field select option { background: #111; color: var(--text); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field-error { display: block; margin-top: .35rem; font-size: .75rem; color: #ff8a8d; }
.form-note { margin: 1rem 0 0; font-size: .76rem; color: var(--dim); text-align: center; }

/* ---------- mapa ---------- */
.map-section { border-block: 1px solid var(--line); }
.map { height: 420px; filter: grayscale(.65) contrast(1.05) brightness(.82); }
.map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; background: var(--bg-black); padding: clamp(3.5rem, 6vw, 5rem) 0; overflow: hidden; }
.cta-final::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 120% at 50% 0%, rgba(43, 127, 255, .16), transparent 70%);
}
.cta-inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-final h2 { margin-bottom: .4rem; }
.cta-sub { color: var(--muted); margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- rodapé ---------- */
.site-footer { background: #060606; border-top: 1px solid var(--line); padding: 3.5rem 0 1.5rem; font-size: .86rem; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-col h3 { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { color: var(--muted); text-decoration: none; transition: color .2s ease; }
.footer-col a:hover { color: var(--accent-2); }
.footer-col li { color: var(--muted); line-height: 1.6; }
.footer-hours { color: var(--dim) !important; }
.footer-logo { display: block; width: 210px; max-width: 100%; height: auto; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--dim); max-width: 40ch; font-size: .84rem; }
.footer-ig { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); text-decoration: none; margin-top: .4rem; }
.footer-ig svg { width: 17px; height: 17px; color: var(--accent); }
.footer-ig:hover { color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
}
.footer-bottom p { margin: 0; font-size: .76rem; color: var(--dim); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 95;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--wa); color: #042a16; font-weight: 700; font-size: .9rem;
  padding: .85rem 1.2rem; border-radius: 999px; text-decoration: none;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .38);
  transition: transform .18s ease, box-shadow .2s ease;
}
.wa-float svg { width: 23px; height: 23px; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(37, 211, 102, .5); }

/* ---------- animação de entrada ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 1080px) {
  .reviews-layout { grid-template-columns: 1fr; }
  .rating-card { position: static; }
  .rating-bars { max-width: 420px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  /* 9 cartões em 2 colunas deixariam uma célula vazia: o último ocupa a linha toda */
  .cards .card:last-child { grid-column: 1 / -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .guarantee { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (max-width: 1200px) {
  .brand-logo { height: 44px; }
  .brand-tag { display: none; }
  .nav { gap: 1.2rem; }
  .nav ul { gap: 1.05rem; }
  .nav ul a { font-size: .78rem; letter-spacing: .04em; }
}

@media (max-width: 1020px) {
  .brand-logo { height: 34px; }
  .brand-tag { display: none; }
  .topbar-inner { justify-content: center; font-size: .72rem; }
  .tb-loc, .tb-sep, .tb-spacer { display: none; }

  .nav-toggle {
    display: grid; place-items: center; width: 46px; height: 46px;
    background: transparent; border: 1px solid var(--line-2); border-radius: var(--r); cursor: pointer;
  }
  .bars, .bars::before, .bars::after {
    display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }
  .bars { position: relative; }
  .bars::before, .bars::after { content: ""; position: absolute; left: 0; }
  .bars::before { top: -6px; }
  .bars::after  { top: 6px; }
  .nav-toggle[aria-expanded="true"] .bars { background: transparent; }
  .nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bars::after  { transform: translateY(-6px) rotate(-45deg); }

  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #080808; border-bottom: 1px solid var(--line-2);
    padding: .5rem 1.25rem 1.6rem; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .3s ease; visibility: hidden;
    max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav ul a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; letter-spacing: .08em; }
  .nav ul a::after { display: none; }
  .nav-cta { margin-top: 1.2rem; }
}

@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .cta-actions .btn { flex: 1 1 100%; }
  .wa-float span { display: none; }
  .wa-float { padding: 1rem; }
  .faq summary { padding: 1.1rem 2.6rem 1.1rem 1.2rem; font-size: .92rem; }
  .faq-body { padding: 0 2.6rem 1.2rem 1.2rem; }
  .map { height: 320px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .wa-float, .map-section, .hero-panel, .cta-final, .quote-form { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  h1, h2, h3 { color: #000; }
  .tbl thead th { color: #000; background: #eee; }
  .tbl td, .tbl tbody th { color: #000; }
}


/* ---------- acento das faixas da marca nos rótulos de seção ---------- */
.kicker { position: relative; padding-left: 2.4rem; }
.kicker::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 1.7rem; height: 2px; border-radius: 1px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

/* ---------- número fixo do painel (o "½ período") ---------- */
.panel-stats .stat-fixo {
  display: block; white-space: nowrap; font-family: var(--font-head);
  font-size: 2.1rem; line-height: 1; color: var(--accent-2);
  letter-spacing: -.02em; margin-bottom: .45rem;
}

/* ---------- seção da estrutura da oficina ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature { background: var(--bg-black); padding: 2rem 1.6rem; transition: background-color .25s ease; }
.feature:hover { background: #0b0b0b; }
.feature-ico {
  width: 46px; height: 46px; border-radius: var(--r); display: grid; place-items: center;
  background: var(--accent-tint); border: 1px solid var(--accent-line); color: var(--accent-2);
  margin-bottom: 1.2rem;
}
.feature-ico svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: .5rem; font-size: 1.12rem; }
.feature p { color: var(--muted); font-size: .88rem; margin: 0; line-height: 1.6; }

/* ---------- barra de progresso da leitura ---------- */
.progresso { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; overflow: hidden; }
.progresso span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

/* ---------- voltar ao topo ---------- */
.ao-topo {
  position: fixed; right: 18px; bottom: 84px; z-index: 94;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: rgba(10, 10, 10, .82); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); border-radius: 50%; color: var(--text);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s, border-color .2s ease, color .2s ease;
}
.ao-topo svg { width: 20px; height: 20px; }
.ao-topo.is-visivel { opacity: 1; visibility: visible; transform: none; }
.ao-topo:hover { border-color: var(--accent); color: var(--accent-2); }

/* ---------- cursor próprio ---------- */
.cursor-ponto, .cursor-anel {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; opacity: 0; transition: opacity .3s ease;
}
html.cursor-ativo .cursor-ponto, html.cursor-ativo .cursor-anel { opacity: 1; }
.cursor-ponto { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--accent-2); }
.cursor-anel {
  width: 32px; height: 32px; margin: -16px 0 0 -16px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  transition: width .22s ease, height .22s ease, margin .22s ease,
              border-color .22s ease, background-color .22s ease, opacity .3s ease;
}
.cursor-anel.is-ativo {
  width: 54px; height: 54px; margin: -27px 0 0 -27px;
  border-color: var(--accent); background: var(--accent-tint);
}
.cursor-anel.is-clique { width: 22px; height: 22px; margin: -11px 0 0 -11px; border-color: var(--brand-red); }

/* o cursor do sistema só some quando o nosso está de fato desenhado */
html.cursor-ativo, html.cursor-ativo * { cursor: none; }
html.cursor-ativo input, html.cursor-ativo textarea, html.cursor-ativo select { cursor: auto; }

/* nada de cursor próprio em tela de toque ou para quem pediu menos movimento */
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-ponto, .cursor-anel { display: none !important; }
  html.cursor-ativo, html.cursor-ativo * { cursor: auto; }
}

@media (max-width: 1080px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .features { grid-template-columns: 1fr; } .ao-topo { bottom: 78px; } }


/* ---------- identificação borrada nas avaliações ---------- */
.review figcaption { display: flex; align-items: center; gap: .7rem; }
.review-avatar {
  flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--brand-blue), var(--brand-red));
  color: #fff; font-weight: 700; font-size: .9rem;
  filter: blur(3px); user-select: none;
}
.review-quem { display: block; min-width: 0; }
.review-quem strong { display: block; font-size: .88rem; color: #fff; }
.review-quem > span { font-size: .74rem; color: var(--dim); }
/* borrão só visual: o nome no HTML já vem abreviado, não é o nome completo */
.borrado { filter: blur(4px); user-select: none; }

/* ---------- palavras mais citadas ---------- */
.rating-tags-titulo {
  margin: 0 0 .6rem; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim);
}
.rating-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
.rating-tags li {
  font-size: .76rem; color: var(--muted); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r); padding: .32rem .6rem;
}
.rating-tags b { color: var(--accent-2); font-weight: 600; margin-left: .2rem; }


/* ---------- faixa de destaque entre seções ---------- */
/* o fundo vem de um bloco atrás do conteúdo.
   Azul em cima e vermelho embaixo repetem a ordem das faixas do logotipo. */
.corte { position: relative; z-index: 0; background: transparent; }
.corte::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, #10131a 0%, #08090d 100%);
  border-top: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-red);
}

/* ---------- números com degradê da marca ---------- */
.panel-stats strong,
.panel-stats .stat-fixo,
.step-n {
  background: linear-gradient(130deg, var(--accent-2) 0%, #cddaff 45%, var(--brand-red) 125%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.step-n { opacity: 1; }

/* ---------- brilho de marca no hover ---------- */
.card { position: relative; }
.card:hover {
  background: #101014;
  box-shadow: inset 0 0 0 1px var(--accent-line), 0 0 44px -14px rgba(43, 127, 255, .45);
}
.feature:hover {
  background: #100c0c;
  box-shadow: inset 0 0 0 1px var(--red-line), 0 0 44px -14px rgba(235, 60, 39, .4);
}
.review:hover { box-shadow: 0 0 40px -16px rgba(43, 127, 255, .4); }
.rating-badge { box-shadow: 0 0 26px -10px rgba(43, 127, 255, .5); }
.btn-wa { box-shadow: 0 0 26px -12px rgba(37, 211, 102, .8); }


/* ---------- inclinação 3D dos cartões ---------- */
.cards, .features { perspective: 900px; }
.card, .feature { transform-style: preserve-3d; transition: transform .18s ease-out, background-color .25s ease, box-shadow .25s ease; }
.card.is-inclinado, .feature.is-inclinado { z-index: 2; }

/* ---------- paralaxe do painel do herói ---------- */
.hero-panel { will-change: transform; }

/* ---------- carrossel das avaliações no celular ---------- */
.reviews-pontos { display: none; }

@media (max-width: 720px) {
  .reviews {
    display: flex; grid-template-columns: none; gap: .9rem;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    margin-inline: -1.25rem; padding: 0 1.25rem .4rem;
    scrollbar-width: none;
  }
  .reviews::-webkit-scrollbar { display: none; }
  .review { flex: 0 0 86%; scroll-snap-align: center; }

  .reviews-pontos { display: flex; justify-content: center; gap: .5rem; margin-top: 1.1rem; }
  .reviews-pontos button {
    width: 8px; height: 8px; padding: 0; border-radius: 50%; cursor: pointer;
    background: var(--surface-3); border: 1px solid var(--line-2);
    transition: width .25s ease, background-color .25s ease, border-color .25s ease;
  }
  .reviews-pontos button.is-ativo {
    width: 22px; border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
    border-color: transparent;
  }
  /* a inclinação 3D não faz sentido em tela de toque */
  .card, .feature { transform: none !important; }
}


/* ---------- área de toque dos pontos do carrossel ---------- */
/* o ponto continua com 8px visíveis; quem cresce é a área clicável */
.reviews-pontos button { position: relative; }
.reviews-pontos button::after { content: ""; position: absolute; inset: -13px; }

/* ---------- alvos de toque no celular ---------- */
@media (max-width: 720px) {
  /* links do rodapé tinham 16px de altura: impossível de acertar com o dedo */
  .footer-col ul { gap: .1rem; }
  .footer-col li > a { display: inline-flex; align-items: center; min-height: 38px; }
  .footer-ig { min-height: 38px; }
  .contact-list .link { display: inline-flex; align-items: center; min-height: 34px; }
}


/* ---------- primeira coluna fixa nas tabelas do celular ---------- */
/* sem isso, ao rolar a tabela para o lado o leitor perde de vista a que
   linha o dado pertence */
@media (max-width: 720px) {
  .tbl thead th:first-child,
  .tbl tbody th {
    position: sticky; left: 0; z-index: 2;
    background: #0d0d11;
    box-shadow: 1px 0 0 var(--line);
    max-width: 168px;
  }
  .tbl thead th:first-child { background: #14161d; }
  .tbl-hours tbody th { position: static; background: none; box-shadow: none; max-width: none; }
}


/* =========================================================
   Movimento
   ========================================================= */

/* ---------- marca d'água do herói ---------- */
.hero-marca {
  position: absolute; z-index: 0; pointer-events: none;
  right: 3.5%; top: 50%;
  width: min(44vw, 560px);
  /* o escudo é traço fino: abaixo de ~.15 ele simplesmente some no preto */
  opacity: .22;
  -webkit-mask-image: radial-gradient(closest-side, #000 62%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 62%, transparent 100%);
  transform: translateY(-50%);
  will-change: transform;
}
.hero-marca img { display: block; width: 100%; height: auto; }
.hero-inner { z-index: 1; }

/* ---------- entrada do herói ---------- */
@keyframes rbv-entrar {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes rbv-surgir { from { opacity: 0; } to { opacity: 1; } }

.js .hero-copy > * { animation: rbv-entrar .75s cubic-bezier(.22, .8, .3, 1) backwards; }
.js .hero-copy > *:nth-child(1) { animation-delay: .06s; }
.js .hero-copy > *:nth-child(2) { animation-delay: .14s; }
.js .hero-copy > *:nth-child(3) { animation-delay: .22s; }
.js .hero-copy > *:nth-child(4) { animation-delay: .30s; }
.js .hero-copy > *:nth-child(5) { animation-delay: .38s; }
.js .hero-copy > *:nth-child(6) { animation-delay: .46s; }
/* o painel recebe paralaxe pelo JS: aqui só a opacidade, para não brigar pelo transform */
.js .hero-panel { animation: rbv-surgir .9s .4s ease backwards; }
.js .hero-marca { animation: rbv-surgir 1.6s .5s ease backwards; }

/* ---------- brilhos do herói derivando devagar ---------- */
@keyframes rbv-derivar {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-3%, 2%, 0) scale(1.06); }
}
.hero-glow { animation: rbv-derivar 22s ease-in-out infinite; }

/* ---------- revelação item a item ---------- */
.js .escalonar > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22, .8, .3, 1);
  transition-delay: calc(var(--i, 0) * 65ms);
}
.js .escalonar.is-in > * { opacity: 1; transform: none; }

/* ---------- ícones reagindo ao cartão ---------- */
.card-ico, .feature-ico {
  transition: transform .3s cubic-bezier(.34, 1.4, .64, 1), background-color .25s ease, border-color .25s ease;
}
.card:hover .card-ico { transform: translateY(-3px) scale(1.08); border-color: var(--accent); }
.feature:hover .feature-ico { transform: translateY(-3px) scale(1.08); border-color: var(--brand-red); }

/* ---------- lampejo nos botões ---------- */
.btn-wa, .btn-brand { position: relative; overflow: hidden; }
.btn-wa > *, .btn-brand > * { position: relative; z-index: 1; }
.btn-wa::after, .btn-brand::after {
  content: ""; position: absolute; top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg);
  transition: left .6s cubic-bezier(.22, .8, .3, 1);
}
.btn-wa:hover::after, .btn-brand:hover::after { left: 130%; }

/* ---------- pergunta do FAQ abrindo ---------- */
.faq details[open] .faq-body { animation: rbv-abrir .35s ease; }
@keyframes rbv-abrir {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- nada disso em "reduzir movimento" ---------- */
@media (prefers-reduced-motion: reduce) {
  .js .hero-copy > *, .js .hero-panel, .js .hero-marca,
  .hero-glow, .faq details[open] .faq-body { animation: none !important; }
  .js .escalonar > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn-wa::after, .btn-brand::after { display: none; }
}


/* ---------- banda de números ---------- */
/* sem caixa dentro de caixa: só divisórias finas entre as colunas */
.numeros { background: var(--bg-black); border-block: 1px solid var(--line); }
.numeros-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.numero { position: relative; padding: clamp(2rem, 4vw, 3rem) 1.4rem; text-align: center; }
.numero + .numero::before {
  content: ""; position: absolute; left: 0; top: 24%; bottom: 24%;
  width: 1px; background: var(--line);
}
.numero strong {
  display: block; white-space: nowrap; font-family: var(--font-head);
  font-size: clamp(2.3rem, 4.2vw, 3.3rem); line-height: 1; letter-spacing: -.02em;
  margin-bottom: .7rem;
  background: linear-gradient(130deg, var(--accent-2) 0%, #cfe2ff 42%, var(--brand-red) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* display:inline é obrigatório: a regra .numero span abaixo alcançaria este span */
.numero strong .unit { display: inline; font-size: .48em; letter-spacing: .01em; margin-left: .14em; }
.numero span { display: block; font-size: .95rem; color: var(--text); }
.numero em { display: block; font-style: normal; font-size: .82rem; color: var(--dim); margin-top: .2rem; }

/* ---------- esteira das marcas ---------- */
.esteira { position: relative; overflow: hidden; margin-inline: -1px; }
.esteira::before, .esteira::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.esteira::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.esteira::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.esteira .chips { flex-wrap: nowrap; width: max-content; animation: rbv-esteira 46s linear infinite; }
.esteira:hover .chips { animation-play-state: paused; }
@keyframes rbv-esteira { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- botão magnético ---------- */
.btn-magnetico { transition: transform .18s cubic-bezier(.22,.8,.3,1), background-color .2s ease, box-shadow .2s ease; }

@media (max-width: 980px) {
  .numeros-inner { grid-template-columns: repeat(2, 1fr); }
  .numero:nth-child(3)::before { display: none; }
  .hero-marca {
    /* no celular o texto ocupa a largura toda: a marca desce para o canto,
       fora do parágrafo. O !important vence o transform inline do paralaxe. */
    top: auto; bottom: -6%; right: -16%;
    width: min(72vw, 290px); opacity: .15;
    transform: none !important;
  }
}
@media (max-width: 560px) {
  .numeros-inner { grid-template-columns: 1fr 1fr; }
  .numero { padding: 1.6rem .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .esteira .chips { animation: none; flex-wrap: wrap; width: auto; }
  .esteira::before, .esteira::after { display: none; }
  .btn-magnetico { transform: none !important; }
}


/* ---------- logotipos das montadoras ----------
   O chip nasce como texto. Se existir o arquivo em assets/img/marcas/, o JS
   troca por ele; se não existir, o texto simplesmente continua lá. */
.chips li.com-logo { padding: .45rem 1.1rem; display: inline-flex; align-items: center; }
.chips li.com-logo img {
  display: block; height: 26px; width: auto; max-width: 108px;
  /* deixa qualquer logotipo em branco: cor de montadora sobre preto vira poluição */
  filter: brightness(0) invert(1);
  opacity: .62;
  transition: opacity .25s ease, filter .25s ease;
}
.chips li.com-logo:hover img { opacity: 1; }

@media (max-width: 720px) {
  .chips li.com-logo img { height: 22px; max-width: 88px; }
}
