:root {
    --mcmv-green: #071BA8;
    --mcmv-light-green: #2ecc71;
    --mcmv-yellow: #FFD100;
    --mcmv-blue: #071BA8;
    --mcmv-bg: #f4f6f9;
}

body {
    background-color: var(--mcmv-bg);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
}

.app-container {
    max-width: 768px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.app-header {
    background-color: var(--mcmv-green);
    color: white;
    padding: 2.5rem 1.5rem 2rem;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(28, 44, 189, 0.2);
}

.app-header h1 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.app-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.app-content {
    flex-grow: 1;
    padding: 2rem 1.5rem;
}

.btn-mcmv {
    background-color: #071BA8;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 20px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 6px 15px rgba(7, 27, 168, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-mcmv:hover,
.btn-mcmv:focus {
    background-color: #051480;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 27, 168, 0.4);
}

.btn-success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

.btn-mcmv-outline {
    background-color: white;
    color: var(--mcmv-green);
    font-weight: 700;
    border: 2px solid var(--mcmv-green);
    border-radius: 14px;
    padding: 12px 20px;
    width: 100%;
    transition: all 0.3s;
}

.btn-mcmv-outline:hover {
    background-color: rgba(28, 44, 189, 0.05);
}

.form-control,
.form-select {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #ced4da;
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    border-color: var(--mcmv-green);
    box-shadow: 0 0 0 4px rgba(28, 44, 189, 0.15);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.mcmv-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
}

.hidden {
    display: none !important;
}

.alert-custom {
    border-radius: 12px;
    padding: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mcmv-info-card {
    background: #fdfdfd;
    border: 1px solid #e9ecef;
    border-left: 5px solid var(--mcmv-green);
    border-radius: 16px;
    padding: 20px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.mcmv-info-card p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.mcmv-info-card p:last-child {
    margin-bottom: 0;
}

.mcmv-info-card .icon-info {
    color: var(--mcmv-green);
    margin-right: 10px;
}

.mcmv-info-card .alert-highlight {
    color: #dc3545;
    font-weight: 700;
}

/* Spinner animado no botão */
.loader-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #222;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Wizard */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    padding: 0 10px;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    height: 4px;
    background-color: #e9ecef;
    z-index: 1;
    border-radius: 2px;
}

.step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    position: relative;
    border: 4px solid #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step.active {
    background-color: var(--mcmv-yellow);
    color: #222;
    transform: scale(1.15);
}

.step.completed {
    background-color: var(--mcmv-green);
    color: white;
}