/* ==========================================
   ESTILOS FOOTER - ASOVICAA
   ========================================== */

.footer-asovicaa {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
    border-top: 3px solid #1e40af;
}

/* ========================================== */
/* CONTENIDO DEL FOOTER                      */
/* ========================================== */

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section:last-child {
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    border-bottom: 2px solid #1e40af;
    padding-bottom: 0.75rem;
}

.footer-text {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-text a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-text a:hover {
    color: #48bb78;
    text-decoration: underline;
}

/* ========================================== */
/* ENLACES SOCIALES                          */
/* ========================================== */

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #1e40af;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #1e40af;
    color: #ffffff;
}

/* ========================================== */
/* LISTA DE ENLACES                          */
/* ========================================== */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:before {
    content: '▶';
    font-size: 0.7rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #1e40af;
    padding-left: 0.5rem;
}

.footer-links a:hover:before {
    opacity: 1;
}

/* ========================================== */
/* DIVISOR                                   */
/* ========================================== */

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* ========================================== */
/* BOTTOM/COPYRIGHT                          */
/* ========================================== */

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
}

.footer-copyright:hover {
    color: #2563eb;
}

/* ========================================== */
/* RESPONSIVE                                */
/* ========================================== */

@media (max-width: 768px) {
    .footer-asovicaa {
        padding: 2rem 1rem 1rem;
        margin-top: 3rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a:before {
        display: none;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .footer-asovicaa {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
    }
    
    .footer-text {
        font-size: 0.8rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}
