.projects{
            width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 30px #ccc
        }
        /* new */
        .hero-clip2lead {
        background: radial-gradient(circle at top left, #1c1c2e, #0e0e18);
        color: white;
        padding: 3rem 2rem;
        font-family: 'Inter', sans-serif;
      }

      .hero-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
      }

      /* flex: 1 1 500px; */
      .hero-text {
        flex: 1 1;
        max-width: 600px;
      }

      .hero-text h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        font-weight: 700;
        line-height: 1.2;
      }

      .hero-text h2 {
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.6;
        color: #ccc;
      }

      .hero-cta {
        margin-top: 2rem;
      }

      .cta-button {
        display: inline-block;
        background: linear-gradient(135deg, #6a6dff, #a36eff);
        padding: 0.9rem 2.5rem;
        border-radius: 8px;
        font-weight: 600;
        color: white;
        text-decoration: none;
        font-size: 1rem;
      }

      .cta-subtext {
        margin-top: 0.5rem;
        font-size: 0.9rem;
        color: #aaa;
      }

      /* flex: 1 1 400px; */
      .hero-image {
        flex: 1 1;
        text-align: center;
        margin-top: 2rem;
      }

      .hero-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 12px;
      }

      /* Responsivo */
      @media (max-width: 768px) {
        .hero-container {
          flex-direction: column-reverse;
          text-align: center;
        }

        .hero-text h1 {
          font-size: 2rem;
        }

        .hero-text h2 {
          font-size: 1rem;
        }

        .cta-button {
          font-size: 0.95rem;
          padding: 0.8rem 1.5rem;
        }

        .hero-image {
          margin-bottom: 2rem;
        }
      }

      html {
        scroll-behavior: smooth;
        box-sizing: border-box;
        font-size: 16px;
      }

      *, *::before, *::after {
        box-sizing: inherit;
      }

      body {
        margin: 0;
        padding: 0;
        background-color: #0e0e18; /* fundo escuro moderno */
        color: #ffffff;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      .testimonials-section {
        background-color: #0e0e18;
        padding: 0 2rem;
        color: #fff;
      }

      .container {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
      }

      .testimonial-card {
        background: #181828;
        border-radius: 16px;
        padding: 2rem;
        flex: 1 1 300px;
        max-width: 360px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 0 10px rgba(255,255,255,0.03);
        transition: all 0.3s ease;
      }

      .testimonial-card:hover {
        transform: translateY(-4px);
      }

      .testimonial-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
      }

      .logo {
        height: 28px;
        opacity: 0.8;
      }

      .stars {
        color: #facc15;
        font-size: 1.2rem;
        letter-spacing: 2px;
      }

      .testimonial-text {
        font-size: 1rem;
        color: #ccc;
        flex: 1;
      }

      .testimonial-footer {
        display: flex;
        align-items: center;
        margin-top: 1rem;
      }

      .avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        margin-right: 1rem;
      }

      .name {
        font-weight: 600;
        font-size: 1rem;
      }

      .role {
        font-size: 0.85rem;
        color: #888;
      }

      /* Responsivo */
      @media (max-width: 768px) {
        .container {
          flex-direction: column;
          align-items: center;
        }
      }

      .trusted-section {
        background-color: #0e0e18;
        padding: 2rem 1.5rem;
        text-align: center;
      }

      .trusted-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        max-width: 1000px;
        margin: 0 auto;
        flex-wrap: wrap;
      }

      .trusted-icon {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .trusted-text {
        font-size: 1.5rem;
        color: #e0e7ff;
        font-weight: 600;
      }
      footer{
        text-align: center;
      }
      p.testimonial-text a{
        color: #fff;
        font-style: italic;
      }

      .align-section {
          background-color: #0e0e18;
          padding: 4rem 2rem 0;
          text-align: center;
        }

        .trusted-text h1 {
          font-size: 2.5rem;
          font-weight: 700;
          color: #ffffff;
          margin-bottom: 1rem;
        }

        .trusted-text p {
          font-size: 1.1rem;
          max-width: 700px;
          margin: 0 auto;
          color: #c7c7d4;
          line-height: 1.7;
        }