@charset "utf-8";
/* CSS Document */

/* begin nav menu */
.topnav {
  overflow: hidden;
  background-color: #5385BB;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav .icon {
  display: none;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #3B5B80;
  color: white;
}

.active {
  background-color: #3B5B80;
  color: #f2f2f2;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #8EB3D6;
  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;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 900px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

.mainlogo {
    position: absolute;
    top:0px;
    left:60px
}

/* If the screen size is 601px or more, set the font-size of <div> to 80px */
@media only screen and (min-width: 601px) {
  div.main {
    font-size: 18px;
    padding: 0px 10px;  
  }
    
    div.text {
    font-size: 24px;
  }
}

/* If the screen size is 600px or less, set the font-size of <div> to 30px */
@media only screen and (max-width: 600px) {
  div.main {
    font-size: 14px;
    padding: 0px 5px;  
  }
    
  div.text {
    font-size: 14px;
  }

    img.responsive {
    width: 100px;
}
    
}
/* end nav menu */

/* begin floting BT */
.floating-btn {
    width: 40px;
    height: 40px;
    background: #5385BB;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
    position: fixed;
    right: 20px;
    bottom: 20px;
    transition: background 0.25s;

    /* <button> */
    outline: none;
    border: none;
    cursor: pointer;
    }
    
    .floating-btn active {
        background: #01B2DE; 
    }
/* end floting BT */

/* begin general formating */
img {
  max-width: 100%;
  height: auto;
}

.main {
  font-size: 19px; 
  padding: 0px 10px;
}

.main A, .main A:visited, .main A:link, .main A:active {
	color: #000;
    text-decoration: none;
    font-weight: bold;
}

.main A:hover {
	color: #4169E1;
} 

#para1 {
	color: #000;
    text-decoration: none;
    font-weight: normal;
}
    
.rodape {
  font-size: 16px; 
  line-height: 1.4;
}

.rodape A, .rodape A:visited, .rodape A:link, .rodape A:active {
	color:#000;
    text-decoration: none;
}

.rodape A:hover {
	color: #4169E1;
} 

.auth {
  font-size: 12px; 
  line-height: 1.1;
  text-decoration: none;
  color: #FFE793;
}

.auth a{
  text-decoration: none;
  color: #FFE793;
}
/* end general formating */

