@import url(bootstrap.min.css);
@import url('font-awesome.css');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
    margin:0;
    padding: 0;
    font-size: 16px;
    font-family: 'Ubuntu', 'sans-serif';
}
body{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: #f1f1f1;
}

/* fontes e textos */
h1, h2, h3{
    margin-bottom: 0.45em;
}
h1{
    font-size: 38px;
    text-align: center;
}
h2{
    font-size: 25px;
    text-align: left;
    margin-left: 10px;
}
p{
    white-space: pre-wrap;
}
i{
    font-size: 20px;
}
/* conteudo */
.body-main{
    width: 100vw;
    height: 93vh;
    margin: 0 auto;
    background-color:#395a79;
}
.logo{
    width: 260px;
    margin: 0 auto;
}
.logo figure img{
    position: relative;
    width: 100%;
}
section{
    width: 100%;
    height: 70vh;
    padding-top: 2vh;
    background-color: #f1f1f1;
    box-shadow: 0px 5px 14px 0px #040404;
}
.texto{
    width: auto;
    height: 6vh;
    text-align: center;
}
.boxes{
    position: relative;
    width: 75vw;
    height: 36vh;
    margin: 0 auto;
    display: flex;
    background-color:#c1c1c1;
    box-shadow: 0 5px 10px 2px #040404;
}
.boxes .box{
    width: 30vw;
    margin: 10px;
    padding: 1.5vw 2vh;
    background-color:#fefefe;
}
.box_circle{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
a .circle{
    float: left;
    width: 81px;
    height: 81px;
    line-height: 81px;
    text-align: center;
    color: #333;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 4px #686868;
    margin: 5px;
    font-size: 2.5em;
    background-color: #fff;
}
a:hover .circle{
    color: #f1f1f1;
    background-color: #60b892;
    box-shadow: 0px 0px 10px 4px #c1c1c1;
    transition: .5s;
}
a .btn{
    line-height: 15px;
    margin: 10px auto;
    padding: 15px 10px;
    border-radius: 5px;
    text-align: center;
    color:#f1f1f1;
    font-style: normal;
    box-shadow: 0px 2px 5px 1px #686868;
}
a .btn.btn-mapa{
    background-color: green;
    text-decoration: none;
    font-family: 'Roboto';
    font-weight: bold;
    position: relative;
    bottom: -45px;
}
a .btn.btn-mail{
    background-color: #333;
    text-decoration: none;
    font-family: 'Roboto';
    font-weight: bold;
}
mail, phone, smtphone{
    display: block;
    padding: 5px;
    margin-bottom: 10px;
}
footer{
    bottom: 0px;
    display: block;
    height: 4vh;
    padding: 3vh 0 0;
    text-align: center;
    background-color: #333; 
}
footer .copy{
    text-align: center;
    color:#f1f1f1;
    font-size: 75%;
}
.testeMedia{
    display: none;
}
@media (min-width: 1010px) and (max-width: 1024px){
    *{font-size: 12px}
    .box_circle{
        display: flex;
        width: 95%;
    }
}
@media (min-width: 765px) and (max-width: 1010px){
    *{font-size: 0.98em;}
    .body-main{ height: 93vh;}
    section{height: 65vh;}
    .logo{
        width: 100%;
        margin: 1vh auto;
    }
    .logo figure img{
        width: 220px!important;
        margin: 0 auto 3vh;
        display: block;
    }
    .texto{ height: 2vh;}
    .boxes{
        height: 35vh;
        padding-top: 1px;
        width: 84vw;
        margin-top: 2vh;
    }
    .boxes .box{ width: 50vw !important; }
    .box_circle{ width: 100%; }
    a .circle{
    width: 6.5vw;
    height: 8vh;
    line-height: 8vh;
    font-size: 2.1em;
    }
    a .btn-mapa{
        bottom: -25px;
    }
}
@media all and (max-device-width: 425px){
    *{font-size: 1.08em;}
    h2{font-size: 40px;}
    .body-main{ height: 120vh;}
    section{height: 70vh;}
    .logo{
        width: 100%;
        margin: 1vh auto;
    }
    .logo figure img{
        width: 285px!important;
        margin: 0 auto 3vh;
        display: block;
    }
    .texto{
        height: 2vh;
    }
    .boxes{
        flex-direction: column;
        height: 86vh;
        padding-top: 2px;
        width: 84vw;
        margin-top: 2vh;
    }
    .boxes .box{
        width: 75vw !important;
        height: 25vh;
        margin: 1vh auto!important;
    }
    a .btn{ padding: 30px;}
    a .circle{
        margin: 1vh;
        width: 200px;
        height: 200px;
        line-height: 200px;
        font-size: 3.5em;
    }
    footer .copy{
        font-size:100%;
    }
}