body {
    font-family: "Sora", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.pergunta-conteudo h3,
.pergunta-conteudo p {
  color: #ffffff;
}

.pergunta-conteudo {
  width: 66%;
  padding-left: 44rem;
}

html {
  overflow: hidden;
}

#perguntas {
  background-image: url(https://images7.alphacoders.com/354/thumb-1920-354324.jpg);
  background-position: 11px 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

#footer {
  margin-top: 0px!important;
}

.container-pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  width: 100%;
}

#anterior-proximo .mdi {
  font-size: 22px;
  cursor: pointer;
}

#cabecalhoMain, footer {
  display: none!important;
}

#containerPerguntas {
  height: 100vh;
  overflow: hidden;
}

/* Pergunta ativa (visível) */
.pergunta-conteudo.active {
  opacity: 1; /* Torna visível */
  pointer-events: auto; /* Habilita interações */
  /* Fica na posição inicial */
}

/* Pergunta saindo (desliza para cima) */
.pergunta-conteudo.exit-up {
  opacity: 0;
  top: -150px; /* Sai por cima */
  transition: opacity 0.6s ease, top 2s ease; /* A opacidade sai primeiro, depois a posição */
}

/* Pergunta saindo (desliza para baixo) */
.pergunta-conteudo.exit-down {
  opacity: 0;
  top: 150px; /* Sai por baixo */
  transition: opacity 0.6s ease, top 2s ease; /* A opacidade sai primeiro, depois a posição */
}


.logo {
  position: absolute;
}

.logo img {
  margin-left: -20px;
}

.progress-bar {
  transition: width 0.6s ease;
}

@media (max-width: 1800px) {
  .pergunta-conteudo {
    padding-left: 36rem;
  }
}

@media (max-width: 1634px) {
  .pergunta-conteudo {
    padding-left: 31rem;
  }
}

@media (max-width: 1350px) {
  .pergunta-conteudo {
    padding-left: 23rem;
  }
}

@media (max-width: 1050px) {
  .pergunta-conteudo {
    padding-left: 18rem;
  }
}

@media (max-width: 1400px) {
  .pergunta-conteudo {
    width: 88%;
  }
}

@media (max-width: 800px) {
  .pergunta-conteudo {
    padding-left: 12rem;
  }
  #perguntas {
    height: 105vh;
  }
}

@media (max-width: 646px) {
  .pergunta-conteudo {
    padding-left: 6rem;
  }
}

@media (max-width: 450px) {
  .pergunta-conteudo {
    padding-left: 0rem;
  }
}

.input-davos {
  background-image: linear-gradient(#1e88e5, #1e88e5), linear-gradient(#e9ecef, #e9ecef);
  border: 0 none;
  border-radius: 0;
  box-shadow: none !important;
  float: none;
  background-position: bottom;
  background-color: rgba(0, 0, 0, 0);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 0 2px, 100% 1px;
  padding: 0;
  transition: background 0s ease-out 0s;
  height: calc(2.25rem + 2px);
}

.input-davos:focus {
  background-size: 100% 2px, 100% 1px;
  outline: 0 none;
  transition-duration: 0.3s;
  background-image: linear-gradient(#1e88e5, #1e88e5), linear-gradient(#e9ecef, #e9ecef);
  border: 0 none;
  border-radius: 0;
  box-shadow: none !important;
  float: none;
  background-position: bottom;
}

/* Placeholder de inputs */
input::placeholder, 
select::placeholder, 
textarea::placeholder {
    color: #ffffff;
}

/* Texto digitado nos inputs e textareas */
input, textarea, select, label {
    color: #ffffff;
}

input, textarea, select {
    cursor: pointer;
}

option {
  color: #000000;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* Inverte as cores do ícone, tornando-o branco */
  opacity: 1; /* Garante que ele fique visível */
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* Inverte as cores do ícone, tornando-o branco */
  opacity: 1; /* Garante visibilidade */
}

.conclusao {
  height: 7rem;
  font-size: 6rem;
  color: #fff;
}