.whatsapp-fixed {
    position: fixed;
    bottom: 250px;
    right: 30px;
    z-index: 9;
}

.btn-whatsapp {
    background-color: #30bf39;
    color: #fff;
    border-radius: 100%;
    transition: background-color 0.5s;
    width: 50px !important;
    height: 50px !important;
    line-height: 60px;
    position: relative !important;
    display: block;
    transform: none !important;
    z-index: 9;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07),
        0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07),
        0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
    transition: all 0.5s ease;
}

.btn-whatsapp:hover {
    background-color: #2b592e;
}

.whatsapp-fixed a.video-vemo-icon.btn-whatsapp i {
    font-size: 28px;
    color: #fff;
    animation: sm-shake-animation linear 1.5s infinite;
    animation-delay: 3s;
}

.sm-red-dot {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 12px;
    height: 12px;
    margin: 0 auto;
    background: red;
    transform: scale(0);
    border-radius: 50%;
    animation-name: notificationPoint;
    animation-duration: 300ms;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

.quick-message {
    position: absolute;
    bottom: 4px;
    right: 88px;
    width: max-content;
    border-radius: 0;
    background: #393b39;
}

.line-up {
    opacity: 0;
    animation-name: anim-lineUp;
    animation-duration: 0.75s;
    animation-fill-mode: forwards;
    animation-delay: 5s;
}

.quick-message p {
    line-height: 30px;
    font-size: 15px;
    padding: 4px 16px;
    height: 40px;
    position: relative;
    color: #fff;
    margin: 0;
}

.quick-message .seta-direita:before {
    display: inline-block;
    content: "";
    vertical-align: middle;
    margin-right: 10px;
    width: 0;
    height: 5px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #393b39;
    position: absolute;
    bottom: 0px;
    right: -30px;
}

#hover-message {
    display: none;
}

.whatsapp-fixed:hover #hover-message {
    display: block;
}

@keyframes zoomBig {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
    }

    40% {
        opacity: 0.5;
        border-width: 2px;
    }

    65% {
        border-width: 1px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes sm-shake-animation {
    0% {
        transform: rotate(0) scale(1) skew(0.017rad);
    }

    25% {
        transform: rotate(0) scale(1) skew(0.017rad);
    }

    35% {
        transform: rotate(-0.3rad) scale(1) skew(0.017rad);
    }

    45% {
        transform: rotate(0.3rad) scale(1) skew(0.017rad);
    }

    55% {
        transform: rotate(-0.3rad) scale(1) skew(0.017rad);
    }

    65% {
        transform: rotate(0.3rad) scale(1) skew(0.017rad);
    }

    75% {
        transform: rotate(0) scale(1) skew(0.017rad);
    }

    100% {
        transform: rotate(0) scale(1) skew(0.017rad);
    }
}

@keyframes notificationPoint {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes anim-lineUp {
    from {
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

/* phone  */

.call-button {
    position: fixed;
    bottom: 150px;
    right: 30px;
    background-color: #23938d;
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    padding: 1rem 1rem;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-button:hover {
    background-color: #154a5a;
    color: #fff;
}

.call-button i {
    font-size: 20px;
}
