
body {
  font-family: Arial, sans-serif;

}

header {
  background-color: #004080;
  color: white;
  padding: 20px;
  text-align: center;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  max-width: 500px;
  margin: auto;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: justify;

   /* Transição */
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.4s ease, transform 0.4s ease;
   pointer-events: none;

  /* Estilo para redimensionar a imagem */
  img {
    max-width: 150px; /* Define a largura máxima da imagem */
    height: auto; /* Mantém a proporção da imagem */
    display: block; /* Garante que a imagem seja tratada como um bloco */
    margin: 0 auto; /* Centraliza a imagem horizontalmente */
  }
  
}

.cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-popup .logo {
  width: 150px;
}

.cookie-popup p {
  margin: 0;
}

.cookie-popup .buttons {
  display: flex;
  gap: 10px;
  justify-content: center; /* Centraliza os botões horizontalmente */
}

.cookie-popup button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#acceptCookies {
  background-color: #130352;
  color: white;
  transition: background-color 0.3s ease, color 0.5s ease;
}

#acceptCookies:hover {
  background-color: #1f0978;
  color: white;
  transition: background-color 0.3s ease, color 0.5s ease;
}

#denyCookies {
  background-color: #e0e0e0;
  color: black;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#denyCookies:hover {
  background-color: #e1d1d1;
  color: black;
  transition: background-color 0.3s ease, color 0.3s ease;
}
