.hex-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 4px 10px;
    border-radius: 9999px;

    font-size: 0.75rem;   /* text-xs */
    line-height: 1rem;
    font-weight: 600;

    color: #fff;
    background: linear-gradient(
        135deg,
        var(--badge-color-light, #22c55e),
        var(--badge-color-dark, #15803d)
    );

    /* glass / blur */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    /* glow + profundidade */
    box-shadow:
        0 0 8px color-mix(in srgb, var(--badge-color, #22c55e) 60%, transparent),
        inset 0 0 2px #0003;

    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        background 0.18s ease-out;
}

.hex-badge:hover {
    transform: scale(1.06);
    box-shadow:
        0 0 14px color-mix(in srgb, var(--badge-color, #22c55e) 75%, transparent),
        inset 0 0 6px #0005;
}
