/* Progress Steps Horizontal - CSS Compartilhado */
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid #4B5563;
    position: relative;
    overflow: hidden;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
    border-radius: 16px 16px 0 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(100% - 20px);
    width: calc(100% - 20px);
    height: 3px;
    background: linear-gradient(90deg, #4B5563, #6B7280);
    z-index: 0;
    border-radius: 2px;
}

.step.completed:not(:last-child)::after {
    background: linear-gradient(90deg, #10b981, #059669);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.step.active:not(:last-child)::after {
    background: linear-gradient(90deg, #000000, #4B5563);
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: #374151;
    color: #D1D5DB;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid #4B5563;
}

.step.completed .step-circle {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step.completed .step-circle i {
    display: block;
    font-size: 1rem;
}

.step.active .step-circle {
    background: linear-gradient(135deg, #000000, #1F2937);
    color: white;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    }
}

.step-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.step-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #F9FAFB;
    white-space: nowrap;
    margin-bottom: 0.25rem;
}

.step.active .step-label {
    color: #FFFFFF;
}

.step.completed .step-label {
    color: #10B981;
}

.step-subtitle {
    font-size: 0.8rem;
    color: #D1D5DB;
    white-space: nowrap;
    font-weight: 500;
}

.step.active .step-subtitle {
    color: #E5E7EB;
}

.step.completed .step-subtitle {
    color: #34D399;
}

/* Responsive */
@media (max-width: 768px) {
    .progress-steps {
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .step {
        width: 100%;
        justify-content: flex-start;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.85rem;
    }
    
    .step-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .progress-steps {
        padding: 1rem 0.5rem;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .step-subtitle {
        font-size: 0.7rem;
    }
}
