html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    background-size: cover;
}
.bloco-links{
    margin: 3% 0;
}
.topo{
    margin-top: 2%;
}
.topo .logo {
    max-width: 400px;
}
.btn-padrao {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: white;
    transition: all .2s;
    text-transform: uppercase;
    background-color: #009EE0;
    border-radius: 65px;
    transition: .2s;
    margin-bottom: 20px;
    height: 80px;
}
.btn-padrao:focus {
    box-shadow: none;
    outline: none;
}
.btn-padrao:hover {
    color: white;
}
#back-azul{
    background: #1C3587;
}
#back-verde{
    background: #20BDB6;
}
#facebook{
    background: #4676ED;
}
#linkedin{
    background: #4467AD;
}
.btn img {
    margin-right: 20px;
    width: 50px;
}
#endereco{
    border: 1px solid #929292;
    text-align: center;
    padding: 25px 0;
    background-color: #fff;
    color: #929292;
    font-size: 18px;
}
@media (max-width: 480px){
    .topo{
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .topo .logo {
        max-width: 300px;
    }
    .btn-padrao {
        font-size: 15px;
        padding: 15px 0;
    }
    .btn img{
        width: 35px;
    }
    #endereco{
        font-size: 15px;
        padding: 15px 0;        
    }
}