/* Fonte base */
body {
  background: url('imagens/banner-intro.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1rem; /* Reduzido para altura menor */
  background-color: #000;
  border-bottom: 2px solid #111;
  position: relative;
}

/* Container da logo */
.logo-container {
  display: flex;
  align-items: center;
}

/* Tamanho padrão da logo (desktop) */
.logo {
  height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Menu principal */
.menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Links do menu */
.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 0.3s;
}

.menu a:hover {
  color: #f0c000;
}

/* Botão desktop */
.btn-votar-desktop {
  background-color: #f0c000;
  color: #000;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-votar-desktop:hover {
  background-color: #d6aa00;
}

/* Ícone menu hamburguer */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #f0c000;
  cursor: pointer;
  background: none;
  border: none;
}

/* Botão votar no mobile */
.btn-votar-mobile {
  display: none;
  background-color: #f0c000;
  color: #000;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
}

/* RESPONSIVO PARA CELULAR */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #111;
    padding: 1rem;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .menu.show {
    display: flex;
  }

  .menu a {
    padding: 0.5rem 0;
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: block;
  }

  .btn-votar-desktop {
    display: none;
  }

  .btn-votar-mobile {
    display: block;
  }

  .logo {
    height: 40px;
  }

  .header {
    padding: 1rem;
  }
}
.destaque {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 6rem 3rem;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.destaque-imagem img {
  width: 360px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.destaque-texto {
  max-width: 600px;
  color: #fff;
}

.destaque-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.destaque-texto p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* Responsivo */
@media (max-width: 768px) {
  .destaque {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
  }

  .destaque-texto h2 {
    font-size: 1.8rem;
  }

  .destaque-texto p {
    font-size: 1rem;
  }

  .destaque-imagem img {
    width: 80%;
  }
}
.btn-contorno {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: 2px solid #FFD700; /* Amarelo ouro */
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-contorno:hover {
  background-color: #FFD700;
  color: #000;
}
.destaque-imagem img {
  border-radius: 16px;
  box-shadow: 0 0 15px #fff200, 0 0 30px #fcd100, 0 0 45px #ffc400;
  transition: transform 0.3s ease;
}

.destaque-imagem img:hover {
  transform: scale(1.02);
}
.btn-votar-desktop,
.btn-votar-mobile {
  background: linear-gradient(270deg, #fff200, #ffb300);
  background-size: 400% 400%;
  color: #000;
  border: none;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  animation: wave 5s ease infinite;
  transition: transform 0.3s ease;
}

.btn-votar-desktop:hover,
.btn-votar-mobile:hover {
  transform: scale(1.05);
}

/* Animação de gradiente em onda */
@keyframes wave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.destaque-imagem img {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destaque-imagem img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.25);
}
html {
  scroll-behavior: smooth;
}
/* WebKit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111; /* fundo da barra */
}

::-webkit-scrollbar-thumb {
  background: #FFD700; /* "botão" da barra */
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #FFC300;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #FFD700 #111;
}
