/* ========================================
   Footer Styles - Tema 3
   Prefeitura de Bom Jesus da Penha
   ======================================== */

/* Footer Principal */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--primary-light) 50%, 
        var(--secondary-color) 100%);
}

/* Footer Sections */
.footer-section h5 {
    font-size: 1.1rem;
    color: #fff;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Footer Contact */
.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact i {
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #fff;
}

/* Social Links Footer */
.social-links-footer a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.social-links-footer a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .footer {
        padding-top: 3rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section .d-flex {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-links-footer {
        justify-content: center;
    }
}

