
.hero {
  color: #fff;
}
.nav-link {
  color: #004aad !important;
}
.nav-link:hover {
  color: #001f6b !important;
}
.card:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}


body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.text-shadow {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.course-card img {
  height: 350px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.course-card:hover {
  transform: translateY(-8px);
  transition: 0.4s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.footer a:hover {
  color: #ffd700 !important;
  transition: 0.3s ease;
}



/* Estilos para os cards de Missão, Visão e Valores */
.transition-all {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-container {
  transition: transform 0.3s ease;
}

.card:hover .icon-container {
  transform: scale(1.1);
}

.valores-list li {
  transition: color 0.2s ease;
}

.valores-list li:hover {
  color: #004aad;
}

.lh-lg {
  line-height: 1.7;
}