/* ============================================================
   Bicharada — Tokens da identidade visual (Janela 1)
   Nunito (títulos) · Inter (corpo)
   ============================================================ */

:root {
  --cor-primaria: #2DD4A0;   /* verde-menta */
  --cor-destaque: #FF6B6B;   /* coral */
  --cor-fundo: #F9F7F4;      /* fundo */
  --cor-texto: #1A1A2E;      /* texto */
  --cor-cta: #FFB347;        /* CTA */

  --fonte-titulo: 'Nunito', system-ui, sans-serif;
  --fonte-corpo: 'Inter', system-ui, sans-serif;

  --raio: 16px;
  --sombra: 0 2px 12px rgba(26, 26, 46, 0.08);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fonte-corpo);
  background: var(--cor-fundo);
  color: var(--cor-texto);
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  line-height: 1.2;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* Shell provisório da Janela 1 */
.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.shell-logo {
  border-radius: 24px;
  box-shadow: var(--sombra);
}

.shell h1 {
  color: var(--cor-primaria);
  font-size: 2rem;
}

.shell p {
  max-width: 320px;
  opacity: 0.75;
}
