.header {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://5879415.fs1.hubspotusercontent-na1.net/hubfs/5879415/TIMER_V1_1.png');
  background-size: 100% 100%; /* Torna a imagem de fundo responsiva */
  background-repeat: no-repeat;
  padding: 40px;
  cursor: pointer;
}

/* Outros estilos permanecem inalterados */

.timer-container {
  font-size: 30px;
  font-weight: bold;
  color: white;
  text-align: center;
  /* Removendo posição absoluta */
}


@media only screen and (max-width: 768px) {
  .header {
    background-image: url('https://5879415.fs1.hubspotusercontent-na1.net/hubfs/5879415/TIMER_V2_3.png');
    padding: 50px;
  }

  .timer-container {
    font-size: 20px;
  }
} 

/* Adicionando estilos para o timer-container */
.timer-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.3) 50%);
  background-size: 100% 200%;
  animation: timer-animation 1s linear infinite;
}

@keyframes timer-animation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -100%;
  }
}

#countdown {
  font-size: 12px;
  color: white;
  text-align: center;
}


@media only screen and (max-width: 768px) {
  #countdown {
    font-size: 8px;
  }
}

 .legal-consent-container, .legal-consent-container p {
      color: #ffffff; /* Cor branca */