
/* Footer */
.footer {
    background-color: var(--preto);
    padding: 40px 20px 30px;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-badge-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-logo-grupo {
    max-width: 120px;
    height: auto;
}

.footer-badge-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.footer-certificates {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-certificate-img {
    max-width: 100px;
    height: auto;
}

.footer-mazukim-logo {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    text-decoration: none;
    color: var(--branco);

    & i {
        font-size: 30px;
    }
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-address {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    color: var(--branco);
    margin: 0;
}