/* Estilos Globais */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p {
  text-align: justify;
  margin-bottom: 1.5rem;
}

/* Cabeçalho */
header {
  background-color: #005CA9; /* Azul principal do governo de SP */
  padding: 100px 0;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.25rem;
  margin-bottom: 0;
}

/* Menu de Navegação */
.navbar {
  background-color: #333; /* Cinza escuro */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 500;
}

.nav-link {
  font-weight: 500;
}

/* Seções */
section {
  padding: 80px 0;
}

/* Cards */
.card {
  border: none;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-body {
  padding: 2rem;
}

/* Gráfico */
canvas {
  max-width: 100%;
  height: auto !important;
}

/* Rodapé */
footer {
  background-color: #222; /* Cinza mais escuro */
  padding: 40px 0;
}

footer h3 {
  margin-bottom: 1rem;
}

footer p {
  margin-bottom: 0.5rem;
}

/* Botões */
.btn-primary {
  background-color: #005CA9;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #004080;
}

/* Responsividade */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .navbar-nav {
    margin-top: 1rem;
  }
}
