@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@font-face {
    font-family: 'juana';
    src: url('juana-semi-bold.ttf') format(truetype);
    font-weight: normal;
    font-synthesis: normal;
}

:root{
    --azul: #212733;
    --branco: #f3f3f3;
    --dourado: #D8B073;
    --preto: rgb(30,30,30);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    font-family: 'juana';
    font-family: "Playfair Display", serif;
}

html {
    scroll-behavior:smooth;
    /* scroll-padding-top:23vh; */
}

body{
    position: relative;
}

body .whatsapp_fixed{
    position: fixed;
    right: 20px;
    top: 85vh;
    z-index: 10;
}

body .whatsapp_fixed img{
    width: 75px;
}

header {
    width: 100%;
    padding: 15px 3%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--preto);
    transition: .5s;
    z-index: 10;
}

header.rolagem {
    background-color: #0c0829;
    background-color: var(--branco);
    color: #f3f3f3;
    height: 80px;
    padding: unset;
}

header.rolagem .container .flex{
    align-items: unset;
}

header.rolagem .links_menu{
    padding-top: 2%;
}

header.rolagem .links_menu a{
    font-size: 1.2em !important;
    color: var(--branco) !important;
    color: var(--preto) !important;
    font-weight: 300 !important;
}

header.rolagem .logo{
    display: none;
}

header .logo_rolagem img{
    display: none;
}

header.rolagem .logo_rolagem{
    height: 100%;
}


header.rolagem .logo_rolagem img{
    display: unset;
    margin-left: 30px;
    margin-top: 7px;
    width: 100px;
}

header .container {
    max-width: 1280px;
    margin: 0 auto;
}

header .container .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
    position: relative;
}

header.rolagem .flex{
    padding-right: 20px;
}

header.rolagem .flex::after{
    content: "";
    position: absolute;
    left: 0;
    height: 0;
    background-color: var(--preto);
    width: 200px;
    height: 105%;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    transition: .4s;
}

header .container .flex .logo img{
    width: 130px;
}

header .container .flex ul{
    display: flex;
    gap: 10px;
}

header .container .flex ul li{
    list-style: none;
}

header .container .flex ul li a{
    color: var(--branco);
    /* font-family: 'Poppins', sans-serif; */
    font-size: 1.35em;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    transition: .2s;
}

header .container .flex ul li a:hover{
    color: var(--dourado);
    /* font-size: 1.4em; */
}

#dropDownMenu{
    position: relative;
    cursor: pointer;
    z-index: 10;
}

#dropBox{
    background-color: var(--preto);
    position: absolute;
     top: 0px;
     left: 0px;
    line-height: 45px;
    opacity: 0;
    padding-inline: 15px;
    transition: .5s;
    box-shadow: 8px 8px 11px -3px rgb(0, 0, 0, 0.85);
}
#dropDownMenu:hover #dropBox {
    display: unset;
    padding-top: 5px;
    opacity: 1;
    top: 27px;
    left: 0px;
}

header.rolagem #dropBox{
    background-color: #f3f3f3;
    position: absolute;
    /* top: 0px;
    left: -10px; */
    top: 0px;
    left: -10px;
    line-height: 45px;
    opacity: 0;
    padding-inline: 15px;
    transition: .5s;
}
header.rolagem #dropDownMenu:hover #dropBox {
    box-shadow: 6px 8px 9px 0px rgb(99, 99, 99);
    background-color: #f3f3f3;
    display: unset;
    opacity: 1;
    line-height: 45px;
    left: -10px;
    top: 30px;
}

#dropBox a{
    color: #f3f3f3;
    font-size: 19px;
    text-decoration: none;
    transition: .2s;
}
#dropBox a:hover{
    color: #D8B073;
}


header .container .flex .links_menu{
    gap: 20px;
}

header .container .flex .links_menu li{
    display: inline-block;
    position: relative;
    padding: 0 10px;
}

header .container .flex .links_menu li::after{
    content: "|";
    position: absolute;
    right: -10px;
    top: 1px;
    color: #ffffff45;
    font-weight: 100;font-size: 1.4em;
}
header.rolagem .container .flex .links_menu li::after{
    content: "|";
    position: absolute;
    right: -10px;
    top: 1px;
    color: var(--preto);
    font-weight: 100;
    font-size: 1.2em;
}

header .container .flex .links_menu li:last-child::after{
    content: "";
}

header .container .flex .contato_menu li{
    display: flex; 
    align-items: center;
    font-size: 1.5em;
}

header.rolagem .container .flex .contato_menu li{
    font-size: 1.1em;
    color: var(--preto);
}

header.rolagem .container .flex .contato_menu li i{
    color: var(--preto);
}

header .container .flex .contato_menu img{
    width: 35px;
}

header .container .flex .contato_menu .phone{
    display: none;
    margin-right: 10px;
    font-size: 1.1em;
}

.menu_toggle {
    display: none;
}


@media screen and (max-width: 900px), (orientation: portrait){
    body .whatsapp_fixed{
        right: 10px;
        top: 90vh;
    }
    body .whatsapp_fixed img{
        width: 50px;
    }


    header .container{
        display: none !important;
    }

    header {
        width: 100%;
        padding: 2% 4%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: var(--branco);
        transition: .5s;
        height: 105px;
    }
    

    .menu_toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu_toggle .logo img{
        width: 85px;
    }

    .menu_toggle p img{
        width: 40px;
    }

    .menu_toggle ul {
        background-color: var(--branco);
        position: absolute;
        top: 105px;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100vh;
    }


    .menu_toggle li {
        width: 100%;
        display: flex;
        align-content: center;
        justify-content: center;
        margin: 15px 0;
    }

    .menu_toggle li a {
        font-size: 20px;
        width: 100%;
        height: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-content: center;
        text-decoration: none;
        color: var(--azul);
    }


    .menu_toggle .contato_menu{
        display: flex;
        gap: 5px;
    }
    .menu_toggle .contato_menu img{
        width: 25px;
    }
    

}


@media screen and (min-width: 1400px){
    header{
        padding: 25px 2%;
    }

    header .container {
        max-width: unset;
        margin: 0 auto;
    }

    section.banner .flex_box_text h1{
        font-size: 2.1em !important;
    }

    section.banner .flex_box_text p{
        font-size:1.5em !important;
    }
}

@media screen and (min-width: 1600px){
    section.banner{
        align-items: center;
    }
    section.banner .flex_box_text h1{
        font-size: 2.3em !important;
    }
    section.banner .flex_box_text p{
        font-size:1.7em !important;
    }
}