/* Formatação */

/* Navbar */

.navbar {
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 0px;
  z-index: 1000;
  text-align: center;
}

.desconto {
  height: 65px;
  width: 100%;
  padding: 0 20px;
  background-color: var(--color-one);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Quicksand";
  font-weight: 400;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

.yellow {
  color: var(--yellow);
}

.horario-promocao {
  margin-top: 0px;
  z-index: -1;
  height: 124px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-two);
  transition: all .5s;
}

.promocao {
  display: flex;
  align-items: center;
  background-color: #7e64fd;
  padding: 4px 0px 4px 0px;
  height: 80px;
  width: 341px;
  border-radius: 10px;
  margin: 4px 0px 4px 0px;

  font-family: "Poppins", Sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 40px;
  word-spacing: 0px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.promocao h1 {
  font-family: "Poppins", Sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 40px;
  word-spacing: 0px;
  text-align: center;
  color: var(--white);
}

.relogio {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 20px;
}

.relogio-tiemer {
  margin: 0 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.relogio h1 {
  font-size: 40px;
  color: #c1ff00;
  font-family: "TonCondensed-Bold", Sans-serif;
  font-size: 47px;
  font-weight: 800;
  letter-spacing: 0px;
}

.relogio p {
  color: #c1ff00;
  font-family: "TonCondensed-Bold", Sans-serif;
  font-family: "Varela Round", Sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.hidden {
  margin-top: -130px;
  transition: all .5s;
}



/* Media Queries */

/* Tablets */
@media (max-width: 1123px) {
  .desconto {
    height: 40px;
    padding: 0 10px;
    font-size: 15px;

  }

  .parceria {
    height: 60px;

  }

  .parceria img {
    height: 40px;
  }

  .horario-promocao {
    height: 80px;
  }

  .promocao {
    padding: 2px 0px 2px 0px;
    height: 60px;
    width: 280px;
    margin: 2px 0px 2px 0px;

    font-size: 16px;
  }

  .promocao h1 {
    font-size: 16px;
    line-height: 20px;
  }

  .relogio {
    margin: 0px 10px;
  }

  .relogio-tiemer {
    margin: 0 4px;
  }

  .relogio h1 {
    font-size: 30px;
  }

  .relogio p {
    font-size: 14px;
  }

  .hidden {
    margin-top: -120px;
  }

}

/* Celulares */
@media (max-width: 777px) {
  .desconto {
    height: 80px;
    padding: 0 7px;
    font-size: 17px;

  }

  .parceria {
    height: 72px;

  }

  .parceria img {
    height: 30px;
  }

  .horario-promocao {
    height: 77px;
  }

  .promocao {
    height: 50px;
    width: 200px;
    font-size: 13px;
  }

  .promocao h1 {
    font-size: 14px;
    line-height: 18px;
  }

  .relogio {
    margin: 0px 10px;
  }

  .relogio-tiemer {
    margin: 0 3px;
  }

  .relogio h1 {
    font-size: 33px;
  }

  .relogio p {
    font-size: 14px;
  }

  .hidden {
    margin-top: -100px;
  }
}