@import "coresGlobais.css";

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body{
    background-color: var(--body);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;

}
header{
    width: 100%;
    background-color: rgb(255, 255, 255);
    padding: 15px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.indexNav{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.indexNav ul{
    display: flex; 
    margin-left: 20px;
}
.indexNav ul li{
    margin-right: 20px;
    list-style: none;
}

.indexNav li a {
    text-decoration: none;
    color: black;
    padding:10px;
    border-radius: 5px;
}
.indexNav li a:hover{
    opacity: 0.8;
}
/* iCON MENU */
#burguer{
    background-color: rgb(48,48,48);
    border-radius: 5px;
    color: white;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    display: none;
    margin-top: 10px;
    height: 37px;
}

#burguer:hover{
    opacity: 0.8;
}

menu{
    display: block;
}

/* DROPDOWN */
.dropdown {
    float: left;
    overflow: hidden;
    cursor: pointer;
  }
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
@media screen and (max-width:1200px) {
    #burguer{
        display: block;
    }
    menu{
        display: none;
    }
    header{
        display: flex;
        justify-content: space-between;
    } 
    .indexNav {
        flex-direction: column;
        align-items: flex-start;
    }
    .indexNav ul{
        flex-direction: column;
        width: 100%;
    }
    .indexNav ul li{
        margin-top: 10px;
        padding: 10px;
    }
    .indexNav li a:hover, .dropbtn:hover{
        background-color: rgb(138, 105, 21);
        color: rgb(255, 255, 255);
        border-radius: 5px;
    }
    .dropbtn {
        margin-left: 10px;
    }
    
}

