/*
 * Footer
 */
.footer-parceria {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-parceria__container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: clamp(1rem, 4vw, 3rem);
}
.footer-parceria__texto {
    text-align: center;
    color: #FFFFFF;
    font-size: 1.3rem;
    font-family: 'PublicSans', sans-serif;
    font-weight: 600;
}
.footer-parceria__parceiro {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-parceria__parceiro a {
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-parceria__parceiro:hover {
    transform: translateY(-5px);
}
.footer-parceria__parceiro:hover a {
    transform: scale(1.02);
}
.footer-parceria__logo {
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-parceria__parceiro:hover .footer-parceria__logo {
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

/* ============
   FOOTER GERAL
   ============ */
.footer-geral {
    color: #ffffff;
    padding: 0;
    margin-top: 5rem;
}
.footer-geral__main {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-geral__brand {
    display: flex;
	flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    justify-content: space-evenly;
    height: 100%;
}
.footer-geral__logo {
    width: auto;
    min-height: 50px;
    min-width: 50px;
    max-width: 250px;
    display: block;
    object-fit: contain;
}
.footer-geral__nome {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}
.footer-geral__redes-sociais {
    display: flex;
    gap: 1rem;
}
.footer-geral__rede-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background 0.3s ease;
    text-decoration: none;
    border: 3px solid rgba(255, 255, 255, 0.15);
}
.footer-geral__rede-link:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}
.footer-geral__rede-icone {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.footer-geral__navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-geral__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.footer-geral__menu li {
    list-style: none;
}
.footer-geral__menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-geral__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.footer-geral__menu a:hover,
.footer-geral__menu a:focus,
.footer-geral__menu .current-menu-item a {
    color: #ffffff;
}
.footer-geral__menu a:hover::after,
.footer-geral__menu a:focus::after,
.footer-geral__menu .current-menu-item a::after {
    width: calc(100% - 2rem);
}
.footer-geral__bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-geral__copyright,
.footer-geral__cnpj {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.footer-geral__cnpj {
    text-align: right;
}
/* Responsividade */
@media (max-width: 991.98px) {
    .footer-geral__main {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-geral__brand,
    .footer-geral__navigation {
        align-items: center;
        text-align: center;
    }
    
    .footer-geral__menu {
        align-items: center;
    }
    
    .footer-geral__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-geral__cnpj {
        text-align: center;
    }
}
@media (max-width: 767.98px) {
    .footer-geral {
        margin-top: 3rem;
    }
    
    .footer-geral__main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-geral__logo {
        height: 55px;
        min-height: 40px;
    }
    
    .footer-geral__nome {
        font-size: 1.1rem;
    }
    
    .footer-geral__redes-sociais {
        justify-content: center;
    }
    
    .footer-geral__rede-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-geral__rede-icone {
        width: 20px;
        height: 20px;
    }
    
    .footer-geral__menu a {
        font-size: 0.95rem;
    }
    
    .footer-geral__copyright,
    .footer-geral__cnpj {
        font-size: 0.8rem;
    }
}