html body .footer-responsive {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.8rem 1rem;
    width: 100%;
    text-align: right;
    background-color: #08415C;
}

html body .footer-text {
    font-size: 0.85rem;
    color: white;
    line-height: 1.4;
}

/* Tablet / celular */
@media (max-width: 768px) {
    html body .footer-responsive {
        justify-content: center;
        text-align: center;
        padding: 0.8rem;
    }

    html body .footer-text {
        font-size: 0.75rem;
    }
}

/* Celular chico */
@media (max-width: 480px) {
    html body .footer-text {
        font-size: 0.68rem;
    }
}