#nome, #mail{
    width: 80%;               /* aumenta o tamanho (pode usar px ou % como quiser) */
    padding: 12px 16px;        /* espaço interno para deixar mais confortável */
    font-size: 1.1em;          /* texto maior que o padrão */
    border: 2px solid #3399ff; /* borda azul */
    border-radius: 8px;        /* bordas arredondadas */
    background-color: #e6f2ff; /* fundo azul claro */
    color: #000000;            /* texto preto */
    outline: none;             /* remove a borda de foco padrão */
    transition: border-color 0.3s, box-shadow 0.3s;
}
.voz {
    width: 15px;           /* tamanho fixo, pode ajustar */
    height: 15px;
    cursor: pointer;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 6px;
    background-color: #e7f1ff;
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
    user-select: none;
    display: inline;
    vertical-align: middle; /* opcional, para alinhar melhor com o texto */
    margin-right: 5px; /* opcional, espaçamento entre as imagens */
}

.voz:hover {
    background-color: #c7defe;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

.voz:active {
    transform: scale(0.95);
    background-color: #a6cdfd;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
#nome:focus {
    border-color: #003d99;
    box-shadow: 0 0 5px rgba(0, 61, 153, 0.5);
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e6f0fa;
    color: #003366;
}

.header {
    background-color: #0059b3;
    color: white;
    text-align: center;
    padding: 30px 10px;
    font-size: 1.8em;
    font-weight: bold;
}

.content-table {
    width: 100%;
    height: calc(100vh - 100px);
    display: table;
}

.row {
    display: table-row;
}

.column {
    display: table-cell;
    vertical-align: middle;
    padding: 40px;
}

.left-column {
    width: 70%;
    font-size: 1.1em;
    line-height: 1.6em;
}

.right-column {
    width: 30%;
    text-align: center;
}

.start-button {
    background: linear-gradient(to bottom right, #3399ff, #003d99);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2em;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 8px 20px rgba(0, 64, 128, 0.3);
}
#cabecalho {
    display: flex;
    justify-content: space-between; /* separa os elementos nas extremidades */
    align-items: center;            /* alinha verticalmente ao centro */
    padding: 10px 20px;
    background-color: #f5f5f5;      /* opcional: fundo claro para destaque */
    border-radius: 8px;             /* opcional: cantos arredondados */
}

#cabecalho h2 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

#icohotel{
    max-height: 60px;   /* controla o tamanho da imagem */
    height: auto;
    width: auto;
    border-radius: 6px; /* opcional: imagem com cantos levemente arredondados */
}
.start-button:hover {
    background: linear-gradient(to bottom right, #1a8cff, #002966);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .content-table {
        display: block;
    }

    .column {
        display: block;
        width: 100%;
        padding: 20px;
    }

    .right-column {
        text-align: center;
    }
}
body {
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: #e6f0fa;
    color: #003366;


}
table { width: 100%; border-collapse: collapse; margin-top: 20px; background-color:white;}
th, td { border: 1px solid #ccc; padding: 10px; vertical-align: top; }
th { background-color: #f0f0f0; }
.likert label { margin-right: 10px;  }
.center { text-align: center; width: 300px }
button {
    background: linear-gradient(to bottom right, #3399ff, #003d99);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1em;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 8px 20px rgba(0, 64, 128, 0.3);

}

button:hover {
    background: linear-gradient(to bottom right, #1a8cff, #002966);
    transform: scale(1.05);
}
#alerta{
    background-color: indianred;
    text-align: center;
    color: white;
    font-size: 1.5em;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    display: none; /* inicia invisível e fora do layout */

}
#imagem {
    text-align: center;
    vertical-align: middle;

    font-size: 3rem;      /* equivalente a um h1 grande */
    font-weight: bold;

    color: #0d47a1;

    background: linear-gradient(
            135deg,
            #e3f2fd,
            #90caf9
    );

    border: 2px solid #1976d2;
    border-radius: 12px;

    box-shadow:
            0 4px 8px rgba(0,0,0,0.2),
            inset 0 1px 2px rgba(255,255,255,0.6);

    text-shadow:
            2px 2px 4px rgba(255,255,255,0.7);

    padding: 20px;
}