﻿

/*---Tela de carregamento---*/
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #EAEAEA;
    color: #7426AA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    text-align: center;
    z-index: 1000;
}

    #loadingScreen p {
        font-size: 18px;
        opacity: 0.8;
    }


/* Efeito de carregamento (spinner) */
.spinner {
    margin-top: 15px;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #7426AA;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*---Tela de carregamento---*/

#panorama {
    width: 100%;
    height: 81vh;
}

/*@media (min-width: 767px) {
    #panorama {
        width: 100%;
        height: 70vh;
    }
}*/
/*---Remover btns zoom e fullscreen---*/
.pnlm-zoom-controls, .pnlm-fullscreen-toggle-button {
    display: none !important;
}
/*---Remover btns zoom---*/

.rodape {
    /*position: fixed;*/
    bottom: 0;
    width: 100%;
    background: #EAEAEA;
    color: #7426AA;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

.iconTour {
    color: #7426AA;
}

/*---Estilos para os botões com ícones---*/
.hotspot-info, .hotspot-scene {
    font-size: 20px;
    cursor: pointer;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* círculo */
    position: absolute;
    transform: translate(-50%, -50%);
    outline-color: white;
    outline-style: solid;
}

.hotspot-info {
    background-color: #a40059;
}

.hotspot-scene {
    /*  background-color: #01a4ff;*/
    background-color: #7426AA;
}

.hotspot-info::before {
    content: "\f129"; /* Código Unicode info */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
}

.hotspot-scene::before {
    content: "\f124"; /* Código Unicode navegação */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
}

.flip::before {
  
    transform: scaleX(-1) !important;
}
/*---Estilos para os botões com ícones---*/

/*---Bloco de mensagem---*/
#messageBox {
    position: absolute;
    bottom: 10rem;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    z-index: 1000;
    max-width: 30rem;
    display: none; /* Oculto por padrão; será exibido via script */
}

    #messageBox button {
        background: none;
        border: none;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
        position: absolute;
        top: 5px;
        right: 5px;
    }
/* Media query para telas menores */
@media screen and (max-width: 600px) {
    #messageBox {
        bottom: 10rem;
        right: 10px;
        left: 10px; /* Expande para usar a largura disponível */
        max-width: none; /* Permite ocupar mais espaço */
        padding: 15px;
        font-size: 14px;
    }

        #messageBox button {
            font-size: 16px;
        }
}

/*---Bloco de mensagem---*/
