@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    font-family: 'Merriweather', serif;
    scroll-behavior:smooth;
    scroll-padding-top:8vh;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent; 
  opacity: 0;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #cdab7c;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #cc9954; 
}

:root {
    --cinza-escuro: #343334;
    --beje: #cdab7c;
}

body{
    background-color: var(--cinza-escuro);
    position: relative;
}

.whatsapp_btn{
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 5;
    transition: .4s;
}
.whatsapp_btn:hover{
    scale: 1.1;
}

.whatsapp_btn img{
    width: 40px;
}

.menu_toggle{display: none;}

.desktop_menu{
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2% 2%;
    z-index: 4;
    color: var(--beje);
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/rusticos/32.png);
    background-size: 400px;
    background-position: bottom;
    border-bottom: 1px solid #cdab7c36;
}

.desktop_menu .logo{
    font-weight: 300;
    transition: .4s;
    align-self: center;
    font-size: 1.2em;
    letter-spacing: 5px;
    position: absolute;
    left: 49.5%;
    top: 5%;
    transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, -50%);
    width: 300px;
    text-align: center;
}

.desktop_menu .logo a{
    color: rgb(209, 209, 209);
    position: relative;
    text-shadow: 2px 2px 1.5px rgb(0, 0, 0);
    transition: .4s;
}
.desktop_menu .logo a::before{
    content: "";
    display: flex;
    width: 23%;
    height: .7px;
    background-color: var(--beje);
    position: absolute;
    top: 13px;
    left: -49px;
}
.desktop_menu .logo a::after{
    content: "";
    display: flex;
    width: 23%;
    height: .7px;
    background-color: var(--beje);
    position: absolute;
    top: 13px;
    right: -43px;
}

.desktop_menu .logo a:hover{
    /* color: white; */
    letter-spacing: 5.5px;
}


.desktop_menu .desktop_list{
    display: flex;
    list-style-type: none;
    gap: 20px;
}


.desktop_list li a{
    color: white;
    font-size: .8em;
    font-weight: 200;
    transition: .4s;
    color: var(--beje);
    color: rgb(209, 209, 209);
    text-shadow: 2px 2px 1.5px rgb(0, 0, 0);
}
.desktop_list li a:hover{
    color: white;
    font-size: .84em;
}

.desktop_menu .menu_social{
    display: flex;
    gap: 15px;
    list-style: none;
}

.desktop_menu .menu_social li a{
    color: white;
    font-size: 17px;
}
.desktop_menu .menu_social li img{
    width: 17px;
    transition: .2s;
}
.desktop_menu .menu_social li img:hover{
    width: 18px;
}

.url_bar{
    display: none;
}

@media screen and (max-width:800px){
    .desktop_menu{display: none;}
    
    .url_bar{
        display: inline-block;
        width: 100%;
        height: 7vh;
    }


    .whatsapp_btn{
        position: fixed;
        bottom: 10px;
        right: 10px;
        z-index: 5;
        transition: .4s;
    }

    .menu_toggle{
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        padding-inline: 2%;
        height: 8vh;
        z-index: 5;
        color: var(--beje);
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/rusticos/32.png);
        background-size: cover;
        background-position: bottom;
        border-bottom: 1px solid #cdab7c36;
    }

    .menu_toggle .logo a{
        color: var(--beje);
        font-weight: 300;
        transition: .4s;
        align-self: center;
        font-size: 1.2em;
        letter-spacing: 5px;
    }


    .menu_toggle ul{
        width: 100%;
        display: flex ;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        list-style: none;
        position: absolute;
        top: 8vh;
        left: 0;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .menu_toggle li{
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 4vh;
    }

    .menu_toggle li a{
        text-align: center;
        display: block;
        color: var(--beje);
        font-weight: 300;
    }

}