/* ===============================================
   HERO BADGES - MÚLTIPLAS CERTIFICAÇÕES
   =============================================== */

.hero-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    border: 1px solid rgba(94, 234, 212, 0.3);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-dark);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.hero-badge.primary {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--mint-400);
    transform: scale(1.1);
}

.hero-badge:not(.primary):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--mint-400);
}

.badge-icon {
    font-size: var(--text-base);
}

/* Animação em cascata */
.hero-badge:nth-child(1) { animation-delay: 0.1s; }
.hero-badge:nth-child(2) { animation-delay: 0.2s; }
.hero-badge:nth-child(3) { animation-delay: 0.3s; }
.hero-badge:nth-child(4) { animation-delay: 0.4s; }
.hero-badge:nth-child(5) { animation-delay: 0.5s; }

@keyframes animate-fade-scale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-badges-container {
        justify-content: center;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-3);
    }
    
    .hero-badge.primary {
        transform: scale(1);
        width: 100%;
        justify-content: center;
        margin-bottom: var(--space-2);
    }
}