.interface{
    max-width: 1280px;
    margin: 0 auto;
}

header .logo{
    transition: .2s;
}

header .logo:hover{
    transform: scale(1.05);
}

header nav.menuDesktop a{
    text-decoration: none;
    color: #4f4f4f;
    display: inline-block;
    transition: .2s;
    font-weight: 700;
}

header nav.menuDesktop a:hover{
    color: #fff;
    transform: scale(1.05);
}

header nav ul{
    list-style: none;
}

header nav ul li a{
    text-decoration: none;
}

header{
    padding: 40px 4%;
    box-shadow: 0 0 40px 10px #ffffff10;
}

header nav ul li{
    display: inline-block;
    padding: 0 20px;
}

header > .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsivo Mobile */

.overlayMenu{
    background-color: #000000a0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8888;
    display: none;
}

.btnAbrirMenu i{
    font-size: 30px;
    position: absolute;
    color: #FF0505;
    top: 10%;
    right: 10%;
}

.menuMobile{
    background-color: #000;
    height: 100vh;
    border-radius: 50px 0 0 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 0;
    overflow: hidden;
    transition: 0.5s;
}

.menuMobile.openMenu{
    width: 60%;
    border-left: 2px solid #ff050557;
}

.menuMobile.openMenu ~ .overlayMenu{
    display: block;
}

.menuMobile nav ul{
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.menuMobile nav ul li a{
    display: block;
    color: #fff;
    font-size: 26px;
    font-weight: 300;
    padding: 35px 4%;
    border-radius: 35px;
    transition: 0.7s ease-in-out;
}

.menuMobile nav ul li a:hover{
    background-color: #FF0505;
    font-weight: bold;
}

.menuMobile .btnFechar{
    padding: 35px 4%
}

.menuMobile .btnFechar i{
    color: #FF0505;
    font-size: 28px;
}

