/* Footer Styles */
.footer {
    background: linear-gradient(90deg, var(--navbar-bg-start) 0%, var(--navbar-bg-mid) 30%, var(--navbar-bg-end) 60%, var(--navbar-accent-dark) 85%, var(--navbar-accent) 100%) !important;
    border-top: 3px solid var(--footer-border);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid var(--footer-accent);
    padding-bottom: 0.5rem;
}

.footer p,
.footer .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer a:hover {
    color: var(--footer-accent) !important;
    transition: color 0.3s ease;
}

.footer .social-links a {
    color: #fff;
}

.footer .social-links a:hover {
    color: var(--footer-accent) !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer ul li {
    transition: transform 0.2s ease;
}

.footer ul li:hover {
    transform: translateX(5px);
}

.footer hr {
    opacity: 0.2;
}
/* Responsividade para Footer */
@media (max-width: 767.98px) {
    .footer {
        text-align: center;
    }
    
    .footer h5 {
        margin-top: 1.5rem;
        font-size: 1.1rem;
    }
    
    .footer h5:first-child {
        margin-top: 0;
    }
    
    .footer .col-md-3,
    .footer .col-md-4 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer h5 {
        font-size: 1rem;
    }
    
    .footer p,
    .footer a {
        font-size: 0.9rem;
    }
}