/* ============================================================
   PROSCANER · Promax Peças — Light Industrial Precision
   Design tokens + components. Loaded after Tailwind's CDN script.
   ============================================================ */

:root {
  --bg-0: #F4F5F7;
  --bg-1: #E4E7EB;
  --ink: #111111;
  --ink-2: #4A4A4A;
  --ink-3: #888888;
  --line: #C8CBD0;
  --red: #C41E1E;
  --red-dark: #A01818;
  --obd-blue: #2F6FD6;
  --glass-bg: rgba(255, 255, 255, 0.35);
  --glass-border: rgba(255, 255, 255, 0.6);

  --font-display: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  color: var(--ink-2);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ---------- Grain / blueprint texture ---------- */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ---------- Corner marks (rotation driven by GSAP inline transform) ---------- */
.corner-mark {
  font-family: var(--font-mono);
  color: var(--ink-3);
  font-size: 1.1rem;
  line-height: 1;
  display: inline-block;
}

/* ---------- Utility ---------- */
.clip { overflow-x: clip; }
.pose { max-width: 100%; height: auto; display: block; }

/* ---------- Label tag ---------- */
.tag-red {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.35em 0.7em;
  border-radius: 2px;
}

/* Display-type highlight (e.g. a headline word on a red field) — same block, Inter not mono */
.tag-display {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 0.05em 0.28em;
  border-radius: 2px;
}

/* ---------- Header ---------- */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(244, 245, 247, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
@media (min-width: 1024px) {
  header.site-header { height: 76px; }
  header.site-header:not(.is-scrolled) { background: rgba(244, 245, 247, 0.4); }
}
header.site-header.is-scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.logo-lockup { display: inline-flex; align-items: center; }
.logo-lockup .logo-img { height: 24px; width: auto; display: block; }
@media (min-width: 1024px) { .logo-lockup .logo-img { height: 28px; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--ink); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1.3em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-pill-red { background: var(--red); color: #fff; }
.btn-pill-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,30,30,0.25); }
.btn-pill-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-pill-ghost:hover { border-color: var(--ink-3); transform: translateY(-2px); }

.icon-pill-glass {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.icon-pill-glass:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(196,30,30,0.15); }

/* ---------- Hero: canvas scroll-scrub + celulares + labels ---------- */
.hero-sticky { position: relative; overflow: hidden; background: #E9EBEE; }

/* Força layer de composição própria — sem isso, Safari/iOS não repinta o
   canvas durante scroll com momentum (fica "congelado" até o scroll parar). */
#hero-canvas {
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Véu glass sobre o topo do vídeo — todas as larguras; escondido no desktop
   (o painel glass do .hero-copy assume o papel de contraste lá). */
/* Véu glass só atrás do texto — do fim do texto pra baixo, 100% transparente
   (quadro do produto aparece limpo, sem blur nem opacidade residual). */
.hero-veil {
  height: var(--veil-h, 52svh);
  background: linear-gradient(180deg,
    rgba(244, 245, 247, .92) 0%,
    rgba(244, 245, 247, .82) 62%,
    rgba(244, 245, 247, .4) 85%,
    rgba(244, 245, 247, 0) 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 5;
}

.hero-copy {
  position: relative;
  z-index: 10;
  padding: calc(56px + 4px) 20px 0;
  max-width: 40rem;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
  font-size: clamp(1.5rem, 6.8vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 10px 0 8px;
}
.hero-copy h1 em { font-style: normal; color: var(--red); font-weight: 700; display: block; }
.hero-copy p { font-size: 15px; line-height: 1.45; color: var(--ink-2); max-width: 38ch; margin: 0; }

.hero-arrow {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  color: var(--ink-3);
  opacity: .6;
  animation: hero-arrow-float 1.8s ease-in-out infinite;
}
@keyframes hero-arrow-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
@media (prefers-reduced-motion: reduce) { .hero-arrow { animation: none; } }

/* Desktop: painel glass morphism atrás do texto (mantém contraste sobre o vídeo) */
@media (min-width: 1024px) {
  .hero-veil { display: none; }

  .hero-copy {
    position: absolute;
    left: clamp(32px, 4vw, 80px);
    top: 0;
    z-index: 10;
    max-width: 520px;
    width: 36vw;
    min-width: 420px;
    padding: calc(76px + 40px) 0 0;
  }
  .hero-glass {
    position: relative;
    padding: 44px 40px 36px;
    background: rgba(244, 245, 247, 0.4);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 0 24px 0 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    isolation: isolate;
  }
  .hero-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.6;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/%3E%3C/svg%3E");
  }
  .hero-glass > * { position: relative; z-index: 1; }

  /* Marcas de mira nos 2 cantos retos (canto quadrado = "cortado") */
  .glass-mark { position: absolute; width: 22px; height: 22px; pointer-events: none; z-index: 2; }
  .glass-mark::before, .glass-mark::after { content: ''; position: absolute; background: rgba(255, 255, 255, 0.85); }
  .glass-mark::before { width: 100%; height: 1px; left: 0; }
  .glass-mark::after { width: 1px; height: 100%; top: 0; }
  .glass-mark-tl { top: -11px; left: -11px; }
  .glass-mark-tl::before { top: 0; }
  .glass-mark-tl::after { left: 0; }
  .glass-mark-br { bottom: -11px; right: -11px; }
  .glass-mark-br::before { bottom: 0; }
  .glass-mark-br::after { right: 0; }
  .hero-copy h1 { font-size: clamp(3rem, 5.2vw, 4.75rem); margin: 16px 0 12px; }
  .hero-copy p { font-size: 18px; max-width: 46ch; }
}

/* Seção seguinte ao hero: "sobe por baixo" quando o hero recolhe no final (v5d) */
.hero-next {
  position: relative;
  z-index: 2;
  margin-top: -8vh;
  background: var(--bg-0);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.04);
}

.hero-quick { display: flex; }
.glass-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  color: var(--ink);
  opacity: .85;
  transition: transform .25s, box-shadow .25s, opacity .25s;
}
.glass-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(196,30,30,.25); opacity: 1; }

.hero-phones { will-change: transform; }

.hero-labels { position: absolute; inset: 0; pointer-events: none; z-index: 5; }
.hl {
  position: absolute;
  font: 500 12px/1 var(--font-mono);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7);
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity .35s;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
}
.hero-h1 strong { font-weight: 800; color: var(--red); display: block; }

/* ---------- Editorial block (título + specs soltas) ---------- */
.editorial-title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
}

/* ---------- Specs soltas (estilo editorial, sem tabela) ---------- */
.spec-loose { font-family: var(--font-mono); }
.spec-loose .spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.6em;
  padding: 9px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.8rem;
}
.spec-loose .spec-row:first-child { border-top: none; }
.spec-loose .k { color: var(--ink-3); letter-spacing: 0.04em; }
.spec-loose .v { color: var(--ink); }

/* ---------- App preview panel (flat, no glass) ---------- */
.glass-panel {
  background: transparent;
  border-top: 1px solid var(--line);
  padding: 22px 0 0;
}
.glass-panel .glass-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.glass-panel .glass-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-2);
  padding: 6px 0;
  border-top: 1px solid rgba(17,17,17,0.06);
}
.glass-panel .glass-row:first-of-type { border-top: none; }
.glass-panel .glass-row b { color: var(--ink); font-weight: 700; }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: #1E9E4A; display: inline-block; }
.gauge-big { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--ink); letter-spacing: -0.02em; }

.macro-circle img { width: 100%; height: 100%; object-fit: cover; }
.macro-circle.macro-conector img { object-position: 50% 38%; }
.macro-circle.macro-textura img { object-position: 60% 55%; }

/* ---------- Section scaffolding ---------- */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title.compact { font-weight: 700; font-size: 1rem; }
.rule { width: 48px; height: 2px; background: var(--red); }

.macro-stack { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.macro-circle {
  width: 80%;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.macro-circle svg { position: relative; z-index: 1; }

/* ---------- App tiles ---------- */
/* Mobile: grid fixo de 3 colunas, centralizado — sem scroll horizontal cortando ícones. */
.app-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 20px 12px;
}
@media (min-width: 640px) { .app-tiles { display: flex; flex-wrap: wrap; overflow: visible; gap: 16px; } }
.app-tile { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 0 0 auto; }
.app-tile-icon { width: 72px; height: 72px; object-fit: contain; }
@media (min-width: 1024px) { .app-tile-icon { width: 88px; height: 88px; } }
.app-tile-name { font-size: 11px; color: var(--ink-2); text-align: center; max-width: 84px; }

/* ---------- App grid (light variant) ---------- */
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .app-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .app-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.app-card-glow {
  --rotation: 0deg;
  border: 2px solid transparent;
  border-radius: 1em;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image:
    linear-gradient(#fff, #fff),
    conic-gradient(from var(--rotation), var(--red) 0deg, var(--red) 90deg, var(--line) 90deg, var(--line) 360deg);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  position: relative;
  cursor: pointer;
}
.app-card-glow:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(17,17,17,0.1), 0 0 40px rgba(196,30,30,0.08);
}
.app-card-inner {
  border-radius: 0.7em;
  background-color: #F7F8FA;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.icon-parallax-wrap {
  position: relative;
  width: 84px; height: 84px;
  margin: -42px auto 10px;
  z-index: 10;
  perspective: 400px;
}
.icon-parallax {
  width: 84px; height: 84px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17,17,17,0.14);
  transition: transform 0.15s ease-out, box-shadow 0.3s;
  will-change: transform;
  position: relative;
}
.icon-spacer { height: 48px; }

/* ---------- Como conectar: passos ---------- */
.steps { list-style: none; margin: 0; padding: 0; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.step:first-child { border-top: none; }
.step-n {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 2px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}
.steps[data-platform="android"] .step-ios,
.steps[data-platform="ios"] .step-android { display: none; }

.toggle-pair {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255,255,255,0.6);
}
.toggle-pair button {
  padding: 0.45em 1.1em;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-3);
  transition: background 0.2s, color 0.2s;
}
.toggle-pair button.active { background: var(--ink); color: #fff; }

/* ---------- Accordion ---------- */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}
.accordion-trigger .plus { font-family: var(--font-mono); color: var(--red); transition: transform 0.3s ease; font-size: 1.1rem; }
.accordion-item[data-open="true"] .plus { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-panel p { padding-bottom: 20px; color: var(--ink-2); font-size: 0.9rem; line-height: 1.6; max-width: 60ch; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer-link { font-size: 0.875rem; color: var(--ink-2); transition: color 0.2s ease; }
.footer-link:hover { color: var(--red); }
.social-btn {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  transition: all 0.2s ease;
}
.social-btn:hover { color: var(--red); border-color: var(--red); }

.wechat-bar { background: var(--red); }

/* ---------- Chips (protocolos, dados ao vivo) — todas as larguras ---------- */
.chip {
  display: inline-flex;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 12px/1.6 var(--font-mono);
  color: var(--ink-2);
  margin: 4px 4px 0 0;
}

/* ---------- Tabs (apps.html) ---------- */
.tab-btn {
  padding: 0.7em 1.4em;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active { color: var(--ink); border-color: var(--red); }

/* ============================================================
   Desktop (≥1024px) — regras globais e por seção (v5b).
   Nada aqui altera o layout abaixo de 1024px.
   ============================================================ */
@media (min-width: 1024px) {
  /* Container + ritmo vertical */
  .max-w-7xl { padding-left: clamp(32px, 4vw, 80px) !important; padding-right: clamp(32px, 4vw, 80px) !important; }

  /* Tipografia */
  .editorial-title { font-size: clamp(2.25rem, 4.2vw, 3.5rem); }

  /* Marcas "+" nos cantos */
  .corner-mark { font-size: 14px; color: #9AA0A6; }

  /* Poses do produto */
  .pose { width: clamp(360px, 38vw, 720px); }

  /* ---- S1: macro circles empilhados, com sombra ---- */
  .macro-stack { display: flex !important; flex-direction: column; gap: 16px; max-width: none; }
  .macro-stack .macro-circle { width: 240px; height: 240px; box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06); }

  .spec-cols-rule { border-left: 1px solid var(--line); padding-left: 24px; }
  .spec-loose .spec-row { padding: 12px 0; }
  .spec-loose .k { font-size: 12px; }
  .spec-loose .v { font-size: 13px; }

  /* ---- S2: etiqueta do conector ---- */
  .connector-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  /* ---- S3: cards "Dados ao vivo" ---- */
  .live-card { background: #fff; border-radius: 20px; box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06); padding: 28px; }
  .rpm-count { font-family: var(--font-display); font-weight: 700; font-size: 64px; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
  .rpm-count .rpm-unit { font-family: var(--font-display); font-weight: 400; font-size: 18px; color: var(--ink-3); margin-left: 8px; }

  /* ---- S4: apps grid ---- */
  .app-tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; overflow: visible; }
  .app-tile-icon.app-tile-plus {
    width: 88px; height: 88px;
    display: grid; place-items: center;
    background: #F0F1F3;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(17, 17, 17, 0.06);
    font-family: var(--font-mono); font-weight: 600; font-size: 20px; color: var(--ink-2);
  }

  /* ---- S5: toggle + passos ---- */
  .toggle-pair { width: 240px; height: 40px; background: var(--bg-1); border-color: transparent; }
  .toggle-pair button { flex: 1; }
  .toggle-pair button.active { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }
  .step-n { width: 28px; height: 28px; font-size: 0.75rem; }
  .step { padding: 16px 0; }
  .safety-note { background: #E9EBEE; border-color: transparent !important; }

  /* ---- S6: ajuda rápida ---- */
  .accordion-trigger { font-size: 17px; font-weight: 600; min-height: 56px; }
  .accordion-panel p { font-size: 16px; }
}

/* Nota de segurança — cor base (mobile, inalterada) igual ao inline style anterior;
   override cinza só entra no bloco desktop acima. */
.safety-note {
  border: 1px solid var(--red);
  color: var(--ink-2);
  background: rgba(196, 30, 30, 0.05);
  padding: 1rem;
  border-radius: 0.5rem;
}
