.floating-container {
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 1000;
}

.floating-button {
    /* width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* color: white;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
    /* cursor: pointer; */
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.element-container {
    position: absolute;
    bottom: 100px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-container:hover .element-container {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.float-element {
    width: 180px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: white;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(255, 255, 255, 0.2);
    transform: translateX(30px);
    transition: all 0.3s ease;
    opacity: 0;
    background: rgba(22,88,173,1);
}

.floating-container:hover .float-element {
    transform: translateX(0);
    opacity: 1;
}

.float-element i {
    font-size: 20px;
    margin-right: 10px;
}

.element-label {
    font-size: 14px;
    font-weight: 500;
}

.float-element:nth-child(1) { transition-delay: 0.1s; }
.float-element:nth-child(2) { transition-delay: 0.2s; }
.float-element:nth-child(3) { transition-delay: 0.3s; }
.float-element:nth-child(4) { transition-delay: 0.4s; }
.float-element:nth-child(5) { transition-delay: 0.5s; }
.float-element:nth-child(6) { transition-delay: 0.6s; }

.element-container .fa-whatsapp:before{
    font-size: 26px;
}