
#iframeTour {
    z-index: var(--z-index-0);
    width: var( --size-100Vw);
    height: var(--size-100Vh);
}


    /* START PRELOAD FULL SCREEN */
    
    #containerResponseApresentacao {
        position: absolute;
        z-index: var(--z-index-700);
        background-color: var(--colorCustomGray);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: var(--size-100Vw);
        height: var(--size-100Vh);
    }

        #innerApresentacao {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

            #textPresentation {
                font-size: 35px;
                color: var(--colorTextApresentation);
                margin: var(--marginApresentacaoStandard);
                font-family: arial;
            }

            
                #logoEmpreendimento {
                    width: var(--logoEmpreendimento);
                    height: auto;
                    margin: var(--marginApresentacaoStandard);
                }

                    #fullscreen-button {
                        background-color: var(--colorButtonApresentacaoBg);
                        color: var(--colorButtonApresentacao);
                        margin: var(--marginApresentacaoStandard);
                        padding: 15px 25px 15px 25px;
                        font-size: 20px;
                        font-family: arial;
                        border-radius: 30px;
                        border: solid 0px;
                        transition: border-radius 0.5s;
                        box-shadow: 5px 5px 10px 1px rgba(27, 27, 27, 0.699);

                    }

                    #fullscreen-button:hover {
                        background-color: var(--colorButtonApresentacaoBgHover);
                        color: var(--colorButtonApresentacaoHover);
                        cursor: pointer;
                        border-radius: 6px;
                        box-shadow: 5px 5px 10px 1px rgba(27, 27, 27, 0.699);
                        transform: scale(1.1);
                    }

                        #logoConstrutora {
                            width: var(--logoConstrutora);
                            height: auto;
                            margin: var(--marginApresentacaoStandard);
                        }


                        @media (max-width: 480px) {
                            #innerApresentacao {
                                transform: scale(0.7);
                            }
                        }

                        @media only screen and (min-width: 768px) and (max-width: 991px) {
                            #innerApresentacao {
                                transform: scale(1);
                            }
                            }

                        @media only screen and (min-width: 992px) and (max-width: 1199px) {
                            #innerApresentacao {
                                transform: scale(1.2);
                            }
                        }

                        @media only screen and (min-width: 1200px) {
                            #innerApresentacao {
                                transform: scale(1.3);
                            }
                        }

                        @media only screen and (min-width: 2000px) {
                            #innerApresentacao {
                                transform: scale(1.8);
                            }
                        }