/* =====================================================
   RODAPÉ
===================================================== */

.rodape {
    width: 100%;

    padding: 25px 20px;

    background: #d9d9d9;

    color: #000000;
}


/* =====================================================
   CONTAINER
===================================================== */

.rodape-container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =====================================================
   LOGOTIPO
===================================================== */

.rodape-logo {
    display: flex;

    align-items: center;
}


.rodape-logo a {
    display: block;

    line-height: 0;
}


.rodape-logo img {
    display: block;

    width: 170px;

    height: auto;
}


/* =====================================================
   LINKS
===================================================== */

.rodape-links {
    display: flex;

    align-items: center;

    gap: 9px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
}


.rodape-links a {
    color: #000000;

    text-decoration: none;

    transition: color 0.3s ease;
}


.rodape-links a:hover {
    color: #153b67;
}


.rodape-links span {
    color: #777777;
}


/* =====================================================
   COPYRIGHT
===================================================== */

.rodape-copy {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    line-height: 1.5;

    color: #333333;

    text-align: right;
}


/* =====================================================
   CELULAR
===================================================== */

@media screen and (max-width: 750px) {

    .rodape {
        padding: 25px 22px;
    }


    .rodape-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 16px;
    }


    .rodape-logo img {
        width: 150px;
    }


    .rodape-links {
        flex-wrap: wrap;

        gap: 7px;
    }


    .rodape-copy {
        text-align: left;
    }

}