/* ====== FOOTER SOCIAL ICONS PREMIUM ====== */

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    /* Para permitir centrado desde el padre o media queries */
    justify-content: inherit;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    /* Centrado vertical */
    justify-content: center;
    /* Centrado horizontal */
    background: rgba(255, 255, 255, 0.08);
    /* Fondo más visible */
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* Borde más brillante */
    border-radius: 50%;
    /* Círculo perfecto */
    color: #ffffff;
    /* Blanco puro */
    font-size: 1.35rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/* Efecto de brillo resbaladizo */
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

/* Hover General */
.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Colores Específicos por Red (Opcional, pero recomendado para UX) */
/* Se activa con clases auxiliares o selectores nth-child si se prefiere orden fijo */

/* Instagram */
.social-link[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 25px rgba(214, 36, 159, 0.4);
}

/* LinkedIn */
.social-link[aria-label="LinkedIn"]:hover {
    background: #0077b5;
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
}

/* Facebook */
.social-link[aria-label="Facebook"]:hover {
    background: #1877F2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

/* Twitter / X */
.social-link[aria-label="Twitter"]:hover {
    background: #000;
    border-color: #333;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* WhatsApp */
.social-link[aria-label="WhatsApp"]:hover {
    background: #25D366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}