.form-control:focus {
  background-color: transparent;
  border-color: white;
  box-shadow: none;
  color: white;
}

/* ANIMAÇÃO INICIAL------------------------------------- */
.questions {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  opacity: 0;
  transform: translateY(150px);
  animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.questions-content {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: moveToColumn 0.8s ease-out 2s forwards;
}

@keyframes moveToColumn {
  to {
    left: 0;
    transform: translateX(0);
    text-align: left;
  }
}

.questions-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
  color: white;
}

.new-content {
  opacity: 0;
  transform: translateX(100%);
  animation: slideInRight 0.8s ease-out 2.5s forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form input {
  border: none;
  border-bottom: 1px solid;
  color: white;
  border-radius: 0;
  background: transparent;
}

.contact-form input::placeholder {
  color: white;
}

.thankYouInfo {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: white;
  margin-top: 48px;
  margin-bottom: 32px;
}

/* ANIMAÇÃO AO CLICAR EM CONFIRMAR------------------------------------- */

.questions.slide-out {
  animation: slideOutUp 0.8s ease-in forwards;
}

@keyframes slideOutUp {
  to {
    opacity: 0;
    transform: translateY(-150px);
  }
}

/* Estilos iniciais para thankYou */
.thankYou {
  display: none; /* Inicialmente escondido */
  height: 100vh;
  opacity: 0;
  transform: translateY(150px);
}

/* Quando o thankYou é ativado */
.thankYou.slide-in {
  display: flex !important; /* Força o display flex quando ativado */
  justify-content: center; /* centraliza horizontalmente */
  align-items: center; /* centraliza verticalmente */
  animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .questions-title {
    font-size: 36px;
  }
  .contact-form input {
    margin-bottom: 32px;
  }
  .contact-form {
    gap: 0;
  }
  .privacy-policy {
    margin-bottom: 32px;
  }
  .questions .container {
    --bs-gutter-x: 48px;
  }

  .questions-content {
    animation: none;
    text-align: left;
    margin-bottom: 30px;
  }
  .new-content {
    animation: none;
  }

  .new-content {
    animation: none;
    transform: translateX(0);
    opacity: 1;
  }
  .questions {
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }
}
