.rodape {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: 50px 0px;
}

.rodape-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.rodape-coluna {
    flex: 1;
    min-width: 250px;
}

.rodape .logo_img {
    height: 95px;
    border-radius: 50px;
}

.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;
}

/* Responsivo */
@media (max-width: 1200px) {
    .rodape-container {
        flex-direction: column;
        text-align: center;
    }

    .rodape-links ul {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rodape-redes {
        justify-content: center;
    }
}