
/* FUNDO com blur e escurecedor */
.fundo-completo {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
}

.fundo-completo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../IMAGENS/WALLPAPER.webp") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: -2;
}

.fundo-completo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29, 116, 150, 0);
  z-index: -1;
}

/* LOGO */
.logo {
  display: block;
  margin: 20px auto 40px auto;
  width: 160px;
  filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.3));
}

/* MENU patinha */
.menu-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
  cursor: pointer;
}

.menu-btn img {
  width: 55px;
  height: 55px;
  filter: drop-shadow(3px 3px 1px rgba(250, 249, 249, 0.4));
  transition: transform 0.2s ease;
}

.menu-btn img:hover {
  transform: scale(1.1);
}

/* Submenu */
.submenu {
  position: absolute;
  top: 80px;
  right: 20px;
  background: rgba(16, 114, 170, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 15px 20px;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(248, 246, 246, 0.3);
  text-align: right;
}

.submenu.mostrar {
  display: block;
}

.submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu li {
  margin-bottom: 10px;
}

.submenu a {
  color: var(--branco);
  font-weight: bold;
  text-decoration: none;
  font-family: var(--fonte-seria);
  font-size: 16px;
}

/* TÍTULO Principal da sessão FAQ */
.titulo {
  font-size: 2em;
  text-align: center;
  margin-bottom: 35px;
  font-family: var(--fonte-destaque);
  color: var(--amarelo);
  text-shadow: 2px 2px 4px #000;
  line-height: 1.3;
  padding: 0 15px;
  word-break: break-word;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  .titulo {
    font-size: 1.7em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #000;
  }
}

/* Container da seção FAQ */
.faq {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

/* Cada item da FAQ (pergunta + resposta) */
.faq-item {
  margin-bottom: 15px;
}

/* Botões das perguntas */
.estiloso {
  display: block;
  width: 100%;
  max-width: 90%;
  background: rgba(5, 48, 99, 0.137);
  backdrop-filter: blur(6px);
  color: rgb(255, 255, 255);
  margin: 12px auto;
  border: none;
  border-radius: 20px;
  text-align: center;
  font-family: var(--fonte-divertida);
  padding: 15px 20px;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 4px 5px rgba(230, 196, 4, 0.753);
  cursor: pointer;
  transition: all 0.3s ease;
}

.estiloso:hover {
  background-color: #ffe26e;
  text-shadow: 2px 2px 4px #000;
}

/* Resposta oculta inicialmente */
.faq-resposta {
  margin-top: 8px;
  font-size: 1em;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 10 20px;
}


/* Quando ativo (exibindo resposta) */
.faq-item.ativo .faq-resposta {
  max-height: 200px;
  margin-top: 1px;
}

/* Estilo dos parágrafos dentro da resposta */
.faq-resposta p {
  text-align: center;
  font-family: var(--fonte-divertida);
  margin: 5px 0 10px;
  background: rgba(214, 177, 12, 0.329);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 5px;
  color: rgb(255, 255, 255);
  box-shadow: 0 4px 12px rgba(230, 196, 4, 0.753);
  max-width: 650px;
  margin: 0 auto;
}

.faq-resposta p span {
  display: inline;
  margin-right: 5px;
}

/* Responsividade FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 10px;
    margin: 20px auto;
  }

.faq-item {
    margin-bottom: 6px; 
    box-shadow: none;
  }

  .faq-resposta {
    padding: 8px 5px;
    margin-top: 0;
  }

  .faq-resposta p {
    margin: 0 auto;
    padding: 5px 0;
    font-size: 0.95em;
  }

  .estiloso {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    font-size: 1em;
    padding: 10px 2px;
    border-radius: 15px;
    box-shadow: 0 1px px rgba(230, 196, 4, 0.6);
  }
}


/* Bloco final com botão de contato */
.faq-contato {
  text-align: center;
  margin-top: 40px;
}

/* Link para WhatsApp com estilo do botão */
.botao-whats {
  display: inline-block;
  background-color: var(--branco);
  color: #333;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.botao-whats:hover {
  background-color: #f8d25c;
}


/* RODAPÉ */
footer {
  text-align: center;
  font-size: 14px;
  color: var(--branco);
  line-height: 1.4;
  background: transparent;
  padding: 20px 10px;
}

footer p {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 6px;
}

/*  RESPONSIVO RODAPÉ*/
@media (max-width: 480px) {
  footer {
    font-size: 12px;
    line-height: 1.3;
  }
}

/* BOTÃO VOLTAR AO TOPO */
#btnTopo {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--amarelo);
  color: #333;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  cursor: pointer;
  display: none;
  z-index: 1000;
}

#btnTopo:hover {
  background-color: #ffe870;
}
