@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
    font-family: "Ubuntu", sans-serif;
}

.icon-inativo {
     filter: brightness(0);
    opacity: 0.1;
}

.icon-ativo {
  filter: none;
  opacity: 1;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-content.active {
  max-height: 500px; /* Ajuste conforme a altura do conteúdo máximo esperado */
}

.spin-infinite {
    animation: spin 823s linear infinite;
    opacity: 0;
    animation-duration: 6s !important;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
    opacity:1;
  }
  to {
    transform: rotate(360deg);
    opacity:1;
  }
}