@media only screen and (max-width: 1092px) {

    /* pagina home */
    header {
        justify-content: space-between;
        padding: 1.5rem 1rem;
    }

    #nav_menu {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1001;
    }

    .botao_menu {
        display: none;
    }

    menu {
        position: absolute;
        top: 0;
        margin-top: 6.22rem;
        right: -110%;
        height: 280px;
        width: 100%;
        background: #fff;
        box-shadow: 2px 0 12px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        padding: 1rem 2rem 2rem;
        z-index: 1000;
    }

    menu.active {
        right: 0;
    }

    menu ul {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    menu a li {
        font-weight: 600;
        padding: 0.5rem 0;
    }

    menu a li:hover {
        color: #049162;
    }

    .container_sobre {
        flex-direction: column;
        align-items: center;
    }

    .container_sobre .image_sobre {
        justify-content: center;
    }

    .container_info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin-bottom: 3rem;
    }

    /* pagina especialidades */

    .section_container {
        flex-direction: column;
        margin: 20px;
    }

    .container_text {
        width: 100%;
        height: 350px;
    }

    .container_text p {
        width: 100%;
    }

    .container_image {
        position: relative;
        bottom: 3rem;
        left: 1rem;
        z-index: 2;
        width: 100%
    }

    .container_image img {
        width: 95%;
        height: 300px;
        object-fit: cover;
        border-radius: 20px;
    }
}