﻿.guarantee-badge {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.badge-circle {
    background: linear-gradient(180deg, #0d8a2d, #06641f);
    border-radius: 16px;
    padding: 25px 30px;
    color: white;
    text-align: center;
    max-width: 420px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18), 0 0 0 3px #f7d786 inset; /* Borda dourada */
    border: 2px solid rgba(255, 214, 110, 0.8);
    animation: badgePop 0.5s ease;
}

.badge-text-main {
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    color: #fffbe8;
}

.badge-text-sub {
    color: #fffaef;
}

/* pequeno efeito visual */
@keyframes badgePop {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
