*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}j

body{
    font-family:Arial, sans-serif;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto !important; 
    min-height: auto !important;
    background: transparent !important;
    font-family: sans-serif;
    overflow: hidden; 
}

.chat-wrapper {
    width: 100%;
    height: auto !important; 
    min-height: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    padding: 10px 0; 
}

.chat-card {
    width: 95%;
    max-width: 700px;
    background-image: url("../assets/images/Backgroundchat.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 25px;
    box-sizing: border-box;
    margin: 0 auto;
}

.logo-area {
    text-align: center;
    margin-bottom: -10px;
    margin-top: 0px;
}

.logo-area img {
    height: 130px; 
    width: auto;
    object-fit: contain;
}

.chat-title {
    background: #2a3281;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.message-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.message-box {
    position: relative; 
    width: fit-content;
    max-width: 70%;
    border: 2px solid #cfd8ff;
    border-radius: 12px;
    padding: 15px;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.message-box::before {
    content: "";
    position: absolute;
    left: -10px; 
    top: 50%;
    transform: translateY(-50%); 
    
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ffffff; 
    z-index: 2;
}
.message-box::after {
    content: "";
    position: absolute;
    left: -13px; 
    top: 50%;
    transform: translateY(-50%);
    
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-right: 11px solid #cfd8ff; 
    z-index: 1;
}

.form-card.vertical-layout {
    background: #ffffff !important; 
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); 
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-card.vertical-layout label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #022169; 
    margin-bottom: 0;
    align-self: flex-start;
}

.input-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.select-container {
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    background: #ffffff;
    padding: 0 10px;
    display: flex;
    align-items: center;
    flex: 1; 
}

.form-card select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #6B7280;
    padding: 12px 25px 12px 5px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23032A86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 14px;
}

.divider-line {
    width: 1px;
    height: 30px;
    background-color: #E5E7EB;
    margin-left: 20px;  
    margin-right: 15px; 
}

.next-btn-inline {
    background: none;
    border: none;
    color: #022169; 
    font-size: 26px;
    font-weight: 300; 
    cursor: pointer;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    margin-right: 20px;
}

.next-btn-inline:hover {
    transform: translateX(3px);
}

.user-avatar-right {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #EBF2FF; 
    border: 1px solid #CFD8FF;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-left: auto; 
    flex-shrink: 0;
}

.user-avatar-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.select-container input{
    width:100%;
    border:none;
    outline:none;
    font-size:15px;
    background:transparent;
}

.next-btn-start {
    background: #022169;
    color: white;
    border: none;
    padding: 10px 60px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.2s, transform 0.2s;
}

.next-btn-start:hover{
    background: #022169;
    transform: scale(1.02);
}
.erro-msg{
    color: #E53935;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
}
.instrucoes-teste p {
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 14px;
}

.container-centralizado-botao {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 100% !important;
    
    margin-top: 20px !important; 
    margin-bottom: 10px !important;
}
subtexto-botao {
    color: #ffffff;      
    font-size: 13px;     
    margin: 0;
    font-weight: 500;
    text-align: center;
    opacity: 0.85;       
    font-family: sans-serif;
}

.img-cena {
    width: 100% !important;     
    max-width: 100% !important; 
    height: 150px !important;   
    object-fit: cover;          
    border-radius: 12px;        
    display: block;
    margin: 0 auto;
}


.cena-imagem-container {
    width: 100% !important;     
    height: 150px !important;
    overflow: hidden;
    margin: 20px 0;             
    display: block;
}


.emoji-scale {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 5px;
    margin-top: 0px;
    margin-bottom: 12px;
}

.btn-emoji {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 6px;
    padding: 10px 7px;
    transition: transform 0.2s ease;
}

.btn-emoji:hover {
    transform: scale(1.1);
}

.emoji-label {
    font-size: 10px;
    color: #333333;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    min-height: 32px;
    display: flex;
    align-items: flex-end;
}

.emoji-icon {
    font-size: 22px;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-top: 0px;
    border-top: 1px solid #E5E7EB;
    padding-top: 15px;
}

.progress-text {
    font-size: 14px;
    font-weight: bold;
    color: #032A86;
    white-space: nowrap;
}

.progress-track {
    flex: 1;
    height: 12px;
    background-color: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #032A86;
    transition: width 0.3s ease-in-out;
}
.pergunta-luisa{
    background:#032A86;
    color:#fff;
    

    display:flex;
    align-items:center;
    gap:15px;

    padding:12px;

    border-radius:18px;

    margin-bottom:5px;
}

.avatar-pergunta{
    width:100px;
    height:100px;

    border-radius:50%;

    object-fit:cover;

    flex-shrink:0;
}

.texto-pergunta{
    font-size:14px;
    line-height:1.3;
}
.avatar-luisa2 {
    width: 300px;
    height: 300px;
    border-radius: 0;
    overflow: visible;
    margin-top: -10px;
}

.avatar-luisa2 img {
    object-fit: contain;
}
.grid-introducao-luisa {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 15px auto; 
}
.coluna-baloes {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 40px; 
    height: 100%;
}
.coluna-central-imagem {
    display: flex;
    justify-content: center;
    align-items: center;
}
.balao-info {
    position: relative;
    background-color: #ebf2ff;
    border: 1px solid #b0c8ff;
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}
.balao-info h3 {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.balao-info p {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
}

.apontar-direita::before {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #b0c8ff;
}
.apontar-direita::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid #ebf2ff;
}

.apontar-esquerda::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #b0c8ff;
}
.apontar-esquerda::after {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 9px solid #ebf2ff;
}

.beneficio-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.resultado-container-premium {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 20px;
    background: radial-gradient(circle at top right, #f4f7ff, #ffffff);
    border-radius: 16px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Header */
.trofeu-circle {
    font-size: 32px;
    background: #ffffff;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.resultado-parabens {
    color: #032A86;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 5px 0;
}
.resultado-subtitulo {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 25px 0;
}

/* Grid de Cards */
.cards-cursos-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
}
.card-curso {
    background: #ffffff;
    border-radius: 14px;
    padding: 15px 10px;
    width: 110px;
    position: relative;
    box-shadow: 0 10px 25px rgba(163, 178, 210, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Medalhas / Badges */
.badge-ranking {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
}
.medal-1 { background-color: #e0d204; }
.medal-2 { background-color: #3e41ee; }
.medal-3 { background-color: #dd6b20; }

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
}
.circle-1 { background-color: #ebf8ff; color: #3182ce; }
.circle-2 { background-color: #faf5ff; color: #805ad5; }
.circle-3 { background-color: #e6fffa; color: #319795; }

.nome-curso-card {
    font-size: 14px;
    color: #1a202c;
    font-weight: 700;
    margin: 0 0 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.texto-comercial-sub {
    font-size: 13px;
    color: #718096;
    margin: 10px 0 5px 0;
}
.futuro-tag {
    font-size: 13px;
    color: #3182ce;
    font-weight: 600;
    margin: 0;
}

.container-introducao-imagem-unica {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 15px 0 !important;
}

.bloco-imagem-central {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1px;
}

.nova-imagem-intro {
    width: auto;
    height: auto;
    max-height: 290px;
    object-fit: contain;
    display: block;
}

.container-centralizado-botao {
    width: 100%;
    display: flex;
    justify-content: center;
}
.wrapper-conteudo-imagem {
    position: relative;
    width: 100%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.balao-boas-vindas-topo {
position: relative;
    background-color: #ebf2ff;
    border: 1px solid #b0c8ff;
    border-radius: 12px;
    padding: 8px 16px;
    margin: 0 auto 15px auto; 
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    width: 85%;
    max-width: 440px;
    text-align: center;
}

.balao-boas-vindas-topo::before {
    content: "";
    position: absolute;
    bottom: -10px; 
    left: 50%;     
    transform: translateX(-50%); 
    right: auto;   
    
    border-top: 10px solid #b0c8ff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    z-index: 1;
}

.balao-boas-vindas-topo::after {
    content: "";
    position: absolute;
    bottom: -8px;  
    left: 50%;     
    transform: translateX(-50%);
    right: auto;
    border-top: 9px solid #ebf2ff;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    z-index: 2;
}
.balao-boas-vindas-topo h2 {
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 2px 0;
    font-family: sans-serif;
}

.balao-boas-vindas-topo .nome-destaque-azul {
    color: #022169;
}

.balao-boas-vindas-topo p {
    color: #4B5563;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
    font-family: sans-serif;
}
.animate-msg {
    animation: surgitBalao 0.4s ease-out both;
}
.btn-conhecer-curso {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 5px auto;
    padding: 10px 8px;          
    background-color: #646464; 
    color: #eceafa !important;
    text-decoration: none !important;
    font-size: 13px;            
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.2s ease-in-out;
    text-align: center;
    width: 90%;                 
    box-sizing: border-box;       
    white-space: normal;        
    line-height: 1.3;          
}

.btn-conhecer-curso:hover {
    background-color: #004691;
}
.resultado-footer {
    margin-top: 25px;
    text-align: center;
    padding: 0 10px;
}

.cta-whatsapp-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #004691; 
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    margin: 15px auto;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-align: left;
}

.cta-whatsapp-footer .icone-wpp {
    font-size: 24px;
    flex-shrink: 0; 
}

.futuro-tag {
    font-size: 14px;
    font-weight: bold;
    color: #004691;
    margin-top: 15px;
}
@keyframes surgitBalao {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px){

    .chat-card{
        width:95%;
        padding:15px;
        margin:0 auto;
    }

    .logo-area img{
        height:90px;
    }

    .chat-title{
        font-size:18px;
        padding:12px;
    }

    .message-area{
        flex-direction:row;
        align-items:center;
        gap:20px;
    }

    .avatar{
        width:100px;
        height:100px;
    }

    .message-box{
        max-width:100%;
        width:100%;
        box-sizing:border-box;
    }

    .pergunta-luisa{
        flex-direction:row;
        text-align:left;
    }

    .avatar-pergunta{
        width:80px;
        height:80px;
    }

    .texto-pergunta{
        font-size:13px;
    }

    .emoji-scale{
        flex-wrap:wrap;
        justify-content:center;
    }

    .btn-emoji{
    min-width:45px;
    padding:5px 2px;
    }

    .progress-bar-container{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .progress-track{
        width:100%;
    }

    .next-btn-start{
        width:100%;
    }
    .grid-introducao-luisa {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .coluna-baloes {
        gap: 15px;
    }
    
    .apontar-direita::before, .apontar-direita::after,
    .apontar-esquerda::before, .apontar-esquerda::after {
        display: none;
    }

}