/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float {
    position: fixed;
    bottom: var(--pb-space-8);
    right: var(--pb-space-8);
    width: 56px;
    height: 56px;
    border-radius: var(--pb-radius-full);
    background-color: #25D366;
    color: var(--pb-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--pb-transition-base), box-shadow var(--pb-transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: var(--pb-white);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #25D366;
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: var(--pb-space-6);
        right: var(--pb-space-6);
        width: 48px;
        height: 48px;
    }
}

/* ─── DIVIDER ─── */
.divider {
    border: none;
    border-top: 1px solid var(--pb-gray-200);
    margin: var(--pb-space-8) 0;
}

/* ─── BADGE ─── */
.badge {
    display: inline-block;
    padding: var(--pb-space-1) var(--pb-space-3);
    font-size: var(--pb-text-xs);
    font-weight: var(--pb-weight-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--pb-radius-full);
    background-color: var(--pb-blue-lt);
    color: var(--pb-blue-dark);
}

.badge--navy {
    background-color: var(--pb-navy);
    color: var(--pb-white);
}

/* ─── SECTOR NUMBER LABEL ─── */
.sector-number {
    font-family: var(--pb-font-mono);
    font-size: var(--pb-text-xs);
    font-weight: var(--pb-weight-medium);
    color: var(--pb-blue-dark);
    letter-spacing: 0.08em;
}
