
.scroll-whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.scroll-up {
    width: 32px;
    height: 32px;
    background-color: rgba(29, 29, 31, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    pointer-events: none; 
    transition: opacity 0.4s, transform 0.4s;
}

.scroll-up._show-scroll {
    opacity: 1;
    pointer-events: auto; 
    transform: translateY(0);
}

.scroll-up:hover {
    transform: translateY(-.25rem);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    background-color: rgb(49, 236, 0);
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 10px;
}

.whatsapp-svg {
    width: 24px;
    height: 24px;
    fill: white;
}

html {
    scroll-behavior: smooth; 
}