/*** Fonts ***/
@font-face{
    font-family: "Playfair Display";
    src: url("../fonts/playfair-display-regular.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: "Roboto";
    src: url("../fonts/roboto-regular.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: "Roboto";
    src: url("../fonts/roboto-bold.ttf");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: "Termina";
    src: url("../fonts/termina-regular.otf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/*** Variáveis ***/
:root{
	--corFundo: #EFEFEC;
	--corPrimaria: #9E5426;
    --corSecundaria: #444444;
	--corTexto: #001E33;
}

/*** Default ***/
html{
    scroll-behavior: auto !important;
}

html, body{
    margin: 0;
    padding: 0;
    font-family: "Roboto";
}

ul{
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Playfair Display";
    padding: 0;
    margin: 0;
    color: var(--corTexto);
}

h1{
    font-size: 75px;
    font-weight: 400;
}

h2{
    font-size: 48px;
    font-weight: 400;
}

p{
    font-family: "Roboto";
    font-size: 22px;
    font-weight: 400;
    color: var(--corTexto);
    padding: 0;
    margin: 0;
}

a{
    border-radius: 0;
    text-decoration: none;
}

hr{
    opacity: 1;
}

img{
    max-width: 100%;
}

#construcao{
    background-color: var(--corFundo);
    min-height: 100vh;
}

#construcao .container{
    padding-top: 100px; 
    padding-bottom: 20px; 
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#construcao img.icone{
    display: block;
    margin: 0 auto 4vh;
    width: 60px;
}

#construcao img.conteudo{
    display: block;
    margin: 0 auto 8vh;
    width: 85%;
}

#construcao .btn-contato{
    display: block;
    background-color: var(--corPrimaria);
    border-radius: 8px;
    padding: 11px 30px 10px 30px;
    margin: 40px auto 120px auto;
    text-align: center;
    width: fit-content;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

#construcao .btn-contato i{
    margin-left: 10px;
    font-size: 18px;
}

#construcao .btn-contato:hover{
    background-color: #7d421d;
    cursor: pointer;
}

#construcao img.marca{
    margin: 100px auto 20px auto;
}

#construcao .endereco p{
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    color: var(--corTexto);
    text-transform: uppercase;
}

#construcao .contatos p{
    font-size: 15px;
    line-height: 1.6;
    text-align: right;
    color: var(--corTexto);
}

#construcao a{
    display: block;
    color: var(--corTexto);
}

#construcao .endereco a:hover{
    color: #000;
}

#construcao iframe{
    width: 100%;
    height: 360px;
    padding: 10px;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, .1);
}


@media screen and (max-width: 767px){
    #construcao{
        padding-top: 50px;
        padding-bottom: 50px;
    }

    
    #construcao .container{
        padding-top: 40px; 
    }

    #construcao img{
        width: 200px;
        margin-bottom: 6vh;
    }

    #construcao h1{
        font-size: 40px;
    }

    #construcao .endereco{
        margin-bottom: 30px;
    }

    #construcao .col-md-6:last-child .endereco{
        margin-bottom: 0;
    }

    #construcao .endereco p,
    #construcao .contatos p{
        margin-bottom: 15px;
        text-align: center;
    }
}