*{
 box-sizing: border-box;
}
img {
 display: block;
    width: 100%;
}
body{
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: Ubuntu;
    background-color: #4094ee;
}
body a{
 text-decoration: none;
    color: #A4A9AB;
    cursor: pointer;
}
body a:hover{
     color: #fc4c04;
}
h2{
   color: #333E48;
}
/*--------------header-----------------*/
.header{
    height: 50px; 
    background: white;
}
.header .box{
    display: flex;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
}
.logo{
    width: 70px;
    margin: 8px;
}
/*--------------Banner0-----------------------*/
.banner0{
    margin-top: -25px;
    position: relative;
    z-index: -1;
}
.banner0 .box{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
/*--------------info----------------------------*/
.info_titulo{
    background: none;
    /*border-bottom: 1.5px solid #ff5000;*/
}
.info_columna{
    background: white; 
    padding: 30px;
    /*margin-bottom: 3px;*/
    text-align: left;
    font-size: 10px;
}
.info_text{
    color: #A4A9AB;
    margin-bottom: 1px;
}
.info_wa{
    background: none;
    margin-bottom: 20px;
    /*border-radius: 9px;
    padding: 1px;
    margin: 10px;*/
}
.info_wa a{
 color: #A4A9AB;
}

/*--------------------Estilos resposive----------*/
@media(min-width:1024px){
    body{
     position: absolute;
    }
    .banner0 .box{
    left: 75%;
    top: 65%;
    }
    .info0{
    display: flex;
    justify-content: space-between;
    }
    .info_titulo{
    font-size: 18px;
    }
    .info_columna{
    width: 34%; 
    }
    .info_wa{
    margin-bottom: 0px;
    }
}

