* {
  scroll-behavior: smooth;
}

.header {
  height: 35px;
  background-color: #1F212A;
}

.navbar {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 800;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -30px;
  background-color: #1F212A;
  transition: 0.4s;
  height: 130px;
  box-shadow: 0 14px 14px -14px rgba(0, 0, 0, 0.75);
}
.navbar .display__logo {
  display: none;
}
.navbar .nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.navbar .nav__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  height: 130px;
}
.navbar .nav__items .nav__item:hover {
  background-color: #2C2C37 !important;
}
.navbar .brand {
  margin: 0 20px;
  font-size: 1.45em;
}
.navbar .brand a {
  padding: 10px 15px;
  text-align: center;
  display: block;
}
.navbar .brand .logo {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  line-height: inherit;
}
.navbar .nav__link {
  text-decoration: none;
  padding: 35px 15px;
  text-align: center;
  display: block;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
  height: 130px;
}
.navbar .btn-coleta {
  height: 50px;
  width: 220px;
  margin-left: 350px;
  margin-top: 40px;
  border-radius: 30px;
}
.navbar .btn-coleta .conteudo-btn {
  margin-top: -5px;
  margin-left: 8px;
}
.navbar .btn-coleta .conteudo-btn label {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0px 15px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  position: absolute;
  margin-top: -3px;
}
.navbar .btn-coleta .conteudo-btn i {
  font-size: 26px;
}
.navbar .ativa {
  width: 100%;
  height: 8px;
  display: block;
  position: relative;
  margin: -8px auto 0px auto;
}

#nav:checked + .nav__open {
  transform: rotate(45deg);
}
#nav:checked + .nav__open i {
  background-color: var(--shades);
  transition: transform 0.2s ease;
}
#nav:checked + .nav__open i:nth-child(1) {
  transform: translateY(6px) rotate(180deg);
}
#nav:checked + .nav__open i:nth-child(2) {
  opacity: 0;
}
#nav:checked ~ .nav__item a {
  display: block !important;
}
#nav:checked + .nav__open i:nth-child(3) {
  transform: translateY(-6px) rotate(90deg);
}
#nav:checked ~ .nav {
  z-index: 9990;
  opacity: 1;
}
#nav:checked ~ .nav ul li a {
  opacity: 1;
  transform: translateY(0);
}

.affix {
  background-color: white;
  box-shadow: 0 14px 14px -14px rgba(0, 0, 0, 0.75);
  transition: 0.4s;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 5;
}

.hidden {
  display: none;
}

@media screen and (max-width: 1600px) {
  .navbar .btn-coleta {
    margin-left: 200px;
  }
}
@media screen and (max-width: 1500px) {
  .navbar .btn-coleta {
    margin-left: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .navbar .btn-coleta {
    margin-left: 50px;
  }
}
@media screen and (max-width: 950px) {
  .header,
.btn-coleta {
    display: none !important;
  }

  .navbar {
    width: 100%;
  }
  .navbar .nav {
    background-color: white;
    margin-left: 0px !important;
  }
  .navbar .display__logo {
    display: block !important;
    margin-top: 25px;
  }
  .navbar .display__logo .brand {
    margin: 0 0px !important;
  }
  .navbar .display__logo .logo {
    margin-left: 60px;
  }
  .navbar .display__logo .logo img {
    width: 150px;
  }
  .navbar .nav__link {
    height: 50px !important;
  }

  .sticky {
    background-color: #1F212A;
    margin-bottom: -135px;
    height: 80px !important;
  }

  .affix {
    box-shadow: 0 14px 14px -14px rgba(0, 0, 0, 0.75);
    transition: 0.4s;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: var(--primary);
    opacity: 0;
    transition: all 0.2s ease;
  }
  .nav .nav__items {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    margin-top: 0;
    justify-content: center;
    height: 100%;
  }
  .nav .nav__items .nav__item {
    display: block;
    float: none;
    width: 100%;
    text-align: right;
    color: black;
  }
  .nav .nav__items .nav__item:nth-child(1) a {
    transition-delay: 0.2s;
  }
  .nav .nav__items .nav__item:nth-child(2) a {
    transition-delay: 0.3s;
  }
  .nav .nav__items .nav__item:nth-child(3) a {
    transition-delay: 0.4s;
  }
  .nav .nav__items .nav__item:nth-child(4) a {
    transition-delay: 0.5s;
  }
  .nav .nav__items .nav__item:nth-child(5) a {
    transition-delay: 0.6s;
  }
  .nav .nav__items .nav__item:nth-child(6) a {
    transition-delay: 0.7s;
  }
  .nav .nav__items .nav__item:nth-child(7) a {
    transition-delay: 0.8s;
  }
  .nav .nav__items .nav__item:not(:first-child) {
    margin-left: 0;
  }
  .nav .nav__items .nav__item .nav__link {
    padding: 0px;
    opacity: 0;
    color: black;
    font-size: 20px;
    font-weight: 600;
    transform: translateY(-20px);
    transition: all 0.2s ease;
  }

  .nav__open {
    position: absolute;
    right: 10px;
    top: 16px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }
  .nav__open i {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--secondary);
    border-radius: 2px;
    margin-left: 14px;
  }
  .nav__open i:nth-child(1) {
    margin-top: 16px;
  }
  .nav__open i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .nav__open i:nth-child(3) {
    margin-top: 4px;
  }
}
