.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: fixed;
    bottom: 30px;
    z-index: 9999;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.35);
}

.floating-button i {
    font-size: 30px;
    color: #ffffff;
}

.whatsapp-button {
    background-color: #25d366;
    right: 30px;
}

.phone-button {
    background-color: #25d366;
    left: 30px;
}

@media (max-width: 768px) {
    .floating-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }

    .whatsapp-button {
        right: 20px;
    }

    .phone-button {
        left: 20px;
    }

    .floating-button i {
        font-size: 24px;
    }
}
