/* ═══════════════════════════════════════════════
   FOOTER GLOBAL - TODAS AS PÁGINAS
   ═══════════════════════════════════════════════ */
footer {
    background: linear-gradient(135deg, rgba(13, 30, 17, 0.95), rgba(45, 80, 22, 0.9)) !important;
    border-top: 2px solid rgba(144, 238, 144, 0.3) !important;
    padding: 60px 20px 30px !important;
    margin-top: 80px !important;
}

footer .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

.footer-section h2,
.footer-section h4 {
    color: #90ee90 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 0 10px rgba(144, 238, 144, 0.5) !important;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8 !important;
}

.footer-section ul {
    list-style: none !important;
    padding: 0 !important;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.footer-section a:hover {
    color: #90ee90 !important;
    transform: translateX(5px) !important;
    text-shadow: 0 0 10px rgba(144, 238, 144, 0.5) !important;
}

/* Estilos específicos para footer-logo */
.footer-logo h2 {
    color: #90ee90 !important;
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
}

/* Responsivo */
@media (max-width: 768px) {
    footer {
        padding: 40px 15px 20px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

