/* Estilos del Wizard de Onboarding */
:root {
    --primary-color: #3b82f6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #1e293b;
    --light-bg: #f8fafc;
}

body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 4rem 0;
}

.hero-content h1 {
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.features-list {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* Progress Bar */
.onboarding-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.progress-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 3px solid #e2e8f0;
}

.progress-label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    white-space: nowrap;
}

.progress-item.active .progress-number {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1);
}

.progress-item.completed .progress-number {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.progress-item.completed .progress-number::before {
    content: '✓';
    font-size: 1.5rem;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e2e8f0;
    margin: 0 1rem;
    margin-top: -25px;
    position: relative;
}

.progress-item.completed + .progress-line {
    background: var(--success-color);
}

/* Cards */
.card {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.card-body {
    background: white;
}

.card-title {
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-title i {
    font-size: 1.5rem;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label i {
    color: var(--primary-color);
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Buttons */
.btn {
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert i {
    margin-right: 0.5rem;
}

/* Loading States */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .onboarding-progress {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-line {
        width: 3px;
        height: 50px;
        margin: 0;
        margin-top: 0;
    }
    
    .progress-label {
        font-size: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}
