/* ══════════════════════════════════════════════════════════════
   relanceapp.com — página de vendas

   Mesma identidade do app: bone sobre preto quente, e a única cor é
   a letra focal em vermelhão. Jost no chrome, Bitter nas serifas,
   Atkinson na palavra que passa, Plex Mono na telemetria.
   ══════════════════════════════════════════════════════════════ */

@font-face { font-family:'Atkinson Hyperlegible'; font-weight:400; font-display:swap; src:url('fonts/atkinson-400.woff2') format('woff2'); }
@font-face { font-family:'Bitter'; font-weight:400; font-display:swap; src:url('fonts/bitter-400.woff2') format('woff2'); }
@font-face { font-family:'Jost'; font-weight:400; font-display:swap; src:url('fonts/jost-400.woff2') format('woff2'); }
@font-face { font-family:'Jost'; font-weight:500; font-display:swap; src:url('fonts/jost-500.woff2') format('woff2'); }
@font-face { font-family:'IBM Plex Mono'; font-weight:400; font-display:swap; src:url('fonts/plexmono-400.woff2') format('woff2'); }

:root {
  --ink:        #0c0b0a;
  --ink-lift:   #141210;
  --ink-edge:   #1e1b18;
  --bone:       #e9e3d6;
  --bone-soft:  #b3ab9c;
  --bone-dim:   #6d665b;
  --bone-ghost: #3a352e;
  --focal:      #e5502b;

  --display: 'Jost', 'Futura', 'Avenir Next', sans-serif;
  --serif:   'Bitter', Georgia, serif;
  --read:    'Atkinson Hyperlegible', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;

  --hair: 1px solid rgba(233,227,214,0.11);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(20px, 5vw, 80px);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; }
.dim  { color: var(--bone-dim); }

a { color: inherit; text-decoration: none; }

/* ─── atmosfera ─────────────────────────────────────────── */

.grain {
  position: fixed; inset: 0; z-index: 900; pointer-events: none;
  /* ponytail: screen, não overlay — sobre preto (#0c0b0a) o overlay some. */
  opacity: 0.05; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  position: fixed; inset: 0; z-index: 899; pointer-events: none;
  background: radial-gradient(ellipse 120% 80% at 50% 30%, transparent 55%, rgba(0,0,0,0.4) 100%);
}

/* ─── marca ─────────────────────────────────────────────── */

.wordmark {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; letter-spacing: 0.16em; text-transform: lowercase;
  color: var(--bone);
}
.wordmark span { color: var(--focal); }
.wordmark.small { font-size: 18px; }

/* ─── nav ───────────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 16px var(--pad);
  background: rgba(12,11,10,0.72);
  backdrop-filter: blur(12px);
  border-bottom: var(--hair);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bone-soft);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--bone); border-bottom-color: var(--focal); }
@media (max-width: 720px) { .nav-links { display: none; } }

.nav-cta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 18px; background: var(--bone); color: var(--ink);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--focal); }

/* ─── herói ─────────────────────────────────────────────── */

.hero {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(48px, 9vh, 120px) var(--pad) clamp(60px, 10vh, 130px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }

.kicker { color: var(--focal); text-transform: uppercase; margin-bottom: 22px; }

.hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(44px, 8vw, 92px); line-height: 0.98;
  letter-spacing: -0.02em; margin-bottom: 26px;
}
.lede {
  font-family: var(--serif); font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65; color: var(--bone-soft); max-width: 44ch; margin-bottom: 34px;
}
.lede b { color: var(--bone); font-weight: 400; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { color: var(--bone-dim); }

.btn-solid {
  display: inline-block; padding: 15px 28px;
  background: var(--bone); color: var(--ink);
  font-family: var(--display); font-weight: 500; font-size: 15px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s var(--ease);
}
.btn-solid:hover { background: var(--focal); transform: translateY(-2px); }
.btn-line {
  display: inline-block; padding: 15px 26px;
  border: 1px solid rgba(233,227,214,0.22); color: var(--bone);
  font-family: var(--display); font-weight: 500; font-size: 15px; letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s, transform 0.15s var(--ease);
}
.btn-line:hover { border-color: var(--focal); color: var(--focal); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block; padding: 15px 28px;
  border: var(--hair); color: var(--bone);
  font-family: var(--display); font-weight: 500; font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--focal); }
.btn-block { display: block; text-align: center; }

/* ─── palco do herói ────────────────────────────────────── */

.hero-stage {
  position: relative;
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(120% 90% at 50% 42%, rgba(229,80,43,0.08), transparent 55%),
    radial-gradient(circle at 50% 45%, #1a1612, #050403 72%);
  border: var(--hair);
  border-radius: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 40px 120px -40px rgba(0,0,0,0.9), inset 0 1px 0 rgba(233,227,214,0.05);
}
.hero-stage .tick { width: 1px; background: rgba(233,227,214,0.22); }
.hero-stage .tick-t { height: 48px; margin-bottom: 10px; }
.hero-stage .tick-b { height: 48px; margin-top: 10px; }

.rail-wrap { position: relative; width: 100%; height: 130px; display: flex; align-items: center; }
.rail {
  position: absolute; left: 50%; top: 50%;
  display: flex; align-items: baseline; white-space: pre;
  font-family: var(--read); font-size: clamp(52px, 8vw, 94px);
  transform: translate(-50%, -50%);
}
.rail .orp { color: var(--focal); }

.stage-foot {
  position: absolute; bottom: 18px; left: 0; right: 0;
  text-align: center; color: var(--bone-ghost);
}

/* ─── faixas ────────────────────────────────────────────── */

.band {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(60px, 10vh, 130px) var(--pad);
  border-top: var(--hair);
}
.band-head { max-width: 60ch; margin-bottom: 56px; }
.band-head h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 4.5vw, 52px); line-height: 1.05;
  letter-spacing: -0.015em; margin-bottom: 20px;
}
.band-head p {
  font-family: var(--serif); font-size: clamp(15px, 1.8vw, 18px);
  color: var(--bone-soft); line-height: 1.65;
}
.band-head p b { color: var(--bone); font-weight: 400; }
.band-head p i { font-style: italic; color: var(--bone); }

/* três colunas do conceito */
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 820px) { .three { grid-template-columns: 1fr; gap: 34px; } }
.three .num { color: var(--bone-ghost); display: block; margin-bottom: 16px; }
.three h3 { font-family: var(--display); font-weight: 500; font-size: 20px; margin-bottom: 12px; }
.three p { color: var(--bone-soft); font-size: 15.5px; line-height: 1.6; }

/* ─── "sound familiar?" (feel seen) ─────────────────────────── */
.seen-band {
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(229,80,43,0.10), transparent 60%),
    var(--ink-lift);
  border-top: var(--hair); border-bottom: var(--hair);
}
.seen-inner { max-width: 680px; margin: 0 auto; }
.seen-h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 5vw, 46px); line-height: 1.02;
  text-align: center; margin-bottom: 40px;
}
.seen-list { list-style: none; margin: 0 0 36px; padding: 0; }
.seen-list li {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--read); font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.4; color: var(--bone);
  padding: 20px 4px; border-bottom: var(--hair);
}
.seen-list li:first-child { border-top: var(--hair); }
.seen-mark {
  flex: none; width: 15px; height: 15px; position: relative; top: 4px;
}
/* check vermelho desenhado */
.seen-mark::before {
  content: ""; position: absolute; left: 1px; top: 2px;
  width: 9px; height: 5px; border-left: 2.5px solid var(--focal);
  border-bottom: 2.5px solid var(--focal); transform: rotate(-45deg);
}
.seen-foot {
  font-family: var(--serif); font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.6; color: var(--bone-soft); text-align: center;
  max-width: 34ch; margin: 0 auto;
}
.seen-foot b { color: var(--focal); font-weight: 400; }

/* ─── notch ─────────────────────────────────────────────── */

.notch-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 900px) { .notch-band { grid-template-columns: 1fr; } }
.notch-copy h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 4.5vw, 52px); line-height: 1.05; margin: 14px 0 20px;
  letter-spacing: -0.015em;
}
.notch-copy p {
  font-family: var(--serif); color: var(--bone-soft);
  font-size: 16px; line-height: 1.65; margin-bottom: 16px; max-width: 46ch;
}

.ticks { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.ticks li {
  position: relative; padding-left: 22px;
  font-family: var(--mono); font-size: 12px; color: var(--bone-soft); letter-spacing: 0.03em;
}
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 6px; height: 6px; background: var(--focal);
}

/* mock do notch: barra de menus + peça preta descendo */
.notch-demo {
  position: relative; height: 260px; border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, #2a2622, #17140f);
  border: var(--hair);
  display: flex; justify-content: center;
}
.notch-vid { width: 100%; height: 100%; object-fit: cover; display: block; }
.notch-demo .menubar {
  position: absolute; top: 0; left: 0; right: 0; height: 26px;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(233,227,214,0.06);
}
.dock-piece {
  position: relative; margin-top: 0; width: 300px; height: 84px;
  background: #000; border-radius: 0 0 16px 16px;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 14px;
}
.dock-piece .camera {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: #0a0a0a; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.dock-piece .strip .rail {
  position: static; transform: none;
  font-family: var(--read); font-size: 26px;
}
.dock-piece .strip .orp { color: var(--focal); }

/* ─── recursos ──────────────────────────────────────────── */

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(233,227,214,0.09); border: var(--hair); }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }
.grid article { background: var(--ink); padding: 32px; }
.grid h3 { font-family: var(--display); font-weight: 500; font-size: 18px; margin-bottom: 10px; }
.grid p { color: var(--bone-soft); font-size: 15px; line-height: 1.6; }

/* ─── preço ─────────────────────────────────────────────── */

.price-band .band-head { text-align: center; margin-left: auto; margin-right: auto; }

/* ─── 3 planos ─────────────────────────────────────────────── */
.plan-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 860px; margin: 8px auto 0; align-items: stretch;
}
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--ink-lift); border: var(--hair); border-radius: 16px;
  padding: 30px 26px; text-align: center;
}
.plan-feat { border-color: rgba(229,80,43,0.5); background: var(--ink-edge); }
.plan-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--focal); color: #120a07; padding: 4px 12px; border-radius: 20px;
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.plan-badge:empty { display: none; }
.plan-name { color: var(--focal); text-transform: uppercase; margin-bottom: 14px; font-size: 12px; }
.plan-price { font-family: var(--display); font-weight: 500; line-height: 1; margin-bottom: 10px; }
.plan-num { font-size: 40px; letter-spacing: -.01em; }
.plan-sub { font-size: 14px; color: var(--bone-dim); }
.plan-note { color: var(--bone-soft); font-size: 13px; line-height: 1.4; margin-bottom: 24px; min-height: 36px; }
.plan .btn-block { margin-top: auto; }
.plan-ticks { text-align: left; max-width: 340px; margin: 34px auto 0; }
.price-fine { color: var(--bone-ghost); margin-top: 18px; text-align: center; }
@media (max-width: 720px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 380px; gap: 22px; }
  .plan-note { min-height: 0; }
}

/* ═══════════ LANDING (copy longa, dark premium) ═══════════ */
.hero-lp { max-width: 940px; margin: 0 auto; text-align: center; padding: 64px var(--pad) 34px; }
.overline { color: var(--focal); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; margin-bottom: 22px; }
.lp-h1 { font-family: var(--display); font-weight: 500; font-size: clamp(38px,6vw,66px); line-height: 1.05; letter-spacing: -.01em; max-width: 17ch; margin: 0 auto 26px; }
.lp-sub { font-family: var(--serif); font-size: clamp(19px,2.4vw,24px); line-height: 1.5; color: var(--bone); max-width: 46ch; margin: 0 auto 20px; }
.lp-lede { color: var(--bone-soft); font-size: 17px; line-height: 1.7; max-width: 48ch; margin: 0 auto 30px; }
.hero-lp .hero-actions { justify-content: center; }

.prose-band .prose { max-width: 640px; margin: 0 auto; }
.prose h2 { font-family: var(--display); font-weight: 500; font-size: clamp(26px,4vw,40px); margin-bottom: 24px; line-height: 1.1; }
.prose p { font-family: var(--serif); font-size: 19px; line-height: 1.75; color: var(--bone-soft); margin-bottom: 18px; }
.prose .prose-strong { color: var(--bone); font-size: 20px; }

.culpa-band .band-head { text-align: center; margin-left: auto; margin-right: auto; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stat { background: var(--ink-lift); border: var(--hair); border-radius: 16px; padding: 28px; }
.stat-num { font-family: var(--display); font-weight: 500; font-size: clamp(38px,5.5vw,58px); color: var(--focal); line-height: 1; display: block; margin-bottom: 16px; }
.stat-num small { font-size: .40em; color: var(--bone-dim); font-weight: 400; margin-left: 2px; }
.stat-txt { color: var(--bone-soft); font-size: 15.5px; line-height: 1.6; margin-bottom: 14px; }
.stat-cite { color: var(--bone-dim); font-size: 12px; }
.culpa-close { max-width: 640px; margin: 44px auto 0; font-family: var(--serif); font-size: 19px; line-height: 1.75; color: var(--bone-soft); text-align: center; }
.mid-cta { text-align: center; margin-top: 36px; }

.tried { list-style: none; max-width: 720px; margin: 0 auto; padding: 0; }
.tried li { border-bottom: var(--hair); padding: 22px 0; color: var(--bone-soft); font-size: 17px; line-height: 1.6; }
.tried li:first-child { border-top: var(--hair); }
.tried li b { color: var(--bone); font-weight: 500; font-family: var(--display); }
.tried-close { max-width: 720px; margin: 30px auto 0; text-align: center; font-family: var(--serif); font-size: 20px; color: var(--bone); }
.tried-close i { color: var(--focal); font-style: italic; }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.two article { background: var(--ink-lift); border: var(--hair); border-radius: 16px; padding: 30px; }
.two h3 { font-family: var(--display); font-weight: 500; font-size: 22px; margin-bottom: 12px; color: var(--bone); }
.two p { color: var(--bone-soft); font-size: 16px; line-height: 1.65; }

.notch-why { margin-top: 22px; color: var(--bone-soft); font-size: 16px; line-height: 1.65; }
.notch-why b { color: var(--bone); }

.demo-compare { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.demo-plain { font-family: var(--read); font-size: 19px; line-height: 1.7; color: var(--bone-soft); background: var(--ink-lift); border: var(--hair); border-radius: 16px; padding: 28px; }
.demo-band .hero-stage { width: 100%; margin: 0; }
/* botão de play do demo */
.stage-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: none; border: none; cursor: pointer; z-index: 3;
  transition: opacity .25s var(--ease), transform .2s var(--ease);
}
.stage-play svg {
  width: 34px; height: 34px; padding: 22px 20px 22px 24px; box-sizing: content-box;
  background: var(--focal); color: #120a07; border-radius: 50%;
  box-shadow: 0 14px 36px -10px rgba(229,80,43,.65);
}
.stage-play-t { color: var(--bone-soft); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.stage-play:hover { transform: translate(-50%,-50%) scale(1.06); }
.hero-stage.playing .stage-play { opacity: 0; pointer-events: none; }
.demo-close { max-width: 640px; margin: 34px auto 0; text-align: center; font-family: var(--serif); font-size: 19px; color: var(--bone-soft); }

.timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 940px; margin: 0 auto; }
.tl { border-top: 3px solid var(--focal); padding-top: 22px; }
.tl-when { color: var(--focal); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: 12px; }
.tl p { color: var(--bone-soft); font-size: 16px; line-height: 1.65; }

.price-anchor { max-width: 620px; margin: 34px auto 0; text-align: center; color: var(--bone-soft); font-size: 15px; line-height: 1.65; }
.price-anchor b { color: var(--bone); font-weight: 500; }
.close-band { text-align: center; }
.close-copy { max-width: 640px; margin: 0 auto; font-family: var(--serif); font-size: clamp(20px,3vw,26px); line-height: 1.6; color: var(--bone); }

@media (max-width: 820px) {
  .stats, .two, .timeline { grid-template-columns: 1fr; }
}

/* ─── download ──────────────────────────────────────────── */

.download-band { text-align: center; }
.download-band h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px;
}
.download-band > p {
  font-family: var(--serif); color: var(--bone-soft); margin-bottom: 30px;
}
.download-band .hero-note { margin-top: 18px; }

/* ─── rodapé ────────────────────────────────────────────── */

.foot {
  max-width: var(--max); margin: 0 auto;
  padding: 40px var(--pad) 60px;
  border-top: var(--hair);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.foot-mark p { color: var(--bone-dim); margin-top: 4px; }
.foot a { color: var(--bone-soft); border-bottom: 1px solid var(--bone-ghost); }
.foot a:hover { color: var(--focal); }

/* ─── reveal ────────────────────────────────────────────── */

.band, .hero-copy, .hero-stage { animation: rise 0.8s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ─── troca de idioma ───────────────────────────────────────── */

.nav-right { display: flex; align-items: center; gap: 14px; }
.lang {
  background: none; border: var(--hair); cursor: pointer;
  color: var(--bone-soft);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  padding: 8px 12px;
  transition: color 0.2s, border-color 0.2s;
}
.lang:hover { color: var(--bone); border-color: var(--focal); }

.price-per { font-size: 20px; color: var(--bone-dim); font-weight: 400; }

/* ─── login ─────────────────────────────────────────────────── */

.login-backdrop {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(6,5,5,0.8); backdrop-filter: blur(4px);
  animation: fade 0.25s var(--ease);
}
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
.login-modal {
  position: fixed; z-index: 951; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(400px, 92vw);
  background: var(--ink-lift); border: var(--hair); border-radius: 18px;
  padding: 34px 32px;
  animation: riseCenter 0.35s var(--ease);
}
/* mantém o translate de centralização durante a animação (senão pula do canto pro centro) */
@keyframes riseCenter {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 16px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.login-modal h3 { font-family: var(--display); font-weight: 500; font-size: 19px; margin-bottom: 18px; }
.login-modal h3 b { color: var(--focal); font-weight: 500; }
.login-x {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--bone-ghost); cursor: pointer; font-size: 14px;
}
.login-x:hover { color: var(--focal); }
.login-input {
  width: 100%; padding: 14px; margin-bottom: 14px;
  background: var(--ink); border: var(--hair); border-radius: 8px;
  color: var(--bone); font-family: var(--mono); font-size: 16px; letter-spacing: 0.04em;
}
.login-input:focus { outline: none; border-color: var(--focal); }
#login-code { text-align: center; font-size: 26px; letter-spacing: 0.4em; }
.login-fine { color: var(--bone-dim); font-family: var(--mono); font-size: 11px; margin-top: 12px; }
.login-terms { color: var(--bone-ghost); font-family: var(--mono); font-size: 9.5px; line-height: 1.5; margin-top: 5px; }
.login-terms a { color: var(--bone-dim); text-decoration: underline; }
.login-terms a:hover { color: var(--focal); }
.login-link { background: none; border: none; color: var(--bone-dim); cursor: pointer;
  font-family: var(--mono); font-size: 11px; margin-top: 14px; }
.login-link:hover { color: var(--bone); }
.login-msg { margin-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--focal); }

/* ─── sign in na nav + idioma minimalista no rodapé ─────────── */
.nav-signin {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bone-soft);
  padding-bottom: 2px; border-bottom: 1px solid transparent; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.nav-signin:hover { color: var(--bone); border-bottom-color: var(--focal); }
.lang-min {
  background: none; border: none; cursor: pointer;
  color: var(--bone-ghost); font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; padding: 4px; transition: color 0.2s;
}
.lang-min:hover { color: var(--focal); }
