﻿.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 20px auto;
    position: relative;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

    .wizard-progress::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #4caf50 var(--progress, 0%), #e0e0e0 0%);
        transform: translateY(-50%);
        z-index: 0;
    }

.wizard-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    flex: 1;
    max-width: 140px;
}

    .wizard-step span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: #f5f5f5;
        color: #757575;
        font-size: 14px;
        font-weight: 600;
        border: 2px solid #e0e0e0;
        margin-bottom: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .wizard-step.completed span {
        background-color: #4caf50;
        color: #fff;
        border-color: #4caf50;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
        transform: scale(1.05);
    }

    .wizard-step span::after {
        content: '✓';
        font-size: 12px;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .wizard-step.completed span::after {
        opacity: 1;
    }

    .wizard-step small {
        font-size: 12px;
        font-weight: 500;
        color: #666;
        text-align: center;
        line-height: 1.3;
        max-width: 100px;
        word-break: break-word;
    }

    .wizard-step.completed small {
        color: #4caf50;
        font-weight: 600;
    }

    /* Classe para indicar o passo atual */
    .wizard-step.current span {
        background-color: #2196f3;
        color: #fff;
        border-color: #2196f3;
        box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
    }

    .wizard-step.current small {
        color: #2196f3;
        font-weight: 600;
    }
