.social-icons-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 200px;
    background-color: #fcf4ec;
}

.social-icons-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15), -5px -5px 15px rgba(255,255,255,0.7);
    font-size: 1.8em;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons-bar a i {
    z-index: 1;
    transition: transform 0.4s ease, color 0.4s ease;
}

.social-icons-bar a:hover {
    transform: rotate(10deg) scale(1.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-icons-bar a:hover i {
    transform: rotate(360deg);
    color: #fff;
}

/* Colores personalizados */
.social-icons-bar a.facebook { background-color: #3b5998; color: #fff; }
.social-icons-bar a.twitter { background-color: #1da1f2; color: #fff; }
.social-icons-bar a.instagram { 
    background: radial-gradient(circle at 30% 30%, #fdf497, #fdf497 30%, #fd5949 50%, #d6249f 70%, #285AEB 100%);
    color: #fff; 
}
.social-icons-bar a.youtube { background-color: #ff0000; color: #fff; }
