/* =========================================
   PÁGINA DE AVALIAÇÃO (RESPONSIVO)
   ========================================= */

/* Header LP (Barra Fixa) */
#lp-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 20px 0; transition: background-color 0.3s ease;
}

#app-container {
    padding-top: 100px;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* --- LP HERO (O Problema estava aqui) --- */
.lp-hero {
    min-height: 100vh; /* Garante altura total */
    background-image: url('../img/0.jpg'); /* Verifique se a imagem existe */
    background-size: cover; background-position: center;
    display: flex; align-items: center;
    position: relative;
    padding: 120px 0 60px 0; /* Espaço para não colar no topo */
}

/* Overlay escuro para ler o texto */
.lp-hero::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: 1;
}

.lp-hero-content {
    display: grid; 
    grid-template-columns: 1.2fr 1fr; /* Desktop: Texto maior que imagem */
    gap: 60px;
    align-items: center; 
    position: relative; z-index: 2;
    width: 100%; /* Garante largura */
}

.lp-text-col {
    color: #fff;
}

.lp-badge {
    background-color: var(--primary-yellow); color: #000; padding: 6px 14px;
    border-radius: 4px; font-weight: 800; font-size: 0.8rem; letter-spacing: 1px; 
    margin-bottom: 25px; display: inline-block;
}

.lp-title {
    font-size: 3.5rem; line-height: 1.1; font-weight: 900; margin-bottom: 25px; color: #fff;
}

.lp-desc {
    font-size: 1.25rem; color: #ccc; margin-bottom: 35px; line-height: 1.6; max-width: 500px;
}

.lp-benefits { list-style: none; margin-bottom: 40px; padding: 0; }
.lp-benefits li { font-size: 1.1rem; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }

/* Visual Col (Mockup) */
.lp-visual-col { 
    display: flex; justify-content: center; 
}

.mockup-card {
    background: #fff; padding: 30px; border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6); 
    width: 100%; max-width: 320px; /* Limita largura mas deixa fluído */
    text-align: center;
    transform: rotate(-3deg); transition: transform 0.3s;
}
.mockup-card:hover { transform: rotate(0deg); }

.mockup-header { font-weight: 800; color: #111; margin-bottom: 20px; border-bottom: 2px solid #f0f0f0; padding-bottom: 15px; font-size: 1.1rem; }
.circular-chart { display: block; margin: 10px auto; max-width: 180px; } /* Tamanho fixo do gráfico */
.circle-bg { fill: none; stroke: #eee; stroke-width: 3.8; }
.circle { fill: none; stroke-width: 2.8; stroke-linecap: round; animation: progress 1s ease-out forwards; stroke: var(--primary-yellow); }
.percentage { fill: #333; font-family: sans-serif; font-weight: 800; font-size: 0.5em; text-anchor: middle; }
.mockup-btn { background-color: #000; color: #fff; padding: 12px; border-radius: 6px; margin-top: 25px; font-size: 0.9rem; font-weight: 700; }


/* =========================================
   ESTILO DO CARD DE FORMULÁRIO (GATE E QUIZ)
   ========================================= */

.evaluation-box {
    background-color: #ffffff;
    max-width: 550px; 
    margin: 0 auto; 
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08); 
    border: 1px solid #f0f0f0;
}

/* Cabeçalho do Form */
.form-header { text-align: center; margin-bottom: 35px; }
.form-header h3 { font-size: 1.8rem; font-weight: 800; color: #1a1a1a; margin-bottom: 10px; line-height: 1.2; }
.form-header p { font-size: 1rem; color: #666; line-height: 1.5; }

/* Inputs */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: #333; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input {
    width: 100%; padding: 14px 16px; font-size: 1rem; color: #333;
    background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 6px;
    transition: all 0.3s ease; font-family: var(--font-main);
}
.form-group input:focus { background-color: #fff; border-color: var(--primary-yellow); outline: none; }

/* Botão */
.full-width { width: 100%; }
.mt-20 { margin-top: 20px; }

/* Quiz & Options */
.quiz-options label {
    display: flex; align-items: center; gap: 12px; padding: 14px 15px;
    border: 1px solid #eee; border-radius: 8px; margin-bottom: 10px; cursor: pointer;
    font-weight: 500; color: #555; font-size: 1rem;
}
.radio-card { cursor: pointer; position: relative; height: 100%; }
.radio-card input { position: absolute; opacity: 0; }
.card-content {
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    border: 1px solid #ddd; border-radius: 8px; padding: 20px 10px; height: 100%; min-height: 120px;
    transition: all 0.3s; background: #fff;
}
.radio-card input:checked + .card-content { border-color: var(--primary-yellow); background-color: #fff9e6; }

/* Service Selection Grid */
.service-selection { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
    margin-bottom: 40px;
}


/* =========================================
   RESPONSIVIDADE (CORREÇÃO MOBILE)
   ========================================= */

@media (max-width: 900px) {
    /* Ajuste do Hero para empilhar */
    .lp-hero {
        padding: 100px 0 60px 0;
        height: auto; /* Deixa crescer conforme conteúdo */
        min-height: auto;
        text-align: center; /* Centraliza tudo */
    }

    .lp-hero-content {
        grid-template-columns: 1fr; /* 1 Coluna só */
        gap: 50px;
    }

    .lp-text-col {
        order: 1; /* Texto primeiro */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lp-title {
        font-size: 2.5rem; /* Fonte menor no celular */
    }
    
    .lp-desc {
        font-size: 1.1rem;
    }

    .lp-benefits {
        text-align: left; /* Lista alinhada à esquerda fica melhor */
        display: inline-block; /* Para centralizar o bloco mas alinhar texto */
    }

    .lp-visual-col {
        order: 2; /* Visual depois */
        margin-top: 20px;
    }

    .mockup-card {
        transform: rotate(0deg); /* Tira a rotação no mobile para não cortar */
        max-width: 280px; /* Um pouco menor */
    }

    /* Ajuste do Formulário */
    .evaluation-box {
        padding: 30px 20px; /* Menos padding interno */
        margin: 20px 0;
        width: 100%;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    /* Cards de Seleção no Mobile */
    .service-selection {
        grid-template-columns: 1fr; /* Empilha os cards de opção */
    }
    
    .card-content {
        flex-direction: row; /* Ícone ao lado do texto */
        justify-content: flex-start;
        gap: 15px;
        padding: 15px;
        min-height: auto;
        text-align: left;
    }
    
    .icon-svg { margin-bottom: 0; }
}