#floating-icons-container {
    position: fixed;
    bottom: 100px; /* altura desde abajo */
    right: 27px;   /* margen lateral */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999; /* por encima de todo */
}

@media screen and (max-width: 900px) {
    #floating-icons-container {
        bottom: 85px;
        right: 15px;
    }

}

.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.floating-icon.icon-call{
    background-color: #e0592a;
}

.floating-icon.icon-status{
    background-color: #65baaf;
}

.floating-icon:hover {
    transform: scale(1.12);
}
