/* ============================================================
   GRANA NA MÃO — folha única
   Direção: brutalismo escuro. Grafite fosco, âmbar elétrico,
   menta como segundo acento. Tipografia em duas vozes:
   Archivo Black para gritar, Space Grotesk para conversar.
   ============================================================ */

:root {
  /* Cores em oklch: os dois acentos dividem lightness e chroma e
     mudam só de matiz, então nenhum atropela o outro. Mexer em um
     exige mexer no outro para o par continuar equilibrado. */
  --void: #0e0e10;
  --void-2: #16161a;
  --void-3: #1e1e23;
  --bone: #f3f0ea;
  --bone-dim: #a8a49b;

  --amber: oklch(0.76 0.17 62); /* ~#ff9430 */
  --amber-deep: oklch(0.66 0.19 45); /* usado sobre bone */
  --mint: oklch(0.76 0.17 172); /* ~#00d6b2 */

  --line: rgba(243, 240, 234, 0.14);
  --line-strong: rgba(243, 240, 234, 0.3);

  --display: "Archivo Black", Impact, "Haettenschweiler", sans-serif;
  --body: "Space Grotesk", "Segoe UI", system-ui, sans-serif;

  --page: min(1280px, calc(100vw - 44px));
  --r: 4px; /* raio quase reto: brutalismo não arredonda */
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* o header é fixo; sem isso a âncora cai atrás dele */
}

body {
  margin: 0;
  background: var(--void);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
[hidden] { display: none !important; }
img, svg { max-width: 100%; }

::selection { background: var(--amber); color: var(--void); }

/* Textura de grão por cima de tudo. Tira o "plástico" do fundo chapado
   sem custar uma imagem: é um SVG de ruído em data URI. */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--amber);
  color: var(--void);
  padding: 12px 18px;
  font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

/* ---------- tipografia base ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(3rem, 8.4vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); letter-spacing: 0; }

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

.eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bone-dim);
  margin-bottom: 14px;
}
.eyebrow span {
  display: inline-block;
  background: var(--amber);
  color: var(--void);
  padding: 2px 9px;
  margin-right: 6px;
  font-weight: 700;
  transform: rotate(-1.4deg);
}
.eyebrow-light span { background: var(--mint); }

.tag {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--bone-dim);
  border-top: 2px solid var(--line-strong);
  padding-top: 10px;
  margin-bottom: 26px;
}
.tag-light { color: rgba(14, 14, 16, 0.55); border-color: rgba(14, 14, 16, 0.28); }

.pad {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(72px, 11vw, 132px);
}

/* ---------- botões ---------- */

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  min-height: 48px;
  border: 2px solid var(--void);
  border-radius: var(--r);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.button span { transition: transform 0.14s ease; }
.button:hover span { transform: translateX(4px); }

.button-amber {
  background: var(--amber);
  color: var(--void);
  box-shadow: 5px 5px 0 var(--bone);
}
.button-mint {
  background: var(--mint);
  color: var(--void);
  box-shadow: 5px 5px 0 var(--bone);
}
.button-amber:hover,
.button-mint:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--bone);
}
.button-amber:active,
.button-mint:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--bone);
}
.button-sm { padding: 10px 16px; min-height: 42px; font-size: 0.92rem; box-shadow: 3px 3px 0 var(--bone); }
.button-lg { padding: 19px 34px; font-size: 1.12rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 2px;
  min-height: 44px;
  font-weight: 600;
  color: var(--bone);
  border-bottom: 2px solid var(--line-strong);
}
.text-link:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- header ---------- */

.top {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--page);
  margin-inline: auto;
  padding-block: 16px;
  background: color-mix(in srgb, var(--void) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--amber);
  color: var(--void);
  font-family: var(--display);
  font-size: 1.25rem;
  border-radius: var(--r);
}
.brand-name {
  font-family: var(--display);
  font-size: 0.9rem;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav > a:not(.button) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bone-dim);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
}
.nav > a:not(.button):hover { color: var(--bone); border-color: var(--amber); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: transparent;
  border: 2px solid var(--line-strong);
  border-radius: var(--r);
  cursor: pointer;
}
.burger i { display: block; height: 2px; background: var(--bone); transition: transform 0.2s ease, opacity 0.2s ease; }
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 96px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--mint);
  margin-bottom: 22px;
}
.kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.25; transform: scale(0.7); } }

h1 em {
  font-style: normal;
  color: var(--amber);
  /* O contorno faz a linha destacada "sair" do fundo sem virar caixa. */
  -webkit-text-stroke: 0;
}

.hero-lead {
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: #ddd9d1;
  margin-top: 26px;
}
.hero-lead strong { color: var(--bone); background: rgba(255, 148, 48, 0.14); padding: 0 4px; }

.hero-rate-line {
  display: inline-block;
  color: var(--amber);
  font-family: var(--display);
  font-size: 0.48em;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.seals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.seal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 9px 14px;
  border: 2px solid var(--line-strong);
  border-radius: var(--r);
  font-size: 0.86rem;
  color: var(--bone-dim);
}
.seal b {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--amber);
}
.seal-mint b { color: var(--mint); }

.microcopy {
  margin-top: 22px;
  font-size: 0.84rem;
  color: #7e7a72;
  max-width: 48ch;
}

/* ---------- ilustração do hero: celular gravando ---------- */

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.phone {
  position: relative;
  width: min(268px, 74vw);
  aspect-ratio: 9 / 17.5;
  background: var(--void-2);
  border: 3px solid var(--bone);
  border-radius: 26px;
  padding: 10px;
  box-shadow: 14px 14px 0 rgba(255, 148, 48, 0.9);
  transform: rotate(-3deg);
}
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 15px;
  background: var(--bone);
  border-radius: 0 0 9px 9px;
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 17px;
  background: repeating-linear-gradient(
      135deg,
      var(--void-3) 0 14px,
      var(--void-2) 14px 28px
    );
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 14px 16px;
}

/* A imagem/vídeo preenche a tela do celular; o resto do conteúdo fica
   por cima, posicionado. */
.phone-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
}

.phone-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  padding-left: 4px; /* o triângulo tem o peso à esquerda; isso recentra */
  background: rgba(14, 14, 16, 0.72);
  color: var(--bone);
  border: 2px solid var(--bone);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease;
}
.phone-play:hover { background: var(--amber); color: var(--void); transform: translate(-50%, -50%) scale(1.06); }

.rec {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  background: rgba(14, 14, 16, 0.82);
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.rec i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  animation: pulse 1.4s ease-in-out infinite;
}

.frame-corners { position: absolute; inset: 42px 20px; pointer-events: none; }
.frame-corners span { position: absolute; width: 22px; height: 22px; border: 2px solid var(--mint); }
.frame-corners span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.frame-corners span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.frame-corners span:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.frame-corners span:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.phone-task {
  position: relative;
  background: var(--bone);
  color: var(--void);
  padding: 11px 12px;
  border-radius: 3px;
  transform: rotate(1.5deg);
}
.phone-task small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #6a665e;
}
.phone-task strong { font-size: 0.86rem; line-height: 1.25; display: block; margin-top: 3px; }

.phone-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
  margin-top: 12px;
}
.phone-bars i {
  flex: 1;
  background: var(--mint);
  border-radius: 1px;
  animation: bars 1.1s ease-in-out infinite alternate;
}
.phone-bars i:nth-child(odd) { animation-delay: -0.35s; }
.phone-bars i:nth-child(3n) { animation-delay: -0.7s; }
@keyframes bars { from { height: 16%; } to { height: 100%; } }

.sticker {
  position: absolute;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 13px;
  border-radius: var(--r);
  line-height: 1.15;
}
.sticker-a {
  top: 6%;
  right: 2%;
  background: var(--mint);
  color: var(--void);
  transform: rotate(7deg);
}
.sticker-b {
  bottom: 8%;
  left: 0;
  background: var(--bone);
  color: var(--void);
  transform: rotate(-6deg);
}

/* ---------- faixa rolante ---------- */

.ticker {
  border-block: 2px solid var(--line);
  background: var(--void-2);
  overflow: hidden;
  padding-block: 14px;
}
.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: slide 34s linear infinite;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  white-space: nowrap;
}
.ticker-track b { color: var(--amber); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- 01 por quê ---------- */

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 6vw, 88px);
  row-gap: 26px;
  align-items: start;
}
.why .tag { grid-column: 1 / -1; }
.why-body p { color: #c8c4bc; }

.truth {
  margin-top: 26px;
  padding: 20px 22px;
  background: var(--void-2);
  border: 2px solid var(--amber);
  border-radius: var(--r);
}
.truth strong {
  display: block;
  font-family: var(--display);
  color: var(--amber);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.truth p { margin: 0; color: #d6d2ca; }

/* par antes/depois da anotação */
.antes-depois { grid-column: 1 / -1; margin: 44px 0 0; }
.ad-par { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; }
.ad-item { position: relative; }
.ad-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: var(--r);
}
.ad-item span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--void);
  color: var(--bone);
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  padding: 5px 9px;
  border-radius: 2px;
}
.ad-item:last-child span { background: var(--mint); color: var(--void); }
.antes-depois figcaption { margin-top: 14px; font-size: 0.86rem; color: var(--bone-dim); }

/* ---------- 02 passos (bloco claro, quebra o preto) ---------- */

.steps {
  background: var(--bone);
  color: var(--void);
  width: 100%;
  max-width: none;
  padding-inline: max(22px, calc((100vw - var(--page)) / 2));
}
.steps h2, .steps h3 { color: var(--void); }
.steps .eyebrow { color: rgba(14, 14, 16, 0.62); }
.steps-intro { max-width: 52ch; margin-bottom: 48px; }
.steps-intro > p:last-child { color: rgba(14, 14, 16, 0.7); margin-top: 14px; }

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  background: rgba(14, 14, 16, 0.22);
  border: 2px solid var(--void);
}
.steps-list li {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bone);
  padding: 26px 22px 30px;
}
.step-n {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--amber-deep);
}
.steps-list p { color: rgba(14, 14, 16, 0.72); font-size: 0.95rem; margin: 8px 0 0; }

.steps-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 2px solid rgba(14, 14, 16, 0.22);
}
.steps-cta p { max-width: 46ch; font-weight: 600; margin: 0; }

/* ---------- 03 tarefas ---------- */

.tasks-head { max-width: 40ch; margin-bottom: 44px; }

.task-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.task {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--void-2);
  border: 2px solid var(--line);
  border-radius: var(--r);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.task:hover { border-color: var(--amber); transform: translateY(-4px); }
.task p { font-size: 0.92rem; color: var(--bone-dim); margin: 0; }

.pill {
  align-self: flex-start;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  padding: 4px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--mint);
}

.art {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  background: var(--void-3);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.art-video .corner { position: absolute; width: 20px; height: 20px; border: 2px solid var(--amber); }
.art-video .c1 { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.art-video .c2 { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.art-video .c3 { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.art-video .c4 { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.art-video .dot { width: 13px; height: 13px; border-radius: 50%; background: #ff4d4d; }

.art-audio { display: flex; align-items: center; justify-content: center; gap: 4px; }
.art-audio i {
  width: 5px;
  background: var(--mint);
  border-radius: 2px;
  animation: bars 1.3s ease-in-out infinite alternate;
  height: 40%;
}
.art-audio i:nth-child(even) { animation-delay: -0.4s; }
.art-audio i:nth-child(3n) { animation-delay: -0.8s; }
.art-audio .time {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
}

.art-photo .shot {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  background: var(--void-2);
  border: 2px solid var(--line-strong);
}
.art-photo .s1 { transform: rotate(-9deg) translate(-34%, 0); }
.art-photo .s2 { border-color: var(--amber); }
.art-photo .s3 { transform: rotate(9deg) translate(34%, 0); }

.art-doc { flex-direction: column; gap: 8px; }
.art-doc .line { display: block; height: 6px; background: var(--line-strong); border-radius: 2px; }
.art-doc .l1 { width: 54%; }
.art-doc .l2 { width: 40%; }
.art-doc .l3 { width: 48%; }
.art-doc .check {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 1.4rem;
  color: var(--mint);
}

.disclaimer {
  margin-top: 30px;
  padding: 16px 18px;
  border-left: 3px solid var(--line-strong);
  font-size: 0.9rem;
  color: var(--bone-dim);
}
.disclaimer strong { color: var(--bone); }

/* ---------- 04 checklist ---------- */

.fit {
  background: var(--mint);
  color: var(--void);
  width: 100%;
  max-width: none;
  padding-inline: max(22px, calc((100vw - var(--page)) / 2));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.fit h2 { color: var(--void); }
.fit .eyebrow { color: rgba(14, 14, 16, 0.65); }
.fit .eyebrow span { background: var(--void); color: var(--mint); }

.fit-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.fit-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  border-top: 2px solid rgba(14, 14, 16, 0.28);
}
.fit-list li:last-child { border-bottom: 2px solid rgba(14, 14, 16, 0.28); }
.fit-list span { font-family: var(--display); font-size: 0.95rem; opacity: 0.5; }
.fit-list p { margin: 0; font-weight: 600; }
.fit-list b { font-size: 1.2rem; }

/* ---------- 05 verificador ---------- */

.device {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(32px, 5vw, 66px);
  align-items: start;
}
.device-copy p { color: #c8c4bc; }
.device .lead { font-size: 1.06rem; color: var(--bone); }
.device .lead strong { color: var(--amber); }

.needs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin: 26px 0;
  background: var(--line);
  border: 2px solid var(--line);
}
.needs > div {
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 14px 15px;
  background: var(--void-2);
}
.needs span { font-family: var(--display); font-size: 0.78rem; color: var(--amber); }
.needs p { margin: 0; font-size: 0.92rem; }

.caveat { font-size: 0.82rem; color: #7e7a72; }

.panel {
  position: sticky;
  top: 100px;
  background: var(--void-2);
  border: 2px solid var(--bone);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: 10px 10px 0 rgba(255, 148, 48, 0.85);
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
}
.panel-head span { display: inline-flex; align-items: center; gap: 8px; }
.panel-head i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); animation: pulse 2s ease-in-out infinite; }
.panel-head b { color: var(--mint); }

.panel-result { display: flex; align-items: center; gap: 14px; padding: 20px 0; }
.result-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
}
.result-icon span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bone-dim);
  transition: background 0.25s ease;
}
.panel-result small { font-size: 0.66rem; letter-spacing: 0.16em; color: var(--bone-dim); }
.panel-result h3 { font-size: 1.12rem; margin-top: 4px; }

/* Os três estados que dispositivo.js escreve em data-state. */
.panel[data-state="ok"] { border-color: var(--mint); box-shadow: 10px 10px 0 color-mix(in srgb, var(--mint) 80%, transparent); }
.panel[data-state="ok"] .result-icon { border-color: var(--mint); }
.panel[data-state="ok"] .result-icon span { background: var(--mint); }
.panel[data-state="ok"] h3 { color: var(--mint); }

.panel[data-state="no"] { border-color: #ff6b5c; box-shadow: 10px 10px 0 rgba(255, 78, 66, 0.7); }
.panel[data-state="no"] .result-icon { border-color: #ff6b5c; }
.panel[data-state="no"] .result-icon span { background: #ff6b5c; }
.panel[data-state="no"] h3 { color: #ff8a7d; }

.panel[data-state="maybe"] .result-icon { border-color: var(--amber); }
.panel[data-state="maybe"] .result-icon span { background: var(--amber); }
.panel[data-state="maybe"] h3 { color: var(--amber); }

.panel-data { margin: 0; display: flex; flex-direction: column; gap: 2px; }
.panel-data > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.panel-data dt { color: var(--bone-dim); }
.panel-data dd { margin: 0; font-weight: 600; text-align: right; }

/* O passo adiante. Fica logo depois dos dados e antes de qualquer outra
   coisa: é a única parte do painel que precisa ser lida. */
.panel-next {
  margin-top: 20px;
  padding: 18px;
  background: var(--void-3);
  border: 2px solid var(--line-strong);
  border-radius: var(--r);
  transition: border-color 0.25s ease;
}
.panel-next h4 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.panel-next p { margin: 0 0 16px; font-size: 0.9rem; color: var(--bone-dim); }

.panel[data-state="ok"] .panel-next { border-color: var(--mint); }
.panel[data-state="maybe"] .panel-next { border-color: var(--amber); }
.panel[data-state="no"] .panel-next { border-color: #ff6b5c; background: rgba(255, 78, 66, 0.1); }
.panel[data-state="no"] .panel-next h4 { color: #ff8a7d; }
.panel[data-state="no"] .panel-refresh { border-color: #ff6b5c; color: #ff8a7d; }

.panel-refresh {
  width: 100%;
  margin-top: 14px;
  padding: 13px;
  min-height: 46px;
  background: transparent;
  color: var(--bone);
  border: 2px solid var(--line-strong);
  border-radius: var(--r);
  font-weight: 700;
  cursor: pointer;
}
.panel-refresh:hover { border-color: var(--amber); color: var(--amber); }

.panel-privacy { margin-top: 16px; font-size: 0.8rem; color: #7e7a72; }
.panel-privacy strong { color: var(--bone-dim); }

.panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  min-height: 48px;
  background: var(--amber);
  color: var(--void);
  border-radius: var(--r);
  font-weight: 700;
  transition: background 0.16s ease;
}
.panel-cta span { transition: transform 0.14s ease; }
.panel-cta:hover { background: var(--bone); }
.panel-cta:hover span { transform: translateX(4px); }
.panel[data-state="ok"] .panel-cta { background: var(--mint); }
.panel[data-state="ok"] .panel-cta:hover { background: var(--bone); }

/* ---------- segurança ---------- */

.safety {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(24px, 4vw, 52px);
  row-gap: 22px;
  align-items: start;
  border-top: 2px solid var(--line);
}
.seal-big {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border: 3px solid var(--amber);
  border-radius: 50%;
  color: var(--amber);
  transform: rotate(-8deg);
  text-align: center;
}
.seal-big span { font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.12em; }
.seal-big b { font-family: var(--display); font-size: 1.6rem; line-height: 0.8; }
.safety-copy { grid-column: 2; }
.safety-copy p { color: #c8c4bc; max-width: 62ch; }
.safety-copy ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.safety-copy li {
  position: relative;
  padding-left: 26px;
  color: var(--bone-dim);
  font-size: 0.95rem;
}
.safety-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 13px;
  height: 2px;
  background: var(--amber);
}

/* ---------- FAQ ---------- */

.faq { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 66px); align-items: start; }
.faq-head { position: sticky; top: 100px; }

.accordion { display: flex; flex-direction: column; gap: 2px; border-top: 2px solid var(--line-strong); }
.accordion details { border-bottom: 2px solid var(--line); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 2px;
  min-height: 56px;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--amber);
  transition: transform 0.2s ease;
}
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion summary:hover { color: var(--amber); }
.accordion details p { padding: 0 40px 22px 2px; color: var(--bone-dim); margin: 0; }

/* ---------- CTA final ---------- */

.final {
  position: relative;
  /* O z-index explícito abre um contexto de empilhamento aqui. Sem ele os
     .orbit (z-index -1) cairiam atrás do fundo do body e não apareceriam. */
  z-index: 0;
  text-align: center;
  overflow: hidden;
  border-top: 2px solid var(--line);
}
.final h2 { font-size: clamp(2.4rem, 7vw, 5rem); margin-bottom: 20px; }
.final > p { max-width: 52ch; margin-inline: auto; color: var(--bone-dim); margin-bottom: 32px; }
.final .eyebrow { display: block; }

.orbit {
  position: absolute;
  border: 2px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.o1 { width: 460px; height: 460px; top: -140px; left: -120px; }
.o2 { width: 320px; height: 320px; bottom: -110px; right: -70px; border-color: rgba(255, 148, 48, 0.24); }

/* ---------- footer ---------- */

.footer {
  border-top: 2px solid var(--line);
  background: var(--void-2);
}
.footer-top {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  padding-block: 46px;
}
.footer-top > p { max-width: 44ch; font-size: 0.92rem; color: var(--bone-dim); }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer-links a { color: var(--bone-dim); }
.footer-links a:hover { color: var(--amber); }

.footer-bottom {
  width: var(--page);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: #6e6a63;
}
.footer-bottom p { margin: 0; }

/* ---------- página /verificar ---------- */

.gate { width: min(720px, calc(100vw - 40px)); margin-inline: auto; padding-block: clamp(48px, 8vw, 90px); }
.gate h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.gate > p { color: var(--bone-dim); margin-top: 18px; }

.gate-steps { list-style: none; margin: 34px 0; padding: 0; display: flex; flex-direction: column; gap: 2px; border-top: 2px solid var(--line-strong); }
.gate-steps li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 18px 2px; border-bottom: 2px solid var(--line); }
.gate-steps b { font-family: var(--display); color: var(--amber); }
.gate-steps p { margin: 6px 0 0; color: var(--bone-dim); font-size: 0.94rem; }

.gate-box {
  margin-top: 30px;
  padding: 26px;
  background: var(--void-2);
  border: 2px solid var(--amber);
  border-radius: var(--r);
  text-align: center;
}
.gate-box p { color: var(--bone-dim); margin-bottom: 20px; }
.gate-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; color: var(--bone-dim); min-height: 44px; }
.gate-back:hover { color: var(--amber); }

/* ---------- animação de entrada ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* Sem JS a página não pode ficar em branco: o seletor abaixo só existe
   quando script.js confirma que está rodando (ele põe .js no html). */
html:not(.js) .reveal { opacity: 1; transform: none; }

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

/* ---------- responsivo ---------- */

@media (max-width: 1080px) {
  .steps-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .task-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .burger { display: flex; }

  /* O painel deslizante só vale onde existe o botão que o abre. Em páginas
     sem burger (a /verificar) a nav leva .nav-plain e continua sendo uma
     linha de links — senão ela nasceria escondida e sem como aparecer. */
  .nav:not(.nav-plain) {
    position: fixed;
    inset: 78px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px max(22px, calc((100vw - var(--page)) / 2)) 28px;
    background: var(--void-2);
    border-bottom: 2px solid var(--line-strong);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav:not(.nav-plain) > a:not(.button) { padding: 15px 0; border-bottom: 1px solid var(--line); border-top: 0; min-height: 48px; }
  .nav:not(.nav-plain) > a.button { margin-top: 18px; justify-content: center; }
  .nav-plain { gap: 16px; font-size: 0.9rem; }

  .hero { grid-template-columns: 1fr; padding-block: 40px 30px; }
  .hero-visual { min-height: 380px; order: -1; }
  .phone { width: min(230px, 62vw); }

  .why, .device, .faq, .fit { grid-template-columns: 1fr; }
  .faq-head, .panel { position: static; }

  .safety { grid-template-columns: 1fr; }
  .safety-copy { grid-column: 1; }

  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --page: calc(100vw - 34px); }
  .steps-list, .task-grid, .needs { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; justify-content: center; }
  .sticker-b { left: -6px; }
  .accordion details p { padding-right: 12px; }
}
