.menu-card {
	cursor: pointer;
	transition: transform 0.3s;
}
.menu-card:hover {
            transform: scale(1.05);
        }
        .modal-backdrop.show {
    background-color: black;
    opacity: 0.85; /* Ajuste a opacidade conforme necessário */
}
@media (min-width: 992px) {
    .content {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        background-color:white;
        min-height:100vh;
        margin-top:0px;
    }
    body { 
    background-color:black;
    }
    
    #getTelegram { 
    height: 100vh;
    margin-top:15px;
    background-color:white;
    width:550px;
    font-size:1em
    }
}

.input-group-text {
    background: none;
    border: none;
    padding-right: 0;
}

.passada1 { 
display:none
}

.form-control input { 
border: 2px solid transparent;
background-image: linear-gradient(white, white), 
                  linear-gradient(to right, #6366f1, #a855f7);
background-origin: border-box;
background-clip: padding-box, border-box;
transition: all 0.3s ease;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.spinner-container {
    position: fixed; /* Fixa o spinner na tela */
    top: 50%; /* Centraliza verticalmente */
    left: 50%; /* Centraliza horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta a posição exata do spinner */
    z-index: 1240; /* Garante que o spinner fique acima de outros elementos */
}

/* Camada de bloqueio (cobre toda a tela) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(161 100 37 / 68%);
    z-index: 1240; /* Fica abaixo do spinner mas acima de outros elementos */
}

.aguarde { 
font-size: xx-large;
font-weight: 600;
color: white;
}

.range-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 50px auto;
}

.range-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: bold;
}

input[type="range"] {
    width: 100%;
}

#cookieBanner {
display:none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 10000;
background: black;
color: white;
padding: 10px;
font-size: 1.2em;
text-align: justify;
}

.tooltip-inner {
    max-width: none; /* Permite que o conteúdo (imagem) seja maior */
    text-align: center; /* Centraliza a imagem */
}

.tooltip-inner img {
    width: 300px; /* Defina o tamanho da imagem conforme necessário */
    height: auto;
}


#alertaModal .modal-dialog {
    z-index: 1245;
    margin: 30px auto;
    max-width: calc(100% - 60px); /* Ajusta o tamanho do modal para que as margens sejam de 30px */
}

#alertaModal .modal-content {
    background-color: yellow;
}

#alertaModal .modal-body {
    background: yellowgreen;
    font-size: 1.7em;
    font-weight: 700;
}

#alertaModal .modal-footer {
    text-align: center;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
  20%, 40%, 60%, 80% { transform: translateX(10px); }
}
.shake-animation {
  animation: shake 0.5s;
}
