@media only screen and (max-width: 576px) {
    /* mobile */
    .politica__container p {
        font-size: 15px;
    }
    
    .footer {
        margin-top: 100%;
    }
}

@media only screen and (min-width: 577px) and (max-width: 991px) {
    /* tablet */
    .politica__container p {
        font-size: 15px;
    }
    
    .footer {
        margin-top: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1680px) {
    /*Monitores Low Res*/
    .politica__container p {
        font-size: 15px;
    }
    
    .footer {
        margin-top: 10%;
    }
}