* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: #000000; /* Fundo preto */
  }
  
  body, .layout-container {
    max-width: 100vw;
    width: 100%;
  }
  * {
    max-width: 100vw;
  }
  .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
  }
  img, video, iframe {
    max-width: 100%;
    height: auto;
  }
  @media screen and (max-width: 768px) {
    .layout-container {
      padding: 5px;
    }
    
    /* Outros ajustes específicos para mobile aqui */
  }
  
  
        .highlight-button {
          display: inline-block;
          background-color: #333333;
          color: #FFFFFF;
          border: 2px solid #ADD8E6;
          border-radius: 8px;
          padding: 10px 20px;
          font-weight: bold;
          text-decoration: none;
          transition: all 0.3s ease;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          cursor: pointer;
          text-align: center;
          max-width: 200px;
          width: 100%;
          position: relative;
          top: 0;
        }
        .highlight-button:hover {
            background-color: #ADD8E6;
            color: #333333;
            box-shadow: 0 8px 15px rgba(173, 216, 230, 0.4);
            transform: translateY(-5px);
        }
        .highlight-button:active {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(173, 216, 230, 0.3);
        }
        .module-box {
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        cursor: pointer;
        }
        .module-box:hover {
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
          transform: translateY(-5px);
        }
        .accordion-container {
          width: 90%;
          margin-top: 1rem;
        }
        .accordion-item {
          background-color: #1E1E1E;
          border: 1px solid #333333;
          border-radius: 0.5rem;
          margin-bottom: 1rem;
        }
        .accordion-header {
          width: 100%;
          text-align: left;
          padding: 1rem;
          background-color: transparent;
          border: none;
          color: #FFFFFF;
          font-size: 1rem;
          font-weight: bold;
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }
        .accordion-content {
          display: none;
          padding: 1rem;
          color: #CBCBCB;
        }
        .accordion-icon {
          transition: transform 0.3s ease;
        }
        .active .accordion-icon {
          transform: rotate(180deg);
        }
        .shadow-intense {
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(255, 255, 255, 0.3);
        }
        .module-container {
              width: 100%;
              padding: 20px 0;
              margin-bottom: 60px;
          }
          .module-box {
              width: 100%;
              background-color: #1E1E1E;
              border: 1px solid #ADD8E6;
              border-radius: 8px;
              padding: 16px;
              cursor: pointer;
              overflow: hidden;
              transition: all 0.3s ease;
              margin-bottom: 20px;
          }
          .module-box h4, .module-box p {
              color: white;
              text-align: center;
          }
          .module-content {
              display: none;
              padding-top: 10px;
              color: white;
          }
          .module-box.active .module-content {
              display: block;
          }
          .separator {
              display: none;
              border-top: 1px solid #ADD8E6;
              margin: 10px 0;
          }
          .module-box.active .separator {
              display: block;
          }
          .content-item {
              margin-bottom: 15px;
          }
  
          @media (min-width: 768px) {
              .module-container {
                  display: flex;
                  flex-wrap: wrap;
                  justify-content: space-between;
              }
              .module-box {
                  width: 48%;
              }
          }
  
          @media (min-width: 1024px) {
              .module-container {
                  position: relative;
                  min-height: 800px;
                  height: auto;
              }
              .module-box {
                  position: absolute;
                  width: 250px;
                  margin-bottom: 0;
              }
              .module-box.active {
                  width: 450px;
                  z-index: 10;
              }
              .module-box.left {
                  left: 10%;
              }
              .module-box.right {
                  right: 10%;
              }
              #module1 { top: 20px; }
              #module2 { top: 200px; }
              #module3 { top: 380px; }
              #module4 { top: 560px; }
          }
          .separator-and-image-text {
            margin-top: 60px;
            padding: 0 20px;
          }
          .separator {
            height: 1px;
            background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
            margin-bottom: 40px;
          }
          .image-text-container {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            color: #FFFFFF;
          }
          .image-container-about {
            flex: 0 0 auto;
            width: 400px;
            position: relative;
            top: -40px; /* Ajuste este valor para mover a imagem mais para cima */
            transition: transform 0.3s ease;
          }
          .image-container-about:hover {
            transform: scale(1.05); /* Efeito de saliência ao passar o mouse */
          }
          .image-container-about img {
            width: 100%;
            height: auto;
            border-radius: 8px;
          }
          .text-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 180px;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            position: relative;
            top: 110px;
            transition: transform 0.3s ease; /* Ajuste este valor para mover o texto mais para baixo */
          }
          .text-container:hover{
            transform: scale(1.05);
          }
          .text-container h2 {
            font-size: 24px;
            margin-bottom: 16px;
            text-align: left;
          }
          .text-container p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 24px;
            text-align: left;
          }
          .cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background-color: #333333;
            color: #FFFFFF;
            text-decoration: none;
            border-radius: 50%;
            transition: background-color 0.3s ease, transform 0.3s ease;
          }
          .cta-button:hover {
            background-color: #444444;
            transform: scale(1.1);
          }
          .cta-button svg {
            width: 24px;
            height: 24px;
          }
          .button-container {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
            margin-left: 7%;
          }
          @media (max-width: 768px) {
            .image-text-container {
              flex-direction: column;
            }
            .image-container-about {
              width: 100%;
              max-width: 400px;
              margin: 0 auto;
            }
            .text-container {
              text-align: center;
              padding-top: 20px;
              top: 0; 
            }
            .text-container h2 {
              text-align: center;
            }
            .text-container p {
              text-align: center;
            }
            .cta-button {
              align-self: center;
            }
            .button-container {
              justify-content: center;
            }
            .title-separator {
              margin-left: auto;
              margin-right: auto;
            }
            .faq-container {
              flex-direction: column;
            }
            .faq-title{
              font-size: 28px;
            } 
            
            .faq-questions {
              flex: none;
            }
  
            .slide {
            flex: 0 0 33.333%; /* 3 logos per view */
            max-width: 33.333%;
            }
            .trusted-by {
              padding: 3rem 0 2rem;
              margin-top: 2rem;
            }
          }
  
          @media (max-width: 480px) {
            .slide {
            flex: 0 0 50%; /* 2 logos per view */
            max-width: 50%;
            }
                  trusted-by {
              padding: 2rem 0 1rem;
              margin-top: 1.5rem;
            }
            
            .paragraph-17 {
              font-size: 0.9rem;
            }
          }
            .title-separator {
            height: 1px;
            background-color: #ADD8E6;
            margin-bottom: 16px;
          }
          .highlight-about {
          color: #ADD8E6; /* Light blue color for highlighted words */
          font-weight: bold;
        }
        .faq-section {
          background-color: #111;
          padding: 40px 20px;
          margin-top: 100px;
        }
        .faq-container {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          flex-direction: column;
          align-items: center;
        }
        .faq-title {
          font-size: 36px;
          color: #FFFFFF;
          margin-top: 0;
          margin-bottom: 40px;
          text-align: center;
        }
        .faq-questions {
          width: 100%;
          max-width: 800px;
        }
        .faq-item {
          margin-bottom: 16px;
        }
        .faq-question {
          width: 100%;
          text-align: left;
          background-color: #222;
          color: #FFFFFF;
          padding: 16px;
          border: none;
          border-radius: 4px;
          font-size: 16px;
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }
        .faq-icon {
          font-size: 20px;
          transition: transform 0.3s ease;
        }
        .faq-answer {
          background-color: #333;
          color: #FFFFFF;
          padding: 0 16px;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-item.active .faq-answer {
          max-height: 1000px;
          padding: 16px;
        }
        .faq-item.active .faq-icon {
          transform: rotate(45deg);
        }
  
        .trusted-by {
          width: 100%;
          padding: 4rem 0 2rem;
          margin-top: 7rem;
          overflow: hidden;
        }
  
        .center-text {
          text-align: left;
          padding-left: 2rem;
          margin-bottom: 1rem;
        }
  
        .paragraph-17 {
          font-size: 1.1rem;
          color: #CBCBCB;
          line-height: 1.5; /* Melhorar a legibilidade */
          max-width: 80%;
        }
  
        .logo-slider {
          width: 100%;
          overflow: hidden;
        }
  
        .logo-slide-track {
          display: flex;
          animation: scroll 40s linear infinite;
        }
  
        .slide {
          flex: 0 0 12.5%; /* 8 logos per view */
          max-width: 12.5%;
          padding: 0 1rem;
        }
  
        .slide img {
          width: 100%;
          height: auto;
          object-fit: contain;
          filter: grayscale(100%) brightness(200%);
        }
  
        @keyframes scroll {
          0% {
            transform: translateX(0);
          }
          100% {
            transform: translateX(-100%);
          }
        }