/* Fonts --------------------------------------------------------------------------------------- */

/* Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@font-face {
  font-family: 'Open Sans';
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4kaVIGxA.woff2) format('woff2');
}

@font-face {
  font-family: "Cooper Hewitt";
  src: url("/fonts/cooper-hewitt/CooperHewitt-Light.otf") format("woff2");
}

@font-face {
  font-family: "General Sans Variable";
  src: url("/fonts/GeneralSans/Fonts/TTF/GeneralSans-Variable.ttf") format("woff2");
}

/* -------------------------------------------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  color: #fff;
  box-sizing: border-box;

  /* Safety net global: qualquer palavra isolada longa demais não força overflow */
  overflow-wrap: break-word;
  word-break: break-word;

  --lumuware-black: #000;
  --lumuware-black-2: #1a1a1a;
  --lumuware-black-3: #262626;

  --lumuware-red-1: #e4002b;
  --lumuware-red-2: #C10016;

  --lumuware-blue-1: #0c958f;

  --lumuware-gray-1: #191919;
  --lumuware-gray-2: #222222;
  --lumuware-gray-3: #444444;
  --lumuware-gray-4: #555555;
  --lumuware-gray-5: #B0B0B0;
  --lumuware-gray-6: #f2f2f0;
  --lumuware-gray-7: #e7e7e7;
  --lumuware-gray-8: #d0d0d0;


  --lumuware-red-1-opacity-60: #e4002b99;
  --lumuware-red-1-opacity-40: #e4002b66;
  --lumuware-gray-7-opacity-25: #e7e7e740;


  --grid-gap: 30px;
}



body {
  background-color: var(--lumuware-black);
  overflow-x: hidden;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

.intro-video {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lumuware-black);
  transition: opacity 0.6s ease;
  /* cursor: pointer; */

  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
}

body.intro-locked {
  overflow: hidden;
}


.section-1 {
  display: flex;
  height: 100vh;
  /* width: 100%; */

  .container-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
    width: 50%;
    gap: 24px;
    padding: 0 64px;

    .little-title {
      display: flex;
      align-items: center;
      justify-content: start;
      width: 100%;
      gap: 16px;

      span {
        width: 40px;
        height: 1px;
        background-color: var(--lumuware-red-1);
      }

      p {
        white-space: pre;
        font-weight: 400;
        font-style: normal;
        color: var(--lumuware-red-1);
        font-size: 12px;
        letter-spacing: 2.5px;
        line-height: 22px;
        font-feature-settings: normal;
      }
    }

    .text-group {
      display: flex;
      flex-direction: column;
      gap: 6px;

      p:nth-child(1) {
        font-size: 100px;
      }

      p:nth-child(2) {
        font-size: 90px;
        font-style: italic;
        color: var(--lumuware-red-1);
      }

      p:nth-child(3) {
        font-size: 100px;
        color: var(--lumuware-red-1);
      }

      p:nth-child(4) {
        font-size: 80px;
      }

    }

    .phrase {
      max-width: 458px;
      color: var(--lumuware-gray-5);
      word-wrap: break-word;
      word-break: break-word;
      font-weight: 700;
      font-size: 18px;
      /* font-family: "Cooper Hewitt", sans-serif; */
    }

    .button {
      padding: 16px 32px;
      background-color: var(--lumuware-red-1);
      white-space: pre;
      font-weight: 700;
      font-size: 12px;
      cursor: pointer;
      transition: .2s ease-out;
    }

    .button:hover {
      opacity: .6;
    }
  }

  .container-2 {
    height: 100%;
    width: 50%;
    overflow: hidden;

    video {
      width: 100%;
      height: 105%;
      object-fit: cover;
      object-position: center top;
    }
  }
}


.section-2 {
  display: flex;
  flex-direction: column;
  /* height: 100vh; */
  /* width: 100%; */
  align-items: center;
  justify-content: center;
  padding: 140px 0;
  gap: 70px;

  .container-1 {
    display: flex;
    max-width: 1280px;
    gap: 64px;

    .text-group-1 {
      h2 {
        max-width: 771px;
        word-wrap: break-word;
        word-break: break-word;
        font-weight: 400;
        /* font-family: "General Sans Variable", "General Sans Variable Placeholder", sans-serif; */
        font-size: 64px;
        letter-spacing: 0em;
        line-height: 120%;
      }
    }

    .text-group-2 {
      display: flex;
      flex-direction: column;
      align-items: start;
      max-width: 445px;
      gap: 32px;

      p:nth-child(1) {
        padding-top: 24px;
        word-wrap: break-word;
        word-break: break-word;
        font-weight: 700;
        color: var(--lumuware-gray-5);
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 28px;
      }

      .red-text {
        display: flex;
        align-items: center;
        border: 1px solid var(--lumuware-red-1-opacity-60);
        gap: 10px;
        padding: 12px 18px;

        .bolinha {
          width: 6px;
          height: 6px;
          background-color: var(--lumuware-red-1);
          border-radius: 3px;
        }

        p {
          color: var(--lumuware-red-1);
        }
      }
    }
  }

  .container-2 {
    width: 100%;
    max-width: 1280px;

    .grid-container {
      display: grid;
      grid-template-columns: 1fr 1fr 1.2fr;
      gap: var(--grid-gap);
      margin: 14px;

      .grid-element {
        transition: .2s ease;
      }

      .grid-element:hover {
        scale: 1.05;
      }

      .grid-col {
        display: flex;
        flex-direction: column;
        gap: var(--grid-gap);
      }

      .grid-group {
        display: flex;
        flex-direction: column;
        gap: var(--grid-gap);

        .grid-col-1 {
          flex-direction: row;

          .elemento-1 {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            align-content: flex-start;
            width: 234px;
            height: 273px;
            padding: 40px 36px;
            flex-wrap: nowrap;
            gap: 16px;
            background-image: url('/images/img-1.png');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 20px;
            border: 2px solid #ffffff;

            p:nth-child(1) {
              color: var(--lumuware-red-1);
              font-weight: 500;
              font-size: 16px;
              letter-spacing: 2px;
            }

            p:nth-child(2) {
              font-weight: 400;
              font-size: 30px;
            }
          }

          .elemento-2 {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            flex-direction: column;
            width: 463px;
            height: 273px;
            padding: 40px;
            gap: 16px;
            background-image: url('/images/img-2.png');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 20px;
            border: 2px solid var(--lumuware-red-1);
            overflow: var(--overflow-clip-fallback, clip);
            align-content: flex-start;
            flex-wrap: nowrap;

            p:nth-child(1) {
              font-size: 30px;
              font-weight: 300;
            }

            p:nth-child(2) {
              max-width: 220px;
              font-weight: 500;
              font-size: 16px;
              letter-spacing: 3px;
            }
          }
        }
      }

      .grid-col-2 {
        flex-direction: row;

        .elemento-6 {
          position: relative;
          box-sizing: border-box;
          width: 420px;
          height: 560px;
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: flex-end;
          align-items: center;
          padding: 60px 40px;
          background-color: var(--lumuware-red-1);
          align-content: center;
          flex-wrap: nowrap;
          gap: 16px;
          border-radius: 20px;
          overflow: hidden;


          .img-svg {
            position: absolute;
            top: -50%;
            width: 100%;
            height: 100%;
            background-image: url('/images/img-3.svg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: top;
          }

          p:nth-child(1) {
            color: var(--lumuware-red-1);
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 2px;
          }

          p:nth-child(2) {
            font-weight: 400;
            font-size: 30px;
          }
        }

        .grid-group {
          height: 100%;

          .elemento-7 {
            height: 279px;
            width: 271px;
            height: 55%;
            background-image: url('/images/img-4.svg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            border-radius: 20px;
          }

          .elemento-5 {
            box-sizing: border-box;
            width: 271px;
            height: 253px;
            height: 45%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 50px 40px;
            background-color: #ffffff;
            align-content: flex-start;
            flex-wrap: nowrap;
            gap: 16px;
            border-radius: 20px;

            p:nth-child(1) {
              font-size: 30px;
              font-weight: 300;
              color: var(--lumuware-red-1);
            }

            p:nth-child(2) {
              max-width: 130px;
              font-weight: 500;
              font-size: 16px;
              letter-spacing: 3px;
              color: var(--lumuware-gray-1);
            }
          }
        }
      }

      .grid-col-3 {
        .elemento-3 {
          box-sizing: border-box;
          width: 500px;
          height: 367px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: flex-start;
          padding: 60px;
          background-color: #e4002b;
          overflow: visible;
          align-content: flex-start;
          flex-wrap: nowrap;
          gap: 24px;
          border-radius: 20px;

          p:nth-child(1) {
            font-weight: 400;
            font-size: 70px;
          }

          p:nth-child(2) {
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 3px;
          }
        }

        .elemento-4 {
          box-sizing: border-box;
          width: 500px;
          height: 466px;
          display: flex;
          flex-direction: column;
          justify-content: flex-end;
          align-items: flex-start;
          padding: 60px;
          align-content: flex-start;
          flex-wrap: nowrap;
          gap: 16px;
          background-image: url('images/img-5.png');
          background-size: 100% 100%;
          background-repeat: no-repeat;
          background-position: center;
          border-radius: 20px;

          p:nth-child(1) {
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 3px;
          }

          p:nth-child(2) {
            max-width: 160px;
            font-weight: 400;
            font-size: 30px;
          }
        }
      }
    }
  }

}

.section-3 {
  display: flex;
  flex-direction: column;
  /* height: 100vh; */
  align-items: center;
  justify-content: center;
  padding: 140px 0;
  gap: 70px;

  .container-1 {
    width: 100%;
    max-width: 1280px;

    p {
      font-size: 64px;
    }

    p:nth-child(1) {
      font-style: italic;
    }

    p:nth-child(2) {
      font-style: italic;
      color: var(--lumuware-red-1);
    }
  }

  .container-2 {
    display: flex;
    width: 100%;
    max-width: 1280px;

    .card-group {
      display: flex;
      flex-direction: column;
      width: 33.3%;
      padding: 60px 40px;
      gap: 20px;

      .title-card {
        font-weight: 700;
        color: var(--lumuware-red-1);
        font-size: 12px;
      }

      h2 {
        font-weight: 400;
        font-size: 32px;
        line-height: 120%;
      }

      .text {
        font-size: 16px;
        font-weight: 700;
        color: var(--lumuware-gray-5);
      }
    }

    .card-group:nth-child(2) {
      border-left: 1px solid var(--lumuware-gray-5);
      border-right: 1px solid var(--lumuware-gray-5);
    }
  }
}

.section-4 {
  display: flex;
  /* height: 100vh; */
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  gap: 70px;
  border-bottom: 1px solid var(--lumuware-red-1);

  .container-1 {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1280px;

    .box-1 {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 470px;
      gap: 24px;

      .little-title {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 12px;

        span {
          width: 28px;
          height: 1px;
          background-color: var(--lumuware-red-1);
        }

        p {
          font-weight: 700;
          font-size: 12px;
          letter-spacing: 2.4px;
          line-height: 20px;
          color: var(--lumuware-red-1);
        }
      }

      .text-group {
        display: flex;
        flex-direction: column;

        p {
          font-weight: 400;
          font-size: 64px;
          line-height: 74px;
        }

        p:nth-child(3) {
          font-style: italic;
          color: var(--lumuware-red-1);
        }
      }

      .phrase {
        font-weight: 700;
        color: var(--lumuware-gray-5);
        font-size: 18px;
        line-height: 28px;
      }

      .list-group {
        display: flex;
        flex-direction: column;
        gap: 8px;

        .list-item {
          display: flex;
          justify-content: start;
          align-items: center;
          gap: 10px;

          .square {
            width: 6px;
            height: 6px;
            background-color: var(--lumuware-red-1);
            transform: rotate(45deg);
          }

          p {
            font-weight: 700;
            color: var(--lumuware-gray-6);
            font-size: 14px;
            line-height: 24px;
          }
        }
      }
    }

    .box-2 {
      position: relative;
      width: 100% !important;

      .main-img {
        position: absolute;
        width: 100%;
        height: 100%;

        background-image: url('/images/img-6.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 2;
      }

      .card {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 12.8px;
        background-color: #f8f8f8;
        border: 0.8px solid var(--lumuware-gray-7);
        border-radius: 10px;
        padding: 12.8px;
        box-shadow: 3.2px 3.2px 28px var(--lumuware-gray-7-opacity-25);
        z-index: 3;
        transition: translate 0.35s cubic-bezier(0.22, 1, 0.36, 1),
          rotate 0.35s cubic-bezier(0.22, 1, 0.36, 1);

        .header {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 100%;
          gap: 65px;

          h3 {
            font-weight: 600;
            font-size: 14px;
            color: var(--lumuware-black-2);
            font-family: 'Open Sans', sans-serif;
            white-space: nowrap;
          }

          .card-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: #efefef;
            border-radius: 6px;
            box-shadow: 3.2px 3.2px 28px var(--lumuware-gray-7-opacity-25);

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

        .card-value-row {
          display: flex;
          align-items: flex-end;
          gap: 4px;

          .card-value {
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: 25.6px;
            color: var(--lumuware-blue-1);
          }

          .card-value-suffix {
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: 14px;
            color: var(--lumuware-gray-8);
          }
        }

        .card-footer {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 100%;
          gap: 8px;

          .footer-trend {
            display: flex;
            align-items: center;
            gap: 4.8px;

            .trend-icon img {
              width: 13px;
              height: 13px;
            }
          }

          .footer-text,
          .footer-trend p {
            font-family: "Inter", sans-serif;
            font-size: 9.6px;
            color: var(--lumuware-black);
          }
        }

        .badge {
          font-family: "Inter", sans-serif;
          font-size: 9.6px;
          font-weight: 500;
          padding: 4.8px 9.6px;
          border-radius: 5px;
          white-space: nowrap;
        }

        .badge-green {
          background-color: #5de3461a;
          color: #5de346;
        }

        .badge-orange {
          background-color: #ffb1271a;
          color: #885701;
        }

        .card-bars {
          display: flex;
          align-items: flex-end;
          justify-content: flex-end;
          gap: 3.2px;
          width: 100%;

          .bar {
            flex: 1 0 0;
            width: 1px;
            border-radius: 3px;
            background: linear-gradient(to top, #134e4c, #2cd5c7);
          }
        }

        .progress-bar {
          display: flex;
          align-items: flex-end;
          gap: 4px;
          width: 100%;

          .progress-fill {
            flex: none;
            width: 74%;
            height: 40px;
            background-color: var(--lumuware-blue-1);
            border-radius: 4px;
          }

          .progress-track {
            flex: 1 0 0;
            height: 40px;
            background-color: var(--lumuware-gray-8);
            border-radius: 4px;
          }
        }
      }

      /* Posições aproximadas — tive q ajustar essa prr conforme a proporção da main-img */
      .card-1 {
        top: 19%;
        left: -2%;
        z-index: 1;
      }

      .card-2 {
        top: 42%;
        left: 76%;
        z-index: 1;
      }

      .card-3 {
        top: 67%;
        left: -5%;
        z-index: 3;
      }
    }
  }
}


.section-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 160px 0;
  background-color: var(--lumuware-gray-1);
  overflow: hidden;

  .container-1 {
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    max-width: 1280px;
    gap: 64px;

    .box-1 {
      display: flex;
      flex-direction: column;
      gap: 24px;

      .little-title {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 12px;

        span {
          width: 28px;
          height: 1px;
          background-color: var(--lumuware-red-1);
        }

        p {
          font-weight: 700;
          font-size: 12px;
          letter-spacing: 2.4px;
          line-height: 20px;
          color: var(--lumuware-red-1);
        }
      }

      .text-group h2 {
        font-weight: 400;
        font-size: 64px;
        line-height: 74px;
        max-width: 608px;
      }
    }

    .phrase {
      font-weight: 700;
      color: var(--lumuware-gray-5);
      font-size: 18px;
      line-height: 28px;
      max-width: 559px;
    }
  }

  /* Marquee ---------------------------------------------------- */

  .marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--lumuware-black-2);
    border-bottom: 1px solid var(--lumuware-black-2);
    padding: 20px 0;

    .marquee-track {
      display: flex;
      flex-shrink: 0;
      align-items: center;
      list-style: none;
      gap: 40px;
      padding-left: 40px;
      animation: marquee-scroll 30s linear infinite;

      .marquee-item p {
        font-weight: 500;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 2.4px;
        text-transform: uppercase;
        white-space: nowrap;
      }

      .marquee-divider span {
        display: block;
        width: 6px;
        height: 6px;
        background-color: var(--lumuware-red-1);
        transform: rotate(45deg);
      }
    }
  }

  /* Carrossel scroll-driven -------------------------------------- */

  .hscroll-wrapper {
    width: 100%;
    position: relative;

    .hscroll-sticky {
      position: sticky;
      top: 0;
      display: flex;
      align-items: center;
      overflow: hidden;

      .hscroll-track {
        display: flex;
        gap: 32px;
        padding: 0 64px;
        will-change: transform;

        .panel-card {
          position: relative;
          flex: none;
          width: 420px;
          height: 480px;
          background-color: var(--lumuware-black);
          border: 1px solid var(--lumuware-black-3);
          overflow: hidden;

          .panel-bg {
            position: absolute;
            inset: 0px;
            background: linear-gradient(to bottom right, var(--lumuware-gray-2), var(--lumuware-black));
            border-left: 1px solid var(--lumuware-red-1-opacity-40);
            border-bottom: 1px solid var(--lumuware-red-1-opacity-40);
          }

          .panel-thumb {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            aspect-ratio: 1;
            transform: translate(-50%, -50%);

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

          .panel-title {
            position: absolute;
            top: 25px;
            left: 27px;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 1.44px;
            line-height: 20px;
            text-transform: uppercase;
            color: var(--lumuware-red-1);
            white-space: nowrap;
          }

          .panel-desc-group {
            position: absolute;
            bottom: 27px;
            left: 27px;
            right: 27px;

            .panel-desc {
              font-weight: 700;
              font-size: 12px;
              letter-spacing: 1px;
              line-height: 20px;
              text-transform: uppercase;
              color: rgba(255, 255, 255, 0.55);
            }
          }
        }
      }
    }
  }
}

.section-6 {
  display: flex;
  /* height: 100vh; */
  /* align-items: center;
  justify-content: center; */
  background-color: var(--lumuware-red-1);

  .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 100%;
    padding: 60px 0;

    .number {
      font-weight: 400;
      font-size: 130px;
      letter-spacing: 0em;
      line-height: 160%;
    }

    .text {
      font-weight: 400;
      font-size: 12px;
      letter-spacing: 3px;
      line-height: 160%;
      text-transform: uppercase;
    }
  }

  .card:nth-child(2),
  .card:nth-child(4) {
    background-color: var(--lumuware-red-2);
  }
}


.section-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 110px;

  .container-1 {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    padding: 140px 0 0 0;

    .box-1 {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 560px;
      gap: 24px;

      .little-title {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 12px;

        span {
          width: 28px;
          height: 1px;
          background-color: var(--lumuware-red-1);
        }

        p {
          font-weight: 700;
          font-size: 12px;
          letter-spacing: 2.4px;
          line-height: 20px;
          color: var(--lumuware-red-1);
        }
      }

      h2 {
        font-weight: 400;
        font-size: 64px;
        letter-spacing: 0em;
        line-height: 74px;
      }
    }
  }

  .container-2 {
    display: flex;
    width: 100%;
    padding: 0 0 140px 0;
    gap: 2px;

    .card {
      display: flex;
      flex-direction: column;
      width: 33.3%;
      gap: 12px;
      padding: 240px 0 36px 36px;

      .little-title {
        font-weight: 700;
        color: var(--lumuware-gray-5);
        font-size: 10px;
        letter-spacing: 1.92px;
        line-height: 15.36px;
      }

      .title {
        font-weight: 400;
        font-size: 32px;
        line-height: 51.2px;
      }

      .phrase {
        font-weight: 700;
        color: var(--lumuware-gray-7);
        font-size: 14px;
        line-height: 24px;
      }
    }

    .card:nth-child(1) {
      background-image: url('/images/img-12.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
    }

    .card:nth-child(2) {
      background-image: url('/images/img-13.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
    }

    .card:nth-child(3) {
      background-image: url('/images/img-14.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
    }
  }
}


.section-8 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background-color: var(--lumuware-red-1);

  .container-1 {
    display: flex;
    flex-direction: column;
    padding: 60px 80px;
    gap: 24px;

    h2 {
      max-width: 960px;
      height: auto;
      font-weight: 400;
      font-size: 80px;
      line-height: 120%;
    }

    .phrase {
      max-width: 537px;
      font-weight: 700;
      font-size: 18px;
      line-height: 28px;
    }

    .buttons-group {
      display: flex;
      gap: 16px;
      padding-top: 24px;

      .button {
        font-weight: 500;
        font-size: 12px;
        letter-spacing: 1.15px;
        line-height: 18px;
        padding: 15px 32px;
        cursor: pointer;
        transition: .2s ease-in;
      }

      .button-1 {
        background-color: var(--lumuware-black);
        border: 1px solid var(--lumuware-black);
      }

      .button-2 {
        border: 1px solid #fff;
      }

      .button:hover {
        opacity: .8;
      }

      .button-2:hover {
        background-color: var(--lumuware-red-2);
      }
    }
  }

  .container-2 {
    /* height: 100%; */
    width: 100%;
    max-width: 800px;
    background-image: url('/images/img-15.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}


.footer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 48px 64px;
  background-color: var(--lumuware-gray-1);

  .full-logo {
    width: 100%;
    max-width: 270px;
    height: 40px;
    background-image: url('/images/icon-full-logo.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .rights {
    font-weight: 400;
    color: var(--lumuware-gray-3);
    font-size: 10px;
    letter-spacing: 1.5px;
    line-height: 20px;
  }

  .itens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;

    p {
      font-weight: 400;
      color: var(--lumuware-gray-4);
      font-size: 10px;
      letter-spacing: 1.5px;
      line-height: 20px;
      cursor: pointer;
      transition: .3s ease-out;
    }

    p:hover {
      color: #fff;
      text-decoration: underline;
    }
  }
}


@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 40px));
  }
}




/* --------------------------------------------------------------------------------------- */
/* Mobile */
@media (max-width: 1800px) {
  .section-1 {

    .container-1 {

      .text-group {
        p:nth-child(1) {
          font-size: 64px;
        }

        p:nth-child(2) {
          font-size: 56px;
        }

        p:nth-child(3) {
          font-size: 64px;
        }

        p:nth-child(4) {
          font-size: 48px;
        }
      }

      .phrase {
        max-width: 100%;
      }
    }
  }
}


/* ============================================================ */
/* RESPONSIVO — ≤1024px (tablets)                                */
/* ============================================================ */

@media (max-width: 1240px) {

  .section-1 {
    height: auto;
    min-height: 100vh;
    flex-direction: column;

    .container-1 {
      width: 100%;
      height: auto;
      padding: 120px 40px 48px;

      .text-group {
        p:nth-child(1) {
          font-size: 72px;
        }

        p:nth-child(2) {
          font-size: 64px;
        }

        p:nth-child(3) {
          font-size: 72px;
        }

        p:nth-child(4) {
          font-size: 56px;
        }
      }

      .phrase {
        max-width: 100%;
      }
    }

    .container-2 {
      width: 100%;
      height: 60vh;
    }
  }

  .section-2 {
    padding: 100px 24px;

    .container-1 {
      flex-direction: column;
      gap: 32px;
      padding: 0 16px;

      .text-group-1 h2 {
        max-width: 100%;
        font-size: 44px;
      }

      .text-group-2 {
        max-width: 100%;
      }
    }

    .container-2 {
      padding: 0 16px;

      .grid-container {
        display: flex;
        flex-direction: column;
        margin: 0;

        .grid-group,
        .grid-col,
        .grid-col-1,
        .grid-col-2,
        .grid-col-3 {
          flex-direction: column !important;
          width: 100% !important;
          height: auto !important;
        }

        .grid-element,
        .elemento-1,
        .elemento-2,
        .elemento-3,
        .elemento-4,
        .elemento-5,
        .elemento-6,
        .elemento-7 {
          width: 100% !important;
          height: auto !important;
          min-height: 280px;
          background-size: cover !important;
        }

        .elemento-1 p:nth-child(2) {
          font-size: 24px;
        }

        .elemento-2 p:nth-child(1) {
          font-size: 24px;
        }

        .elemento-3 p:nth-child(1) {
          font-size: 42px;
        }

        .elemento-4 p:nth-child(2) {
          font-size: 24px;
        }

        .elemento-5 p:nth-child(1) {
          font-size: 24px;
        }

        .elemento-6 p:nth-child(2) {
          font-size: 24px;
        }
      }
    }
  }

  .section-3 {
    padding: 100px 24px;

    .container-1 p {
      font-size: 44px;
    }

    .container-2 {
      flex-direction: column;
      padding: 0;

      .card-group {
        width: 100%;
        padding: 32px 0;
      }

      .card-group:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--lumuware-gray-5);
        border-bottom: 1px solid var(--lumuware-gray-5);
      }
    }
  }

  .section-4 {
    padding: 100px 24px;

    .container-1 {
      flex-direction: column;
      gap: 48px;

      .box-1 {
        max-width: 100%;

        .text-group p {
          font-size: 48px;
          line-height: 56px;
        }
      }

      .box-2 {
        .main-img {
          position: relative;
          height: 420px;
        }

        .card {
          position: static !important;
          width: 100%;
          margin-top: 16px;
        }
      }
    }
  }

  .section-5 {
    padding: 100px 24px;

    .container-1 {
      flex-direction: column;
      align-items: start;
      gap: 24px;

      .box-1 .text-group h2 {
        max-width: 100%;
        font-size: 44px;
      }

      .phrase {
        max-width: 100%;
      }
    }

    .hscroll-wrapper .hscroll-sticky {
      position: static;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
      padding-bottom: 16px;

      .hscroll-track {
        transform: none !important;
        scroll-snap-align: start;
      }

      .panel-card {
        scroll-snap-align: start;
      }
    }
  }

  .section-6 {
    flex-wrap: wrap;

    .card {
      width: 50%;
      padding: 40px 16px;

      .number {
        font-size: 90px;
      }
    }
  }

  .section-7 {
    .container-1 {
      padding: 100px 24px 0;

      .box-1 {
        max-width: 100%;
      }
    }

    .container-2 {
      flex-direction: column;
      gap: 4px;
      padding: 0 24px 100px;

      .card {
        width: 100%;
        padding: 200px 0 36px 24px;
      }
    }
  }

  .section-8 {
    flex-direction: column;

    .container-1 {
      padding: 60px 24px;

      h2 {
        max-width: 100%;
        font-size: 56px;
      }

      .phrase {
        max-width: 100%;
      }
    }

    .container-2 {
      max-width: 100%;
      height: 240px;
    }
  }

  .footer-section {
    height: auto;
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }
}


/* ============================================================ */
/* RESPONSIVO — ≤768px (celulares grandes)                       */
/* ============================================================ */

@media (max-width: 768px) {

  .section-1 .container-1 {
    padding: 100px 24px 40px;

    .text-group {
      p:nth-child(1) {
        font-size: 52px;
      }

      p:nth-child(2) {
        font-size: 46px;
      }

      p:nth-child(3) {
        font-size: 52px;
      }

      p:nth-child(4) {
        font-size: 40px;
      }
    }

    .phrase {
      max-width: 100%;
    }

    .button {
      white-space: normal;
      text-align: center;
    }
  }

  .section-2 {
    .container-1 .text-group-1 h2 {
      font-size: 36px;
    }

    .container-2 .grid-container .elemento-3 p:nth-child(1) {
      font-size: 32px;
    }
  }

  .section-3 .container-1 p {
    font-size: 36px;
  }

  .section-4 .container-1 .box-1 .text-group p {
    font-size: 36px;
    line-height: 44px;
  }

  .section-5 {
    .container-1 .box-1 .text-group h2 {
      font-size: 36px;
    }

    .hscroll-wrapper .hscroll-track .panel-card {
      width: 300px;
      height: 360px;
    }
  }

  .section-6 .card .number {
    font-size: 64px;
  }

  .section-7 .container-1 h2 {
    font-size: 40px;
  }

  .section-8 .container-1 h2 {
    font-size: 40px;
  }
}


/* ============================================================ */
/* RESPONSIVO — ≤480px (celulares)                               */
/* ============================================================ */

@media (max-width: 480px) {

  .section-1 .container-1 .text-group {
    p:nth-child(1) {
      font-size: 40px;
    }

    p:nth-child(2) {
      font-size: 36px;
    }

    p:nth-child(3) {
      font-size: 40px;
    }

    p:nth-child(4) {
      font-size: 32px;
    }
  }

  .section-2 .container-2 .grid-container {
    .elemento-1 p:nth-child(2) {
      font-size: 20px;
    }

    .elemento-2 p:nth-child(1) {
      font-size: 20px;
    }

    .elemento-3 p:nth-child(1) {
      font-size: 26px;
    }

    .elemento-4 p:nth-child(2) {
      font-size: 20px;
    }

    .elemento-5 p:nth-child(1) {
      font-size: 20px;
    }

    .elemento-6 p:nth-child(2) {
      font-size: 20px;
    }
  }

  .section-6 .card {
    width: 100%;

    .number {
      font-size: 56px;
    }
  }

  .section-7 .container-2 .card {
    padding: 160px 0 28px 20px;

    .title {
      font-size: 26px;
    }
  }

  .section-8 .container-2 {
    display: none;
  }
}