main {
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100dvh;
    padding: 2rem;
}

/*CENARIO*/
.cenario {
    height: 33dvh;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
    background: url(../img/fundo_hamb.png);
    background-size: cover;
    border-radius: 24px;
    z-index: -1;
    overflow: hidden;
}

.cenario div {
    position: relative;
    flex: 1;
}

.cenario div img {
    height: 100px;
}

#balao_cliente {
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-radius: 100%;
    background: #E7DFCC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: black;
    white-space: nowrap;
    font-family: "Comic Relief", system-ui;
}

#balao_recepcionista {
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-radius: 30%;
    background: #E7DFCC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: black;
    font-size: 13px;
    font-family: "Comic Relief", system-ui;
}

#triangulo_recepcionista {
    position: absolute;
    bottom: -2rem;
    right: 30%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #E7DFCC;
    z-index: -1;
}

#triangulo_cliente {
    position: absolute;
    bottom: -2rem;
    left: 25%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #E7DFCC;
    z-index: -1;
}

.oculto {
    visibility: hidden;
    pointer-events: none;
}

.visivel {
    visibility: visible;
}

#cliente_container {
    position: relative;
    display: flex;
    justify-content: center;
}

#balcao {
    width: 200px;
    position: absolute;
    bottom: 0;
    left: -20%;
}

#laranja {
    position: absolute;
    bottom: 20px;
    z-index: -1;
    
}
/*FIM CENARIO*/

#chao {
    width: 100%;
    height: 10px;
    background: #6E6E6E;
    position: absolute;
    bottom: 0;
    z-index: -1;
}
/*JOGO*/
.middle {
    display: flex;
    align-items: center;
    justify-content: center;
}

#game-container {
    width: 100%;
    height: 33dvh;
}

canvas {
    border-radius: 24px;
}
/*FIM JOGO*/

/*CONTROLES*/
.fim {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E85E06;
    border-radius: 2.5rem;
}

.btn {
    border: none;
    cursor: pointer;
    border-radius: 2.5rem;
    padding: 4rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -webkit-touch-callout: none; /* iOS Safari */
    user-select: none;
    touch-action: manipulation;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

.btn:focus {
    outline: none;
}

#left-btn {
    background: url(../img/arrow-left.svg) no-repeat center center;
}

#right-btn {
    background: url(../img/arrow-right.svg) no-repeat center center;
}

/*FIM CONTROLES*/

/* Modal */
#modal-container {
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
}

#modal {
    width: 90%;
    z-index: 20;
    background-color: #3D3632;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
}

#modal p {
    font-size: 16px;
}

#modal-header {
    display: flex;
    justify-content: space-between;
}

#modal-header button {
    background: none;
    outline: none;
    border: none;
    color: #E7DFCC;
    font-size: 2rem;
    font-family: "Lilita One", sans-serif;
}

#modal-footer p:first-child {
    margin-bottom: 1rem;
}

/* FIM Modal */