
#logo img {
  width: 120px;
}

#logo {
  width: 245px;
}

#header {
  box-sizing: border-box;
  max-width: 1210px;
  margin: 0 auto;
  height: 70px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  flex-direction: row;
}

#menu a {
  display: block;
  padding: 0.2rem;
  color: rgb(14, 14, 14);
  font-weight: 300;
  font-size: 18px;
  font-size: 18px;
}

#btn-mobile {
  display: none;
}

.buttton-header {
  padding: 5px 0px;
  width: 160px;
  background: var(--color4);
  border: none;
  border-radius: 4px;
}

.buttton-header a {
  color: var(--color1);
}

#text-button-header p {
  color: var(--color1);
}

#rastreamento-header{
  text-decoration:underline;
}


:root {
  --marquee-width: 80vw;
  --marquee-height: 50px;
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  overflow: hidden;
  position: relative;
  background: #ffffff8a;
  margin-top: -3px;
  box-shadow: 0px 2px 12px #00000024;
}

.marquee:before,
.marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.marquee:before {
  left: 0;
  background: linear-gradient(to right, #00000000 0%, transparent 100%);
}

.marquee:after {
  right: 0;
  background: linear-gradient(to left, #00000000 0%, transparent 100%);
}

.marquee-content {
  list-style: none;
  height: 40px;
  display: flex;
  gap: 25px;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}

.marquee-content li p {
  font-size: 14px;
  color: #000000b3;
}

@keyframes scrolling {
  0% {
      transform: translateX(0);
  }

  100% {
      transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: var(--marquee-element-width);
  white-space: nowrap;
}

.marquee-content li img {
  width: 84px;
}

@media (max-width: 600px) {
  html {
      font-size: 12px;
  }

  :root {
      --marquee-width: 100vw;
      --marquee-height: 16vh;
      --marquee-elements-displayed: 3;
  }

  .marquee:before,
  .marquee:after {
      width: 5rem;
  }
}

#p-button {
  color: var(--color5);
  font-size: 16px;
}

#logoDesck {
  display: none;
}

@media (max-width: 600px) {

  #button-header-mobile {
      display: none;
  }

  #header {
    max-width: 1210px;
    margin: 0 auto;
    background: #f6f6f6;
}

  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 00px;
    right: 0px;
    background: #ffffff;
    box-shadow: 1px 1px 6px 0px #00000030;
      transition: 0.6s;
      z-index: 2;
      height: 0px;
      visibility: hidden;
      overflow-y: hidden;
      flex-direction: column;
  }

  #nav.active #menu {
    height: calc(100vh - 386px);
      visibility: visible;
      overflow-y: auto;
      display: flex;
      align-items: flex-start;
  }

  #menu a {
    color: rgb(14, 14, 14);
      padding: 1rem 0;
      margin: 0 1rem;
      border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }

  #btn-mobile {
    display: flex
;
    padding: 0.5rem 1rem;
    position: sticky;
    z-index: 15;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
    color: #202020;
}

  #hamburger {
      border-top: 2px solid;
      width: 20px;
  }

  #hamburger::after,
  #hamburger::before {
      background: var(--color2);
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      margin-top: 5px;
      transition: 0.3s;
      position: relative;
  }

  #nav.active #hamburger {
      border-top-color: transparent;
      color: black;
  }

  #nav.active #hamburger::before {
      transform: rotate(135deg);
  }

  #nav.active #hamburger::after {
      transform: rotate(-135deg);
      top: -7px;

  }
}

