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

    /* BOTAO FIXO WHATSAPP */
    .btn-contato {
        display: none;
    }



    /* HEADER */
    header {
        top: -2px;
        /* background-color: red; */
        height: 12rem;
    }

    /* FIM DO HEADER */

    /* LAYOUT DO MENU */
    .interface {
        justify-content: flex-end;
    }

    /* LAYOUT DO MENU */
    .menu-desktop {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        /* border: 2px solid red; */
        cursor: pointer;
        width: 50px;
        height: 50px;
        position: relative;
    }

    /* LISTA DO MENU */

    .lista-menu {
        display: block;
        width: 50%;
        height: 5px;
        background-color: white;
        transition: 0.3s;
    }

    /* FIM DA LISTA MENU */

    /* MENU CELULAR */

    .menu-opcoes {
        display: none;
    }

    .menu-celular {
        display: block;
        padding: 5px;
        width: 150px;
        height: 120px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        position: absolute;
        top: 100%;
        transition: 0.3s;
        transform: translateX(100%);
        opacity: 0;
    }

    .menu-celular ul {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
        justify-content: space-around;

    }

    /* FIM DO MENU OPÇÕES */


    /* IMG DA LOGO, COM POSITION FIXED*/
    .logo {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
    }

    /* começo */

    /* CONTAINER */
    .container {
        /* border: 2px solid red; */
        width: 700px;
        padding: 10px;
    }

    .texto {
        letter-spacing: 0;
        font-size: 1.6rem;
        text-align: justify;
        text-indent: 0;
        /* border: 2px solid white; */
        padding: 0.2rem;
    }

    /* FIM DO CONTAINER */


    /* SEÇÃO MISSAO */
    .secao-missao{
        background-position: center;
    }
    
    

    .secao-missao .img {
        display: none;
    }

    .secao-missao .titulo {
        margin-top: 15rem;
    }

    /* FIM DA SEÇÃO MISSAO */


    /* SEÇÃO TECNICO */

    .secao-tecnico .titulo{
        margin-top: 12rem;
    }

    .secao-tecnico .flex {
        display: flex;
        flex-direction: column;
    }


    #img-celular {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        width: 250px;
        height: 350px;
        border-radius: 10%;
    }

    #img-desktop {
        display: none;
    }

    /* FIM DA SEÇÃO TECNICO */

    /* SEÇÃO NOSSO SERVIÇO */

  
    .secao-especialidades .texto{
           text-align: justify;
           width: 100%;
    }

    .secao-especialidades .flex {
        flex-direction: column;
    }

    .secao-especialidades .subContainer {
        width: 100%;
        border: 2px solid var(--cor-geral);
     
    }

  

    /* FIM SEÇÃO NOSSO SERVIÇO */


    /* CONTATOS */
    footer {
        margin-top: 40rem;
        height: 100%;
        padding: 0;
        /* border: 2px solid red; */
        position: relative;
    }

    footer .btn-contato-celular{
        position: absolute;
        right: 0;
        bottom: 0;
    }

    footer .titulo {
        text-align: center;
    }

    footer img {
        display: none;
    }

    footer .flex{
        /* border: 2px solid red; */
        flex-direction: column;
        padding: 1rem;
        border-bottom: none;
        height: auto;
    }

    footer .contatos-desktop{
        display: none;
    }

    footer .contatos-celular{
        display: block;
    }
}