/* Cores espelham packages/shared/src/theme/tokens.ts — mantenha em sincronia. */
:root {
  --turquoise: #26c6da;
  --turquoise-dark: #00acc1;
  --orange: #ffa726;
  --sand: #fff8e7;
  --gray-900: #1a1a1a;
  --gray-700: #424242;
  --gray-500: #757575;
  --gray-100: #f5f5f5;
  --white: #fff;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

/* ---------- Topo ---------- */
.topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.marca img { width: 190px; }
.topo nav { display: flex; gap: 24px; }
.topo nav a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.topo nav a:hover { color: var(--turquoise-dark); }

/* ---------- Hero ---------- */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 72px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(30px, 5vw, 46px); line-height: 1.15; font-weight: 800; }
.hero h1 span { color: var(--turquoise-dark); }
.hero p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--gray-700);
  max-width: 46ch;
}
.hero-arte img { width: min(300px, 100%); margin: 0 auto; }

.lojas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.loja-em-breve {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 14px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 16px;
  border-radius: 12px;
  background: var(--turquoise-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 172, 193, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-download:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0, 172, 193, 0.45); }
.btn-download-icone { font-size: 24px; }
.btn-download small { display: block; font-weight: 500; font-size: 12px; opacity: 0.9; }
.apk-ajuda { margin-top: 12px; font-size: 13px; color: var(--gray-500); }
.apk-ajuda a { color: var(--turquoise-dark); margin-left: 6px; }

/* ---------- Seções ---------- */
.secao { max-width: 1100px; margin: 0 auto; padding: 64px 32px; }
.secao-alt { background: var(--sand); max-width: none; }
.secao-alt > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.secao h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 800; margin-bottom: 32px; }

.passos { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.passos li { position: relative; }
.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--turquoise);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}
.passos h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.passos p { color: var(--gray-700); }

.chamada { font-size: 18px; color: var(--gray-700); max-width: 62ch; }
.beneficios { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.beneficios li { padding-left: 28px; position: relative; color: var(--gray-700); }
.beneficios li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--turquoise-dark);
  font-weight: 800;
}

/* ---------- Rodapé ---------- */
footer {
  border-top: 1px solid var(--gray-100);
  padding: 40px 32px;
  text-align: center;
  display: grid;
  gap: 20px;
  justify-items: center;
}
.rodape-marca { width: 160px; opacity: 0.85; }
.rodape-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.rodape-links a { color: var(--turquoise-dark); text-decoration: none; font-weight: 600; font-size: 15px; }
.rodape-links a:hover { text-decoration: underline; }
.copyright { color: var(--gray-500); font-size: 14px; }

/* ---------- Páginas de texto (termos / privacidade) ---------- */
.documento { max-width: 760px; margin: 0 auto; padding: 32px 32px 72px; }
.documento h1 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.documento .atualizado { color: var(--gray-500); font-size: 14px; margin-bottom: 32px; }
.documento h2 { font-size: 20px; font-weight: 800; margin: 32px 0 10px; }
.documento p, .documento li { color: var(--gray-700); margin-bottom: 12px; }
.documento ul { padding-left: 22px; }
.aviso {
  background: #fff4e5;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 32px;
}
.aviso strong { color: #b26a00; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 24px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .lojas { justify-content: center; }
  .hero-arte { order: -1; }
  .topo { justify-content: center; }
}
