.testimonial-slider {
    position: relative;
    min-height: 260px; /* Adjust as needed to fit full quote */
  }

  .testimonial-slide {
    position: absolute;
    opacity: 0;
    width: 100%;
    transition: opacity 1s ease-in-out;
    top: 0;
    left: 0;
    z-index: 0;
  }

  .testimonial-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .slider-dots .testimonial-dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .slider-dots .testimonial-dot.active {
    background-color: #00b386;
  }

  /* here */
  .slider-dots {
  z-index: 10;
  position: relative;
}

 .testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00b386;
}

/* Success and Error Message Styles */
.alert {
  padding: 12px 20px;
  margin: 15px 0;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  animation: fadeIn 0.4s ease-in;
}

.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-danger, .alert-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px; 
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.logo {
  font-size: 17px;
  font-weight: 500; 
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

/* === Top Info Bar === */
.top-info-bar {
  background: linear-gradient(90deg, #004aad 0%, #00b386 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  padding: 10px 0;
}

.top-info-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-info-bar .left-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-info-bar .right-info a {
  color: #ffffff;
  margin-left: 14px;
  transition: color 0.3s ease;
  font-size: 16px;
}

.top-info-bar .right-info a:hover {
  color: #dfffe6;
}

/* === Edital Button === */
.btn-edital {
  background: #ffffff;
  color: #004aad !important;
  padding: 7px 16px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.btn-edital:hover {
  background: #dfffe6;
  color: #007b5e !important;
}


/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .top-info-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .top-info-bar .left-info span {
    display: block;
    margin-right: 0;
  }

  .top-info-bar .right-info {
    margin-top: 6px;
  }

  .btn-edital {
    display: inline-block;
    margin-top: 8px;
  }
}

/* === Bloco Artístico de Alunos === */
.alunos-artisticos {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #004aad 0%, #00b386 100%);
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.alunos-artisticos .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.alunos-artisticos .section-subtitle {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 3rem;
}

/* Grid dos alunos */
.alunos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Card do aluno */
.aluno-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.5s, box-shadow 0.5s;
}

.aluno-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Foto do aluno */
.aluno-photo {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  position: relative;
}

/* Sobreposição artística na foto */
.aluno-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 179, 134, 0.7), transparent);
  border-radius: 0 0 20px 20px;
}

/* Informações do aluno */
.aluno-info {
  padding: 1.5rem;
  text-align: left;
}

.aluno-info h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.aluno-info p {
  font-size: 0.95rem;
  margin: 0.3rem 0 1rem 0;
  font-weight: 500;
}

.aluno-info blockquote {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.4;
  border-left: 3px solid #00b386;
  padding-left: 10px;
  color: #e0f7f1;
}

/* Responsividade */
@media (max-width: 768px) {
  .alunos-artisticos .section-title {
    font-size: 2rem;
  }
  .alunos-artisticos .section-subtitle {
    font-size: 1rem;
  }
  .aluno-photo {
    height: 200px;
  }
}




@media (max-width: 768px) {
  .logo {
    font-size: 14px;
  }
}

/* ---- MENSAGEM DA DIREÇÃO ---- */
/* --- AREA GERAL COM DESIGN PREMIUM --- */
.direcao-hero {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #005BBB 0%, #28A745 100%);
    overflow: hidden;
}

/* Efeito Glass + Brilho */
.direcao-overlay {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.15);
    filter: blur(80px);
    border-radius: 50%;
}

/* TÍTULO */
.direcao-title {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.direcao-intro {
    text-align: center;
    color: #e9e9e9;
    font-size: 18px;
    margin-bottom: 60px;
}

/* --- CARDS INOVADORES --- */
.direcao-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: auto;
}

.direcao-card {
    display: flex;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 24px;
    gap: 25px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.25);
}

.direcao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

/* FOTO */
.direcao-photo img {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.7);
}

/* TEXTO */
.direcao-info h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 4px;
}

.cargo {
    color: #d1ffd8;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

.direcao-info p {
    margin-top: 10px;
    color: #eaeaea;
    line-height: 1.6;
    font-size: 16px;
}

.nav-links li a:hover {
  color: #00b386;
}

/* --- RESPONSIVO (TELEMÓVEL) --- */
@media (max-width: 768px) {
    .direcao-card {
        flex-direction: column;
        text-align: center;
    }

    .direcao-photo img {
        width: 120px;
        height: 120px;
    }
}

/* Container */
.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Posts comuns */
.blog-post {
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  color: white;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}

.blog-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.post-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.post-content a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  display: inline-block;
}

/* Cores e inclinação individuais para desktop */
.post1 { background: linear-gradient(135deg, #00b386 0%, #0077cc 100%); transform: rotate(-2deg); }
.post2 { background: linear-gradient(135deg, #0077cc 0%, #00b386 100%); transform: rotate(1.5deg); }
.post3 { background: linear-gradient(135deg, #00b386 0%, #0055aa 100%); transform: rotate(-1.5deg); }
.post4 { background: linear-gradient(135deg, #0055aa 0%, #00b386 100%); transform: rotate(2deg); }

/* Hover */
.blog-post:hover {
  transform: scale(1.05) rotate(0deg);
}

/* Responsividade */
@media (max-width: 992px) {
  .blog-container {
    align-items: center;
  }
  .blog-post {
    width: 90% !important;
    /*transform: rotate(0deg) !important; /* remove rotação para mobile */
    margin-bottom: 2rem;
  }
  .post-content a {
    display: inline-block; /* garante "Leia mais" visível */
  }
}
