* {
  padding: 0;
  margin: 0;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: gray;
}

header {
  width: 100%;
  padding-top: 24px;

  display: flex;
  justify-content: space-evenly;

  z-index: 999;

  background: linear-gradient(0deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.63) 25%,
      rgba(42, 42, 42, 1) 75%);

  &.header-customers {
    padding-bottom: 16px;
  }

  section {
    z-index: 999;
  }
}

.logo {
  width: 362px;
  height: 128px;
  border-radius: 16px;
  background: #cacaca75;

  display: flex;
  justify-content: space-evenly;
  align-items: center;

  img {
    height: 96px;
  }
}

.action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 506px;

  color: #fff;

  .phone {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    gap: 32px;

    .tel:nth-child(2) {
      text-decoration: underline;
      cursor: pointer;
    }
  }

  .tel {
    display: flex;
    gap: 8px;

    img {
      width: 24px;
      height: 24px;
    }

    a {
      color: #fff;

      &:hover {
        color: #858585;
      }
    }
  }

  .links {
    display: flex;
    align-items: center;
    gap: 116px;
    margin-top: 8px;

    .tel {
      text-decoration: underline;
      cursor: pointer;
    }

    .social {
      display: flex;
      align-items: center;
      text-decoration: none;
      gap: 8px;

      a {
        display: flex;
        align-items: center;
      }

      img {
        width: 32px;
        height: 32px;
      }
    }
  }

  .buttons {
    border-top: 3px solid #fff;
    padding-top: 8px;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;

    button {
      background: none;
      border: none;
      font-size: 20px;
      color: #fff;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-style: normal;
      cursor: pointer;
      width: 100%;

      &:hover {
        background-color: #fff;
        color: #858585;
      }
    }
  }
}

.flex-fixer {
  width: 362px;
}

.stamp {
  position: absolute;
  top: 0;
  right: 112px;

  img {
    height: 152px;
  }
}

.video-background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.video-background-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* 100 / (16/9) */
  min-height: 100vh;
  min-width: 177.77vh;
  /* 100 * (16/9) */
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* Allows clicks to pass through to elements behind the video */
}

.background-hero {
  position: fixed;
  /* ou absolute, caso queira imagens diferentes */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("./assets/Images/Banner.png") no-repeat center center/cover;
  z-index: -1;
}

.conteudo {
  position: relative;
  color: white;

  .title {
    padding-inline: 196px;
    margin-bottom: 64px;

    h1 {
      font-size: 72px;
      font-weight: 400;
    }

    h2 {
      font-size: 40px;
      font-weight: 400;
      color: #8ad3ce;
      margin-top: 120px;
    }
  }

  section {
    padding-top: 40px;

    h1 {
      padding-left: 196px;
      font-size: 48px;
    }

    &.filled {
      background-color: #fff;
      color: black;
    }
  }
}

.grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-block: 36px;

  .card {
    width: 352px;
    height: 680px;
    background-color: darkgray;
    border-radius: 16px;
    border: 2px solid gray;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    padding: 24px;

    img {
      height: 136px;
    }

    a {
      color: #2a2a2a;
      text-decoration: underline;
      font-size: 24px;
      font-weight: 600;
    }

    ul {
      width: 100%;
      padding-top: 24px;
      flex-grow: 1;
      list-style: none;

      li {
        display: flex;
        align-items: center;
        margin-bottom: 8px;

        img {
          width: 24px;
          height: 24px;
        }
      }
    }

    &.ambiente {
      background-color: #a8e0e8;
      border: 2px solid #8ad3ce;
    }

    &.nativa {
      background-color: #f9b684;
      border: 2px solid #fd8720;
    }

    &.vias {
      background-color: #feee8c;
      border: 2px solid #ffe44d;
    }
  }
}

.dashboard {
  width: 100%;
  height: 256px;

  display: flex;
  justify-content: center;
  gap: 24px;

  .card {
    margin-top: 32px;
    width: 240px;
    height: 180px;
    background-color: #fff;
    border-radius: 16px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2a2a2a;

    box-shadow: 3px 10px 5px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 3px 10px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 3px 10px 5px 0px rgba(0, 0, 0, 0.25);

    h1 {
      padding: 0;
    }
  }
}

.cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;

  .card {
    width: 400px;
    height: 260px;
    border-radius: 16px;
    background-color: #fff;
    padding: 16px;
    position: relative;

    display: flex;
    flex-direction: column;

    box-shadow: 3px 10px 5px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 3px 10px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 3px 10px 5px 0px rgba(0, 0, 0, 0.25);

    h1 {
      padding: 0;
      font-size: 24px;
      color: #2a2a2a;
      height: 72px;
    }

    span {
      padding-top: 24px;
      color: #2a2a2a;
      height: calc(100% - 72px);
    }

    img {
      position: absolute;
      top: 50%;
      right: 24px;
      transform: translateY(-50%);
      z-index: 0;
      pointer-events: none;
      opacity: 0.5;
    }
  }
}

.address {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-block: 40px;

  .card {
    width: 480px;
    height: 480px;
    background-color: #fff;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
    color: #2a2a2a;

    box-shadow: 3px 10px 5px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 3px 10px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 3px 10px 5px 0px rgba(0, 0, 0, 0.25);

    h1 {
      padding: 0;
      font-size: 36px;
    }

    a {
      color: #2a2a2a;
    }

    .address-link {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 16px;

      .phones {
        display: flex;
        align-items: center;
        gap: 8px;

        a {
          display: flex;
          align-items: center;
        }
      }

      img {
        width: 16px;
        height: 16px;
      }
    }
  }
}

.gallery {
  width: 100%;
  height: 300px;
  margin-bottom: 24px;

  a {
    width: calc(100% - 164px);
    display: flex;
    justify-content: flex-end;
    text-decoration: underline;
    cursor: pointer;
    color: #2a2a2a;
  }

  .carousel {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    padding-top: 40px;
  }
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 75s linear infinite;
}

.column {
  display: flex;
  flex-direction: column;
  flex: 0 0 25vw;
  width: 25vw;
  height: 200px;
  box-sizing: border-box;
}

.icon {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;

  img {
    width: 100%;
    height: 100px;
    object-fit: unset;
  }
}

/* .performance {
  background: url("./assets/Images/Performance.png") no-repeat center center;
  background-size: cover;
  object-fit: cover;
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.carousel-track:hover {
  animation-play-state: paused;
}

.footer {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;

  .interactive {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 64px;

    section {
      h1 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #2a2a2a;
      }

      a {
        color: #2a2a2a;
      }

      ul {
        list-style: none;

        li {
          margin-bottom: 16px;

          a {
            color: #2a2a2a;

            img {
              width: 10px;
              height: 10px;
            }
          }
        }
      }
    }
  }

  .copyright {
    width: 80%;
    border-top: 2px solid #2a2a2a;
    padding-top: 24px;

    display: flex;
    justify-content: center;

    font-size: 14px;
  }
}

button {
  a {
    text-decoration: none;
    color: #fff;

    &:hover {
      color: #2a2a2a;
    }
  }
}

.main-customers {
  width: 100%;
  /* background-color: #fff; */

  h1.parcerias {
    font-size: 46px;
    padding-left: 196px;
    padding-top: 16px;
    margin-bottom: 40px;
  }

  .customers-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #fff;
    padding-top: 48px;
    gap: 8px;

    .customer {
      width: 240px;
      height: 105px;

      img {
        width: 100%;
        height: 100%;
        object-fit: fill;
      }
    }
  }
}

.breadcrumb {
  padding-top: 16px;
  padding-left: 196px;
  background-color: #fff;
  color: #2a2a2a;

  a {
    color: #2a2a2a;
  }
}

/* --- Mobile Styles --- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    max-width: 320px;
    margin-bottom: 16px;
  }

  .action {
    max-width: 320px;
    align-items: center;
  }

  .action .phone,
  .action .links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .action .links .tel {
    margin-bottom: 8px;
  }

  .action .links .social {
    margin-top: 8px;
  }

  .action .buttons {
    flex-direction: column;
  }

  .action .buttons button {
    margin-bottom: 8px;
  }

  .flex-fixer {
    display: none;
  }

  .stamp {
    position: static;
    text-align: center;
    margin-top: 16px;
    transform: none;
    right: auto;
  }

  .stamp img {
    height: 80px;
  }

  .conteudo .title {
    padding-inline: 16px;
    width: 100%;
    max-width: 320px;
    margin-bottom: 32px;
  }

  .conteudo .title h1 {
    font-size: 48px;

  }

  .conteudo .title h2 {
    font-size: 28px;
    margin-top: 80px;
  }

  .conteudo section h1 {
    text-align: center;
    padding-left: 0;
    font-size: 32px;
  }

  .conteudo section,
  .conteudo section.filled {
    padding-inline: 16px;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .grid .card {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-bottom: 16px;
    text-align: center;
    padding: 16px;
  }

  .grid .card ul {
    display: inline-block;
    text-align: left;
    padding-left: 0;
  }

  .grid .card ul li {
    margin-bottom: 8px;
  }

  .dashboard {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-bottom: 16px;
  }

  .dashboard .card {
    width: 100%;
    max-width: 320px;
    margin-top: 16px;
    text-align: center;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .cards .card {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-bottom: 16px;
  }

  .address {
    flex-direction: column;
    align-items: center;
  }

  .address .card {
    width: 100%;
    max-width: 320px;
  }

  .address .card iframe {
    width: 100%;
    max-width: 320px;
  }

  .gallery a {
    width: 100%;
  }

  .carousel-track {
    animation: scroll 75s linear infinite;
  }

  .column {
    flex-basis: 50vw;
    width: 50vw;
  }

  .main-customers .parcerias {
    padding-left: 16px;
    font-size: 32px;
  }

  .customers-grid .customer {
    width: calc(50% - 4px);
  }

  .footer .interactive {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer .interactive section h1 {
    margin-bottom: 8px;
  }

  .footer .copyright {
    width: 100%;
    max-width: 320px;
    font-size: 12px;
  }

  .breadcrumb {
    padding-left: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}