body {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  line-height: 1.6;
  background: #0e0e1c;
  padding: 0;
  margin: 0;
}

h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.sobre-container {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}
.fade-in,
.timeline-item,
.faq-item,
.parceiros-container img {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.show,
.timeline-item.show,
.faq-item.show,
.parceiros-container img.show {
  opacity: 1;
  transform: translateY(0);
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  text-align: center;
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: 3rem;
  color: #b084ff;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.missao-valores {
  margin-bottom: 4rem;
}

.missao-valores h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #b084ff;
}
.missao-valores p {
  color: #ddddf7; 
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #b084ff;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.card p {
  color: #ddddf7;
  font-family: 'Poppins', sans-serif;
}

.linha-tempo h2,
.depoimentos h2,
.faq h2,
.parcerias h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #b084ff;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.evento {
  background: #2a2a3d;
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 5px solid #b084ff;
}

.evento .ano {
  font-weight: bold;
  color: #b084ff;
  display: block;
  margin-bottom: 0.5rem;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.depoimento {
  flex: 0 0 300px;
  background: #1d1d2e;
  padding: 1.5rem;
  border-radius: 1rem;
  scroll-snap-align: start;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.depoimento span {
  display: block;
  margin-top: 1rem;
  color: #ccc;
  font-size: 0.9rem;
}

.faq-item {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 1rem;
}

.faq-pergunta {
  cursor: pointer;
  transition: background 0.3s;
}


.faq-pergunta i {
  font-size: 1.2rem;
  color: #b084ff;
  transition: transform 0.3s;
}

.faq-resposta {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  color: #ccc;
  padding-left: 1rem;
}

.faq-item.ativo .faq-resposta {
  display: block;
}

.parcerias .logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.parcerias img {
  max-height: 60px;
  filter: brightness(0.8);
  transition: filter 0.3s;
}

.parcerias img:hover {
  filter: brightness(1);
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .carousel {
    flex-direction: column;
  }

  .depoimento {
    width: 100%;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  body {
    padding: 10px;
    font-size: 16px;
  }


  .menu, .menu-mobile, .form, form, input, textarea, button, select {
    width: 100% !important;
    max-width: 100% !important;
  }

  .table, table {
    display: block;
    overflow-x: auto;
    width: 100%;
  }
}
body {
  background: #0d0d26;
  background-image: 
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(white 1px, transparent 1px);
  background-size: 100px 100px;
  background-position: 0 0, 50px 50px;
  animation: starsMove 100s linear infinite;
}

@keyframes starsMove {
  0% { background-position: 0 0, 50px 50px; }
  100% { background-position: 10000px 5000px, 10050px 5050px; }
}

