@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --preto-1: #333;
  --azul-escuro: #002f6c;
  --cinza-claro: #f4f4f4;
  --branco: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--cinza-claro);
  color: var(--preto-1);
  line-height: 1.6;
  padding: 0;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3rem;
  background-color: var(--branco);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.hero .logo {
  width: 30rem;
  max-width: 100%;
  margin-bottom: 2rem;
}

.hero .texts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 70rem;
  text-align: justify;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero .texts .text {
  color: var(--preto-1);
  font-size: 2rem;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.hero .texts .first {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--azul-escuro);
}

.hero .texts .second {
  font-size: 2rem;
  font-weight: normal;
}

#countdown {
  margin-top: 2rem;
  background-color: var(--azul-escuro);
  padding: 2rem;
  border-radius: 8px;
  color: var(--branco);
}

#timer-wrapper {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-top: 1rem;
}

.final-message {
  margin-top: 3rem;
  font-size: 1.5rem;
  text-align: center;
}

.final-message .redirect-link {
  color: var(--azul-escuro);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid var(--azul-escuro);
  transition: 0.3s;
}

.final-message .redirect-link:hover {
  color: #fff;
  background-color: var(--azul-escuro);
  padding: 0.5rem;
  border-radius: 4px;
}

.clickable-image {
  margin-top: 2rem;
  width: 250px;
  transition: transform 0.3s ease;
  cursor: pointer;
  border: none;  /* Remove a borda da imagem */
  outline: none; /* Remove o outline da imagem */
}

.clickable-image:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero .logo {
    width: 80%;
  }

  .hero .texts .text {
    font-size: 1.8rem;
  }

  #countdown {
    padding: 1.5rem;
  }

  #timer-wrapper {
    font-size: 2.5rem;
  }

  .clickable-image {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem;
  }

  .hero .texts .first {
    font-size: 2rem;
  }

  .hero .texts .second {
    font-size: 1.6rem;
  }

  #countdown {
    padding: 1rem;
  }

  .clickable-image {
    width: 150px;
  }
}
