* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Helvetica, Verdana, Arial;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

/* Eu sou UCGB */
.area {
  position: fixed;
  background-color: #353535;
  height: 40px;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  display: inline-flex;
  text-align: right;
  justify-content: right;
}

.eusou a {
  color: #fff;
  text-decoration: none;
  font-size: 0.7em;
  font-weight: 600;
  padding: 20px;
  background-color: #000000;
}

.eusou a:hover {
  text-decoration: none;
  color: #fff;
}

.tradutor {
  padding-right: 10px;
}

/* Menu - Navbar */
header {
  position: fixed;
  top: 30px;
  left: 0;
  padding: 0 50px;
  background: #ffffff;
  width: 100%;
  height: 90px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

header .logo {
  float: left;
}

.logo img {
  margin-top: 5px;
  margin-left: -30px;
  width: 70px;
}

.logo .titulo {
  width: 170px;
  margin-top: -60px;
  margin-left: 50px;
  line-height: 15px;
}

.logo .titulo a {
  font-size: .8em;
  text-transform: uppercase;
  color: #3C8855;
  font-weight: 630;
}

.logo .titulo a:hover {
  font-size: .8em;
  text-decoration: none;
  color: #3C8855;
  font-weight: 630;
}

header nav {
  float: right;
  margin-right: -40px;
}

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  transition: 0.2s;
}

header nav ul li {
  list-style: none;
  position: relative;
}

header nav ul li i {
  font-size: 0.7em;
}

header nav ul li ul {
  position: absolute;
  left: 0;
  background: #3C8855;
  display: none;
}

header nav ul li.active ul {
  display: block;
}

header nav ul li ul li {
  display: block;
  width: 250px;
}

header nav ul li a {
  height: 70px;
  line-height: 80px;
  padding: 0 20px;
  color: #000000;
  font-weight: 650;
  font-size: 1.1em;
  text-decoration: none;
  display: block;
}

header nav ul li a:hover {
  color: #fff;
  text-decoration: none;
  background: #3C8855;
}

header nav ul li ul a {
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

header nav ul li ul a:hover {
  color: #fff;
  text-decoration: none;
  background: #3C8855;
}

.menu-toggle {
  color: #000000;
  float: right;
  line-height: 60px;
  font-size: 24px;
  display: none;
}

/* Procurar Box */
header nav .search-box i {
  padding: 0 20px;
  line-height: 80px;
  color: #000000;
  font-size: 2em;
  display: block;
  cursor: pointer;
}

nav .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 600px;
  background: #3f684d;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

nav.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3f684d;
}

nav .search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #4b6e57;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}

nav .search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 580px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}

/* Sub-Menu*/
.submenu {
  margin-top: 110px;
  background-color: #f7f7f7;
  height: 50px;
}

.submenus {
  padding-top: 15px;
}

.submenus a {
  color: #333333;
  font-size: 0.8em;
  text-decoration: none;
}

.submenus a:hover {
  color: #1b1b1b;
  font-size: 0.8em;
  text-decoration: none;
}

.submenus span {
  color: #a2a2a2;
  font-size: 0.8em;
  text-decoration: none;
}

.submenus .fa-angle-double-right {
  color: #929292;
  font-size: 0.7em;
  padding-top: 10px;
}

/* Rodapé (Footer) */
.footer {
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: 120px;
  background-size: 300px;
}

.roda {
  margin: auto;
  background-color: rgba(17, 17, 17, 0.918);
  padding: 50px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #3eb967;
  height: 3px;
  box-sizing: border-box;
  width: 30px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  color: #e2e2e2;
  text-decoration: none;
  font-weight: 380;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
  font-weight: 500;
}

.footer-col .social-links a {
  display: inline-block;
  height: 35px;
  width: 35px;
  background-color: #000000;
  margin: 0px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

.footer-col p {
  color: #fff;
  font-size: .9em;
  margin-top: -15px;
}

.footer-col .financiador {
  display: flex;
}

#basic-addon2 {
  background: #000000;
  color: #fff;
}

.author {
  background-color: #0e0e0ef7;
  padding: 20px;
}

.author p {
  text-align: center;
  color: #fff;
  font-size: 0.8em;
  line-height: 21px;
}

.author p a {
  color: #fff;
}

/*Botão subir ao topo*/
#mybtn {
  width: 50px;
  background: #3C8855;
  bottom: 100px;
  right: 1.5em;
  color: #fff;
  text-align: center;
  cursor: pointer;
  padding: 5px;
  font-size: 10px;
  font-weight: bold;
  position: fixed;
  font-family: sans-serif;
  opacity: 0.8;
  border: none;
  border-radius: 5px;
}

#mybtn:hover {
  opacity: 1;
}

/* Responsive Telas Smartphone, tablet, tv, etc. */
@media (max-width: 991px) {
  .area {
    top: 0;
  }

  .eusou {
    text-align: right;
    margin-right: -10px;
  }

  .eusou a {
    color: #fff;
    text-decoration: none;
    font-size: 0.7em;
    font-weight: 500;
    padding: 20px;
  }

  .eusou .ocultar {
    display: none;
  }

  .tradutor {
    padding-right: 15px;
  }

  header {
    padding: 0 20px;
    height: 70px;
  }

  .menu-toggle {
    display: block;
    z-index: 900;
  }

  header nav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 60px);
    background: #f8f8f8;
    top: 60px;
    left: -100%;
    transition: 0.5s;
  }

  header .logo {
    height: 60px;
    line-height: 60px;
    float: left;
  }

  .logo img {
    margin-top: -40px;
    width: 100px;
    height: 100px;
  }

  .logo .titulo {
    width: 140px;
    margin-top: -49px;
    margin-left: 40px;
    line-height: 12px;
  }

  .logo .titulo a {
    font-size: .7em;
    text-transform: uppercase;
    color: #3C8855;
    font-weight: 600;
  }

  .logo .titulo a:hover {
    text-decoration: none;
    color: #3C8855;
    font-weight: 600;
  }

  header nav ul li a {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    color: #464646;
    font-weight: 600;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid rgba(169, 169, 169, 0.2);
  }

  header nav.active {
    left: 0;
  }

  header nav ul {
    display: block;
    text-align: center;
  }

  header nav ul li.active ul {
    position: relative;
    background: #f8f8f8;
  }

  header nav ul li ul li {
    width: 100%;
  }

  header nav ul li ul a {
    color: #fff;
    background: #464646;
    border-bottom: 1px solid rgba(255, 255, 255, 0.279);
  }

  header nav ul li ul a:hover {
    color: #fff;
    background: #3C8855;
  }
}

/* Responsive Tela Smartphone */
@media screen and (max-width: 768px) {
  .area {
    top: 0;
    background-color: #000000;
  }

  .logo img {
    margin-top: 0px;
    margin-left: -15px;
    width: 55px;
    height: 55px;
  }

  .logo .titulo {
    width: 140px;
    margin-top: -48px;
    margin-left: 45px;
    line-height: 12px;
  }

  .logo .titulo a {
    font-size: .7em;
    text-transform: uppercase;
    color: #3C8855;
    font-weight: 500;
  }

  .logo .titulo a:hover {
    text-decoration: none;
    color: #3C8855;
    font-weight: 500;
  }

  .eusou {
    text-align: right;
    margin-right: -10px;
  }

  /* Procurar Box */
  header nav .search-box i {
    display: none;
  }

  /* Sub-Menu*/
  .submenu {
    margin-top: 99px;
    background-color: #f7f7f7;
    height: 40px;
  }

  .submenus {
    padding-top: 6px;
  }

  /* Rodapé (Footer) */
  .footer {
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: 20px;
    background-size: 340px;
  }

  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }

  .footer-col ul li a {
    font-size: 16px;
    color: #ebebeb;
    text-decoration: none;
    font-weight: 400;
    display: block;
    transition: all 0.3s ease;
  }

  #mybtn {
    width: 50px;
    right: 0;
  }

  .roda {
    margin-top: 60px;
  }
}

@media (max-width: 574px) {
  .area {
    top: 0;
  }

  .footer-col {
    width: 100%;
  }
}