@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* HEADER */
/*.header{
    background-color: darkblue; 
    position: fixed;
    text-align:center; 
    color:white; 
    top: 0;
    left: 0; 
    right: 0;
    padding: 0.75%;
    width:100%
}*/

:root {
  --primary-color: #296390;
}

* {
  padding: 0;
  margin: 0;
}
.header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  font-size: 22px;
  padding: 1%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: max-content;
  min-width: 98%;
  overflow: hidden;
  border-spacing: 0;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0;
  margin-top: 0;
  border-bottom: 1px solid #2a2a2a;
  font-weight: normal;
}

/*HEADER PÁGINA HOME*/
.Opcoes {
  font-size: 30;
  color: white;
}
.navbar {
  overflow: hidden;
  background-color: darkblue;
  top: 0;
}
.dropdown {
  float: left;
  overflow: hidden;
}
.dropbtn {
  border: none;
  outline: none;
  color: white;
  font-size: 16%;
  background-color: inherit;
  font-family: inherit;
  position: absolute;
  transform: rotate(90deg);
  top: 2.75%;
  right: 2%;
}
.dropdown:hover .dropbtn {
  background-color: none;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 10%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 20;
  right: 20;
  font-family: Arial, sans-serif;
}
.dropdown-content a {
  float: none;
  color: black;
  padding: 12 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown-content a:hover {
  background-color: blue;
  color: white;
}

@media screen and (min-width: 801px) and (max-width: 1000px) {
  .dropbtn {
    border: none;
    outline: none;
    color: white;
    font-size: 16%;
    background-color: inherit;
    font-family: inherit;
    position: absolute;
    transform: rotate(90deg);
    top: 0.6%;
    right: 2%;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 10%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 10;
    right: 20;
    font-family: Arial, sans-serif;
  }
}

@media screen and (min-width: 1001px) and (max-width: 1200px) {
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .dropbtn {
    border: none;
    outline: none;
    color: white;
    font-size: 16%;
    background-color: inherit;
    font-family: inherit;
    position: absolute;
    transform: rotate(90deg);
    top: 1.5%;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 10%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 10;
    right: 20;
    font-family: Arial, sans-serif;
  }
}
