body{
    background-color: #000000;
}

@media(min-width: 1200px){
    .headerConteiner{
        width: 100%;
        display: flex;
        justify-content: center;
        position: fixed;
        top: 0px;
        z-index: 99;
    }
    
    .headerBlock{
        max-width: 1200px;
        display: flex;
    }
    
    .headerMenu{
        display: flex;
        flex-direction: row;
        width: 700px;
        justify-content: space-evenly;
        align-items: center;
        padding: 0 100px 0 150px;
    }
    
    .headerLogo{
        width: 660px;
    }
    
    .headerLogo img{
        margin: 10px 10px 10px 60px;
        width: 250px;
    }

    .headerLogo img.logoDesde{
        margin: 10px;
    }

    .linkInstagramHeader {
        display: flex;
        align-items: center;
    }

    .linkInstagramHeader a {
        height: 25px;
        display: flex;
        margin-top: 5px;
    }

    .linkInstagramHeader img {
        width: 20px;
        height: 20px;
    }
    
    .menuOpcao a{
        color: #ffffff;
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
    }
    
    .menuOpcao a:hover{
        color: #f5aa43
    }
    
    .blocoMenuCases{
        position: relative;
    
    }
    
    .opcoesMenuCases{
        display: none;
        position: absolute;
        width: 220px;
        top: 100%;
        left: 0;
        background-color: #262626;
        padding: 10px 0;
        display: none;
    }
    
    .blocoMenuCases:hover .opcoesMenuCases {
        display: flex;
        flex-direction: column;
      }
    
    .opcaoMenuCase a{
        color: #9d9d9d;
        text-transform: uppercase;
        font-family: "Montserrat", sans-serif;
        padding: 0px 10px;
        line-height: 26px;
    }
    
    .opcaoMenuCase a:hover{
        color: #ffffff;
    }

    .headerConteinerMobile{
        display: none;
    }
}

@media(max-width: 1200px){

    .headerMenuMobile {
        position: absolute;
        top: 50px;
        left: 0;
        width: 200px;
        height: 300px;
        background: lightgray;
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%);
        display: none;
      }
      
      .headerMenuMobileActive {
        transform: translateX(0);
        display: flex;
      }

    .headerConteiner{
        display: none;
    }

    .iconeMenuMobile{
        content: "\f0c9";
        color: #ffffff;
    }
    
    .menuOpcaoMobile a{
        color: #ffffff;
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
    }

    .headerMenuMobile{
        background-color: #262626;
        display: flex;
        flex-direction: column;
        position: absolute;
        width: 75%;
        padding: 15px 10px 15px 30px;
        top: 75px;
        height: 350px;
        line-height: 26px;
    }

    .headerLogoMobile{
        width: 50%;
        padding: 25px 10px 0px 30px;
    }

    .headerLogoMobile img {
        width: 55vw;
    }

    .iconeMenuMobile{
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    #abrirMenuMobile{
        height: 30px;
        margin: 15px 30px;
        background-color: transparent;
        color: #ffffff;
        border: none;
        transform: scale(1.8);
    }

    .headerBlockMobile{
        display: flex;
    }

    .opcoesMenuCasesMobile{
        margin-left: 20px;
        line-height: 26px;
    }

    .fa-bars:before, .fa-navicon:before {
        content: "\f0c9";
    }

    body{
        margin: 0px !important;
        padding: 0px !important;
    }
  
}

