/* ===========================
   CONTAINER DO TESTE
   =========================== */
   .pole-test {
    max-width: 1100px;   /* mesma largura do h1 */
    margin: 60px auto;
    padding: 0;           /* sem padding para ocupar largura total */
    font-family: Arial, sans-serif;
    color: #555;
}

/* ===========================
   TÍTULO
   =========================== */
.pole-test h1 {
    font-size: 36px;
    color: #85274f;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 2px solid rgba(133, 39, 79, 0.2); /* sublinhado rosa */
    padding-bottom: 10px;
}

.pole-test .intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: left;
}

/* ===========================
   PERGUNTAS
   =========================== */
.pole-test .question {
    width: 100%;                      /* ocupa toda a largura do container */
    box-sizing: border-box;
    padding: 20px 25px;
    background-color: rgba(133, 39, 79, 0.1); /* rosa suave */
    border-radius: 10px;
    margin-bottom: 36px;
}

/* Texto da pergunta */
.pole-test .question p {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #333;
    width: 100%;                      /* largura total */
    text-align: left;
}

/* ===========================
   RADIO BUTTONS + LABELS
   =========================== */
.pole-test .question label {
    display: flex;                     /* alinha radio e texto */
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.4;
    width: 100%;
    cursor: pointer;
}

.pole-test input[type="radio"] {
    margin: 0;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #85274f;
}

.pole-test form {
    max-width: 1100px; /* mesma largura do h1 e do container do teste */
    margin: 0 auto;    /* centraliza horizontalmente */
    width: 100%;       /* garante que use 100% da largura permitida */
    box-sizing: border-box; /* para padding não quebrar a largura */
}


/* ===========================
   BOTÃO RESULTADO
   =========================== */
#btnResultado {
    display: inline-block;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    color: #f1e8db;
    background-color: #85274f;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

#btnResultado:hover {
    background-color: #6b1f40;
}

/* ===========================
   RESULTADO
   =========================== */
#resultado {
    margin-top: 40px;
    font-size: 18px;
    font-weight: bold;
    color: #85274f;
    
}

/* ===========================
   RESPONSIVIDADE
   =========================== */
@media (max-width: 992px) {
    .pole-test {
        max-width: 90%;
    }

    .pole-test h1 {
        font-size: 32px;
    }

    .pole-test .question p {
        font-size: 16px;
    }

    #btnResultado {
        font-size: 16px;
        padding: 12px 24px;
    }
}

@media (max-width: 768px) {
    .pole-test {
        max-width: 95%;
    }

    .pole-test h1 {
        font-size: 28px;
    }

    .pole-test .question p {
        font-size: 15px;
    }

    #btnResultado {
        width: 100%;
        padding: 14px 0;
    }
}
