.central {
    background-color: #fff;
    margin: 10px;
    display: flex;
    width: auto;
    height: 77vh;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

main {
    padding: 2rem 0;
}

.contato .container {
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.dados {
    width: 50%;
    padding: 10px;
}

.dados h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.dados p {
    margin-bottom: 10px;
}

.logo-empresa {
    height: 100%;
    width: 50%;
    display: flex;
    object-fit: cover;
    justify-content: center;
}

.logo-empresa img {
    max-width: 200px;
    height: 200px;
}

@media (max-width: 768px) {
    .contato .container {
        flex-direction: column;
        text-align: left;
    }

    .dados {
        width: 100%;
        margin-bottom: 20px;
    }

    .logo-empresa img {
        max-width: 150px;
    }
}