.sfm-floating-menu {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.sfm-floating-menu a {
    background: #222;
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.sfm-floating-menu a:hover {
    background: #ff6600; /* Naranja */
    color: #fff;
}
