.whatsapp-float {
    display: none;
    position: fixed;
    right: var(--space-3);
    bottom: 66px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: var(--color-white);
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 700;
    transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

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

.mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 650;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--color-surface);
    box-shadow: 0 -6px 24px rgba(30, 30, 30, 0.12);
}

.mobile-cta-bar a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary-dark);
    border-right: 1px solid var(--color-border);
}

.mobile-cta-bar a:last-child {
    border-right: none;
}

.mobile-cta-bar a.is-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.mobile-cta-bar svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 992px) {
    .mobile-cta-bar {
        display: none;
    }

    .whatsapp-float {
        display: flex;
        bottom: var(--space-4);
    }
}

body.has-mobile-cta {
    padding-bottom: 50px;
}

@media (min-width: 992px) {
    body.has-mobile-cta {
        padding-bottom: 0;
    }
}
