/* --- Simulador de Financiamento Elegante (Dark Mode Glassmorphism) --- */
.simulator-section {
    padding: 100px 5%;
    background-color: transparent; /* Se adaptando ao fundo escuro */
}

.simulator-container {
    max-width: 800px;
    margin: 0 auto;
}

.simulador-clean-box {
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding: 40px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.simulador-clean-box h2 {
    color: #fff;
    text-align: left;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 32px;
    font-weight: 500;
    font-family: 'Fragment Serif', serif;
}

.simulador-clean-group {
    margin-bottom: 24px;
}

.simulador-clean-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
}

.simulador-clean-group input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 16px;
    color: #fff;
    background-color: rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.simulador-clean-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.simulador-clean-group input:focus {
    border-color: #3898EC;
    background-color: rgba(0,0,0,0.4);
    outline: none;
    box-shadow: 0 0 0 4px rgba(56, 152, 236, 0.2);
}

.simulador-clean-btn {
    width: 100%;
    background-color: #fff;
    color: #121717;
    padding: 18px;
    border: none;
    border-radius: 10000px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
}

.simulador-clean-btn:hover {
    background-color: #e0e0e0;
}

.simulador-clean-resultado {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: none;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.simulador-clean-card {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.simulador-clean-card.highlight-green {
    border-left-color: #3898EC; /* Usando o accent color do site Elyse em vez do verde */
}

.simulador-clean-card.highlight-gold {
    border-left-color: #0082F3; /* Usando o secondary do site Elyse */
}

.simulador-clean-card.highlight-purple {
    border-left-color: #254441; /* Usando a cor primária (verde escuro) do site Elyse */
}

.simulador-clean-card span {
    font-size: 13px;
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.simulador-clean-card strong {
    font-size: 22px;
    color: #fff;
    font-weight: 400;
}

.simulador-clean-obs {
    font-size: 12px;
    color: #777;
    text-align: left;
    margin-top: 24px;
    line-height: 1.5;
}

.simulador-wpp-btn {
    width: 100%;
    background-color: transparent;
    color: #fff;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10000px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.simulador-wpp-btn:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #fff;
}
