@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Montserrat:wght@300;400;700&display=swap');

* {
    box-sizing: border-box;
    margin:0;
    padding: 0;
    color:#fff;
}

body {
    background:#333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    font-size:14px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width:90%;
    width:750px;
    margin:60px 0;
}

.logo {
    max-width:80%;
}

.logo img {
    display: block;
    max-width: 100%;
}

.servicos {
    display: flex;
    flex-wrap: nowrap;
    margin:30px 0;
    padding: 20px 0;
    border-top:1px rgb(75, 75, 75) solid;
    border-bottom:1px rgb(75, 75, 75) solid;
    min-width: 100%;
    justify-content: center;
}

.servicos ul {
    display: flex;
    list-style: none;
    margin:0; 
    padding: 0;
}

.servicos ul li {
    padding: 0 25px;
}

.servicos ul li:not(:last-child) {
    border-right: 1px rgb(92, 92, 92) solid;
}

.contatos {
    display: flex;
    gap:40px
}

.contatos i {
    color:rgb(168, 168, 168);
    display: inline-block;
    font-size:18px;
    margin-right: 5px;
}
.contatos a {
    text-decoration: none;
}

.social {
    display: flex;
    min-width:100%;
    justify-content: center;
    margin-top: 60px;
    gap:20px;
}

.social a {
    font-size:18px;
    width:40px;
    height:40px;
    border-radius:50%;
    display: table;
    line-height: 40px;
    text-align: center;
    background: rgb(77, 77, 77);
}

.social a:hover {
    color:#333;
    background: rgb(17, 17, 17);
}

@media (max-width:768px) {
    .contatos, .servicos ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .servicos ul li {
        width:50%;
        border:0 !important;
        text-align: center;
        margin:5px 0;
    }
    .contatos {
        gap:15px;
    }
}