
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
* {
    user-select: none;
    transition: 0.2s;
    box-sizing: border-box;
    margin: 0px;
    font-family: Urbanist;
}

body {
    background-color: rgb(250, 248, 248);
}

.barraAlto {
    align-items: center;
    justify-content: space-around;
    display: flex;
    color: rgb(230, 229, 229);
    font-size: 15px;
    width: 100%;
    height: 30px;
    background-color: #0c6820;
}

/* HEADER */
#logo {
    height: 80px;
}

#logo2 {
    display: none;
}

header {
    padding: 8px;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: #001220;
    height: 135px;
    gap: 10%;
}

#IconLupa {
    height: 35px;
}

.pesquisa {
    flex-grow: 0.6;
    gap: 1%;
    display: flex;
    align-items: center;
}

#inputSearch {
    padding: 5px;
    font-weight: bold;
    font-size: 15px;
    border: none;
    height: 40px;
    width: 100%;
    border-radius: 3px;
    transition: box-shadow 0.3s ease;
}

    #inputSearch:focus {
        outline: none;
        box-shadow: 0 0 10px rgba(0, 173, 255, 0.5);
    }

.icons {
    display: flex;
    justify-content: center;
}

    .icons i {
        cursor: pointer;
        color: white;
        margin: 10px;
        font-size: 35px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

/* MODAL DE LOGIN  */
.modal {
    align-items: center;
    display: none;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(115, 115, 115, 0.4);
}

.closemodal {
    cursor: pointer;
    position: absolute;
    right: 20px;
    font-size: 35px;
}

    .closemodal:hover {
        color: #538f46;
    }

.content {
    margin: 15px;
}

.login-container {
    position: relative;
    border-radius: 0.31rem;
    text-align: center;
    background-color: rgb(255, 255, 255);
    height: 430px;
    width: 350px;
}

.separator {
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
}

    .separator span {
        z-index: 1;
        position: relative;
        background-color: #fff;
        padding: 0 0.9rem;
        font-weight: 500;
    }

    .separator::after {
        position: absolute;
        content: "";
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px;
        background-color: #538f46;
    }

.logim-form {
    position: relative;
}

.email-input,
.senha-input {
    outline: none;
    width: 80%;
    height: 40px;
    padding: 0 1.25rem 0 2.12rem;
}

.input-login {
    position: relative;
}

    .input-login span {
        font-size: 22px;
        color: #538f46;
       
        position: absolute;
        top: 50%;
        left: 2.7rem;
        pointer-events: none;
        transform: translateY(-50%);
    }

.esqueceuasenha {
    position: relative;
    right: 31px;
    margin-top: 5px;
    color: #000000;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .esqueceuasenha a {
        color: #3f7333;
        
    }

.login-button {
    width: 78%;
    height: 45px;
    cursor: pointer;
    outline: none;
    border: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.100rem;
    background-color: #538f46;
    border-radius: 0.31rem;
}

    .login-button:hover {
        background-color: #69b158;
    }

.criarcontatxt {
    margin-top: 10px;
}

    .criarcontatxt a {
        color: #3f7333;
    }

.icons i:hover {
    color: #00adff;
    transform: translateY(-3px);
}

/* NAV */
nav {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75px;
    background-color: #000000;
    gap: 100px;
    margin-bottom: 3px;
}

.itensNav {
    display: flex;
}

.ocultar {
    color: rgb(48, 160, 59);
    
    height: 20px;
    display: none;
}

nav .itensNav span {
    font-size: 24px;
    margin-right: 5px;
    color: rgb(48, 160, 59);
}

.fixed {
    position: sticky;
    top: 0;
    z-index: 2;
}

nav .itensNav a {
    transition: 0.3s;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
    position: relative;
}

a {
    font-weight: bold;
    text-decoration: none;
}

nav .itensNav a::after {
    margin-top: 10px;
    content: " ";
    width: 0%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}

nav .itensNav a:hover::after {
    width: 100%;
}

#btn {
    color: rgb(45, 161, 45);
    display: none;
    font-size: 30px;
    cursor: pointer;
    transition: ease;
}

/* dropdown  /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.dropdown {
    float: left;
    overflow: hidden;
}

#drop {
    color: rgb(48, 160, 59);
}

.dropdown .outrosbtn {
    font-size: 18px;
    border: none;
    outline: none;
    color: white;
    font-family: inherit;
    font-weight: bolder;
    margin: 0;
    min-width: 160px;
}

.outrosbtn:hover {
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    display: none;
    padding: 20px;
    background-color: #001220;
    color: white;
    min-width: 160px;
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

    .dropdown-content a {
        padding: 20px;
        float: none;
        color: rgb(255, 253, 253);
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            color: white;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

/* SIDENAV  /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

        .sidenav a:hover {
            color: #f1f1f1;
        }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }




/* /////////////////////////////////////////////////////////////////////////////////// */

@media only screen and (max-width: 1245px) {
    .dropdown {
        display: none;
    }

    nav {
        gap: 60px;
    }
}

@media only screen and (max-width: 768px) {

    /* HEADER */

    .dropdown {
        display: none;
    }
  
        .barraAlto {
        display: none;
    }

    #btn {
        display: block;
        font-size: 25px;
        cursor: pointer;
        transition: ease;
    }


    #logo {
        display: none;
    }

    #logo2 {
        display: block;
        height: 70px;
    }

    .pesquisa {
        position:relative;
        right: 24px;
        width: 100%;
        justify-content: center;
    }

    /* NAV */

    nav {
        gap: 35px;
        height: 70px;
    }

        nav .itensNav span {
            font-size: 20px;
        }

        nav .itensNav a {
            font-size: 17px;
        }

    #btn {
        font-size: 20px;
    }

    .icons {
        display: none;
    }

/*    SIDENAV*/
    .sidenav {
        height: 100%;

    
    }

        .sidenav a {
            font-size: 20px;
        }
}

@media only screen and (max-width: 640px) {
    nav .itensNav span {
        font-size: 20px;
    }

    .itensNav a {
        font-size: 16px;
    }
    #inputSearch {
        border-radius: 2px;
        height: 44px;
        font-size: 14px;
    }
    #logo2 {
        height: 65px;
    }

    nav {
        gap: 30px;
    }
}

@media only screen and (max-width: 600px) {
    header {
        height: 110px;
    }

    #inputSearch {
        border-radius: 2px;
        height: 38px;
        font-size: 14px;
    }

    #inputSearch {
        font-size: 15px;
    }

    #logo2 {
        height: 55px;
    }

    .pesquisa {
        gap: 3px;
    }

    #IconLupa {
        height: 35px;
    }

    nav {
        gap: 50px;
        height: 60px;
    }

    /* TROCAR NAV PRA CELULAR */
    .itensNav {
        display: none;
    }

    .ocultar {
        display: block;
    }

    #btn {
        font-size: 20px;
    }
}

@media only screen and (max-width:470px) {


   

    nav {
        height: 50px;
        gap: 45px;
    }

    #btn {
        font-size: 20px;
    }

    /* HEADER RESPONSIVE */
    header {
        height: 90px;
    }

    #inputSearch {
        border-radius: 2px;
        height: 34px;
        font-size: 13px;
    }

    #logo2 {
        height: 50px;
    }

    .pesquisa {
        gap: 3px;
    }

    #IconLupa {
        height: 30px;
    }



    nav .itensNav a {
        padding-top: 2px;
        font-size: 8px;
    }
}
