/* =========================================================================
   AzambujaMais — base
   Tokens (paleta), reset, container, botões, logo e utilitários. Todas as páginas.
   ========================================================================= */
:root {
  --brand: #0e5fc0;
  --brand-dark: #0a4a96;
  --brand-darker: #073a78;
  --brand-light: #2f80e6;
  --brand-50: #eef5ff;
  --brand-100: #d9e8ff;

  --accent: #f39200;
  --accent-dark: #dd8000;
  --accent-light: #ffab2e;

  --ink: #14233b;
  --muted: #5b6b82;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 14px 34px rgba(0, 0, 0, 0.14);

  --container: 1440px;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Poppins", system-ui, -apple-system, sans-serif;
}
/* ------- Reset / base ------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
/* ------- Botões ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover {
  background: var(--accent-dark);
}
.btn-brand {
  background: var(--brand);
  color: #fff;
}
.btn-brand:hover {
  background: var(--brand-dark);
}
.btn-ghost-white {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline {
  border-color: rgba(14, 95, 192, 0.25);
  color: var(--brand);
  background: transparent;
}
.btn-outline:hover {
  background: #fff;
}
.btn-lg {
  padding: 0.95rem 1.9rem;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* Botão Entrar (azul, com seta) — usado em login/admin-login/checkout */
.btn-entrar {
  width: 100%;
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(14, 95, 192, 0.28);
  transition: background-color 0.15s, transform 0.15s;
}
.btn-entrar:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}
.btn-entrar:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
/* ------- Logo ------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* Logo em imagem (arquivo oficial em assets/logo.png) */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.site-header .logo-img {
  height: 48px;
}
/* Versão branca para fundos escuros (footer, painel do login) */
.logo-img--white {
  filter: brightness(0) invert(1);
}
/* ------- Utilitários ------- */
.scroll-mt {
  scroll-margin-top: 90px;
}
