/* Ajustes finos para a versão estática */

html {
  scroll-behavior: smooth;
}

/* Garante que o conteúdo não fique escondido atrás do header fixo */
section[id] {
  scroll-margin-top: 6rem;
}

/* FAQ: transição suave de altura */
.faq-content {
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  max-height: 0;
  opacity: 0;
}

.faq-item.open .faq-content {
  max-height: 500px;
  opacity: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* Menu mobile */
#mobile-menu {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

#mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}
