
/* Premium Urgency Bar Styles */
.hero-urgency-bar {
    position: relative;
    background: #0d0d0d;
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.hero-urgency-bar::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: urgency-shine 8s infinite linear;
}

@keyframes urgency-shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 75, 74, 0.1);
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid rgba(226, 75, 74, 0.2);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #E24B4A;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #E24B4A;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(226, 75, 74, 0.4);
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(226, 75, 74, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(226, 75, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(226, 75, 74, 0); }
}

.vagas-badge {
    background: #E24B4A;
    color: white;
    padding: 3px 12px;
    border-radius: 4px;
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(226, 75, 74, 0.4);
}

.urgency-text {
    letter-spacing: -0.01em;
}

@media (max-width: 600px) {
    .urgency-content {
        gap: 8px;
        font-size: 0.95rem;
    }
    .live-indicator {
        padding: 4px 10px;
    }
}
