
:root{
    --map-color:#D2B48C;
    --line-color:white;
    --line-areas-color:#6A0000;
}



.arquibancada{
    width: 100%;
    height: 10%;
}

.cesta {
    width: 7%;  /* Tamanho do aro */
    height: 33%;  /* Tamanho do aro */
    position: absolute;
    top: 50%;  /* Ajuste conforme necessário */
    transform: translate(0,-50%);
    box-sizing: border-box;
    z-index: 3;
}

#info-perguntas {
    position: absolute;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px;
    border-radius: 5px;
    font-size: 14px;
    pointer-events: none; /* Para não interferir com os eventos */
    z-index: 100;
  }

#cesta_esquerda {
    left: -10px; 
    background-image: url('../assets/cestaEsquerda.webp');
    background-size: contain;
    background-repeat: no-repeat;

}

#cesta_direita {
    right: -10px; 
    background-image: url('../assets/cesta.webp');
    background-size: contain;
    background-repeat: no-repeat;

}

.linhas-colunas-quadra{
    grid-template-columns: repeat(20,1fr); /*divide em 7 colunas de largura*/
    grid-template-rows: repeat(20,1fr); /*divide em 10 linhas de comprimento*/
}
#quadra_container{
    height: 80%;
    width: 100%;
    display: grid;
    background-color: var(--map-color) ;
    background-image: url('../assets/fundoQuadra.webp');
    background-size: contain;
    position: relative;
    border: 2px var(--line-color) solid;
    box-sizing: border-box; /* Inclui a borda no tamanho do elemento */
    overflow-x: hidden;
}

#centro{
    grid-column-start: 9;
    grid-column-end: 13;
    grid-row-start: 7;
    grid-row-end: 15;
    width: 100%;
    height: 100%;
    clip-path: circle(35%);

    background-image: url('../assets/LogoUnifacisa.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;

    background-color: white;
}

#centro_linha{
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color:var(--line-color) ;
}

.areas{
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    border: 4px var(--line-areas-color) solid;
    height: 80%;
    width: 25%;
    transform: translate(0,-50%);

}
#area_esquerda{
    border-left: 0px var(--line-areas-color) solid;
    border-radius: 0 50% 50% 0;
}

#area_direita{
    right: 0;
    border-right: 0px var(--line-areas-color) solid;

    border-radius: 50% 0 0 50%;
    
}
#area_direita > .garrafao_container{
    justify-content: end;

}

.garrafao_container{
    display: flex;
    width: 100%;
    height: 30%;
    position: relative;
}

.area_lance{
    width: 20%;
    aspect-ratio: 2/2;
    
    position: absolute;
    border-radius: 50%;
    right: 0%;
    border: 4px solid var(--line-areas-color);
    top: 50%;
    transform: translate(0,-50%);
}

.garrafao{
    width: 90%;
    height: 70%;
    background-color: rgba(24,52,116,.7);
    border: 4px solid var(--line-areas-color);
    top: 50%;
    transform: translate(0,-50%);
    position: absolute;
}

#area_lance_esqueda{
    border-left-style: dashed;
    border-bottom-style:dashed ;
}
#area_lance_direita{
    left: 0;
    border-right-style: dashed;
    border-top-style:dashed ;
}

#garrafao_esquerdo{
    border-left: 0px solid red;
    
}

#garrafao_direito{
    border-right: 0px solid red;
    

}