.emp-container {
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.emp-logo {
    width: 288px;
    height: fit-content;
}

.emp-minimapa {
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-radius: 8px;
    position: fixed;
    bottom: 50px;
    left: 50px;
    overflow: hidden;
    padding: 10px;
}

.emp-minimapa .indicator {
    width: 50px;
    height: auto;
    z-index: 10;
    transition: transform 0.3s ease; /* Suaviza a transição da rotação */
}

.emp-minimapa div.emp-minimapa-box {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.emp-minimapa-central {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emp-minimapa img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s all ease;
}

.emp-minimapa:hover img {
    transform: scale(1.05);
    border-radius: 25px;
}

.emp-sidebar {
    width: 22vw;
    background: #FFFFFFBF;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 30px 0;
    position: relative;
    transition: transform 0.3s ease, width 0.3s ease;
}

.emp-visao {
    width: 250px;
    height: 40px;
    top: 47px;
    left: 861.66px;
    border-radius: 0 4.13px 4.13px 0;
    gap: 4.13px;
    background: #C89256;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.emp-sidebar.hidden {
    width: 0;
    padding: 0;
    transform: translateX(-100%);
    overflow: hidden;
}

.emp-svg .emp-svg-div svg.minimized {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.emp-svg {
    position: absolute;
    right: 22vw; /* Alinha com a borda do sidebar quando visível */
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    transition: right 0.1s ease;
}

.emp-svg.minimized {
    right: 0;
}

.emp-svg div:first-child {
    position: relative;
    cursor: pointer;
}

.svg-bg-action path {
    fill: #FFFFFFBF;
}

.emp-sidebar.hidden ~ .emp-svg {
    right: 0; /* Move o botão para a borda da tela quando o sidebar está escondido */
}

.emp-svg div.emp-svg-div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    width: 80%;
}

.emp-sidebar svg:first-child path {
    fill: #FFFFFFBF;
}

.emp-sidebar svg:last-child path {
    fill: #282726;
}

.emp-conteudo {
    height: 90%;
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.emp-capa {
    max-height: 550px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.emp-img-capa {
    height: 100%;
    width: fit-content;
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
    position: relative;
}

.emp-img-capa img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.emp-andares-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    width: 65px;
    display: flex;
    align-items: center;
}

.emp-andares-content {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.emp-andar {
    background-color: #fff;
    border-radius: 4px;
    font-size: 13px;
    padding: 0 10px;
    color: #C89256;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.emp-andar.active {
    background-color: #C89256;
    color: #fff;
}

.emp-andar.active svg path {
    fill: #fff;
}

.emp-planta {
    width: 100%;
    position: relative;
    max-width: 250px;
    margin: 0 auto;
    transform: rotate(180deg);
}

.num-andar {
    transform: rotate(180deg);
}

.emp-planta img {
    width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.emp-planta img.loading {
    opacity: 0;
}

.emp-planta div.emp-detalhes-andar {
    background-color: #c0792d99;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 0;
    right: 80px;
    height: 82px;
    width: 80px;
    display: none;
}

.emp-planta div svg path {
    fill: #fff !important;
}

.emp-rodape div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.emp-rodape div img:first-child {
    width: 50px;
}

.emp-rodape div img:last-child {
    width: 70px;
}

.emp-planta {
    position: relative;
}

.area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.area {
    position: absolute;
    cursor: pointer;
    border: 1px dashed #C89256; /* Estilo dashed visível */
    opacity: 0.5; /* Para ver as áreas durante o desenvolvimento */
}

.area:hover {
    background-color: rgba(200, 146, 86, 0.5); /* Destaque ao passar o mouse */
}

.area.active {
    background-color: #C89256; /* Verde para indicar a área selecionada */
    border: 2px solid #C89256; /* Borda mais visível */
    opacity: 0.7; /* Maior opacidade para destaque */
    position: relative;
}

.area-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza horizontal e verticalmente */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; /* Espaço entre o ícone e o texto */
    color: white; /* Cor branca para o texto */
}

.area-content svg path {
    fill: white; /* Garante que o ícone também seja branco */
}

.area-content .num-andar {
    font-weight: bold;
    font-size: 14px; /* Ajuste o tamanho conforme necessário */
}

.emp-svg-mobile {
    display: none;
}

.pnlm-container {
    min-height: 100vh;
}

#panorama {
    display: none;
}

.emp-image-wrapper-box {
    display: none;
}

.emp-bussola-mobile {
    display: none;
}

.emp-bussola-mobile, .emp-bussola-desktop {
    transform: rotate(165deg);
}

.gif-aceano {
    width: 50px;
    margin: 0 auto;
    margin-top: -20px;
}

#background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Escurece um pouco o fundo */
    z-index: 999; /* Abaixo do SweetAlert, que geralmente usa z-index 1000+ */
}

#background-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem cobrir toda a tela */
    opacity: 0.6; /* Opacidade para não destacar a imagem */
}

@media (max-width: 1750px)  {
    .emp-svg {
        right: calc(22vw - 1px);
    }

    .emp-capa {
        max-height: 450px;
    }

    .emp-andares-container {
        width: 60px;
    }

    .emp-rodape {
        position: absolute;
        bottom: 50px;
        left: -80px;
        /* background-color: #ffffff99; */
    }

    .emp-rodape div {
        flex-direction: row;
        gap: 40px;
    }

    .emp-rodape div img:first-child {
        display: none;
    }
}

@media (max-width: 968px) {
    .emp-container {
        flex-direction: column;
        background-position: bottom;
    }

    .emp-svg {
        display: none;
    }

    .emp-sidebar {
        height: 100vh;
        width: 100vw;
        position: fixed;
        right: 0;
        background-color: #fff;
        z-index: 2;
    }

    .emp-minimapa {
        z-index: 1;
        bottom: 40px !important;
    }

    .emp-logo {
        width: 160px;
        height: 75px;
        object-fit: cover;
    }

    .emp-capa {
        height: 450px;
    }

    .emp-visao {
        font-size: 10px;
        width: 140px;
        height: 30px;
    }

    .emp-box-logo {
        position: fixed;
    }

    .emp-andar {
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

    .emp-svg-mobile {
        display: block;
        z-index: 999;
        position: fixed;
        top: 0;
        right: 0;
        width: 140px;
        height: 70px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .emp-minimapa {
        width: 130px;
        height: 130px;
        bottom: 10px;
        left: 10px;
        padding: 6px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    .emp-svg-mobile-predio {
        width: 130px;
        background-color: #fff;
        padding: 5px;
        border-radius: 4px;
        margin-top: 225px;
        margin-right: 15px;
    }

    .emp-svg-mobile-close {
        width: 35px !important;
    }

    .emp-svg-mobile-close path {
        fill: #C89256;
    }

    .emp-minimapa:hover img {
        transform: scale(1);
        border-radius: 8px;
    }

    .emp-conteudo {
        justify-content: center;
        gap: 20px;
    }

    #panorama {
        display: block;
    }

    .pnlm-controls-container {
        top: 100px !important;
    }

    .emp-image-wrapper-box {
        display: block;
        overflow: scroll;
        scroll-behavior: smooth;
        width: 100%;
        height: 100%;
    }

    .emp-image-wrapper {
        width: 1000px;
        height: 100%;
    }

    .emp-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pnlm-container {
        position: fixed !important;
        background: none !important;
    }

    .pnlm-render-container {
        display: none;
    }

    .pnlm-controls-container {
        display: none;
    }

    .emp-bussola-mobile {
        display: block;
        position: fixed;
        bottom: 30px;
        right: 10px;
        z-index: 1;
        width: 50px;
    }

    .gif-aceano {
        margin-top: -30px;
    }
}

.marquee-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(42, 23, 1, 0.7);
    color: #fff;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;

    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 3s linear forwards;
}

.marquee-content span {
    display: inline-block;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, .3);
    font-size: 12px;
}

@media (min-width: 969px) {
    /* Estilização para navegadores Webkit (Chrome, Edge, Safari) */
    .marquee-container::-webkit-scrollbar {
        height: 3px; /* Altura da barra de rolagem horizontal */
    }

    .marquee-container::-webkit-scrollbar-track {
        background: rgba(42, 23, 1, 0.3); /* Cor do fundo da trilha (track) */
    }

    .marquee-container::-webkit-scrollbar-thumb {
        background: rgba(42, 23, 1, 0.7); /* Cor da barra de rolagem (thumb) */
        border-radius: 0; /* Arredondamento da barra */
    }

    .marquee-container::-webkit-scrollbar-thumb:hover {
        background: rgba(42, 23, 1, 0.9); /* Cor ao passar o mouse */
    }
    
    .marquee-container {
        height: 40px;
        align-items: end;
        scrollbar-width: thin;
        scrollbar-color: rgba(42, 23, 1, 0.1) rgba(42, 23, 1, 0.1);
    }
    
    .marquee-content span {
        padding-right: 500px;
    }
    
    @keyframes marquee {
        0% {
            transform: translateX(80%);
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 968px) {
    @keyframes marquee {
        0% {
            transform: translateX(30%);
        }
        100% {
            transform: translateX(0);
        }
    }
}