/* style */

/* Garante que o botão tenha um posicionamento fixo na tela */
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.label-flutuante {
  position: fixed;
  background-color: lightblue;
  color: black;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  white-space: nowrap;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.btn-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 100%;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}
.btn-flutuante:hover {
    background-color: lightgray;
}

.btn-flutuanteMsg {
    position: fixed;
    bottom: 82px;
    right: 20px;
    background-color: white;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 100%;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}
.btn-flutuanteMsg:hover {
    background-color: lightgray;
}

.btn-flutuanteSho {
    position: fixed;
    bottom: 144px;
    right: 20px;
    background-color: white;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 100%;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}
.btn-flutuanteSho:hover {
    background-color: lightgray;
}

.btn-flutuanteMaisPubs {
    position: fixed;
    bottom: 206px;
    right: 20px;
    background-color: white;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 100%;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}
.btn-flutuanteMaisPubs:hover {
    background-color: lightgray;
}

.botao {
    background-color: lightblue;
}





.title { font-family: Arial, sans-serif; font-size: 22px; color: #333; text-align: center; }

.title2 { font-family: Arial, sans-serif; font-size: 20px; color: #333; text-align: center; }

.divMenu {
      
}

.divflutuante {
  width: 100%;
            height: 100%;
            overflow: auto;
position: fixed; /* Fixa a div em uma posição específica na janela */
            top: 50%;        /* Posiciona no centro vertical da tela */
            left: 50%;       /* Posiciona no centro horizontal da tela */
            transform: translate(-50%, -50%); /* Ajusta a posição para o centro exato */
            z-index: 1000;   /* Garante que a div fique acima de todos os outros elementos */
            background-color: white;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border: 2px solid black; /* Adiciona a borda */
            border-radius: 10px;
}

.divMenu button {
  background-color: white; /* Cor de fundo */
  color: black; /* Cor do texto */
  padding: 10px 20px; /* Espaçamento interno */
  border: none; /* Remover bordas */
  border-radius: 5px; /* Bordas arredondadas */
  cursor: pointer; /* Alterar cursor ao passar o mouse */
  font-size: 16px; /* Tamanho da fonte */
  transition: background-color 0.3s ease; /* Efeito de transição */
}

/* Efeito ao passar o mouse sobre o botão */
.divMenu button:hover {
  background-color: black; /* Alterar cor de fundo */
  color: white;
}

.SubDiv {
      
}

.SubDiv button {
            padding: 10px;
  background-color: black; /* Cor de fundo */
  color: white; /* Cor do texto */
  border: none; /* Remover bordas */
  border-radius: 5px; /* Bordas arredondadas */
  cursor: pointer; /* Alterar cursor ao passar o mouse */
  transition: background-color 0.3s ease; /* Efeito de transição */
}

.SubDiv select {
            padding: 10px;
            border: 2px solid black;
            border-radius: 10px;
            background-color: #f9f9f9;
        }

/* Efeito ao passar o mouse sobre o botão */
.SubDiv button:hover {
  background-color: white;
  color: black;
  border: block;
}

.divUniverso {
margin-bottom: 2000px;
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
      gap: 10px; /* Espaço entre as imagens */
}
.divUniverso img {
      width: 100%; /* Cada imagem ocupa toda a largura da coluna */
      height: auto; /* Mantém a proporção da imagem */
      object-fit: cover; /* Corta a imagem para caber no container */
}


 .divFoco {
            width: 70%;
            height: 80%;
            overflow: auto;
position: fixed; /* Fixa a div em uma posição específica na janela */
            top: 50%;        /* Posiciona no centro vertical da tela */
            left: 50%;       /* Posiciona no centro horizontal da tela */
            transform: translate(-50%, -50%); /* Ajusta a posição para o centro exato */
            z-index: 1000;   /* Garante que a div fique acima de todos os outros elementos */
            background-color: white;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border: 2px solid black; /* Adiciona a borda */
            border-radius: 10px;
        }
       .divFoco img {
            max-width: 90%;  /* Limita a largura da imagem ao máximo dentro da popup */
            height: auto;     /* Ajusta a altura da imagem proporcionalmente */
            display: block;   /* Remove qualquer espaço extra ao redor da imagem */
            margin: 0 auto;   /* Centraliza a imagem horizontalmente */
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }


.mediaContainer img, .mediaContainer video {
            max-width: 100%;
            height: auto;
            margin: 10px;
        }


.floatingButton {
            position: fixed;
            top: 12px;
            right: 20px;
            z-index: 1001;
            background-color: #ffffff;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 16px;
            color: #ff5757;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
        .floatingButton:hover {
            background-color: #0056b3;
        }

.floatingButton2 {
            position: fixed;
            top: 60px;
            right: 12px;
            z-index: 1001;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 16px;
            color: #ff5757;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
        .floatingButton2:hover {
            background-color: #0056b3;
        }

.floatingButton3 {
            position: fixed;
            top: 108px;
            right: 12px;
            z-index: 1001;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 16px;
            color: #ff5757;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
        .floatingButton2:hover {
            background-color: #0056b3;
        }


.button-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }
        .button-container button {
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            width: 200px;
        }
        .nivel-000-100 {
            background-color: #ffffbe;
            color: #000;
        }
        .nivel-000-030 {
            background-color: #a2d5f2;
            color: #000;
        }
        .nivel-030-060 {
            background-color: #83c5be;
            color: #000;
        }
        .nivel-060-090 {
            background-color: #ffcb77;
            color: #000;
        }
        .nivel-090-100 {
            background-color: #f07167;
            color: #fff;
        }













