/* Estilos específicos para a página de análise */
.logo {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.questionnaire-section {
    padding: 40px 0;
}

.questionnaire-header {
    text-align: center;
    margin-bottom: 30px;
}

.questionnaire-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #453630;
    margin-bottom: 15px;
}

.questionnaire-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 25px;
}

.progress-container {
    margin: 30px 0;
}

.progress {
    height: 10px;
    border-radius: 5px;
    background-color: #e9ecef;
}

.progress-bar {
    background-color: #9b7e4b;
}

.progress-text {
    text-align: center;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
}

.question-step {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.question-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #453630;
    margin-bottom: 20px;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #495057;
}

.form-select, .form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    color: #495057;
    margin-bottom: 10px;
}

.form-select:focus, .form-control:focus {
    border-color: #9b7e4b;
    box-shadow: 0 0 0 0.25rem rgba(155, 126, 75, 0.25);
}

.btn-group {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-prev {
    background-color: #f5f1e8;
    border-color: #f5f1e8;
    color: #453630;
}

.btn-prev:hover {
    background-color: #e6e0d3;
    border-color: #e6e0d3;
    color: #453630;
}

.btn-next, .btn-submit {
    background-color: #9b7e4b;
    border-color: #9b7e4b;
    color: #fff;
}

.btn-next:hover, .btn-submit:hover {
    background-color: #8a6f42;
    border-color: #8a6f42;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.results-section {
    padding: 60px 0;
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #453630;
    margin-bottom: 15px;
}

.results-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.cartao-resultado {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.cartao-resultado:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.medalha {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #fff;
}

.ouro {
    background-color: #ffc107;
}

.prata {
    background-color: #adb5bd;
}

.bronze {
    background-color: #cd7f32;
}

.cartao-header {
    margin-bottom: 20px;
}

.cartao-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #453630;
    margin-bottom: 5px;
}

.cartao-categoria {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

.cartao-imagem {
    text-align: center;
    margin-bottom: 20px;
}

.cartao-imagem img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    border-radius: 10px;
}

.cartao-detalhes {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #495057;
}

.cartao-detalhes p {
    margin-bottom: 10px;
}

.cartao-beneficios {
    margin-top: 15px;
}

.cartao-beneficios ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.cartao-beneficios li {
    margin-bottom: 5px;
}

.cartao-compatibilidade {
    margin-top: 20px;
}

.cartao-compatibilidade .progress {
    height: 8px;
    margin-bottom: 10px;
}

.cartao-compatibilidade .progress-bar {
    background-color: #9b7e4b;
}

.cartao-compatibilidade p {
    font-weight: 600;
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 767px) {
    .questionnaire-header h2 {
        font-size: 2rem;
    }
    
    .question-step {
        padding: 20px;
    }
    
    .question-step h3 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 8px 20px;
    }
    
    .results-header h2 {
        font-size: 2rem;
    }
}

/* Ajustes para o cabeçalho */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #453630;
    margin: 0 0 0 15px;
}

.header-cta {
    display: flex;
    align-items: center;
}

.btn-outline-primary {
    background-color: transparent;
    border-color: #9b7e4b;
    color: #9b7e4b;
}

.btn-outline-primary:hover {
    background-color: #9b7e4b;
    border-color: #9b7e4b;
    color: #fff;
}

/* Ajustes para o footer */
.footer {
    background-color: #f5f1e8 !important;
    color: #6c757d;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}
