@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.wrapper {
  display: none;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.wrapper.active {
  display: block;
}

.container {
  margin-bottom: 3rem;
}

.container p {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.buttons p {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.buttons a {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.finaltitle {
  font-size: 4rem;
  font-weight: 700;
  color: #4CAF50;
  margin-bottom: 2rem;
}

.finalpage {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.finalpage p {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.finalpage a {
  display: inline-block;
  background: linear-gradient(45deg, #4CAF50, #45a049);
  color: white;
  padding: 2rem 3rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.finalpage a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Footer Styles */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 2rem;
  margin-top: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.brand {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}

.links-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-right p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #cccccc;
  text-align: justify;
}

.footer-right p:first-child {
  padding: 1rem;
  border: 1px solid #666666;
  border-radius: 5px;
  background-color: #2a2a2a;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .container p {
    font-size: 2rem;
  }

  .buttons p {
    font-size: 1.8rem;
  }

  .buttons a {
    font-size: 1.6rem;
    padding: 1.2rem 1.5rem;
  }

  .finaltitle {
    font-size: 3rem;
  }

  .finalpage {
    padding: 2rem;
  }

  .finalpage p {
    font-size: 1.8rem;
  }

  .finalpage a {
    font-size: 1.8rem;
    padding: 1.5rem 2rem;
  }

  .footer-right p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .container p {
    font-size: 1.8rem;
  }

  .buttons p {
    font-size: 1.6rem;
  }

  .buttons a {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }

  .finaltitle {
    font-size: 2.5rem;
  }

  .finalpage p {
    font-size: 1.6rem;
  }

  .finalpage a {
    font-size: 1.6rem;
    padding: 1.2rem 1.5rem;
  }

  .footer-right p {
    font-size: 1rem;
  }
}

/* Legacy classes for compatibility */
.quiz-page {
  /* Already handled by .wrapper */
}

.man, .woman {
  /* Already handled by .buttons a */
}

/* Additional legacy styles if needed */
header {
  font-size: clamp(2.2rem, 3vw, 3rem);
  background-color: #DC3546;
  padding-block: 1rem;
  color: #fff;
  text-align: center;
}

.limite {
  width: 95%;
  margin: auto;
  margin-bottom: 7rem;
}

.title {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-top: 25px;
  max-width: 100%;
  font-size: 30px;
}

.subtitle {
  margin: auto;
  font-size: clamp(1.7rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: 5rem;
  width: 50%;
}

.fungo {
  color: #BA001F;
}

.desconto {
  background-color: #e1f5e7;
  color: #3ec18d;
  font-size: 1.5rem;
  padding-top: 0.5rem;
}

.precoHoje {
  font-size: 2rem;
}

.valorParcelado {
  font-size: 2rem;
}

.card {
  max-width: 30%;
  display: flex;
  justify-content: center;
}

.titulo-card {
  width: 100%;
  font-size: calc(1.325rem + .9vw);
  font-weight: 700;
  color: #fff;
  background-color: #FFC107;
  text-align: center;
}

.rodape a {
  background-color: #032644;
  color: #fff;
  font-size: 1.5rem;
  margin-right: 10px;
  flex-wrap: wrap;
}

.rodape {
  padding: 20px;
  background-color: #032644;
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  flex-wrap: wrap;
  height: 150px;
  padding-bottom: 150px;
}

.rodapeConteiner {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.botoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.container .card {
  text-decoration: none;
}

.container .card .invisible {
  visibility: visible!important;
}

.card-img, .card-img-bottom, .card-img-top {
  width: 50%!important;
  margin: auto;
}

.destaqueVerde {
  color: #0e6d47;
  background-color: #74ecbe9a;
  font-size: 1.2rem;
}

.video {
  width: 100%;
  height: 500px;
  border: 1px solid black;
  margin: auto;
  margin-block: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-titulo {
  background-color: #323C45;
  padding: 1rem;
}

.botao {
  background-color: #ffbb00;
  font-size: 1.2rem;
}

#callaction_65b8fc4b48beb1000880c945_1 {
  display: none;
}