/* Arquivo gerado automaticamente em 22/10/2025 21:12:17 */

/* Barra do header com cor de fundo */
header {
    background-color: #ffffff;
    width: 100%;
    padding: 15px 0;
}

/* Logotipo */
.imagemcentro img {
    height: 100px;
    max-width: 400px;
}

.logo-cliente {
    background-image: url('/imagens/logotipo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100px;
    background-color: #ffffff;
}

/* Imagens de fundo */
body {
    background-image: url('/imagens/fundo_checkin.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/* Imagem de fundo mobile */
@media (max-width: 768px) {
    body {
        background-image: url('/imagens/fundo_checkin_mobile.jpg');
    }
}