#review-customer{

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    padding: 30px 10px; 
}

#heading{
    color: white;
}

#container-box-review-customer{

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.box-review-customer{

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 300px;
   
}

.box-review-customer h3{

    font-weight: bolder;
    color: #260101;
}

.text-review-customer{
    padding: 10px;
    color: white;
    font-family: 'Poppins';
    line-height: 25px;
}
.div-image-customer{

    height: 120px;
    width: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    
    transition: opacity 0.5s ease;

}

.div-image-customer::after {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
    transform: skewX(-0.08turn) translateX(-180%);
}



.applyStyles::after {

    transform: skewX(-0.08turn) translateX(275%);
    transition: 2000ms ease;
    
}

.div-image-customer img{

    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    
}

.stars i {
    color: #FFD700;
    animation: shine 2s infinite; /* Ajuste a duração conforme necessário */
}

@keyframes shine {

    0%, 100% {
        filter: brightness(1);
        text-shadow: 0 0 2px white;

    }
    50% {
        filter: brightness(1.5); 
        text-shadow: 0 0 4px white;

    }
    
}
