/* Badge de Post Ao Vivo */
.live-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: #ff0000;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    width: fit-content;
}

.live-badge::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

/* Badge nos destaques */
.featured-post .live-badge,
.featured-posts .live-badge {
    position: relative;
    z-index: 10;
}
