/**
 * Mineiro Badge Component
 * Estilização do componente de badge com expressões mineiras
 */

.mineiro-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px dashed var(--accent-cyan);
    border-radius: 30px;
    padding: 10px 25px;
    margin: 20px auto;
    transform: rotate(-1deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    transition: all 0.3s ease;
    cursor: default;
}

.mineiro-badge::before {
    content: '🧀';
    font-size: 1.5rem;
    margin-right: 10px;
}

.mineiro-badge::after {
    content: '☕';
    font-size: 1.5rem;
    margin-left: 10px;
}

.mineiro-text {
    font-family: var(--font-primary);
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-cyan);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.mineiro-badge:hover {
    transform: rotate(1deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-purple);
}

/* Variação flutuante */
.mineiro-badge.floating {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
    100% {
        transform: translateY(0) rotate(-1deg);
    }
}

/* Variação para cada seção */
.mineiro-badge.about {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    border-color: var(--accent-green);
}

.mineiro-badge.journey {
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.2) 0%, rgba(240, 147, 251, 0.2) 100%);
    border-color: var(--accent-pink);
}

.mineiro-badge.ethics {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(0, 210, 255, 0.2) 100%);
    border-color: var(--accent-purple);
}

.mineiro-badge.compliance {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2) 0%, rgba(245, 87, 108, 0.2) 100%);
    border-color: var(--accent-cyan);
}

/* Responsividade */
@media (max-width: 768px) {
    .mineiro-badge {
        padding: 8px 16px;
    }
    
    .mineiro-badge::before,
    .mineiro-badge::after {
        font-size: 1.2rem;
    }
    
    .mineiro-text {
        font-size: 0.95rem;
    }
    
    .mineiro-badge.floating {
        right: 15px;
        bottom: 15px;
    }
}