.intensivo-periodo {
  padding: 120px 8%;
  background: linear-gradient(180deg, #120a26 0%, #0b0618 100%);
  color: white;
  text-align: center;
}

.periodo-container {
  max-width: 1000px;
  margin: auto;
}

.tag-periodo {
  color: #b889ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.intensivo-periodo h2 {
  font-size: 42px;
  margin: 20px 0 60px;
}

.periodo-boxes {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.periodo-card {
  flex: 1;
  min-width: 280px;
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.3);
  padding: 35px;
  border-radius: 18px;
  text-align: left;
}

.periodo-card h3 {
  margin-bottom: 15px;
  color: #e9d5ff;
}

.periodo-card p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* ALERTA VAGAS */

.vaga-alerta {
  margin-top: 70px;
}

.vaga-texto {
  font-weight: 600;
  color: #facc15;
  margin-bottom: 15px;
}

.barra-progresso {
  width: 100%;
  height: 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 10px;
}

.barra-preenchida {
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, #9333ea, #6b21a8);
  box-shadow: 0 0 20px rgba(147,51,234,0.8);
  animation: pulseBar 2s infinite alternate;
}

@keyframes pulseBar {
  from { opacity: 0.8; }
  to { opacity: 1; }
}

.vaga-sub {
  font-size: 14px;
  opacity: 0.8;
}

/* BOTÕES */

.periodo-botoes {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-principal {
  padding: 16px 40px;
  background: linear-gradient(90deg, #9333ea, #6b21a8);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  box-shadow: 0 0 30px rgba(147,51,234,0.6);
  transition: 0.4s;
}

.btn-principal:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(147,51,234,1);
}

.btn-secundario {
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  text-decoration: none;
  color: white;
  transition: 0.4s;
}

.btn-secundario:hover {
  background: rgba(255,255,255,0.1);
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .intensivo-periodo h2 {
    font-size: 32px;
  }

  .periodo-boxes {
    flex-direction: column;
  }

}
