.bp-whatsapp {
    --bp-whatsapp-navy: #0d1e2e;
    --bp-whatsapp-gold: #e1b16d;
    --bp-whatsapp-green: #25d366;
    --bp-whatsapp-green-dark: #128c4a;
    position: fixed;
    right: 28px;
    bottom: 82px;
    z-index: 9999999;
    font-family: "Gotham", sans-serif;
}

.bp-whatsapp__launcher {
    position: relative;
    display: grid;
    width: 66px;
    height: 66px;
    margin-left: auto;
    padding: 0;
    place-items: center;
    appearance: none;
    border: 0;
    border-radius: 50%;
    background: var(--bp-whatsapp-green);
    box-shadow:
        0 9px 22px rgba(5, 18, 35, .24),
        0 2px 5px rgba(5, 18, 35, .16);
    color: #fff;
    cursor: pointer;
    isolation: isolate;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.bp-whatsapp__launcher::before {
    content: none;
}

.bp-whatsapp__launcher:hover {
    box-shadow:
        0 12px 27px rgba(5, 18, 35, .28),
        0 3px 7px rgba(5, 18, 35, .16);
    filter: brightness(1.035);
    transform: translateY(-2px) scale(1.035);
}

.bp-whatsapp__launcher:active {
    box-shadow:
        0 5px 14px rgba(5, 18, 35, .22);
    transform: translateY(0) scale(.97);
}

.bp-whatsapp__launcher:focus-visible,
.bp-whatsapp__close:focus-visible,
.bp-whatsapp__action:focus-visible {
    outline: 3px solid rgba(225, 177, 109, .65);
    outline-offset: 3px;
}

.bp-whatsapp__launcher svg {
    display: block;
    width: 50px;
    height: 50px;
    overflow: visible;
}

.bp-whatsapp__bubble {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.25;
}

.bp-whatsapp__phone-mark {
    fill: currentColor;
    stroke: none;
}

.bp-whatsapp__notice {
    position: absolute;
    right: 70px;
    bottom: 7px;
    width: max-content;
    max-width: min(270px, calc(100vw - 110px));
    padding: 11px 14px;
    border: 1px solid rgba(13, 30, 46, .08);
    border-radius: 8px 8px 2px 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(13, 30, 46, .14);
    color: var(--bp-whatsapp-navy);
    font-size: 13px;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .3s ease, transform .3s ease;
}

.bp-whatsapp__notice.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.bp-whatsapp__panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: min(340px, calc(100vw - 36px));
    overflow: hidden;
    border: 1px solid rgba(13, 30, 46, .08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(13, 30, 46, .22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(.98);
    transform-origin: bottom right;
    transition: opacity .25s ease, transform .25s ease;
}

.bp-whatsapp.is-open .bp-whatsapp__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.bp-whatsapp.is-open .bp-whatsapp__notice {
    opacity: 0;
}

.bp-whatsapp__header {
    position: relative;
    padding: 22px 50px 20px 22px;
    background:
        radial-gradient(circle at 90% -20%, rgba(225, 177, 109, .45), transparent 43%),
        var(--bp-whatsapp-navy);
}

.bp-whatsapp__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--bp-whatsapp-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.bp-whatsapp__title {
    display: block;
    color: #fff;
    font-family: "Gobold", sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
}

.bp-whatsapp__close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
}

.bp-whatsapp__body {
    padding: 20px 22px 22px;
}

.bp-whatsapp__body p {
    margin: 0 0 15px;
    color: #3c4650;
    font-size: 14px;
    line-height: 1.6;
}

.bp-whatsapp__status {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: #5f6870;
    font-size: 12px;
}

.bp-whatsapp__status::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bp-whatsapp-green);
    box-shadow: 0 0 0 4px rgba(30, 169, 82, .12);
    content: "";
}

.bp-whatsapp__action {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: var(--bp-whatsapp-green);
    box-shadow: 0 10px 22px rgba(30, 169, 82, .2);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background-color .2s ease, transform .2s ease;
}

.bp-whatsapp__action:hover {
    background: var(--bp-whatsapp-green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.bp-whatsapp__phone {
    display: block;
    margin-top: 12px;
    color: #77808a;
    font-size: 11px;
    text-align: center;
}

@media (max-width: 767px) {
    .bp-whatsapp {
        right: 18px;
        bottom: 78px;
    }

    .bp-whatsapp__launcher {
        width: 60px;
        height: 60px;
    }

    .bp-whatsapp__launcher svg {
        width: 45px;
        height: 45px;
    }

    .bp-whatsapp__panel {
        position: fixed;
        right: 18px;
        bottom: 145px;
    }

    .bp-whatsapp__notice {
        right: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bp-whatsapp__launcher,
    .bp-whatsapp__notice,
    .bp-whatsapp__panel,
    .bp-whatsapp__action {
        animation: none;
        transition: none;
    }
}
