@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*background: rgb(223,229,225);*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.content{
    width: 1000px;   
    display: flex;
    margin-top: 100px;    
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    box-sizing: border-box;
    padding: 20px 0 20px 0;

}

.container_logo{  
    width: 100%;     
    max-width: 450px;   
    min-width: 200px;
}

.logo{
    width: 100%;    
}

.info{
    width: 100%;  
    box-sizing: border-box;
    text-align: center;
    padding: 30px 0 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.separador_h{
    width: 150px;
    height: 1px;
    background: rgb(54,130,85);
    box-sizing: border-box;
    margin: 20px 0 20px 0;

}

.bloco_contato{    
    width: 100%;  
    display: flex;  
    flex-direction: row;   
    justify-content: center;
    align-items: center;
    margin-top: 20px;  
    margin-bottom: 20px;
}

.sub_bloco_a{    
    width: 300px;    
    display: flex;
    flex-direction: column;  
    align-items: flex-end;    
}

.sub_bloco_b{    
    width: 300px;    
    display: flex;
    flex-direction: column; 
    align-items: flex-start;   
}

.separador_v{
    width: 1px;
    height: 100px;
    background: rgb(54,130,85);
    box-sizing: border-box;
    margin: 0 10px 0 10px;
}

.espaco_texto{
    padding: 5px;
    display: flex;
    flex-direction: row;
}

.texto_info{
    font-size: 22px;
    color: rgb(145,145,145);
    font-family: 'Ubuntu', sans-serif;
}

.texto_sub_titulo{
    font-size: 26px;
    color: rgb(145,145,145);
    font-family: 'Ubuntu', sans-serif;
}

.icones{
    width: 50%;      
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;    
}

.icon_whatsapp{
    width: 24px;
    height: 24px;
    margin-left: 5px;
}

.img_whatsapp{
    width: 24px;
    height: 24px;
}

.img_icon{
    width: 170px;
    margin-top: 40px;  
}

.img_icon:hover{
    transition: .5s ease;
    box-shadow: 0px 0px 28px 11px rgba(54,130,85,0.3);
}


@media(max-width: 1000px){
    .content{
        width: 95%;   
    }
}

@media(max-width: 768px){
    .texto_info{
        font-size: 20px;
    }
    .icon_whatsapp{
        width: 20px;
        height: 20px;
    }
    .img_whatsapp{
        width: 20px;
        height: 20px;
    }
}

@media(max-width: 570px){
    .separador_v{
        display: none;
    }

    .bloco_contato{    
        flex-direction: column;
    }

    .sub_bloco_a{    
        width: 100%;    
        align-items: center;
    }

    .sub_bloco_b{    
        width: 100%;   
        align-items: center;
    }
}

@media(max-width: 425px){
    .texto_info{
        font-size: 18px;
    }
    .icon_whatsapp{
        width: 18px;
        height:18px;       
    }
    .img_whatsapp{
        width: 18px;
        height: 18px;
    }

}
