/* Arquivo gerado automaticamente em 10/12/2025 19:28:20 */

/* Barra do header com cor de fundo */
header {
    width: 100%;
    padding: 15px 0;
}

/* Logotipo */
.imagemcentro img {
    max-width: 400px;
}

.logo-cliente {
    background-image: url('/imagens/logotipoCkin.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 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');
    }
}