/* Tapp Focus — site
 *
 * Mesma linguagem da tela de boas-vindas do app (WelcomeView): fundo claro
 * azulado, tinta quase preta, o azul da marca como única cor de ação,
 * Manrope. Sempre claro, como o onboarding — é identidade, não preferência.
 *
 * Movimento: tudo que anima em loop para quando sai da tela (.is-off, posto
 * pelo site.js) e some com "reduzir movimento" do sistema. Nada depende de
 * animação para ficar visível — ver .reveal.
 */

@font-face { font-family: "Manrope"; font-weight: 400; font-display: swap; src: url("fonts/Manrope_400Regular.ttf") format("truetype"); }
@font-face { font-family: "Manrope"; font-weight: 500; font-display: swap; src: url("fonts/Manrope_500Medium.ttf") format("truetype"); }
@font-face { font-family: "Manrope"; font-weight: 600; font-display: swap; src: url("fonts/Manrope_600SemiBold.ttf") format("truetype"); }
@font-face { font-family: "Manrope"; font-weight: 700; font-display: swap; src: url("fonts/Manrope_700Bold.ttf") format("truetype"); }
@font-face { font-family: "Manrope"; font-weight: 800; font-display: swap; src: url("fonts/Manrope_800ExtraBold.ttf") format("truetype"); }

@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }

:root {
  --bg-top: #e2e9f0;
  --bg-bottom: #c2cfdd;
  --ink: #16202b;
  --ink-2: #33414f;
  --ink-soft: #637381;
  --accent: #1c4a72;
  --accent-2: #2b6698;
  --glow: #9cc3e6;
  --live: #2fbf71;
  --page: #f4f7fa;
  --surface: #ffffff;
  --line: rgba(22, 32, 43, 0.08);
  --dark: #0e1721;

  --shadow-sm: 0 1px 2px rgba(22, 32, 43, .05), 0 4px 14px rgba(22, 32, 43, .05);
  --shadow: 0 1px 2px rgba(22, 32, 43, .04), 0 18px 48px rgba(22, 32, 43, .08);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --radius: 28px;
  --gutter: clamp(16px, 5vw, 44px);
  --max: 1160px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0; background: var(--page); color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
a:hover { color: var(--accent-2); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 8px; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mono { font-variant-numeric: tabular-nums; letter-spacing: 0; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 900px; }
.center { text-align: center; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--surface); padding: 8px 14px; border-radius: 10px; z-index: 100; }
.skip:focus { left: 8px; }

/* ── Navegação flutuante ─────────────────────────────────────────────── */
.nav-wrap { position: fixed; inset: 14px 0 auto; z-index: 60; display: flex; justify-content: center; padding: 0 12px; pointer-events: none; }
.nav {
  pointer-events: auto; display: flex; align-items: center; gap: 28px;
  width: min(100%, 980px); height: 58px; padding: 0 10px 0 20px; border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 1px 1px rgba(22, 32, 43, .04), 0 10px 30px rgba(22, 32, 43, .06);
  transition: height .35s var(--ease-out), width .35s var(--ease-out), background-color .35s ease;
}
.scrolled .nav { height: 52px; width: min(100%, 900px); background: rgba(255, 255, 255, .8); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 16px; letter-spacing: -.01em; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.brand-dot { width: 22px; height: 22px; border-radius: 50%; background: radial-gradient(circle at 34% 28%, #fff, #dde4ec 72%); box-shadow: 0 1px 3px rgba(22,32,43,.28), inset 0 -1px 2px rgba(22,32,43,.1); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: 14px; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1.5px; background: currentColor; transform: scaleX(0); transition: transform .35s var(--ease-out); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
@media (max-width: 760px) { .nav-links { display: none; } .nav .btn { margin-left: auto; } .nav { gap: 12px; } }

/* ── Botões ──────────────────────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 24px; border-radius: 999px; overflow: hidden;
  font: 700 15px/1 "Manrope", sans-serif; letter-spacing: -.005em; text-decoration: none; cursor: pointer; border: 0;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .2s ease;
}
.btn-primary {
  color: #fff; background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 8px 22px rgba(28, 74, 114, .28);
}
.btn-primary:hover { color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 14px 30px rgba(28, 74, 114, .34); }
.btn-primary:active { transform: scale(.97); }
.btn-lg { min-height: 54px; padding: 0 30px; font-size: 16px; }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 14px; }
.btn-ghost { color: var(--accent); padding: 0 8px; }
.btn-ghost span { display: inline-block; transition: transform .35s var(--ease-out); }
.btn-ghost:hover span { transform: translateX(4px); }
/* Brilho que atravessa o botão */
.shine::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg); animation: shine 5.5s ease-in-out 2s infinite;
}
.shine:hover::after { animation-duration: 1.1s; animation-delay: 0s; }
@keyframes shine { 0%, 70% { left: -60%; } 100% { left: 130%; } }

/* ── Destaque ────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; padding: 150px 0 0;
  background:
    radial-gradient(60% 50% at 50% 72%, rgba(255,255,255,.95), rgba(255,255,255,0) 70%),
    radial-gradient(45% 40% at 12% 18%, rgba(156,195,230,.45), transparent 70%),
    radial-gradient(40% 40% at 88% 30%, rgba(194,207,221,.9), transparent 70%),
    linear-gradient(180deg, var(--bg-top) 0%, #d4dee9 55%, var(--page) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 26px; padding: 8px 16px 8px 12px;
  border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .01em; color: var(--accent);
  background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 0 rgba(43,102,152,.5); animation: ping 2.4s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(43,102,152,.45); } 100% { box-shadow: 0 0 0 10px rgba(43,102,152,0); } }
.hero-title {
  margin: 0 auto 26px; font-weight: 800; letter-spacing: -.045em; line-height: .98;
  font-size: clamp(46px, 7.6vw, 104px);
}
.hero-title .line { display: block; }
/* No celular, cada frase numa linha — "não." sozinho na terceira perdia a força. */
@media (max-width: 480px) { .hero-title { font-size: clamp(34px, 10.2vw, 46px); letter-spacing: -.05em; } }
/* O degradê vai em cada palavra, não na linha: as palavras animadas (transform
   + filter) viram camadas próprias, e o background-clip do pai não chega até
   elas — a linha ficava transparente. Sem JS (sem palavras), cor sólida. */
.hero-title .soft { color: #62768b; padding-bottom: .06em; }
.hero-title .soft .w { background: linear-gradient(180deg, #53677c, #8b9cae); -webkit-background-clip: text; background-clip: text; color: transparent; padding-bottom: .06em; }
.lede { margin: 0 auto 34px; max-width: 34em; font-size: clamp(17px, 1.7vw, 21px); color: var(--ink-soft); }
.actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 22px; }
.fineprint { margin: 22px 0 0; font-size: 13px; font-weight: 700; letter-spacing: .02em; color: var(--ink-soft); }

/* Palavras que entram uma a uma (o JS quebra o título em palavras). */
.js [data-split] .w { display: inline-block; opacity: 0; transform: translateY(.38em); filter: blur(12px);
  animation: wordIn 1s var(--ease-out) forwards; animation-delay: calc(var(--i) * 75ms + 120ms); }
@keyframes wordIn { to { opacity: 1; transform: none; filter: blur(0); } }
.js .intro-in { opacity: 0; transform: translateY(16px); animation: fadeUp .9s var(--ease-out) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* Palco do aparelho */
.stage { position: relative; z-index: 1; height: clamp(420px, 52vw, 620px); margin-top: 12px; }
.stage-glow { position: absolute; left: 50%; top: 52%; width: min(760px, 110vw); aspect-ratio: 1; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(255,255,255,.95), rgba(226,233,240,.4) 55%, transparent); }
.rings { position: absolute; left: 50%; top: 50%; width: min(520px, 92vw); aspect-ratio: 1; transform: translate(-50%, -50%); pointer-events: none; }
.rings span { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(28, 74, 114, .22);
  opacity: 0; animation: ripple 4.2s var(--ease-out) infinite; }
.rings span:nth-child(2) { animation-delay: 1.4s; }
.rings span:nth-child(3) { animation-delay: 2.8s; }
@keyframes ripple { 0% { transform: scale(.42); opacity: 0; } 12% { opacity: .9; } 100% { transform: scale(1.18); opacity: 0; } }
.tilt { position: absolute; left: 50%; top: 50%; width: min(560px, 88vw); transform: translate(-50%, -50%) perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .5s var(--ease-out); will-change: transform; }
.float { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(-1.4deg); } }

/* Etiquetas de vidro flutuando em volta */
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; border-radius: 16px;
  font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap;
  background: rgba(255,255,255,.66); border: 1px solid rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(16px) saturate(170%); backdrop-filter: blur(16px) saturate(170%);
  box-shadow: 0 1px 2px rgba(22,32,43,.05), 0 14px 34px rgba(22,32,43,.1);
  translate: var(--px, 0) var(--py, 0); transition: translate .6s var(--ease-out);
  animation: bob 6s ease-in-out infinite;
}
.chip svg { width: 18px; height: 18px; color: var(--accent); }
.chip b { font-weight: 800; color: var(--accent); }
.chip-a { left: 8%; top: 18%; }
.chip-b { right: 7%; top: 30%; animation-delay: -1.5s; }
.chip-c { left: 12%; bottom: 20%; animation-delay: -3s; }
.chip-d { right: 11%; bottom: 12%; animation-delay: -4.5s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 860px) { .chip-c, .chip-d { display: none; } .chip-a { left: 4%; top: 6%; } .chip-b { right: 4%; top: auto; bottom: 10%; } }

/* Tela larga: texto à esquerda, palco à direita — o produto aparece na
   primeira dobra. Centralizado, o aparelho ficava inteiro abaixo dela. */
@media (min-width: 1100px) {
  .hero {
    display: grid; grid-template-columns: 1.25fr 1fr; align-items: center; column-gap: 20px;
    min-height: min(920px, 100svh); padding: 110px max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter))) 50px;
  }
  .hero-inner { text-align: left; max-width: none; padding: 0; margin: 0; }
  .hero-title { font-size: clamp(54px, 4.7vw, 70px); margin: 0 0 24px; }
  .lede { margin: 0 0 32px; max-width: 30em; }
  .actions { justify-content: flex-start; }
  .stage { height: 640px; margin: 0; }
  .tilt { width: min(540px, 40vw); }
  .rings { width: min(500px, 38vw); }
  .chip-a { left: 0; top: 14%; }
  .chip-b { right: 0; top: 28%; }
  .chip-c { left: 4%; bottom: 14%; }
  .chip-d { right: 2%; bottom: 7%; }
}
@media (max-width: 420px) { .chip { font-size: 12.5px; padding: 9px 12px; } }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 0 rgba(47,191,113,.55); animation: live 1.8s ease-out infinite; flex: none; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(47,191,113,.5); } 100% { box-shadow: 0 0 0 9px rgba(47,191,113,0); } }

/* ── Seções ──────────────────────────────────────────────────────────── */
.section { padding: clamp(84px, 12vw, 150px) 0; }
.section-tight { padding: clamp(72px, 9vw, 120px) 0; }
h2 { font-size: clamp(34px, 5.2vw, 66px); line-height: 1.02; letter-spacing: -.04em; font-weight: 800; margin: 0 0 20px; }
.eyebrow { display: inline-block; margin: 0 0 18px; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); }
.intro { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); max-width: 34em; margin: 0; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto clamp(40px, 6vw, 72px); }
.section-head .intro { margin: 0 auto; }
.body { font-size: 19px; color: var(--ink-soft); margin: 0; max-width: 30em; }

/* A ideia: o parágrafo acende palavra por palavra conforme a rolagem. */
.idea h2 { max-width: 13em; }
.big-text { margin: 28px 0 0; font-size: clamp(23px, 2.7vw, 36px); line-height: 1.34; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
/* Parte do cinza-texto (4,5:1 sobre o fundo), não de um cinza-claro: apagado,
   o parágrafo tinha contraste de 1,7:1 e reprovava na acessibilidade. */
.js [data-highlight] .w { color: var(--ink-soft); transition: color .35s ease; }
.js [data-highlight] .w.on { color: var(--ink); }

/* ── Como funciona: demonstração em loop ─────────────────────────────── */
.demo { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.demo-stage {
  position: relative; height: 560px; border-radius: 36px; overflow: hidden;
  background: radial-gradient(70% 60% at 50% 78%, #fff, transparent 70%), linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}
.demo-device { position: absolute; left: 50%; bottom: -18px; width: 260px; transform: translateX(-50%); }
.demo-device img { width: 100%; }
.burst { position: absolute; left: 50%; top: 50%; width: 170px; aspect-ratio: 1; margin: -85px 0 0 -85px; border-radius: 50%; border: 2px solid rgba(28,74,114,.35); opacity: 0; }
.demo.tap .burst { animation: burst 1.1s var(--ease-out) .42s; }
.demo.tap .burst.b2 { animation-delay: .6s; }
@keyframes burst { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(1.9); opacity: 0; } }

.phone {
  position: absolute; left: 50%; top: 16px; width: 188px; height: 378px; margin-left: -94px; border-radius: 40px; padding: 10px;
  background: linear-gradient(145deg, #2a3440, #0c1218); box-shadow: 0 30px 60px rgba(14,23,33,.28), inset 0 0 0 1.5px rgba(255,255,255,.08);
  transform: rotate(-4deg); transition: transform .8s var(--ease-out);
}
.demo[data-state="2"] .phone, .demo[data-state="3"] .phone { transform: rotate(0deg); }
.demo.tap .phone { animation: tap 1.2s var(--ease-out); }
/* O celular desce até o disco e volta: em repouso, os dois ficam à vista. */
@keyframes tap { 0% { translate: 0 0; } 38% { translate: 0 96px; } 52% { translate: 0 88px; } 100% { translate: 0 0; } }
.phone-island { position: absolute; left: 50%; top: 18px; width: 62px; height: 18px; margin-left: -31px; border-radius: 11px; background: #000; z-index: 3; }
.screen {
  position: absolute; inset: 10px; border-radius: 31px; padding: 50px 16px 18px; color: #eaf1f7; text-align: center;
  background: radial-gradient(120% 70% at 50% 0%, #1b2c3d, #0b131b 70%);
  opacity: 0; transform: scale(.96); filter: blur(6px); transition: opacity .6s ease, transform .6s var(--ease-out), filter .6s ease;
}
.demo[data-state="1"] .s1, .demo[data-state="2"] .s2, .demo[data-state="3"] .s3 { opacity: 1; transform: none; filter: none; }
.scr-title { margin: 0 0 18px; font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.scr-label { display: inline-flex; align-items: center; gap: 8px; margin: 22px 0 6px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #9fb4c8; }
.scr-timer { margin: 0; font-size: 28px; font-weight: 800; letter-spacing: -.01em; color: #fff; }
.scr-sub { margin: 6px 0 0; font-size: 13px; color: #8ea3b7; }
.scr-sub.strong { color: #fff; font-weight: 700; font-size: 15px; }

.app { position: relative; list-style: none; border-radius: 12px; aspect-ratio: 1; }
.app i { position: absolute; inset: 0; border-radius: inherit; }
.app i::after { content: ""; position: absolute; inset: 30%; border-radius: 30%; background: rgba(255,255,255,.9); }
.a1 i { background: linear-gradient(135deg, #ff7a59, #ffb347); }
.a2 i { background: linear-gradient(135deg, #7f5af0, #b388ff); }
.a3 i { background: linear-gradient(135deg, #ef4444, #f97316); }
.a3 i::after { inset: 32% 28% 32% 36%; border-radius: 3px; clip-path: polygon(0 0, 100% 50%, 0 100%); }
.a4 i { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.a4 i::after { border-radius: 50%; }
.a5 i { background: linear-gradient(135deg, #10b981, #84cc16); }
.a6 i { background: linear-gradient(135deg, #64748b, #94a3b8); }
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; padding: 0 4px; }
.tick { position: absolute; right: -5px; top: -5px; width: 20px; height: 20px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 2.5px #0f1a24;
  transform: scale(0); }
.tick::after { content: ""; position: absolute; left: 6px; top: 4px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.demo[data-state="1"] .tick { animation: pop .45s var(--ease-spring) forwards; }
.demo[data-state="1"] .a1 .tick { animation-delay: .5s; } .demo[data-state="1"] .a2 .tick { animation-delay: .85s; }
.demo[data-state="1"] .a3 .tick { animation-delay: 1.2s; } .demo[data-state="1"] .a4 .tick { animation-delay: 1.55s; }
.demo[data-state="1"] .a5 .tick { animation-delay: 1.9s; }
@keyframes pop { to { transform: scale(1); } }
.app-row { display: flex; justify-content: center; gap: 9px; margin: 26px 0 0; padding: 0; }
.app-row .app { width: 30px; filter: grayscale(1) brightness(.55); }
.app-row .app::after { content: ""; position: absolute; inset: 0; margin: auto; width: 12px; height: 12px; border-radius: 3px;
  background: #cfdbe6; clip-path: path("M2 6h8v5H2z M3.5 6V4a2.5 2.5 0 0 1 5 0v2h-1.4V4a1.1 1.1 0 0 0-2.2 0v2z"); }
.done-check { width: 72px; height: 72px; margin: 26px auto 16px; stroke: var(--live); stroke-width: 3; }
.done-check circle { stroke-dasharray: 160; stroke-dashoffset: 160; }
.done-check path { stroke-dasharray: 40; stroke-dashoffset: 40; }
.demo[data-state="3"] .done-check circle { animation: draw .7s var(--ease-out) .25s forwards; }
.demo[data-state="3"] .done-check path { animation: draw .45s var(--ease-out) .8s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.demo-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.demo-steps button {
  position: relative; display: flex; gap: 18px; width: 100%; text-align: left; padding: 22px 22px 24px; border: 0; border-radius: 22px; cursor: pointer; overflow: hidden;
  background: transparent; color: var(--ink); font: inherit; transition: background-color .4s ease, box-shadow .4s ease, opacity .4s ease; opacity: .55;
}
.demo-steps button:hover { opacity: .85; }
.demo-steps .num { flex: none; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-top); color: var(--accent); font-weight: 800; font-size: 15px; }
.demo-steps .txt { display: grid; gap: 4px; }
.demo-steps strong { font-size: 20px; letter-spacing: -.015em; }
.demo-steps .txt span { color: var(--ink-soft); font-size: 16px; }
.demo-steps .bar { position: absolute; left: 22px; right: 22px; bottom: 10px; height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; opacity: 0; }
.demo-steps .bar::after { content: ""; position: absolute; inset: 0; background: var(--accent-2); transform: scaleX(0); transform-origin: left; }
.demo[data-state="1"] [data-step="1"], .demo[data-state="2"] [data-step="2"], .demo[data-state="3"] [data-step="3"] { opacity: 1; background: var(--surface); box-shadow: var(--shadow); }
.demo[data-state="1"] [data-step="1"] .num, .demo[data-state="2"] [data-step="2"] .num, .demo[data-state="3"] [data-step="3"] .num { background: var(--accent); color: #fff; }
.demo.playing[data-state="1"] [data-step="1"] .bar, .demo.playing[data-state="2"] [data-step="2"] .bar, .demo.playing[data-state="3"] [data-step="3"] .bar { opacity: 1; }
.demo.playing[data-state="1"] [data-step="1"] .bar::after, .demo.playing[data-state="2"] [data-step="2"] .bar::after, .demo.playing[data-state="3"] [data-step="3"] .bar::after { animation: grow var(--step-ms, 4000ms) linear forwards; }
@keyframes grow { to { transform: scaleX(1); } }
@media (max-width: 900px) {
  .demo { grid-template-columns: 1fr; }
  .demo-stage { height: 470px; }
  .phone { transform: rotate(-4deg) scale(.86); transform-origin: top center; }
  .demo[data-state="2"] .phone, .demo[data-state="3"] .phone { transform: scale(.86); }
  .demo-device { width: 220px; bottom: -16px; }
}

/* ── Ímã: porta de geladeira ─────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.fridge { position: relative; }
.door {
  position: relative; height: 480px; border-radius: 34px; overflow: hidden;
  background: linear-gradient(100deg, #eef1f4 0%, #fbfcfd 38%, #eceff3 62%, #f7f8fa 100%);
  box-shadow: inset 0 0 0 1px rgba(22,32,43,.05), inset -30px 0 60px rgba(22,32,43,.04), var(--shadow);
}
.door::before { content: ""; position: absolute; left: 0; right: 0; top: 34%; height: 2px; background: linear-gradient(90deg, transparent, rgba(22,32,43,.08) 12%, rgba(22,32,43,.08) 88%, transparent); }
.handle { position: absolute; right: 34px; top: 12%; width: 14px; height: 76%; border-radius: 10px;
  background: linear-gradient(90deg, #b9c1c9, #f4f6f8 40%, #9aa4ae); box-shadow: 4px 6px 12px rgba(22,32,43,.18); }
.snap { position: absolute; left: 22%; top: 42%; width: 46%; transform: translate(-10%, -18%); }
.js-ready .fridge:not(.is-in) .snap { opacity: 0; transform: translate(60%, -40%) rotate(24deg) scale(.9); }
.fridge.is-in .snap { animation: snap 1.1s var(--ease-spring) .25s both; }
@keyframes snap { 0% { opacity: 0; transform: translate(60%, -40%) rotate(24deg) scale(.9); } 70% { opacity: 1; transform: translate(-12%, -18%) rotate(-2deg) scale(1.02); } 100% { opacity: 1; transform: translate(-10%, -18%); } }
.route { position: absolute; left: 24px; right: 24px; bottom: 22px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 20px; background: rgba(255,255,255,.72); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); }
.route .pin { font-size: 13px; font-weight: 800; color: var(--ink); }
.route .pin.to { color: var(--accent); }
.route .path { width: 100%; height: 32px; }
.route .path path { stroke: var(--accent-2); stroke-width: 2.2; stroke-dasharray: .02 .025; }
.route em { grid-column: 1 / -1; font-style: normal; font-size: 13px; color: var(--ink-soft); text-align: center; }
.fridge.is-in .route .path path { animation: walk 1.6s linear infinite; }
@keyframes walk { to { stroke-dashoffset: -.09; } }

/* ── O app: bento ────────────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { position: relative; overflow: hidden; background: var(--surface); border-radius: var(--radius); padding: 26px 26px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card.wide { grid-column: span 2; }
.card h3 { position: relative; margin: 0 0 6px; font-size: 19px; letter-spacing: -.015em; }
.card p { position: relative; margin: 0; color: var(--ink-soft); font-size: 15.5px; }
/* Luz que acompanha o cursor */
.spot::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(156,195,230,.22), transparent 60%); }
.spot:hover::before { opacity: 1; }
.mini { position: relative; height: 128px; margin-bottom: 18px; border-radius: 20px; background: linear-gradient(180deg, #f3f6f9, #e8eef4); display: flex; align-items: center; justify-content: center; gap: 16px; overflow: hidden; }
@media (max-width: 1000px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bento { grid-template-columns: 1fr; } .card.wide { grid-column: auto; } }

/* Rotinas: a semana acende, o horário brilha */
.week { display: flex; gap: 8px; }
.week span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; font-size: 12px; font-weight: 800; color: var(--ink-soft); background: #fff; box-shadow: var(--shadow-sm); animation: day 7s ease-in-out infinite; }
.week span:nth-child(1) { animation-delay: 0s; } .week span:nth-child(2) { animation-delay: .25s; } .week span:nth-child(3) { animation-delay: .5s; }
.week span:nth-child(4) { animation-delay: .75s; } .week span:nth-child(5) { animation-delay: 1s; }
.week span:nth-child(6), .week span:nth-child(7) { animation: none; opacity: .55; }
@keyframes day { 0%, 6% { background: #fff; color: var(--ink-soft); } 12%, 82% { background: var(--accent); color: #fff; } 90%, 100% { background: #fff; color: var(--ink-soft); } }
.slot { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 12px; background: #fff; font-size: 13px; font-weight: 800; color: var(--accent); box-shadow: var(--shadow-sm); overflow: hidden; }
.slot svg { width: 16px; height: 16px; }
.slot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 30%, rgba(156,195,230,.45), transparent 70%); transform: translateX(-100%); animation: sweep 3.5s ease-in-out 1s infinite; }
@keyframes sweep { 0%, 55% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@media (max-width: 420px) { .c-routine .mini { flex-direction: column; gap: 10px; } }

/* Limites: o anel enche e tranca */
.ring { width: 84px; height: 84px; transform: rotate(-90deg); }
.ring circle { stroke-width: 7; }
.ring .track { stroke: #dde5ed; }
.ring .fill { stroke: var(--accent); stroke-dasharray: 1; stroke-dashoffset: 1; animation: fillRing 5s var(--ease-out) infinite; }
@keyframes fillRing { 0% { stroke-dashoffset: 1; } 55%, 85% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 1; } }
.ring-lock { position: absolute; width: 26px; height: 26px; color: var(--accent); animation: lockIn 5s var(--ease-spring) infinite; }
@keyframes lockIn { 0%, 50% { transform: scale(0); opacity: 0; } 60%, 85% { transform: scale(1); opacity: 1; } 100% { transform: scale(0); opacity: 0; } }

/* Pausa: contagem regressiva */
.ring .drain { stroke: #e5a13a; stroke-dasharray: 1; stroke-dashoffset: 0; }
.count { position: absolute; font-size: 17px; font-weight: 800; color: var(--ink); }

/* Progresso: barras + sequência */
.bars { display: flex; align-items: flex-end; gap: 9px; height: 78px; }
.bars i { width: 16px; height: 100%; border-radius: 6px; background: linear-gradient(180deg, var(--accent-2), var(--accent)); transform-origin: bottom; transform: scaleY(var(--h)); }
.js-ready .c-progress:not(.is-in) .bars i { transform: scaleY(.04); }
.c-progress.is-in .bars i { animation: bar 1s var(--ease-out) both; }
.c-progress.is-in .bars i:nth-child(2) { animation-delay: .08s; } .c-progress.is-in .bars i:nth-child(3) { animation-delay: .16s; }
.c-progress.is-in .bars i:nth-child(4) { animation-delay: .24s; } .c-progress.is-in .bars i:nth-child(5) { animation-delay: .32s; }
.c-progress.is-in .bars i:nth-child(6) { animation-delay: .4s; } .c-progress.is-in .bars i:nth-child(7) { animation-delay: .48s; }
@keyframes bar { from { transform: scaleY(.04); } to { transform: scaleY(var(--h)); } }
.streak { display: grid; justify-items: start; line-height: 1; }
.streak b { font-size: 44px; font-weight: 800; letter-spacing: -.03em; color: var(--accent); }
.streak span { font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-top: 6px; }

/* Dynamic Island que abre */
.island { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 38px; border-radius: 22px; background: #000; color: #fff; font-size: 14px; font-weight: 800;
  width: 38px; overflow: hidden; white-space: nowrap; animation: island 6s var(--ease-out) infinite; }
.island b, .island .live-dot { opacity: 0; animation: islandIn 6s ease infinite; }
@keyframes island { 0%, 10% { width: 38px; } 24%, 82% { width: 150px; } 96%, 100% { width: 38px; } }
@keyframes islandIn { 0%, 18% { opacity: 0; } 28%, 78% { opacity: 1; } 88%, 100% { opacity: 0; } }

/* Vários aparelhos, uma conta */
.puck { width: 46px; height: 46px; border-radius: 50%; background: radial-gradient(circle at 34% 28%, #fff, #dfe6ee 72%); box-shadow: 0 6px 14px rgba(22,32,43,.16), inset 0 -2px 3px rgba(22,32,43,.08); }
.link { position: relative; width: 90px; height: 2px; background: repeating-linear-gradient(90deg, #b6c6d6 0 6px, transparent 6px 11px); }
.link i { position: absolute; top: -4px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(43,102,152,.15); animation: travel 2.6s ease-in-out infinite alternate; }
@keyframes travel { to { left: calc(100% - 10px); } }

/* ── Privacidade ─────────────────────────────────────────────────────── */
.dark { background: radial-gradient(60% 80% at 50% 0%, #1b2d40, var(--dark) 70%); color: #eaf1f7; }
.dark h2 { color: #fff; max-width: 14em; margin-left: auto; margin-right: auto; }
.dark .intro { color: #a6b5c4; margin: 0 auto; }
.dark a { color: #a9cdee; font-weight: 700; text-decoration: none; }
.dark a:hover { color: #d2e6f7; }
.link-row { margin: 26px 0 0; }
.shield { position: relative; display: grid; place-items: center; width: 84px; height: 84px; margin: 0 auto 28px; border-radius: 26px; color: #bfe0ff;
  background: linear-gradient(160deg, rgba(156,195,230,.22), rgba(156,195,230,.06)); box-shadow: inset 0 0 0 1px rgba(156,195,230,.25); }
.shield svg { width: 38px; height: 38px; }
.shield::after { content: ""; position: absolute; inset: -18px; border-radius: 40px; background: radial-gradient(closest-side, rgba(156,195,230,.35), transparent); animation: breathe 4s ease-in-out infinite; z-index: -1; }
@keyframes breathe { 0%, 100% { opacity: .35; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.08); } }

/* ── O aparelho ──────────────────────────────────────────────────────── */
.measure { position: relative; width: min(520px, 90%); margin: 0 auto; }
.dim { position: absolute; left: var(--dim-left, 19%); right: var(--dim-right, 19%); top: 6%; display: grid; justify-items: center; }
.dim-line { position: relative; width: 100%; height: 12px; }
.dim-line::before { content: ""; position: absolute; left: 0; right: 0; top: 5px; height: 1.5px; background: var(--accent-2); transform: scaleX(0); transition: transform 1s var(--ease-out) .3s; }
.dim-line::after { content: ""; position: absolute; inset: 0; border-left: 1.5px solid var(--accent-2); border-right: 1.5px solid var(--accent-2); opacity: 0; transition: opacity .4s ease .2s; }
.measure.is-in .dim-line::before { transform: scaleX(1); }
.measure.is-in .dim-line::after { opacity: 1; }
.dim-label { margin-top: -38px; padding: 6px 12px; border-radius: 10px; background: #fff; box-shadow: var(--shadow-sm); font-size: 14px; font-weight: 800; color: var(--accent); opacity: 0; transform: translateY(6px); transition: opacity .6s ease 1s, transform .6s var(--ease-out) 1s; }
.measure.is-in .dim-label { opacity: 1; transform: none; }
.js-ready .measure:not(.is-in) .dim-line::before { transform: scaleX(0); }

.specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 56px 0 0; }
/* O ícone mora dentro do <dt> (HTML válido) e é posicionado à esquerda. */
.spec { position: relative; padding: 18px 20px 18px 60px; background: var(--surface); border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.spec svg { position: absolute; left: 20px; top: 50%; width: 26px; height: 26px; margin-top: -13px; color: var(--accent); }
.spec dt { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.spec dd { margin: 2px 0 0; font-weight: 700; font-size: 15.5px; }
@media (max-width: 1000px) { .specs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .specs { grid-template-columns: 1fr; } }
.compat { max-width: 760px; margin: 28px auto 0; }
.compat summary { cursor: pointer; list-style: none; text-align: center; font-weight: 700; color: var(--accent); }
.compat summary::-webkit-details-marker { display: none; }
.compat summary::after { content: " +"; }
.compat[open] summary::after { content: " –"; }
.compat p { margin: 14px 0 0; color: var(--ink-soft); text-align: center; font-size: 15px; }

/* ── Comprar: cartão com borda viva ──────────────────────────────────── */
.price-card {
  position: relative; display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 24px;
  padding: clamp(30px, 5vw, 70px); border-radius: 40px; isolation: isolate;
  background: radial-gradient(70% 90% at 80% 50%, #fff, transparent 70%), linear-gradient(160deg, #eef3f8, var(--bg-top) 60%, var(--bg-bottom));
  box-shadow: var(--shadow);
}
.price-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; z-index: -1;
  background: conic-gradient(from var(--angle), rgba(43,102,152,.0), rgba(43,102,152,.55), rgba(156,195,230,.9), rgba(43,102,152,.0) 40%, rgba(43,102,152,.0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude;
  animation: spin 7s linear infinite;
}
@keyframes spin { to { --angle: 360deg; } }
.price-card h2 { font-size: clamp(32px, 4.2vw, 54px); }
.price { margin: 6px 0 18px; font-size: clamp(44px, 5.4vw, 68px); font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--accent); }
.ticks { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; font-weight: 600; color: var(--ink-2); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); }
.ticks li::after { content: ""; position: absolute; left: 7px; top: 7px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.note { margin: 16px 0 0; font-size: 14px; color: var(--ink-soft); max-width: 26em; }
.price-was { display: block; margin-bottom: 8px; font-size: .38em; font-weight: 700; letter-spacing: -.01em; color: var(--ink-soft); text-decoration: line-through; }
.price-coupon { margin: -8px 0 20px; font-size: 14px; font-weight: 700; color: #1f9d5c; }
.price-coupon b { font-weight: 800; }
.checkout-error { margin: 14px 0 0; max-width: 28em; padding: 11px 15px; border-radius: 14px; font-size: 14px; color: #7a4310; background: #fff3e2; }
.checkout-error a { color: inherit; font-weight: 700; }
.btn[aria-busy="true"] { opacity: .85; cursor: progress; }
@media (max-width: 860px) { .checkout-error { margin-left: auto; margin-right: auto; } }

/* Aviso de cupom guardado (link de influenciador) */
.coupon-bar {
  position: fixed; left: 50%; top: 84px; z-index: 55; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 12px; max-width: calc(100% - 24px); padding: 8px 8px 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.95); box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px) saturate(170%); backdrop-filter: blur(16px) saturate(170%);
  font-size: 14px; font-weight: 600; color: var(--ink-2); animation: barIn .7s var(--ease-out) .9s both;
}
/* Animação própria: a genérica (fadeUp) termina em transform: none e apagava
   o translateX(-50%) que centraliza a barra. */
@keyframes barIn { from { opacity: 0; transform: translate(-50%, -10px); } to { opacity: 1; transform: translate(-50%, 0); } }
.coupon-bar[hidden] { display: none; }
.coupon-bar b { color: var(--accent); font-weight: 800; }
.coupon-dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--live); }
.coupon-bar button { flex: none; border: 0; border-radius: 999px; padding: 8px 14px; background: var(--accent); color: #fff; font: 700 13px/1 "Manrope", sans-serif; cursor: pointer; }
@media (max-width: 560px) { .coupon-bar { top: auto; bottom: 14px; font-size: 13px; } }
.price-art { position: relative; aspect-ratio: 1; }
.price-art .device { position: relative; width: 100%; }
.rings.small { width: 90%; }
@media (max-width: 860px) { .price-card { grid-template-columns: 1fr; text-align: center; } .price-card .ticks { justify-items: center; } .price-card .note { margin-left: auto; margin-right: auto; } .price-art { max-width: 360px; margin: 0 auto; order: -1; } }

/* ── Dúvidas ─────────────────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 48px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; position: relative; padding: 24px 48px 24px 0; font-weight: 700; font-size: 19px; letter-spacing: -.01em; transition: color .2s ease; }
.faq summary:hover { color: var(--accent); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 16px; height: 2px; margin-top: -1px; border-radius: 2px; background: var(--ink-soft); transition: transform .4s var(--ease-out); }
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0deg); }
.faq .acc p { margin: 0 0 24px; color: var(--ink-soft); max-width: 42em; font-size: 17px; }
.acc { overflow: hidden; }

/* ── Fechamento ──────────────────────────────────────────────────────── */
.final { position: relative; overflow: hidden; padding: clamp(110px, 16vw, 200px) 0; background: linear-gradient(180deg, var(--page), var(--bg-top) 50%, var(--bg-bottom)); }
.final .rings.wide { width: min(900px, 140vw); }
.final-title { position: relative; font-size: clamp(40px, 6.6vw, 92px); letter-spacing: -.045em; line-height: 1; max-width: 12em; margin: 0 auto 38px; }
.final-title span { display: block; background: linear-gradient(90deg, var(--accent), var(--accent-2), #5f95c4); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── Rodapé ──────────────────────────────────────────────────────────── */
.footer { padding: 64px 0 72px; font-size: 14px; color: var(--ink-soft); background: var(--page); }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 28px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.footer nav { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.footer nav a { color: var(--ink); text-decoration: none; font-weight: 600; }
.footer nav a:hover { color: var(--accent); }
.legal { margin: 4px 0; }
.legal a { color: inherit; }

/* ── Entrada ao rolar — nunca deixa conteúdo escondido (ver site.js) ── */
.js-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.js-ready .reveal.is-in { opacity: 1; transform: none; }
.js-ready .bento .reveal:nth-child(2), .js-ready .specs .reveal:nth-child(2) { transition-delay: .08s; }
.js-ready .bento .reveal:nth-child(3), .js-ready .specs .reveal:nth-child(3) { transition-delay: .16s; }
.js-ready .bento .reveal:nth-child(4), .js-ready .specs .reveal:nth-child(4) { transition-delay: .24s; }
.js-ready .bento .reveal:nth-child(5), .js-ready .specs .reveal:nth-child(5) { transition-delay: .08s; }
.js-ready .bento .reveal:nth-child(6), .js-ready .specs .reveal:nth-child(6) { transition-delay: .16s; }
.js-ready .specs .reveal:nth-child(7) { transition-delay: .24s; }

/* Loops param fora da tela (economia de bateria no celular). */
.is-off *, .is-off::before, .is-off::after { animation-play-state: paused !important; }

/* ── Movimento reduzido: tudo parado, tudo visível ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-split] .w, .js .intro-in, .js-ready .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .rings span { opacity: .35; transform: scale(.8); }
  .rings span:nth-child(2) { transform: scale(1); opacity: .2; }
  .rings span:nth-child(3) { display: none; }
  .ring .fill { stroke-dashoffset: .25; }
  .ring-lock, .island b, .island .live-dot { opacity: 1; transform: none; }
  .island { width: 150px; }
  .js-ready .fridge .snap { opacity: 1; transform: translate(-10%, -18%); }
  .js-ready .c-progress .bars i { transform: scaleY(var(--h)); }
  .dim-line::before { transform: scaleX(1) !important; } .dim-line::after, .dim-label { opacity: 1 !important; transform: none !important; }
  .screen { transition: none; }
}

/* ── Páginas de texto (suporte, privacidade, termos, trocas) ─────────── */
.doc { max-width: 780px; margin: 0 auto; padding: 150px var(--gutter) 40px; }
.doc h1 { font-size: clamp(38px, 5.4vw, 60px); letter-spacing: -.04em; line-height: 1.04; margin: 0 0 14px; }
.doc h2 { font-size: 26px; letter-spacing: -.02em; margin: 52px 0 12px; }
.doc h3 { font-size: 19px; margin: 32px 0 8px; }
.doc p, .doc li { color: #2c3a48; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin: 6px 0; }
.doc hr { border: 0; border-top: 1px solid var(--line); margin: 44px 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 16px 0 8px; font-size: 15px; }
.doc th, .doc td { text-align: left; vertical-align: top; padding: 12px 12px 12px 0; border-bottom: 1px solid var(--line); }
.doc th { font-weight: 700; color: var(--ink); }
.doc td:first-child { font-weight: 600; white-space: nowrap; }
@media (max-width: 620px) { .doc td:first-child { white-space: normal; } .doc table { font-size: 14px; } }

/* Pendência de conteúdo — amarelo no rascunho; o build de publicação recusa. */
.todo { background: #fff2b3; color: #5c4700; border-radius: 4px; padding: 0 4px; font-weight: 600; }
