/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --fundo:          #211B15;
  --verde:          #335336;
  --dourado:        #D4AF37;
  --dourado-claro:  #E1C16E;
  --texto:          #EAEAEA;
  --texto-fraco:    rgba(234,234,234,0.6);
  --verde-hover:    #243B26;
  --card-bg:        rgba(255,255,255,0.04);
  --card-borda:     rgba(212,175,55,0.2);
  --radius:         12px;
  --radius-lg:      20px;
  --max-w:          1080px;
  --font:           -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Helvetica Neue', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--fundo);
  color: var(--texto);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--dourado); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header / Nav ────────────────────────────────────────────────────────── */
.site-header {
  background: var(--verde);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.logo-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--dourado-claro);
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}
.logo-name span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--texto-fraco);
  text-transform: none;
  letter-spacing: 0;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  color: var(--texto-fraco);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { color: var(--dourado-claro); background: rgba(212,175,55,0.1); text-decoration: none; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--verde);
  padding: 48px 20px 56px;
  text-align: center;
}
.hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--dourado-claro);
  line-height: 1.15;
  text-wrap: balance;
  margin-bottom: 12px;
}
.hero p {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--texto-fraco);
  margin-bottom: 32px;
}

/* ── Play Store Badge ────────────────────────────────────────────────────── */
.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  user-select: none;
}
.btn-playstore:hover { background: #1a1a1a; border-color: rgba(255,255,255,0.3); text-decoration: none; transform: translateY(-1px); }
.btn-playstore-text { text-align: left; }
.btn-playstore-text .sub { font-size: 10px; color: rgba(255,255,255,0.7); display: block; line-height: 1; margin-bottom: 2px; }
.btn-playstore-text .main { font-size: 18px; font-weight: 700; line-height: 1.2; display: block; }

/* ── Section wrapper ─────────────────────────────────────────────────────── */
.section {
  padding: 64px 20px;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: var(--dourado-claro);
  text-wrap: balance;
  margin-bottom: 40px;
  line-height: 1.2;
}
.section.bg-verde {
  background: var(--verde);
}

/* ── 3-col benefits grid ─────────────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-borda);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}
.card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dourado-claro);
  margin-bottom: 8px;
}
.card p {
  font-size: 14px;
  color: var(--texto-fraco);
  line-height: 1.6;
}

/* ── 4-col profiles ──────────────────────────────────────────────────────── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.profile-card {
  background: var(--card-bg);
  border: 1px solid var(--card-borda);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.profile-card .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dourado);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 12px;
}
.profile-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 8px;
}
.profile-card p {
  font-size: 13px;
  color: var(--texto-fraco);
  line-height: 1.55;
}

/* ── CTA banner ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--verde);
  padding: 56px 20px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 800;
  color: var(--dourado-claro);
  margin-bottom: 12px;
  text-wrap: balance;
}
.cta-banner p {
  color: var(--texto-fraco);
  margin-bottom: 28px;
  font-size: 15px;
}

/* ── Steps list ──────────────────────────────────────────────────────────── */
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dourado);
  color: var(--fundo);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.steps li p {
  font-size: 15px;
  color: var(--texto);
  line-height: 1.55;
}
.steps li strong { color: var(--dourado-claro); }

/* ── Roadmap ─────────────────────────────────────────────────────────────── */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.roadmap-card {
  background: var(--card-bg);
  border: 1px solid var(--card-borda);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.roadmap-card .badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 12px;
}
.badge-em-breve   { background: rgba(212,175,55,0.15); color: var(--dourado); border: 1px solid rgba(212,175,55,0.3); }
.badge-proxima    { background: rgba(51,83,54,0.5);    color: #7ec880;         border: 1px solid rgba(126,200,128,0.3); }
.badge-futuro     { background: rgba(255,255,255,0.06); color: var(--texto-fraco); border: 1px solid rgba(255,255,255,0.1); }
.roadmap-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 8px;
}
.roadmap-card p {
  font-size: 13px;
  color: var(--texto-fraco);
  line-height: 1.55;
}
.roadmap-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--texto-fraco);
  font-style: italic;
}

/* ── Privacy / Legal pages ───────────────────────────────────────────────── */
.legal-header {
  background: var(--verde);
  padding: 48px 20px;
}
.legal-header-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-header h1 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  color: var(--dourado-claro);
  margin-bottom: 8px;
  line-height: 1.15;
}
.legal-header .meta {
  font-size: 13px;
  color: var(--texto-fraco);
}
.legal-body {
  padding: 48px 20px;
}
.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-inner h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dourado-claro);
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.legal-inner h2:first-of-type { margin-top: 0; border-top: none; }
.legal-inner h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--texto);
  margin: 20px 0 8px;
}
.legal-inner p {
  font-size: 15px;
  color: var(--texto-fraco);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-inner ul, .legal-inner ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-inner li {
  font-size: 15px;
  color: var(--texto-fraco);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-inner strong { color: var(--texto); }
.legal-crosslink {
  margin-top: 48px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-borda);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--texto-fraco);
}
.legal-crosslink a { color: var(--dourado); font-weight: 600; }

/* ── Deletion page ───────────────────────────────────────────────────────── */
.deletion-info {
  background: var(--card-bg);
  border: 1px solid var(--card-borda);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 32px;
}
.deletion-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dourado-claro);
  margin-bottom: 12px;
}
.deletion-info ul {
  padding-left: 18px;
}
.deletion-info li {
  font-size: 14px;
  color: var(--texto-fraco);
  margin-bottom: 8px;
  line-height: 1.6;
}
.btn-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dourado);
  color: var(--fundo);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-form:hover { background: var(--dourado-claro); text-decoration: none; transform: translateY(-1px); }
.warning-box {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--texto-fraco);
  line-height: 1.65;
}
.warning-box strong { color: var(--dourado); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: #111111;
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 40px 20px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand p {
  font-size: 13px;
  color: var(--texto-fraco);
  margin-top: 8px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-links a {
  color: var(--texto-fraco);
  font-size: 13px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--dourado-claro); text-decoration: none; }
.footer-links a:not(:last-child)::after {
  content: '·';
  margin-left: 8px;
  color: rgba(234,234,234,0.2);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  font-size: 12px;
  color: var(--texto-fraco);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

/* ── Divider ─────────────────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: rgba(212,175,55,0.12);
  margin: 0;
}

/* ── Two-col layout ──────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Hamburger button ────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(212,175,55,0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dourado-claro);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .site-nav a { font-size: 12px; padding: 5px 7px; }
  .logo-name span { display: none; }
  .hero { padding: 36px 20px 44px; }
  .section { padding: 48px 20px; }
  .two-col { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 20px; }
}
@media (max-width: 480px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--verde);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    flex-direction: column;
    padding: 8px 16px 16px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 15px; padding: 12px 12px; border-radius: 10px; }
  .site-header { position: relative; }
}

/* One-line summary under each section heading of the legal pages. */
.section-summary {
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--dourado);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.93em;
}
.legal-body h3 { margin-top: 20px; }
