@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');

:root{
    --azul: #212733;
    --branco: #f3f3f3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    /* font-family: 'Poppins', sans-serif; */
    font-family: "Montserrat", sans-serif;
    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: 25px 3%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--branco);
    transition: .5s;
    z-index: 10;
}

header.rolagem {
    background-color: #0c0829;
    padding: unset;
    color: #f3f3f3;
}

header.rolagem .links_menu a{
    font-size: 1.15em !important;
    color: var(--branco) !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;
    width: 150px;
    margin-left: 30px;
}

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(--branco);
    width: 220px;
    height: 120%;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    transition: .4s;
}

header .container .flex .logo img{
    width: 180px;
}

header .container .flex ul{
    display: flex;
    gap: 10px;
}


header .container .flex ul li{
    list-style: none;
}

header .container .flex ul li a{
    color: #212733;
    font-weight: 300;
    font-size: 1.2em;
    text-decoration: none;
}

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: -2px;
    color: #212733b5;
    font-weight: 100;font-size: 1.4em;
}
header.rolagem .container .flex .links_menu li::after{
    content: "|";
    position: absolute;
    right: -10px;
    top: -2px;
    color: #f3f3f336;
    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(--branco);
}

header.rolagem .container .flex .contato_menu li i{
    color: var(--branco);
}

header.rolagem .container .flex .contato_menu img{
    width: 25px;
}

header .container .flex .contato_menu li a{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .container .flex .contato_menu img{
    width: 30px;
}

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: 1% 4%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: var(--branco);
        transition: .5s;
        height: 70px;
    }
    

    .menu_toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu_toggle .logo img{
        width: 115px;
    }

    .menu_toggle p img{
        width: 40px;
    }

    .menu_toggle ul {
        background-color: var(--branco);
        position: absolute;
        top: 65px;
        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{
        padding-top: 20px !important;
    } */

    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 .flex_box_text h1{
        font-size: 2.3em !important;
    }
    section.banner .flex_box_text p{
        font-size:1.7em !important;
    }
}