/* Enhanced Footer Styles */
.footer-section {
    padding: 4rem 0 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.footer-logos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.footer-logo-item img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo-item img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-subvencion img {
    max-width: 400px;
    max-height: 300px
    ;
}

.footer-brand img {
    max-width: 200px;
    max-height: 80px;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #163f90;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #077ce7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 63, 144, 0.3);
    color: white;
}

.footer-social i {
    font-size: 20px;
    line-height: 1;
}

.footer-copyright {
    background: #163f90;
    color: white;
    padding: 1.5rem 0;
}

.footer-copyright a {
    color: #b3d1ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: white;
    text-decoration: underline;
}

.footer-divider {
    color: #b3d1ff;
    margin: 0 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-logos-container {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo-item {
        min-height: 80px;
    }

    .footer-subvencion img {
        max-width: 250px;
        max-height: 80px;
    }

    .footer-brand img {
        max-width: 150px;
        max-height: 60px;
    }

    .footer-social {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
    }

    .footer-social i {
        font-size: 18px;
    }

    .footer-links {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-copyright {
        padding: 1.2rem 0;
    }
}

@media (max-width: 480px) {
    .footer-logos-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }

    .footer-divider {
        display: none;
    }
}
