/* PADRÃO */

    @import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

    * {font-family:'Montserrat', sans-serif}

    html {margin:0; box-sizing:border-box; width: 100%; height: 100%;}
    body {margin:0; box-sizing:border-box; width: 100%; height: 100%;}

    a {text-decoration:none; color: #666; cursor:pointer;}
    a:visited {color: #00366C;}
    a:hover {color: #00366C; font-weight: bold;}

/* PADRÃO */

.logoImovel {
    color:#FFCC00;
    font-size: 50px;
    font-weight: bold;
    }

.logoClique {
    color:#06C;
    font-size: 50px;
    font-weight: bold;
    }

.frase {
    color:#06C;
    font-size: 45px;
    font-weight: bold;
    margin-top: 40px;
    }    

.externa {    
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: auto;
    /* height: 100%;*/
    width: 100%;
    }

.interna {
    padding: 60px 0 60px 0;
    text-align: center;
    }

.externaPlano {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    }

.internaPlano {
    padding: 0;
    text-align: center;
    }

.divTituloPlano {    
    border-radius: 10px 10px 0 0;
    padding:10px;
    width: 120px;
    margin-bottom: 20px;
    background-color: #00366C;
    color: #ddd;
    }      

.divPlano {
    margin: 30px 10px 30px 10px;    
    border-radius: 10px;
    width: 140px;
    }    

.divConteudo {
    width: 650px;
    text-align: justify;
    padding: 0 0 40px 0;
    line-height: 1.5;
}

/* MENU */
    .topoLinks {
        position: fixed;
        right: 10px;
        top: 10px;
        font-size: 24px;
        z-index: 1;
    }

    .divMenuBottom{
        width: 100%;
        height: 40px;
        background-color: #ddd;
        opacity: 0.85;
        position: fixed;
        bottom: 0;
        z-index: 0;
    }    

    .bottomLinks {
        position: fixed;
        left: 10px;
        bottom: 5px;
        font-size: 24px;
        z-index: 1;
    }

    .logo {
        position: fixed;
        right: 10px;
        bottom: 10px;
        text-shadow: #ddd 0 0 5px;
        z-index: 1;
        }
/* MENU */


/* FORMs */    

    textarea {
        padding: 15px;
        border-radius: 5px; border:1px solid #ddd;
        width: 320px;
        height: 150px;
        margin: 15px 0 10px 0;
    }

    input {
        padding: 10px 10px 10px 40px;
        border-radius: 5px;
        border:1px solid #ddd;
        width: 200px;
    }

    button {
        padding: 10px 15px 10px 15px;    
        border-radius: 5px;
        border:1px solid #ddd;
        cursor: pointer;
    }

    .iconInput{
        font-size: 25px;
        margin:7px 0 0 9px;
        position: absolute;
        z-index: 10;
        color: #ddd;
    }

    .btnTestar {width: 80px; margin-left: -84px; z-index: 1;}

    .btnAzul {color: #ddd; background-color: #00366C;}

    .labelForm{
        position: relative;
        top: 8px;
        left: 15px;
        font-size: 12px;
        background-color:#FFF;
        padding: 0 5px 0 5px;
        border-radius: 5px;
        z-index: 1;
    }

    .ok{
        color:#00BFFF;
    }

/* FORMs */

/* TABELAS */

    .tableExibe {        
        border-collapse: collapse;
        margin: 0 auto 0 auto; 
        }

    .tdExibe {
        text-align: center;
        padding: 0 20px 0 20px;
        }

    .tdTop {
        padding: 10px 0 20px 0;
        }        

    .tdMeio {
        padding: 0 0 20px 0;
        }

    .tdBottom {
        padding: 0 0 80px 0;
        }

/* TABELAS */


@media (max-width: 700px) {

.interna {
    padding: 80px 0 80px 0;
    }

.externaPlano {
    width: 100vw;
    flex-wrap: nowrap;
    overflow-x: scroll;    
    }

.externaPlano::-webkit-scrollbar {
    display: none;
    }    

    .divConteudo {
        width: 90vw;
    }

}