#inicio {
    background-repeat: no-repeat;
    background-position: 20% 40%;
    background-size: cover;
    background-image:
        linear-gradient(rgba(255, 255, 255, .2),rgba(255, 255, 255)),
        linear-gradient(0.25turn, rgba(255, 255, 255), 20%, rgba(255, 255, 255, .2)),
        url(../img/index.jpg);
    color: black;
    background-color: rgb(255, 255, 255);
}

#points {
    background-color: white;
    text-align: center;
}

#points .card {
    border-radius: 50px;
}

#points .circle {
    background-color: var(--laranja-logo);
    border-radius: 120px;
    padding: 20px;
    height: 150px;
    width: 150px;
}

#servicos {
    background-color: white;
    text-align: center;
}

#servicos .imagem {
    padding: 0;
}

#depoimento .card {
    border-radius: 50px;
}

#depoimento .comentario {
    text-align: right;
}

#depoimento .imagem {
    border-radius: 50px;
    background-color: gray;
    height: 50px;
    width: 50px;
    border: 3px solid var(--amarelo-logo);
}

@media only screen and (max-width: 1400px) {
    #points .card {
        min-height: 440px;
    }
}

@media only screen and (max-width: 768px) {
    #depoimento .comentario {
        text-align: center;
    }
}