    :root {
            --fonte-base: 'Ubuntu', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    }
    
    
    
    body, html {
        margin: 0;
        padding: 0;
        height: 100%;
        overflow: hidden;
        font-family: var(--fonte-base);
        font-weight: bold;
        color: #1b6537;
        background-color: #000;
    }

    #map {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #000;
    }


    #camera-info {
        position: absolute;

        top: 10px;
        right: -100%;
        background-color: rgba(0, 0, 0, 0.308);
        color: white;
        padding: 10px;
        font-family: monospace;
        font-size: large;
        z-index: 10;
    }

    #menu {
    position: absolute;
    top: 10px;
    left: 0%;
    width: 20%;
    height: 20%;
    max-width: 353px;
    min-width: 200px;
    
    background: #24202000;

    transition: right 0.6s ease;
    z-index: 999;
    
    
    display: flex;
    flex-direction: column;
    align-items: left;

}

#logo {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    border-radius: 0 10vmin 0 0;
    background: #1b6537;

    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
    padding: 5% 0% 5% 5%;
    
}

#logo img {
    
    width: 80%; /* Faz a imagem ocupar 100% da largura da div #logo */
    height: auto; /* Mantém a proporção da imagem */
    display: block; /* Remove espaços extras abaixo da imagem */
}

#Voltar {
    width: 90%;
    background-color: white; /* Cor de fundo do botão */
    color: #1b6537; /* Cor do texto */
    padding: 8px 10px 10px 0px; /* Espaçamento interno (vertical e horizontal) */
    border-radius: 0 0 50px 0;
    cursor: pointer; /* Muda o cursor para uma "mãozinha" ao passar o mouse */
    font-weight: bold; /* Texto em negrito */
    text-align: center; /* Garante que o texto esteja centralizado */
    transition: background-color 0.3s ease; /* Efeito suave na mudança de cor */
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    opacity: 0; /* Garante que ele comece visível */
    transform: translateX(-120%); /* Posição inicial, sem deslocamento */
    transition: transform 0.5s ease, opacity 0.5s ease;
    
}

#Voltar:hover {
    background-color: #a8ccb6;
}

#Voltar.aparece {
    opacity: 1; /* Deixa o botão transparente */
    transform: translateX(0px); /* Move 300px para a esquerda */
    
    cursor: pointer;
}

#info-panel {

    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: right 0.6s ease;
    z-index: 992;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#info-panel.aberto {
    right: 0;
}

#info-panel.meio{
    right: 0;
    width: 30%;
}


#info-content {
    margin: 0%;
    width: 100%;
    height: 100%;
    border: none;
    flex-direction: column;
    
}

#info-content img {
    width: 60%;
    
}

#info-content h2 {
    margin: 0%;
    padding:15px;
    background-color: #1b6537;
    color: #ffffff;
    border-radius: 20px
}

#info-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.custom-icon .ponto {
    background: rgba(146, 3, 3, 0);
    width: 100%;
    height: 100%;
    border-radius: 50%
    
}

#info-popup-E {

    position: absolute;
    top: 15%;
    right: -50%;
    width: 20vmax;
    background: #bebebe;
    transition: right 2s ease;
    z-index: 50;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-radius: 2vmin;
}


#info-popup-E.aberto {
    right: 5%;
}

#info-popup-content {
    margin: 0%;
    width: 100%;
    height: 100%;
    border: none;
    flex-direction: column;
    
}

#info-popup-content img {
    width: 60%;
    
}

#info-popup-content h2 {
    margin: 0% 0% 0% 5%;
    padding:0px;
    color: hsl(150, 100%, 15%);
    border-radius: 20px
}

#info-popup-content p {
    margin: 5% 5% 7% 5%;
    font-family: var(--fonte-base);

}

#container-botoes-previsual { /* Container para os botões de pré-visualização */
    display: flex;
    flex-direction: row;
    padding: 0% 5% 5% 5%;
}

.btn-camada {
    width: 50%;
    background-color: #1a4638; /* Cor de fundo do botão */
    display: inline-block;
    color:  #bebebe; /* Cor do texto do botão */
    border: 20px; /* Remove bordas */
    padding: 15px 20px; /* Espaçamento interno do botão */
    cursor: pointer; /* Muda o cursor para indicar que é clicável */
    font-size: 18px; /* Tamanho da fonte do botão */
    border-radius: 2vmin; /* Bordas arredondadas */
    transition: background-color 0.3s ease; /* Transição suave para a cor de fundo */
    margin-left: 2%;
}