/* ========================================================================
  AGSMB, Design tokens
   Conceito: estrada / sinalização / placa de veículo
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:wght@600;800&family=Inter:wght@400;500;600;700&family=DM+Mono:wght@500&display=swap');

:root {
  /* Cores */
  --asfalto: #1C1F24;
  --asfalto-2: #2A2E36;
  --gelo: #F5F6F7;
  --gelo-2: #E8EAED;
  --sinal: #E5264F;
  --sinal-escuro: #B81C3D;
  --ambar: #F5A623;
  --texto-claro: #F5F6F7;
  --texto-escuro: #1C1F24;
  --texto-muted: #8A909B;
  --sucesso: #2FB170;

  /* Tipografia */
  --f-display: 'Big Shoulders', sans-serif;
  --f-corpo: 'Inter', -apple-system, sans-serif;
  --f-mono: 'DM Mono', monospace;

  /* Espaçamento */
  --secao-padding: 96px;
  --container-largura: 1180px;

  /* Bordas */
  --raio: 10px;
  --raio-pequeno: 6px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--f-corpo);
  color: var(--texto-escuro);
  background: var(--gelo);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container-largura);
  margin: 0 auto;
  padding: 0 24px;
}

/* Foco de teclado visível, acessibilidade */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ambar);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.rotulo {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sinal);
  font-weight: 500;
}

.secao { padding: var(--secao-padding) 0; }
.secao--escura { background: var(--asfalto); color: var(--texto-claro); }
.secao--escura .rotulo { color: var(--ambar); }

.secao__titulo {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 8px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.secao__intro {
  max-width: 620px;
  color: var(--texto-muted);
  font-size: 17px;
  margin-bottom: 48px;
}
.secao--escura .secao__intro { color: #B7BCC5; }

/* ========================================================================
   Botões
   ======================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--raio-pequeno);
  font-family: var(--f-corpo);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--sinal {
  background: var(--sinal);
  color: #fff;
  box-shadow: 0 4px 0 var(--sinal-escuro);
}
.btn--sinal:hover { box-shadow: 0 6px 0 var(--sinal-escuro); }
.btn--sinal:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--sinal-escuro); }

.btn--whatsapp {
  background: #25D366;
  color: #073B1E;
  box-shadow: 0 4px 0 #1AA653;
}
.btn--whatsapp:hover { box-shadow: 0 6px 0 #1AA653; }
.btn--whatsapp:active { transform: translateY(2px); box-shadow: 0 2px 0 #1AA653; }

.btn--contorno {
  background: transparent;
  border-color: currentColor;
  color: var(--texto-claro);
}
.btn--contorno:hover { background: rgba(255,255,255,0.08); }

.btn--full { width: 100%; }

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
