body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: url('../imagens/banner-intro.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

/* === NAVBAR / HEADER === */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 1rem; /* Menor altura */
  background-color: #000;
  border-bottom: 2px solid #111;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 70px; /* MENOR altura do logo */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 0.3s;
}

.menu a:hover {
  color: #f0c000;
}

.btn-votar-desktop {
  background-color: #f0c000;
  color: #000;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-votar-desktop:hover {
  background-color: #d6aa00;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #f0c000;
  cursor: pointer;
  background: none;
  border: none;
}

/* === CONTEÚDO PRINCIPAL === */
main {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-top: 2rem;
}

.subtitulo {
  text-align: center;
  font-size: 1rem;
  color: #f0c000;
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}


.categoria-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 1rem;
  color: #fff;
  width: 180px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.categoria-card:hover {
  transform: scale(1.03);
}

.categoria-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}

.categoria-card h4 {
  font-size: 0.95rem;
  margin: 0.5rem 0;
  color: #ffffff;
}

.btn-votar {
  background-color: #f0c000;
  color: #000;
  padding: 0.4rem 1rem;
  font-weight: bold;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.btn-votar:hover {
  background-color: #d6aa00;
}
.categorias-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
