:root {
  --azul: #0d1b2a;
  --roxo: #6a0dad;
  --amarelo: #ffd60a;
  --branco: #ffffff;
  --cinza: #f5f7fa;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: linear-gradient(90deg, #0d1b2a, #6a0dad, #ffd60a);
  color: white;
  z-index: 1000;
}

.logo-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-menu img {
  height: 45px;
}

/* MENU */
.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

/* ANIMAÇÃO */
.menu a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--amarelo);
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: var(--azul);
  padding: 10px;
  border-radius: 8px;
  top: 30px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* FOOTER */
footer {
  background: var(--azul);
  color: white;
  padding: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* HERO */
.hero {
  background: linear-gradient(135deg, #0d1b2a, #6a0dad);
  padding: 100px 40px;
  color: white;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.hero-text h2 {
  font-size: 42px;
}

.hero-text p {
  margin: 20px 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
}

/* INSTITUCIONAL */
.inst-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.inst-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

/* BOTÕES */
.btn {
  background: var(--amarelo);
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid var(--amarelo);
  color: var(--amarelo);
  padding: 12px 20px;
  border-radius: 6px;
}

/* GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}
/* RESPONSIVO */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .menu {
    flex-direction: column;
    display: none;
  }

  .menu.active {
    display: flex;
  }
}

section {
  padding: 60px 40px;
}

.section-title {
  text-align: center;
  color: #6a0dad;
  margin-bottom: 30px;
}

/* DEPOIMENTO */
.depoimento {
  background: var(--roxo);
  color: white;
  text-align: center;
}

/* CTA */
.cta {
  background: var(--roxo);
  color: white;
  text-align: center;
}