.seccion-estrellas {
  background: linear-gradient(to bottom right, #072c49, #0c3a60);
  color: white;
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
  margin: 40px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contenido-estrellas h2 {
  font-size: 64px; /* Aumentado */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.seccion-estrellas h2 span {
  font-size: 44px; /* Aumentado */
}

.destacado {
  font-weight: 800;
  color: var(--gold-color, #FFD700);
  font-size: 4rem; /* Aumentado */
}

.estrellas {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.estrellas img {
  width: 56px; /* Aumentado */
  height: 56px;
  animation: aparecerEstrella 0.6s ease-out forwards;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.estrellas img:nth-child(1) { animation-delay: 0s; }
.estrellas img:nth-child(2) { animation-delay: 0.1s; }
.estrellas img:nth-child(3) { animation-delay: 0.2s; }
.estrellas img:nth-child(4) { animation-delay: 0.3s; }
.estrellas img:nth-child(5) { animation-delay: 0.4s; }

.estrellas img:hover {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 6px var(--gold-color));
}

.descripcion {
  font-size: 38px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  color: #e0e0e0;
  line-height: 1.5;
  text-align: justify;
}

/* Animación de entrada */
@keyframes aparecerEstrella {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsivo para móviles */
@media (max-width: 600px) {
  .seccion-estrellas {
    padding: 40px 15px;
    border-radius: 20px;
  }

  .contenido-estrellas h2 {
    font-size: 54px; /* Ajustado para móvil */
  }

  .seccion-estrellas h2 span {
    font-size: 38px; /* Ajustado */
  }

  .destacado {
    font-size: 50px; /* Ajustado */
  }

  .estrellas {
    gap: 6px;
  }

  .estrellas img {
    width: 38px;
    height: 38px;
  }

  .descripcion {
    font-size: 36px;
    padding: 0 10px;
  }
}
