 /* FOOTER */
footer { 
    background: #01051B; 
    color: var(--menu-rodape-texto-cor); 
    text-align: justify;
    padding: 60px 0 20px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); 
}
footer h4 { 
    /* color: black;  */
    font-weight: bold; 
    /* margin-bottom: 25px; 
    text-align: center; */
}
.row-rodape {
    justify-content: space-between;
}
.footer-logo { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: #fff;
    text-decoration: none; 
}
.footer-links {
    width: auto;
}
.footer-links list-unstyled li { 
    margin-bottom: 10px; 
}
.footer-links a { 
    color: var(--menu-rodape-texto-cor); 
    font-weight: bold; 
    text-decoration: none; 
    font-size: 14px; 
}
.footer-links a:hover { 
    color: var(--primaria-cor); 
}
.social-icons a {
    font-size: 30px;
}
.social-icons a i { 
    font-size: 40px; 
    color: var(--menu-rodape-texto-cor); 
    /* margin-right: 15px;  */
    transition: 0.3s; 
}
.social-icons a i:hover { 
    /* font-size: 45px;  */
    color: var(--primaria-cor);
}
.social-icons {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
}
.bottom-footer {
    border-top: 1px solid #333; 
    margin-top: 40px; 
    padding-top: 20px; 
    font-size: 13px; 
}

@media (max-width: 992px) {    
    footer {
        text-align: center;
    }
}

footer h4 {
    color:  var(--menu-rodape-texto-cor);
}
.politica-privacidade {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.politica-privacidade a {
    color: var(--menu-rodape-texto-cor);
    font-weight: bold;
    font-size: 20px;
}
.politica-privacidade a:hover {
    color: var(--menu-rodape-texto-cor);
    text-decoration: underline;
}

@media (max-width: 991px) {    
    .footer-links {
        width: 100%;
    }
    .politica-privacidade {
        width: 100%;
    }
    .social-icons {
        gap: 80px;
    }
}