/* Estilos del carrusel */
.carrusel-aniversario {
  padding: 4rem 0;
  background: linear-gradient(to right, #f8f9fa, #eef3f6);
  position: relative;
}

.carrusel-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.carrusel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.carrusel-slide {
  min-width: 100%;
  height: 400px;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.carrusel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carrusel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.carrusel-prev,
.carrusel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none; /* ❌ sin fondo */
  color: white;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 3rem; /* 🔼 Más grande para que se vea bien */
  z-index: 10;
  transition: transform 0.3s ease, color 0.3s ease;
}

.carrusel-prev:hover,
.carrusel-next:hover {
  color: #f7931d; /* Cambio de color al pasar el mouse */
  transform: translateY(-50%) scale(1.2); /* Efecto visual suave */
}

.carrusel-prev {
  left: 10px;
}

.carrusel-next {
  right: 10px;
}
.carrusel-indicadores {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carrusel-indicadores .indicador {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #f7931d;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carrusel-indicadores .indicador.active {
  background: #f7931d;
  transform: scale(1.3);
}