@import url("index.css");
header{
    width: 100%;
    padding: 40px 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.4s;
    z-index: 999;
}
header  .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}
header .interface .logo img{
    max-width: 60px;
}
header .interface .menu-desktop nav ul{
    list-style-type: none;
}
header .interface .menu-desktop nav ul li{
    display: inline-block;
    margin: 0 20px;
}
header .interface .menu-desktop nav ul li a{
    color: orange;
    text-decoration: none;
    display: inline-block;
    transition: all 0.6s;
}
header .interface .menu-desktop nav ul li a:hover{
    transform: scale(1.5);
    color: rgb(248, 182, 0);
    background-color: rgb(92, 88, 80);
    border-bottom-style:groove;
    border-bottom-color: rgb(255, 166, 0);
}
header .interface .orcamento button{
    background-color: transparent;
    width: 200px;
    height: 30px;
    font: 18px;
    border-radius: 5px;
    border: 1px solid orange;
    color: orange;
    cursor: pointer;
    transition: all 0.6s;
}
header .interface .orcamento button i{
    margin-right: 10px;
}

header .interface .orcamento button:hover{
    background-color: orange;
    color: white;
}
/*Área do menu mobyle*/

/*Área do botão do menu*/
header .btn-menu-mobile{
    display: none;
}

header .btn-menu-mobile div{
    height: 3px;
    background-color: beige;
    transition: .3s;
}
header .btn-menu-mobile .line-menumob-1{
    width:40px;
}

header .btn-menu-mobile .line-menumob-2{
    width:40px;
    margin: 5px;
}

header .btn-menu-mobile .line-menumob-1.Activo1{
    transform: rotate(45deg) translateX(30%);
}

header .btn-menu-mobile .line-menumob-2.Activo2{
    transform: rotate(135deg);
}

/*Área das listas do menu*/

header .menu-mobile{
    width:0;
    height:0;
    background-color: black;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: .3s;

}

header .menu-mobile ul li{
    list-style: none;
}

header .menu-mobile a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding:20px;
    display:block;
    transition: 0.4s;
}

.menu-mobile nav{
    width:100%
}
header .menu-mobile a:hover{
    color: black;
    background-color: orange;
    box-shadow: 0 0 10px;
}


header .menu-mobile.AbrirMenu{
    width: 100%;
    height: 100vh;
}

body.naoRolar{
    overflow: hidden;
}
/*Responsividade do cabeçalho*/
header.emRolagem{
    background-color: rgba(0, 0, 0, 0.904);
    padding: 20px 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

header.emRolagem .interface .menu-desktop nav ul li a{
    color: white;
}

header.emRolagem .interface .menu-desktop nav ul li a:hover{
    transform: scale(1.5);
    color: orange;
}
header.emRolagem .interface .orcamento button{
    border: 1px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all 0.6s;
}