* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: black;
    font-size: 24px;
}

.logo {
    width: 100%;
    max-height: 300px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
}

.logo img {
    margin: 40px auto;
    width: 380px;
}

.container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.row {
    background: lightblue;
    height: 80px;
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 50px;
    transition: 0.5s;
}

.row:hover {
    transform: scale(1.05);
    transition: 0.5s;
}

.ctn-img {
    margin-left: 40px;
}
.ctn-img img {
    max-width: 50px;
}

.ctn-text {
    flex-grow: 1;
    text-align: center;
    margin-left: -75px;
}

/* ESTILOS DOS BOTÕES */

.site {
    background: #E6007E;
}

.site:hover {
    background: #bb0167;
}

.telefone {
    background: #E6007E;
}

.telefone:hover {
    background: #bb0167;
}

.whatsapp {
    background: #25D366;
}

.whatsapp:hover {
    background: #19a14b;
}

.form {
    background: #E6007E;
}

.form:hover {
    background: #bb0167;
}

.email {
    background: #E6007E;
}

.email:hover {
    background: #bb0167;
}

.local {
    background: #E6007E;
}

.local:hover {
    background: #bb0167;
}

.instagram {
    background: linear-gradient(90deg,#F3AB3F 0%,#F3002C 50%,#572BD6 100%);
}

.facebook {
    background: #0865FF;
}

.facebook:hover {
    background: #0758da;
}

.linkedin {
    background: #0274B3;
}

.linkedin:hover {
    background: #0274B3;
}


@media (max-width: 1024px) {
    .logo img {
        width: 100%;
    }

    a {
        font-size: 20px;
    }

    .container {
        margin: 16px 0;
        padding: 0 8px;
    }

    .row {
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        padding: 0 16px;
    }

    .ctn-img {
        margin: 0 8px;
    }

    .ctn-text {
        flex-grow: 1;
        text-align: center;
        margin-left: -40px;
        width: auto;
    }

    .address {
        width: 100%;
    }
}