/* Arquivo gerado automaticamente em 31/10/2025 15:39:38 */

/* Barra do header com cor de fundo */
header {
    background-color: #fa0000;
    width: 100%;
    padding: 15px 0;
}

/* Logotipo */
.imagemcentro img {
    height: 50px;
    max-width: 400px;
}

.logo-cliente {
    background-image: url('/imagens/logotipo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 50px;
    background-color: #fa0000;
}

/* Imagens de fundo */
body {
    background-image: url('/imagens/fundo_totem.png');
    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_mobile.png');
    }
}

/* Botão Check In */
.btn-checkin {
    background-color: #fc0303;
    color: #ffffff;
    font-size: 20px;
    height: 80px;
    width: 400px;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-checkin:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.btn-checkin:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Botão Check Out */
.btn-checkout {
    background-color: #ff0000;
    color: #ffffff;
    font-size: 20px;
    height: 80px;
    width: 400px;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-checkout:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.btn-checkout:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* URLs dos botões - armazenadas como data attributes via CSS variables */
:root {
    --cki-url: 'https://checkin.lecanton.com.br/clientes/tablet?totem=sim';
    --cko-url: 'https://checkout.lecanton.com.br?totem=sim';
}