/* Mantiene la animación de tamaño que ya funciona */
[href*="facebook"]:hover, 
[href*="tiktok"]:hover, 
[href*="instagram"]:hover {
    transform: scale(1.18) !important;
    transition: all 0.2s ease-in-out !important;
    display: inline-block !important;
}

/* Al pasar el mouse por cualquiera de las tres redes, fuerza el color ROJO #c20e1a */
[href*="facebook"]:hover *,
[href*="tiktok"]:hover *,
[href*="instagram"]:hover * {
    color: #c20e1a !important;
    fill: #c20e1a !important;
    /* Este filtro matemático transforma el blanco puro en el rojo #c20e1a */
    filter: invert(13%) sepia(95%) saturate(4646%) hue-rotate(348deg) brightness(81%) contrast(98%) !important;
}