



/* INÍCIO CSS */


@import url("https://fonts.googleapis.com/css?family=Nunito|Lacquer");

body {margin: 0;}

body, button, input {font-family: Nunito;}

* {box-sizing: border-box;transition: 0.4s ease all;}


.navbar {
  background: #000000;
  color: #FFFFFF;
  padding: 15px;
  width: 100%;
  height: 99px;
  display: flex;
  align-items: center;
}

.navbar ul.links {
  margin-left: auto;
  margin-right: 50px;
  list-style: none;
  display: flex;
  align-items: center;
  transition: 0.4s ease all, 0s ease background;
  font-size:13px;
}

.navbar ul.links li {
  text-transform: uppercase;
  padding: 0 15px;
    height: 19px;
    display: flex;
  justify-content: left;
  align-items: left;
  transition: 0.4s ease all, 0s ease margin;
}

.navbar ul.links li a {
  text-decoration: none;
  color: #FFFFFF;
}

.navbar ul.links li:hover {
  background: #FFD659;
  cursor: pointer;
}

.navbar ul.links li:hover a {
  color: #000000;
}

button {
  background: #080808;
  outline: none;
  font-weight: bold;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 25px;
  border: 1px solid #000000;
  letter-spacing: 1px;
}

.navbar.sticky {
  position: fixed;
  z-index: 40;
}

.navbar.sticky ~ main {
  position: relative;
  z-index: 20;
  top: 79px;
}

@media screen and (max-width: 750px) {
  .navbar .right {
    height: 0;
    overflow: hidden;
  }

  .toggle {
    position: absolute;
    top: 32.5px;
    right: 20px;
    z-index: 99;
    transform: translateY(-50%);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .toggle > * {
    width: 80%;
    height: 2px;
    background: #fff;
    margin: 3px 0;
  }

  .navbar.collapsed .toggle .line1 {
    transform: rotate(-45deg) translate(-4px, 5px);
  }
  .navbar.collapsed .toggle .line2 {
    opacity: 0;
  }
  .navbar.collapsed .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .navbar.collapsed .logo {
    position: absolute;
    z-index: 44;
  }

  .navbar .links {
    position: fixed;
    background: #080808;
    z-index: 40;
    top: 0;
    left: -100%;
    flex-direction: column;
    width: 52vw;
    height: 83vh;
  }
  .navbar .links li:first-child {
    margin-top: 80px;
  }

  .navbar.collapsed .links {
    left: 0;
  }
  .navbar.collapsed .links a {
    color: #fff;
  }
  .navbar.collapsed .links li {
    width: 100%;
  }
  .navbar.collapsed .links li:hover a {
    color: #080808;
  }

  .navbar.collapsed .right {
    position: fixed;
    width: 45vw;
    text-align: center;
    height: auto;
    bottom: 40px;
    left: 22.5vw;
    transform: translateX(-50%);
    z-index: 45;
  }

  .navbar.collapsed ~ main {
    filter: blur(1px);
    opacity: 0.8;
  }

  .navbar.sticky {
    position: fixed;
    z-index: 40;
  }
}





