/* Estilos para a seção de especialidade em cabelos loiros */
.blonde-expertise-banner {
  background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blonde-expertise-content {
  display: flex;
  align-items: center;
}

.blonde-expertise-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-right: 20px;
  flex-shrink: 0;
}

.blonde-expertise-text h3 {
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.blonde-expertise-text p {
  margin-bottom: 0;
}

/* Estilos para as categorias da galeria */
.gallery-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.gallery-category {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--dark-gray);
  padding: 8px 20px;
  margin: 0 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-secondary);
  font-size: 14px;
}

.gallery-category:hover,
.gallery-category.active {
  background-color: var(--gold);
  color: var(--white);
}

/* Estilos para as legendas das imagens */
.gallery-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--white);
  font-size: 14px;
  padding: 0 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Responsividade */
@media screen and (max-width: 768px) {
  .blonde-expertise-content {
    flex-direction: column;
    text-align: center;
  }
  
  .blonde-expertise-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .gallery-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-category {
    width: 80%;
    margin-bottom: 10px;
  }
}
