#cards{
    display: flex;
    justify-content: space-around;
    gap: 20px;
    width: 96%;
    margin: auto;
}

.card{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(  --color-grey);
    border-radius: 20px;
    padding: 30px;
}
.card:hover{
    background-color: var(--Laranja-vip);
    color: white;
    transition: all 0.5s ease;
}

.card p{
    text-align: center;
}

.fivestars{
    display: flex;
    margin: 20px 5px;
}

.fivestars img{
    width: 15px;
    height: 15px;
}

.foto-cliente img{
    width: 100px;
    border-radius: 50px;

}

@media (max-width: 800px) {
    #cards{
        flex-direction: column;
    }




}