.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    z-index: 1000;
}

.floating-button {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.floating-button:hover {
    background-color: var(--black);
}

.floating-button--whatsapp {
    background-color: var(--green-whatsapp);
    text-decoration: none;
}

.floating-button--whatsapp:hover {
    background-color: var(--blue);
}

.floating-button i {
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    .floating-button {
        width: 3rem;
        height: 3rem;
    }
}