:root{
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: rgba(17, 24, 39, 0.08);
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.card{
  width: min(920px, 100%);
  padding: 0;          /* sem moldura */
  border: none;        /* sem borda */
  box-shadow: none;    /* sem sombra */
  background: transparent;
  display: grid;
  gap: 0;
  justify-items: center;
}
/* Centralizado e no tamanho natural (sem forçar largura).
   Em telas menores, reduz apenas se necessário. */
.logo{
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* Pequena legenda opcional */
.hint{
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px){
  .hint{ font-size: 0.9rem; }
}


/* Contato WhatsApp (abaixo do logo) */
.contact{
  margin-top: 3.3em; /* ~3 linhas de espaço */
  display: grid;
  place-items: center;
}

.whatsapp{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
  line-height: 1.4;
}

.whatsapp:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wa-icon svg{
  display: block;
  fill: currentColor;
}


.email{
display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 2.4em;
}

.email:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mail-icon svg{
  display: block;
  fill: currentColor;
}
