/* Estilos para a Seção de Introdução do Ser Senac */
.senac-empresas-intro h2 {
  color: var(--senac-dark-blue);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.senac-empresas-intro h3 {
  color: var(--senac-dark-blue);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.senac-empresas-intro span {
  color: var(--senac-dark-blue);
  font-weight: 600;
}

.senac-empresas-intro a {
  color: var(--senac-black-90);
  font-weight: 700;
  text-decoration: none;
}

/* --- Estilos da Seção de Galeria --- */

#areas-conhecimento .gallery-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Sombra inicial sutil */
  overflow: hidden; /* Garante que a imagem se ajuste ao border-radius */
  transition: all 0.3s ease-in-out;
  color: var(--senac-dark-blue); /* Cor padrão do texto */
  border: 1px solid #e0e0e0; /* Borda leve para destacar o card */
  min-height: 300px;
}

#areas-conhecimento .gallery-card:hover {
  transform: translateY(-8px); /* Eleva o card */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); /* Sombra mais pronunciada no hover */
}

.gallery-img-container {
  height: 200px; /* Altura fixa para as imagens */
  overflow: hidden;
  display: flex; /* Para centralizar a imagem */
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a imagem preencha o container sem distorcer */
  transition: transform 0.3s ease-in-out;
}

#areas-conhecimento .gallery-card:hover .gallery-img-container img {
  transform: scale(1.05); /* Leve zoom na imagem no hover */
}

.gallery-title {
  font-size: 0.9rem;
  padding: 1rem;
}
