@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}
.risk-gauge {
    --size: 50px;        /* tamanho */
    --thickness: 6px;    /* espessura */
    --value: 60;          /* percentagem (0–100) */
    --color: #ff6b3d;     /* cor do risco */

    width: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;

    background:
            radial-gradient(
                    farthest-side,
                    #ffffff calc(100% - var(--thickness) - 1px),
                    transparent 0 99.9%,
                    #ffffff 0
            ),
            conic-gradient(
                    var(--color) calc(var(--value) * 1%),
                    #3a3a3a 0
            );
}

.risk-gauge-value {
    position: relative;
}