@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    font-family: "Playfair Display", serif;
}

html {
    background-color: #f1eee8;
    scroll-behavior:smooth;
    /*scroll-padding-top:8vh; Ajuste para compensar o menu fixo */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.overflow-hidden{
    overflow: hidden;
}

header {
    /* position: fixed; */
    /* top: 0;
    left: 0; */
    background-color: white;
    transition: .5s;
    z-index: 10;
}

header.rolagem {
    background-color: hsla(60, 100%, 100%, .95);
    padding: 5px 4%;
}

header .container {
    max-width: 1280px;
    margin: 0 auto;
}

header .container .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    font-weight: 300;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 5px;
}

header .container .flex a {
    display: flex;
}

header .container .logo{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

header .container  a img {
    margin-top: 10px;
    width: 120px;
    transition: .4s;
}

header .container .flex a img:hover {
    transform: rotate(-5deg);
}

header .container .flex .btn_contact {
    background-color: #8c7851;

    width: 120px;
    height: 40px;
    border: 0;
    cursor: pointer;
    transition: .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
}

header .container .flex .btn_contact:hover {
    transform: scale(1.05);
}

header .container .flex .btn_contact a {
    text-decoration: none;
    color: #fffffe;
    font-weight: 300;
    transition: .4s;
}


header ul {
    list-style-type: none;
    display: flex;
    place-items: center;
    text-transform:uppercase;
}

header ul li a {
    color: black;
    font-size: 14px;
    text-decoration: none;
    transition: .4s;
    padding: 10px 35px;
}

header ul li a:hover {
    transform: scale(1.05);
    font-weight: 400;
}



/* ----------------------menu mobile---------------------- */
.menu_toggle {
    display: none;
}

@media screen and (orientation:portrait) {
    .menu_desktop,
    .btn_contact, .logo {
        display: none !important;
    }

    header {
        width: 100%;
        /* position: fixed; */
        top: 0;
        left: 0;
        background-color: #fffffe;
        transition: .5s;
        padding: 2px 5px;
        position: relative;
    }
    header .container .flex{
        height: fit-content;
        border: unset;
        justify-content: end;
    }


    header .container .logo_mobile{
        margin: 0 auto;
    }

    header .container .logo_mobile img{
        width: 90px;
        margin: 5px 0 0 0;
    }

    .menu_toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding-block: 10px;
        width: 100%;
        z-index: 10;
    }

    .menu_toggle p{
        position: absolute;
        left: 95%;
        top: 50%;
        transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        font-size: 1.6em;
        font-weight: 100;
    }

    .menu_toggle p img{
        width: 30px;
    }

    .menu_toggle ul {
        background-color: hsl(0, 0%, 100%);
        position: absolute;
        top: 121px;
        left: -5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100vw;
        height: 100dvh;
        padding-top: 5vh;
        z-index: 40;
    }


    .menu_toggle li {
        width: 100%;
        display: flex;
        align-content: center;
        justify-content: center;
        margin: 10px 0;
    }

    .menu_toggle li a {
        font-size: 20px;
        width: 100%;
        height: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-content: center;
    }


    .highlight_section {
        margin-top: 0px;
    }

    .logo{
        margin: 0 auto;
    }
}