/* SELOS PREMIUM */
.selo-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: pulse-premium 2s infinite;
}

.selo-premium-2 {
    background: linear-gradient(135deg, #f18b43, #e67e22);
    color: white;
    border: 2px solid #f39c12;
}

.selo-premium-1 {
    background: linear-gradient(135deg, #6b4391, #8e44ad);
    color: white;
    border: 2px solid #9b59b6;
}

.selo-premium-1::before {
    content: "🌟 ";
    margin-right: 3px;
}

.selo-premium-2::before {
    content: "🏆 ";
    margin-right: 3px;
}

@keyframes pulse-premium {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

/* Ajuste para o card ter position relative */
.especialista-card {
    position: relative;
    /* mantém todos os outros estilos existentes */
}