/*
Theme Name: Avada Child
Template: Avada
Version: 1.0
*/

.ac-whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.ac-whatsapp-button:hover,
.ac-whatsapp-button:focus {
    background-color: #1da851;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}

.ac-whatsapp-button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .ac-whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .ac-whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ac-whatsapp-button {
        transition: none;
    }

    .ac-whatsapp-button:hover,
    .ac-whatsapp-button:focus {
        transform: none;
    }
}