/* Estilos do Simulador MCMV */

.simulator-box {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    color: #333;
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.simulador-form .form-group {
    margin-bottom: 1.5rem;
}

.simulador-form .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.simulador-form .form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.simulador-form .form-input:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

.form-help-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Resultados da Simulação */
.resultado-container {
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.resultado-box {
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.resultado-box.success {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
}

.resultado-box.warning {
    background-color: #fff7ed;
    border: 1px solid #ffedd5;
}

.resultado-box.info {
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
}

.resultado-box h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.parcela-destaque {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.badge-verde {
    background-color: #22c55e;
    color: white;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.prazo-info {
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    display: inline-block;
}

.check-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.btn-success {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-success:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    background-color: transparent;
    border: 1px solid #6c757d;
    color: #6c757d;
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #333;
    border-color: #333;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.h3-group {
    margin-bottom: 1.5rem;
}