/* Estilos mejorados para redes sociales con colores oficiales */

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Facebook */
.social-facebook {
    background: #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-facebook:hover {
    background: #166fe5;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

/* Instagram */
.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-instagram:hover {
    background: linear-gradient(45deg, #e8842b 0%, #d45a34 25%, #c91f3b 50%, #b31e5e 75%, #a1177a 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

/* YouTube */
.social-youtube {
    background: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.social-youtube:hover {
    background: #e60000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

/* TikTok */
.social-tiktok {
    background: linear-gradient(45deg, #000000 0%, #fe2c55 50%, #25f4ee 100%);
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.3);
    position: relative;
}

.social-tiktok::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff0050 0%, #00f2ea 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-tiktok:hover::before {
    opacity: 1;
}

.social-tiktok:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(254, 44, 85, 0.5);
}

.social-tiktok i {
    position: relative;
    z-index: 1;
}

/* Iconos mejorados */
.social-links a i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.1);
}

/* Animaciones adicionales */
@keyframes socialPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.social-links a:hover {
    animation: socialPulse 0.6s ease;
}

/* Efectos de brillo */
.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    border-radius: 50%;
}

.social-links a:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .social-links a i {
        font-size: 1.1rem;
    }
}