.stars-container {
    position: relative; 
    width: 100%;
    height: 100%; 
    /* min-height: 1200px; */
    background: #000;
    overflow: hidden;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   background-image: url("/work/models/memorica/recursos/exposiciones/mpm2/img/landing/bgVid2.svg");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: scroll;
}

.stars {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #837549;
    opacity: 0;
    animation: blink 3s infinite alternate;
    border-radius: 50%;
}

/* Variaciones de brillo */
.star:nth-child(3n) { box-shadow: 0 0 5px #837549; animation-duration: 2.5s; }
.star:nth-child(5n) { box-shadow: 0 0 8px #837549; animation-duration: 3.2s; }
.star:nth-child(7n) { box-shadow: 0 0 12px #837549; animation-duration: 4s; }

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}