@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

/* GLOBALS*/
.curso #ordenacao{
 border-top: solid 1px;
}
#ordenacao{
        border-top: solid 1px;
    padding-top: 1em;
    padding-bottom: 1em;
    border-bottom: solid 1px;
    margin-bottom: 2em;
   
}
.curso #ordenacao{
 border-top: none;
}

.radio-toolbar{
     display:flex;
    flex-wrap:wrap;
    justify-content: space-around;
    
}
.radio-toolbar input[type="radio"] {
  display: none;
}

.radio-toolbar label {
     display: inline-block;
    padding: 4px 11px;
    font-family: "adieu-regular";
    font-size: 20px;
    cursor: pointer;
    min-width: 20%;
    text-align: center;
    text-transform: uppercase;
}

.radio-toolbar input[type="radio"]:checked+label {
  background-color: #bbb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #000;
  list-style: none;
  text-decoration: none;
}



p::selection { 
  background: #007B54;
  color: #FFF; 
}



.none {display: none !important}

footer{
  width: 100%;
  height: auto;
  padding: 2rem 0;
  text-align: center;
  border: 1px solid #000;
  border-color: #000 transparent transparent transparent;
}

table{
  display: flex;
  max-width: 100%;
}

main {
  position: relative;
}

.body-opened-menu{
  height: 100%;
}

/* MENU */
.menu-section{
  width: 100%;
  display: none;
  justify-content: space-between;
  
  position: absolute ;
  z-index: 999;  
  padding: 1rem;

  background-color: transparent;
}

.menu-section ul{
  display: flex;
  flex-direction: column;
}

.menu-section ul li{
  margin: .45rem 0;
  width: auto
}

.menu-section ul li a{
  transition: .2s ease;
}

.menu-section ul li a:hover{
  text-decoration: underline;
  transition: .2s ease;
}

.menu-section > ul li ul{
  margin: 0 0 0 1rem;
}

.menu-section > ul li ul li{
  margin: .2rem 0;
  width: auto
}

.menu-section > article{
  display: flex;
  align-items: center;

  position: fixed;
  right: 0;
  top: 30%
}


/* NAVBAR */
.topo{
  width: 100%;
  height: 100vh;
  max-height: 58px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-bottom: 1px solid black;
}

.navbar{
  width: 100%;
  height: 100vh;
  max-height: 58px;

  display: flex;
  justify-content: center;
}

.navbar .navbar__ul{
  display: none;
  height: 100%;

  font-size: .85rem;
  font-weight: 400;
  text-transform: uppercase;
}

.navbar .navbar__ul li{
  height: 100%;
  min-width: 132px;
  padding: 1em;
  
  cursor: pointer;
  border: 1px solid #000;
  border-top: none;
  border-bottom: none;
  text-align: center;
  
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s all ease-in-out;
}

.navbar .navbar__ul li:hover{
  background: #007B54;
  border-color: transparent #000;
  border-top: none;
  border-bottom: none;

  font-weight: 400;
  transition: .5s all ease-in-out;
}

.navbar .navbar__ul li:hover  a{
  color: #56308F;
}

.navbar .navbar__ul li:nth-child(2n){
  border-color: transparent;
}

.navbar .navbar__ul li:last-child{
  border-right-color: transparent;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  width: 132px;

  margin-top: calc(1em + 8px);
  position: absolute;
  right: 0;
  z-index: 1;
  
  overflow: auto;
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
}

.dropdown-content a {
  color: black;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
  border: 1px solid #000;
}

.dropdown-content a img {
  width: 45px;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block; z-index: 99;}

.navbar .navbar__img{
  max-width: 200px;
  max-height: 30px;
  margin: auto;
}

.menu-btn{
  position: relative;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  min-width: 60px;
  min-height: 58px;

  cursor: pointer;
  background: #007B54;
  transition: all .5s ease-in-out;
}

.menu-btn__burguer{
  width: 35px;
  height: 5px;

  transition: all .5s ease-in-out;
  border-radius: 1px;
  background-color: #59308C;
}

.menu-btn__burguer::after, .menu-btn__burguer::before{
  content: '';
  position: absolute;
  width: 35px;
  height: 5px;
  
  transition: all .5s ease-in-out;
  background-color: #59308C;
  border-radius: 1px;
}

.menu-btn__burguer::before{
 transform: translateY(-12px); 
}

.menu-btn__burguer::after{
  transform: translateY(12px);
}

.menu-btn.open .menu-btn__burguer{
  transform: translateX(-50px);
  background: transparent;
} 

.menu-btn.open .menu-btn__burguer::before{
  transform: rotate(45deg) translate(35px, -35px);
  width: 35px;
}

.menu-btn.open .menu-btn__burguer::after{
  transform: rotate(-45deg) translate(35px, 35px);
  width: 35px;
}

@media (min-width: 375px){
  /* menu */
  .menu-section{
    padding: 1rem 1rem 1rem 1.4rem;
  }
}

@media (min-width: 425px){
  /* menu */
  .menu-section{
    padding: 1rem 1rem 1rem 1.8rem;
  }
}


@media (min-width: 768px){
  /* header */
   .navbar .navbar__ul{
    display: flex;
  }

  .navbar .navbar__ul li.no-hide{
    display: flex;
  }

  .navbar .navbar__ul li{
    display: none;
  }

  .navbar .navbar__img{
    max-width: 250px;
  }

  .menu-btn__burguer{
    width: 40px;
    height: 6px;
  }

  .menu-btn__burguer::after, .menu-btn__burguer::before{
    width: 40px;
    height: 6px;
  }

  .menu-btn.open .menu-btn__burguer::before, 
  .menu-btn.open .menu-btn__burguer::after{
    width: 40px;
  }  

  .navbar .navbar__img{
    max-width: 240px;
    max-height: 30px;
    margin: auto auto auto 20px;
        cursor: pointer;
  }

  /* menu */
  .menu-section{
    padding: 2rem 1rem 1rem 4rem;
  }

  .menu-section > ul li ul {
    margin: .45rem 0 .45rem 1.6rem;
  }
}

@media (min-width: 1024px){
  .navbar .navbar__ul li{
    display: flex;
  }
  
  .navbar .navbar__ul{
    display: flex;
  }

  .main-home .text-section h2{
    font-size: 4.5rem;
  }

  .main-home{
    grid-template-rows: repeat(10, 230px);
  }

  .menu-btn{
    min-width: 65px;
    min-height: 60px;
  }

  .navbar .navbar__ul{
    font-size: 1rem;
  }

  header, .navbar, .menu-btn{
    min-height: 68px;
  }

  .menu-section > article{
    padding-right: 4rem;
    max-width: 520px;
  }
}

@media (min-width: 1440px){
  .menu-section{
    padding: 2rem 1rem 1rem 8rem;
  }

  .menu-section > article {
    margin-right: 8rem;    width: 100%;
    max-width: 520px;
  }
}


@media (min-width: 1620px){
  .menu-section{
    padding: 2rem 1rem 1rem 10rem;
  }

  .menu-section > article {
    margin-right: 19rem;    
  }

}
