.rodape {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: 50px 0px;
    /* text-align: center;
    font-size: 14px; */
}

.rodape-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;

    margin-left: auto;
    margin-right: auto;
    max-width: 1150px;
    width: 90%;
}

.rodape-coluna{
    width: 100%;
    text-align: left;
    min-width: 0;
}

.rodape-coluna .logo {
    width: 100px;
    height: 100px;
}

.rodape-coluna .logonot {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    border-radius: 50%;
    display: block;
    background-color: #DCDCDC;
    border: 1px solid #EEE;
    box-shadow: 0 4px 6px rgba(197, 196, 196, 0.15);
    padding: 3px;
    overflow: hidden;
}


.rodape h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.rodape p,
.rodape li {
    color: var(--color-footer-text);
    text-decoration: none;
    line-height: 1.8;
}

.rodape a {
    color: var(--color-footer-link);
    text-decoration: none;
    line-height: 1.8;
}

p.rodape-descricao {
    max-width: 380px;
    margin: 0 auto;
    line-height: 22px;
}

.rodape-redes {
    margin-top: 20px;
    display: flex;
    /* justify-content: center; */
    gap: 15px;
}

.rodape-redes a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-footer-link);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-footer-link);
    transition: all 0.3s ease;
}

.rodape-redes a:hover {
    transform: translateY(-3px);
}

.rodape-enderecos p {
    line-height: 22px;
}

.rodape-links ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr); /* duas colunas */
    column-gap: 40px;
    row-gap: 8px;
}

.rodape-links ul li {
    margin-bottom: 8px;
}

.rodape-links a:hover {
    text-decoration: underline;
}

.rodape-contato p {
    line-height: 22px;
}

.rodape-contato a:hover {
    text-decoration: underline;
}

.rodape-botao {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    border: 1px solid var(--color-footer-link);
    color: var(--color-footer-link);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.rodape-botao.destaque {
    background-color: var(--color-footer-bg);
}

a.rodape-botao:hover {
    transform: translateY(-3px);
    text-decoration: none;
}


.subrodape {
    border-top: 1px solid color-mix(
        in srgb,
        var(--color-border) 80%,
        transparent
    );
    background-color: var(--color-subfooter-bg);
    padding: 40px 20px;
    text-align: center;
    color: var(--color-subfooter-text);
    line-height: 1.8;
}

.subrodape a {
    color: var(--color-subfooter-link);
    text-decoration: underline;
}

.subrodape a:hover {
    text-decoration: none;
}




/* =========================
   TABLET
========================= */

@media (max-width: 991px){

    .rodape-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
    }

}

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

@media (max-width: 576px){

    .rodape{
        padding: 50px 0;
    }

    .rodape-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }

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

    .rodape h3{
        font-size: 20px;
        margin-bottom: 14px;
    }

    .rodape p,
    .rodape li,
    .rodape a{
        font-size: 14px;
        line-height: 1.7;
    }

    .rodape-redes{
        justify-content: flex-start;
    }

    .rodape-redes a{
        width: 40px;
        height: 40px;
    }

    .rodape-links ul{
        grid-template-columns: 1fr;
        gap: 6px;
    }

}

/* =========================
   TELAS MUITO PEQUENAS
========================= */

@media (max-width: 420px){

    .rodape-container{
        grid-template-columns: 1fr;
    }

}