/* =============================
   RESET E BASE
============================= */
* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/* =============================
   MOBILE FIRST (FULL WIDTH)
============================= */
.container {
    width: 100vw;          /* largura REAL da tela */
    min-height: 100vh;
    padding: 16px;
    background: #ffffff;
}

/* =============================
   LOGO
============================= */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 180px;
    height: auto;
}

/* =============================
   TEXTO
============================= */
h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

p {
    text-align: center;
    font-size: 15px;
}

label {
    font-size: 15px;
}

/* =============================
   FORMULÁRIO
============================= */
form label {
    display: block;
    margin-top: 16px;
    font-weight: bold;
}

form input {
    width: 100%;
    padding: 16px;
    margin-top: 6px;
    font-size: 16px; /* evita zoom automático no iPhone */
}

/* =============================
   BOTÃO CONSULTAR
============================= */
button {
    width: 100%;
    padding: 20px;
    margin-top: 24px;
    background-color: #005baa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
}

/* =============================
   TELA DE RESULTADO
============================= */
.buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.button {
    width: 100%;
    padding: 26px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.button-blue {
    background-color: #005baa;
}

.button-orange {
    background-color: #f39c12;
}

/* =============================
   TEXTO DA PESQUISA
============================= */
.survey-text {
    margin: 16px 0;
    text-align: center;
}

.survey-text p {
    font-size: 14px;
}

/* =============================
   VOLTAR
============================= */
.back {
    margin-top: 30px;
    text-align: center;
}

/* =============================
   FOOTER
============================= */
footer {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* =============================
   DESKTOP (SÓ AQUI LIMITA)
============================= */
@media (min-width: 768px) {

    body {
        background: #f2f2f2;
    }

    .container {
        max-width: 480px;
        margin: 30px auto;
        box-shadow: 0 0 10px rgba(0,0,0,0.08);
    }
}