/* ============================================ */
/* SIMULAÇÃO DE FINANCIAMENTO - MOBILE           */
/* VERSÃO ACESSÍVEL E ANIMADA                    */
/* ============================================ */

:root {
    --primary: #B8860B;
    --primary-dark: #8B6508;
    --secondary: #D4A843;
    --dark: #2c2416;
    --light: #faf8f5;
    --white: #ffffff;
    --gray: #5a5146;
    --gray-light: #f0ebe3;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-full: 50px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--light);
    color: var(--dark);
    min-height: 100vh;
    padding-bottom: 90px;
    -webkit-font-smoothing: antialiased;
}

/* ============================================ */
/* HEADER                                        */
/* ============================================ */
.header-simulacao {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-img { height: 32px; }

.btn-whatsapp-header {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: var(--white);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* ============================================ */
/* CONTAINER                                     */
/* ============================================ */
.container-simulacao {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================ */
/* HERO                                          */
/* ============================================ */
.hero-simulacao {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fdf6e3 0%, #f5e6c8 50%, #faf8f5 100%);
    position: relative;
    overflow: hidden;
}

.hero-simulacao::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(rgba(184, 134, 11, 0.15), transparent 70%);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.hero-simulacao::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(rgba(37, 211, 102, 0.12), transparent 70%);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out reverse;
}

.hero-simulacao h1 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-simulacao p {
    font-size: 15px;
    color: var(--gray);
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 2;
}

.btn-hero {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 2;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
}

.btn-hero:active {
    transform: scale(0.97);
}

.hero-sub {
    font-size: 13px;
    color: var(--gray);
    margin-top: 12px;
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    z-index: 2;
}

/* ============================================ */
/* BLOCOS                                        */
/* ============================================ */
.bloco-duvidas,
.bloco-como-funciona,
.bloco-fgts,
.bloco-michelle,
.bloco-faq,
.bloco-cta-final {
    padding: 45px 0;
}

.bloco-duvidas { 
    background: linear-gradient(180deg, #fff 0%, #fdfaf5 100%); 
}
.bloco-como-funciona { 
    background: linear-gradient(180deg, #faf8f5 0%, #f0ebe3 100%); 
}
.bloco-fgts { 
    background: linear-gradient(135deg, #fdf6e3 0%, #f5e6c8 100%); 
}
.bloco-michelle { 
    background: linear-gradient(180deg, #fff 0%, #fdfaf5 100%); 
    text-align: center; 
}
.bloco-faq { 
    background: linear-gradient(180deg, #faf8f5 0%, #f0ebe3 100%); 
}
.bloco-cta-final { 
    background: linear-gradient(135deg, var(--primary), #6d4f06); 
    text-align: center; 
}

.bloco-titulo {
    font-size: 21px;
    text-align: center;
    margin-bottom: 18px;
    color: var(--dark);
    position: relative;
    padding-bottom: 12px;
}

.bloco-titulo::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 10px auto 0;
    border-radius: 2px;
}

.bloco-texto {
    font-size: 15px;
    color: var(--gray);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 14px;
}

.bloco-destaque {
    font-size: 17px;
    color: var(--primary-dark);
    text-align: center;
    font-weight: 700;
    margin-bottom: 22px;
}

/* ============================================ */
/* DÚVIDAS GRID                                  */
/* ============================================ */
.duvidas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.duvida-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px;
    background: var(--white);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out both;
}

.duvida-item:nth-child(1) { animation-delay: 0.1s; }
.duvida-item:nth-child(2) { animation-delay: 0.2s; }
.duvida-item:nth-child(3) { animation-delay: 0.3s; }
.duvida-item:nth-child(4) { animation-delay: 0.4s; }
.duvida-item:nth-child(5) { animation-delay: 0.5s; }
.duvida-item:nth-child(6) { animation-delay: 0.6s; }

.duvida-item:active {
    transform: scale(0.96);
}

.duvida-item i {
    color: var(--primary);
    font-size: 18px;
}

/* ============================================ */
/* COMO FUNCIONA                                 */
/* ============================================ */
.passos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.passo {
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out both;
}

.passo:nth-child(1) { animation-delay: 0.1s; }
.passo:nth-child(3) { animation-delay: 0.2s; }
.passo:nth-child(5) { animation-delay: 0.3s; }
.passo:nth-child(7) { animation-delay: 0.4s; }

.passo:active {
    transform: translateX(8px);
}

.passo-numero {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.passo h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--dark);
}

.passo p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.passo-seta {
    text-align: center;
    color: var(--primary);
    font-size: 22px;
    animation: bounce 2s infinite;
}

/* ============================================ */
/* MICHELLE                                      */
/* ============================================ */
.foto-michelle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--primary);
    animation: pulse 3s infinite;
}

.credenciais {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.credencial {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    justify-content: center;
    animation: fadeInUp 0.6s ease-out both;
}

.credencial:nth-child(1) { animation-delay: 0.1s; }
.credencial:nth-child(2) { animation-delay: 0.2s; }
.credencial:nth-child(3) { animation-delay: 0.3s; }

.credencial i {
    color: var(--primary);
    font-size: 20px;
}

/* ============================================ */
/* FAQ                                           */
/* ============================================ */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item.ativo {
    box-shadow: var(--shadow-md);
}

.faq-pergunta {
    width: 100%;
    padding: 18px;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 10px;
}

.faq-pergunta i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.ativo .faq-pergunta i {
    transform: rotate(180deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.ativo .faq-resposta {
    max-height: 250px;
}

.faq-resposta p {
    padding: 0 18px 18px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================ */
/* CTA FINAL                                     */
/* ============================================ */
.bloco-cta-final h2 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
}

.bloco-cta-final .btn-hero {
    background: var(--white);
    color: var(--primary-dark);
    animation: pulse 2s infinite;
}

/* ============================================ */
/* SIMULADOR                                     */
/* ============================================ */
.bloco-simulador {
    padding: 45px 0;
    background: linear-gradient(180deg, #fff 0%, #fdfaf5 100%);
}

.progresso {
    height: 5px;
    background: var(--gray-light);
    margin: 16px 0 4px;
    border-radius: 3px;
    overflow: hidden;
}

.progresso-bar {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    width: 20%;
    transition: width 0.5s ease;
    border-radius: 3px;
}

.progresso-texto {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 18px;
    font-weight: 600;
}

.etapa {
    animation: fadeInUp 0.5s ease-out;
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-md); }
    50% { transform: scale(1.03); box-shadow: 0 6px 24px rgba(184, 134, 11, 0.5); }
}

.etapa-titulo {
    font-size: 20px;
    margin-bottom: 22px;
    text-align: center;
    color: var(--dark);
}

.etapa-opcoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.opcao-btn {
    padding: 18px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.4s ease-out both;
}

.opcao-btn:nth-child(1) { animation-delay: 0.05s; }
.opcao-btn:nth-child(2) { animation-delay: 0.1s; }
.opcao-btn:nth-child(3) { animation-delay: 0.15s; }
.opcao-btn:nth-child(4) { animation-delay: 0.2s; }
.opcao-btn:nth-child(5) { animation-delay: 0.25s; }

.opcao-btn:active {
    transform: scale(0.95);
    border-color: var(--primary);
    background: #fdf6e3;
}

.opcao-btn.selecionado {
    border-color: var(--primary);
    background: #fdf6e3;
}

.opcao-btn .emoji {
    font-size: 26px;
}

/* ============================================ */
/* BOTÃO ENVIAR DO FORMULÁRIO                    */
/* ============================================ */
.btn-enviar {
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    letter-spacing: 0.3px;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
}

.btn-enviar i {
    font-size: 22px;
}

.btn-enviar:active {
    transform: scale(0.96);
}

/* ============================================ */
/* CTA FIXO                                      */
/* ============================================ */
.cta-fixo {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--gray-light);
    z-index: 99;
}

.btn-cta {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-cta:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-cta:not(:disabled):active {
    transform: scale(0.97);
}

/* ============================================ */
/* FOOTER                                        */
/* ============================================ */
.footer-simulacao {
    text-align: center;
    padding: 24px 20px;
    margin-top: 30px;
    background: var(--dark);
    color: var(--white);
}

.footer-simulacao p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-simulacao a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.footer-disclaimer {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 12px !important;
}

html {
    scroll-behavior: smooth;
}
/* ============================================ */
/* TELA DE MOTIVAÇÃO (ANTES DOS DADOS)           */
/* ============================================ */
.motivacao-container {
    text-align: center;
    padding: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.motivacao-emoji {
    font-size: 60px;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

.motivacao-titulo {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
}

.motivacao-mensagem {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 18px;
    padding: 18px 16px;
    background: linear-gradient(135deg, #fdf6e3 0%, #f5e6c8 100%);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    position: relative;
    animation: pulse-mensagem 2s infinite;
}

@keyframes pulse-mensagem {
    0%, 100% { box-shadow: 0 2px 10px rgba(184, 134, 11, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(184, 134, 11, 0.6); }
}

.motivacao-resumo {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.motivacao-resumo p {
    font-size: 14px;
    margin-bottom: 10px;
}

.motivacao-resumo ul {
    list-style: none;
    padding: 0;
}

.motivacao-resumo li {
    font-size: 13px;
    color: var(--gray);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

.motivacao-resumo li:last-child {
    border-bottom: none;
}

.motivacao-cta-texto {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.btn-continuar {
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-continuar:active {
    transform: scale(0.96);
}

/* ============================================ */
/* TELA DE RESULTADO                             */
/* ============================================ */
.resultado-container {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.confetes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.confete {
    position: absolute;
    top: -10px;
    border-radius: 3px;
    animation: cairConfete linear infinite;
}

@keyframes cairConfete {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(600px) rotate(360deg); opacity: 0; }
}

.medalha {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    animation: pulse-medalha 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse-medalha {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.resultado-titulo {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.score-display {
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.score-numero {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.score-label {
    font-size: 16px;
    color: var(--gray);
    margin-left: 6px;
}

.resultado-mensagem {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.resultado-container .btn-enviar {
    position: relative;
    z-index: 2;
}

.resultado-container {
    min-height: 100vh; /* Ocupa a tela inteira */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
}

.bloco-simulador {
    padding: 0 !important; /* Remove padding extra */
}

/* ============================================ */
/* MOTIVAÇÃO AJUSTADA PARA CABER NA TELA         */
/* ============================================ */
.motivacao-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.motivacao-emoji {
    font-size: 50px;
    margin-bottom: 12px;
    text-align: center;
}

.motivacao-titulo {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
}

.motivacao-mensagem {
    font-size: 14px;
    margin-bottom: 14px;
    text-align: center;
}

.motivacao-resumo {
    padding: 14px;
    margin-bottom: 14px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.motivacao-resumo p {
    font-size: 13px;
    margin-bottom: 8px;
}

.motivacao-resumo li {
    padding: 6px 0;
    font-size: 12px;
    color: var(--gray);
    border-bottom: 1px solid var(--gray-light);
}

.motivacao-resumo li:last-child {
    border-bottom: none;
}

.motivacao-cta-texto {
    font-size: 13px;
    text-align: center;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 600;
}

.bloco-simulador {
    padding: 0 !important;
}

/* ============================================ */
/* RESULTADO AJUSTADO                           */
/* ============================================ */
.resultado-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}