/* Estilos para a seção de especialidade em cabelos loiros - versão expandida */
.blonde-expertise-section {
  margin: 50px 0;
  padding: 40px;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.15));
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blonde-expertise-header {
  text-align: center;
  margin-bottom: 30px;
}

.blonde-expertise-header h3 {
  font-size: 2rem;
  color: var(--dark-gray);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.blonde-expertise-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

.blonde-expertise-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.blonde-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.blonde-expertise-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 350px;
}

.blonde-expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blonde-expertise-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blonde-expertise-item:hover img {
  transform: scale(1.05);
}

.blonde-expertise-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: var(--white);
  transition: all 0.3s ease;
}

.blonde-expertise-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.blonde-expertise-description {
  font-size: 0.9rem;
  opacity: 0.9;
}

.blonde-expertise-cta {
  text-align: center;
  margin-top: 40px;
}

.blonde-expertise-cta .btn {
  padding: 12px 30px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .blonde-expertise-section {
    padding: 30px 20px;
  }
  
  .blonde-expertise-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .blonde-expertise-item {
    height: 300px;
  }
}
