/* CSS DO FRONT AQUI */
/* Estilo da barra de rolagem */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #dee2e3;
}

::-webkit-scrollbar-thumb {
  background: #592f7f;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #824ab5;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #dee2e3;
}

main {
  font-family: 'Monospace', sans-serif;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="cpf"],
textarea {
  border: none;
  border-bottom: 2px solid rgb(128, 126, 126);
  background: transparent;
  outline: none;
  width: 100%;
  padding: 1rem 0.4rem;
}

/* Fontes personalizadas */
@font-face {
  font-family: 'Neuething';
  src: url('../font/Neuething-Medium-Size.otf') format('opentype');
}

@font-face {
  font-family: 'Coder';
  src: url('../font/Coder-Regular.otf') format('opentype');
}

/* Navbar */
#navbar_top {
  background-color: #592f7f !important;
  font-family: 'Coder' !important;
}

.navbar-nav {
  gap: 30px;
}

.nav-item {
  font-size: 1rem !important;
}

.logo {
  width: 55%;
}

#logo-link {
  width: 40%;
}

/* Banner */
.banner {
  background-color: #592f7f;
}

.banner-mobile {
  display: none;
}

.banner-desktop {
  width: 100%;
}

/* Aside */
.aside {
  background-color: #592f7f;
  animation: animateClr 5s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99);
  background-size: 400%;
}

/* Lista de contatos */
.contact-list {
  font-size: 0.8rem;
}

#legenda-status {
  font-family: monospace;
  font-size: 1.1rem;
}

#status-modal-acompanhamento {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: bold;
}

/* Rastreamento de pedidos */
.order-track {
  margin-top: 2rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s height 0.3s;
  transform-origin: top center;
}

.order-track-step {
  display: flex;
  height: 7rem;
}

.order-track-step:last-child {
  overflow: hidden;
  height: 4rem;
}

.order-track-step:last-child .order-track-status span:last-of-type {
  display: none;
}

.order-track-status {
  margin-right: 1.5rem;
  position: relative;
}

.order-track-status-dot {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #5a2c84;
}

.order-track-status-line {
  display: block;
  margin: 0 auto;
  width: 2px;
  height: 7rem;
  background: #212529;
}

.order-track-text-stat {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 3px;
}

.order-track-text-sub {
  font-size: 0.7rem;
  font-weight: 300;
}

/* Rodapé */
.footer-social,
.copyright {
  background-color: #592f7f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright p {
  padding: 1.5vh;
  margin: 0;
  font-size: 0.8rem;
  font-family: monospace;
}

.copy-dev {
  text-align: center;
  font-size: 0.9rem;
  background-color: #824ab5e6;
  color: white;
}

.copy-dev p,
.copy p {
  margin: 0;
}

.footer-social i {
  transition: 0.2s all ease-in;
  color: #fff;
}

.footer-social i:hover {
  color: #ffffffbf !important;
}

/* Botão WhatsApp */
#whatsapp-mesage {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #32d56e;
  width: 50px;
  height: 50px;
  text-decoration: none;
  border-radius: 35px;
  display: none;
  transition: 0.3s;
  filter: drop-shadow(1px 2px 3px black);
}

#whatsapp-mesage:hover {
  background: #3bb668;
}

#whatssapp-mesage i {
  color: #fff;
  position: relative;
  left: 13px;
  top: 6px;
  font-size: 25px;
  transition: 0.3s;
}

#whatsapp-icon {
  margin-left: 12px;
  bottom: 6px !important;
  position: fixed;
  color: white;
}

/* Media Queries */
@media screen and (max-width: 600px) {
  .logo {
    width: 75%;
  }

  #logo-link {
    width: 80%;
    padding: 0;
    margin: 0;
  }

  .banner-desktop {
    display: none;
  }

  .banner-mobile {
    display: block;
    width: 100%;
  }

  .order-track-step:last-child {
    padding-bottom: 40%;
  }

  .footer-social i {
    font-size: 1.8rem;
  }

  .footer-social ul li {
    padding: 0 2vh;
  }

  #whatsapp-icon {
    margin-left: 14px;
  }

  .copyright p {
    text-align: center !important;
  }
}

.text-dark-icon {
  color: #000 !important;
}