/* Estilos para mejorar el Footer y Logo en móvil */

/* Logo ajustado */
.logo-container img,
#footer-logo {
    width: auto;
    height: auto;
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
}

/* Footer mejorado */
.footer {
    background-color: rgba(5, 10, 20, 0.95);
    padding: 40px 0 20px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(0, 157, 255, 0.1);
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #F2F2F2;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #009DFF;
    background-color: rgba(0, 157, 255, 0.1);
}

.footer-nav .highlight {
    background-color: rgba(237, 38, 122, 0.1);
    border: 1px solid #ED267A;
    color: #ED267A;
    font-weight: 600;
    border-radius: 30px;
}

.footer-nav .highlight:hover {
    background-color: #ED267A;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(237, 38, 122, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 157, 255, 0.1);
    color: #F2F2F2;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(0, 157, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.copyright {
    font-size: 0.9rem;
    color: #A6AAB6;
    margin-top: 20px;
}

/* Estilos específicos para móvil */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-nav a {
        width: 100%;
        padding: 12px;
        text-align: center;
        border-radius: 8px;
        background-color: rgba(12, 18, 32, 0.5);
    }
    
    .social-links {
        margin: 30px 0;
    }
}