/* =========================
   HEADER PADRÃO (IGUAL AO INDEX)
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, #6a0dad, #ffd60a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  z-index: 1000;
}

/* LOGO */
.logo-menu {
  display: flex;
  align-items: center;
}

.logo-menu img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

/* MENU */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.menu {
  display: flex;
  list-style: none;
  gap: 18px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.menu a:hover {
  color: #0d1b2a;
}

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

.dropdown-menu {
  display: none;
  position: absolute;
  background: #0d1b2a;
  top: 100%;
  left: 0;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: white;
}

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

/* ====================== REDES SOCIAIS NO HEADER ====================== */
.social-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 30px;
}

.social-top a {
  color: white;
  font-size: 21px;
  transition: all 0.3s ease;
}

.social-top a:hover {
  color: #ffd60a;
  transform: translateY(-3px);
}

/* BOTÃO MOBILE */
.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 28px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero {
  background: #2c0e4e;
  color: white;
  text-align: center;
  padding: 140px 20px 100px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* =========================
   SEÇÕES PADRÃO
========================= */
section {
  padding: 70px 20px;
}

section:nth-child(even) {
  background: #f5f7fa;
}

/* TÍTULOS DAS SEÇÕES CENTRALIZADOS */
.section-title {
  text-align: center;
  color: var(--roxo);
  margin-bottom: 50px;
  font-size: 32px;
}

/* GRID - CARDS MAIS SEPARADOS */
.cards,
.valores,
.projetos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  justify-content: center;
  gap: 60px 45px;
  max-width: 1200px;
  margin: auto;
}

/* ====================== ESTILO DOS CARDS ====================== */
.card,
.valor,
.projeto {
  background: lilac;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: transform 0.3s;
}

.card:hover,
.valor:hover,
.projeto:hover {
  transform: translateY(-8px);
}

/* TÍTULOS DOS CARDS CENTRALIZADOS */
.card h3,
.valor h3,
.projeto h3 {
  text-align: center;
  margin: 15px 0 12px 0;
  color: var(--roxo);
  font-size: 1.35rem;
}

.projeto img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.projeto p,
.card p,
.valor p {
  font-size: 14.5px;
  line-height: 1.6;
  text-align: center;
}

/* FOOTER */
footer {
  background: #0d1b2a;
  color: yellow;
  text-align: center;
  padding: 30px;
}

/* =========================
   MOBILE
========================= */
@media(max-width: 900px){
  .menu-toggle { display: block; }
  nav { position: absolute; top: 70px; right: 20px; }
  .menu {
    flex-direction: column;
    background: #0d1b2a;
    padding: 20px;
    border-radius: 10px;
    display: none;
  }
  .menu.active { display: flex; }
  .social-top { display: none; }

  .dropdown-menu {
    position: static;
    display: none;
  }
  .dropdown.active .dropdown-menu { display: block; }

  .cards, .valores, .projetos {
    gap: 30px;
  }
}

/* ====================== CTA - VAGAS LIMITADAS (VISÍVEL) ====================== */
.cta {
  background: linear-gradient(135deg, #0d1b2a, #4a0b7a);
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 100px 20px !important;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(106, 13, 173, 0.35);
  z-index: 1;
}

.cta > * {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 35px;
  opacity: 0.95;
}

/* Botão Matrícula */
.btn {
  display: inline-block;
  background: var(--amarelo);
  color: #0d1b2a;
  padding: 18px 42px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 214, 10, 0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(255, 214, 10, 0.5);
}

/* ====================== OUTROS ====================== */
.portal-btn {
  background: var(--amarelo);
  color: var(--azul) !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  white-space: nowrap;
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
}

.card ul {
  text-align: left;
  padding-left: 20px;
  margin-top: 12px;
  list-style: disc;
}

