@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Montserrat:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1.5rem 2.5rem;
  font-family: 'Nunito', sans-serif;
  width: 100%;
  background-color: #0D3D2E;
  position: relative;
  overflow: hidden;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px); /* Blur no fundo do card */
  overflow: hidden; /* Garante que o logo de fundo não escape */
}

.bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px); /* Leve blur no próprio logo de fundo */
}



.logo-wrap {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.logo-wrap img {
  max-width: 180px;
  height: auto;
}

.headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.subtext {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.subtext strong {
  color: #8DC63F;
  font-weight: 700;
}

.divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0;
}

.countdown-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.countdown-timer {
  font-family: 'Montserrat', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #8DC63F;
  letter-spacing: 5px;
  line-height: 1;
}

.countdown-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
}

.saiba-mais-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.saiba-mais-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border-color: #8DC63F;
  color: #8DC63F;
}

.btn-outline:hover {
  background: #8DC63F;
  color: #0D3D2E;
}

.btn-primary {
  background: #8DC63F;
  border-color: #8DC63F;
  color: #0D3D2E;
  width: 100%;
  display: block;
  text-align: center;
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 800;
}

.btn-primary:hover {
  background: #79B02E;
  border-color: #79B02E;
  transform: translateY(-2px);
}

.footer-note {
  margin-top: 2.5rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  text-align: center;
}
