:root {
      --bg: #09111f;
      --surface: #f5f6fb;
      --text: #e9eefb;
      --text-dark: #111827;
      --muted-dark: #667085;
      --line: rgba(255, 255, 255, .12);
      --primary: #7c4dff;
      --primary-2: #3b82f6;
      --primary-3: #23c4ff;
      --glow: 0 0 0 1px rgba(124, 77, 255, .15), 0 10px 30px rgba(59, 130, 246, .18), 0 15px 50px rgba(124, 77, 255, .14);
      --shadow: 0 8px 30px rgba(2, 8, 23, 0.10);
      --container: 1200px;
      --header-h: 92px;
    }

    * {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility
    }

    img,
    video {
      max-width: 100%;
      display: block
    }

    a {
      text-decoration: none;
      color: inherit
    }

    button,
    input,
    textarea,
    select {
      font: inherit
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin-inline: auto
    }

    .section {
      padding: 96px 0
    }

    .section-sm {
      padding: 64px 0
    }

    .surface {
      background: linear-gradient(180deg, #f7f9ff 0%, #eef3fb 100%);
      color: var(--text-dark)
    }

    .surface p,
    .surface li {
      color: var(--muted-dark)
    }

    .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 16px
    }

    .section-title {
      margin: 0;
      font-family: 'Poppins', 'Inter', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.05;
      letter-spacing: -.03em
    }

    .text-gradient {
      background: linear-gradient(135deg, #8d6bff 0%, #42b3ff 45%, #54ebff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 22px rgba(66, 179, 255, .15)
    }

    .lead {
      max-width: 740px;
      line-height: 1.75;
      font-size: 1.02rem;
      color: rgba(255, 255, 255, .76)
    }

    .surface .lead {
      color: var(--muted-dark)
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .7rem;
      padding: 14px 24px;
      border-radius: 999px;
      font-size: .92rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
      border: 0;
      cursor: pointer;
      transition: transform .22s ease, opacity .22s ease, box-shadow .22s ease, background .22s ease
    }

    .btn:hover {
      transform: translateY(-1px);
      opacity: .95
    }

    .btn:active {
      transform: translateY(0)
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: var(--glow)
    }

    .btn-ghost {
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .18);
      background: rgba(255, 255, 255, .04);
      backdrop-filter: blur(12px)
    }

    .btn-link {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      color: var(--primary);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
      font-size: .86rem
    }

    .icon {
      width: 18px;
      height: 18px;
      display: inline-block;
      vertical-align: middle;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto
    }

    .icon-lg {
      width: 26px;
      height: 26px
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: background .22s ease, backdrop-filter .22s ease, box-shadow .22s ease, border-color .22s ease;
      border-bottom: 1px solid transparent
    }

    .header.scrolled {
      background: rgba(7, 13, 26, .72);
      backdrop-filter: blur(14px);
      box-shadow: 0 8px 30px rgba(2, 8, 23, .18);
      border-color: rgba(255, 255, 255, .08)
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-height: var(--header-h)
    }

    .logo-box {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, .96);
      border-radius: 18px;
      box-shadow: var(--shadow);
      padding: 12px 16px;
      min-width: 180px;
      min-height: 60px
    }

    .logo-box img {
      max-height: 38px;
      width: auto
    }

    .logo-fallback {
      display: none;
      font-weight: 900;
      color: #0f172a;
      letter-spacing: -.03em
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 26px;
      color: rgba(255, 255, 255, .8);
      font-size: .95rem;
      font-weight: 500
    }

    .nav a {
      transition: color .2s ease
    }

    .nav a:hover {
      color: #fff
    }

    .header-cta {
      white-space: nowrap
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .06);
      color: #fff;
      align-items: center;
      justify-content: center;
      cursor: pointer
    }

    .mobile-panel {
      display: none;
      padding: 0 0 16px
    }

    .mobile-panel nav {
      display: grid;
      gap: 10px;
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 20px;
      background: rgba(7, 13, 26, .92);
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow)
    }

    .mobile-panel a,
    .mobile-panel .btn {
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, .04)
    }

    .hero {
      position: relative;
      min-height: 100svh;
      overflow: hidden;
      display: flex;
      align-items: stretch
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background: #060c16
    }

    .hero-media img.fallback-bg,
    .hero-media video.bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .hero-media img.fallback-bg {
      z-index: 0;
      filter: saturate(1.05) contrast(1.03) brightness(.84);
      transform: scale(1.03)
    }

    .hero-media video.bg-video {
      z-index: 1;
      pointer-events: none;
      background: #060c16;
      opacity: 1;
      transition: opacity .9s ease, transform 8s ease;
      transform: scale(1.015)
    }

    .hero-media.video-ready video.bg-video.active {
      opacity: 1
    }

    .video-mobile {
      display: none
    }

    .hero-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 15% 25%, rgba(66, 179, 255, .20), transparent 28%), radial-gradient(circle at 88% 18%, rgba(124, 77, 255, .28), transparent 28%), linear-gradient(180deg, rgba(9, 17, 31, .18), rgba(9, 17, 31, .88));
      z-index: 2;
      pointer-events: none
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(9, 17, 31, .6) 0%, rgba(9, 17, 31, .15) 42%, rgba(9, 17, 31, .55) 100%);
      z-index: 2
    }

    .hero-content {
      position: relative;
      z-index: 3;
      width: 100%;
      display: flex;
      align-items: center;
      text-align: center;
      padding: calc(var(--header-h) + 40px) 0 56px
    }

    .hero-wrap {
      width: min(100% - 32px, 980px);
      margin-inline: auto
    }

    .hero h1 {
      margin: 0;
      font-family: 'Poppins', 'Inter', sans-serif;
      font-size: clamp(3rem, 8vw, 5.8rem);
      line-height: .96;
      letter-spacing: -.05em;
      text-wrap: balance
    }

    .divider {
      width: 160px;
      height: 1px;
      margin: 26px auto 24px;
      background: linear-gradient(90deg, rgba(124, 77, 255, 0), rgba(124, 77, 255, .8), rgba(35, 196, 255, .85), rgba(124, 77, 255, 0))
    }

    .hero-actions {
      margin-top: 38px;
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap
    }

    .social-rail {
      position: fixed;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 11;
      display: grid;
      gap: 12px
    }

    .social-rail a,
    .social-inline a {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, .10);
      color: white;
      border: 1px solid rgba(255, 255, 255, .12);
      backdrop-filter: blur(10px);
      transition: background .22s ease, color .22s ease, transform .22s ease
    }

    .social-rail a:hover,
    .social-inline a:hover {
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      transform: translateY(-2px)
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 56px;
      align-items: center
    }

    .grid-2.reverse {
      grid-template-columns: .95fr 1.05fr
    }

    .image-card {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      border: 4px solid rgba(124, 77, 255, .3);
      background: linear-gradient(135deg, rgba(119, 71, 255, .10), rgba(63, 178, 255, .12));
      box-shadow: var(--shadow);
      min-height: 480px
    }

    .image-card::before {
      content: '';
      position: absolute;
      inset: -20px;
      z-index: -1;
      border-radius: 40px;
      background: radial-gradient(circle at 25% 35%, rgba(124, 77, 255, .20), transparent 38%), radial-gradient(circle at 78% 80%, rgba(35, 196, 255, .2), transparent 35%);
      filter: blur(22px)
    }

    .image-card img {
      width: 100%;
      height: 100%;
      min-height: inherit;
      object-fit: cover
    }

    .image-fallback {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 75% 15%, rgba(81, 233, 255, .35), transparent 20%), linear-gradient(135deg, rgba(124, 77, 255, .95), rgba(33, 99, 255, .72)), #0f172a;
      display: none;
      color: rgba(255, 255, 255, .92);
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
      font-weight: 800;
      font-size: 1.3rem;
      text-shadow: 0 2px 18px rgba(0, 0, 0, .2)
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 22px 0 0;
      display: grid;
      gap: 12px
    }

    .check-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .96rem
    }

    .check {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      display: inline-grid;
      place-items: center;
      color: var(--primary);
      background: rgba(124, 77, 255, .1);
      border: 1px solid rgba(124, 77, 255, .20);
      flex: 0 0 auto
    }

    .check::before {
      content: '✓';
      font-size: 12px;
      font-weight: 900
    }

    .marquee-wrap {
      overflow: hidden;
      position: relative;
      margin-top: 42px
    }

    .marquee-wrap::before,
    .marquee-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 140px;
      z-index: 2;
      pointer-events: none
    }

    .marquee-wrap::before {
      left: 0;
      background: linear-gradient(90deg, #eef3fb, rgba(238, 243, 251, 0))
    }

    .marquee-wrap::after {
      right: 0;
      background: linear-gradient(270deg, #eef3fb, rgba(238, 243, 251, 0))
    }

    .marquee {
      display: flex;
      gap: 18px;
      width: max-content;
      animation: marquee 32s linear infinite
    }

    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

  .partner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;  /* Largura fixa para manter o espaçamento igual */
    height: 80px;  /* Altura fixa para alinhar todas na mesma linha */
    margin: 0 20px; /* Espaço entre as logos */
  }

  /* Padronização das imagens */
  .partner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Mantém a proporção sem distorcer ou cortar a logo */
    filter: grayscale(10%); /* Opcional: deixa as logos em preto e branco */
    opacity: 0.7; /* Opcional: deixa as logos levemente transparentes */
    transition: all 0.3s ease;
  }

  /* Efeito ao passar o mouse (Opcional) */
  .partner img:hover {
    filter: grayscale(0%); /* Restaura a cor original */
    opacity: 1;
  }

    .cards {
      display: grid;
      gap: 22px;
      margin-top: 48px
    }

    .cards.cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .cards.cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .cards.cols-5 {
      grid-template-columns: repeat(5, minmax(0, 1fr))
    }

    .card {
      border: 1px solid rgba(255, 255, 255, .10);
      border-radius: 24px;
      padding: 28px;
      background: rgba(255, 255, 255, .05);
      backdrop-filter: blur(10px);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      box-shadow: 0 10px 30px rgba(2, 8, 23, .12)
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(124, 77, 255, .38);
      box-shadow: var(--glow)
    }

    .surface .card {
      background: #fff;
      border-color: rgba(16, 24, 40, .08);
      box-shadow: var(--shadow);
      color: var(--text-dark)
    }

    .card-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: var(--glow);
      margin-bottom: 18px
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1.25rem
    }

    .card p {
      margin: 0;
      line-height: 1.7;
      color: rgba(255, 255, 255, .72)
    }

    .surface .card p {
      color: var(--muted-dark)
    }

    .brand-card {
      aspect-ratio: 1/1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      text-align: center;
      border: 1px solid rgba(16, 24, 40, .08);
      border-radius: 24px;
      background: #fff;
      box-shadow: var(--shadow);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      padding: 20px
    }

    .brand-card:hover {
      transform: translateY(-4px);
      border-color: rgba(124, 77, 255, .34);
      box-shadow: var(--glow)
    }

    .brand-badge {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: #fff;
      font-weight: 900;
      box-shadow: var(--glow)
    }

    .brand-name {
      font-weight: 800;
      color: #162032
    }

    .sector-card {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, .10);
      background: rgba(255, 255, 255, .05);
      backdrop-filter: blur(10px);
      padding: 38px;
      box-shadow: 0 10px 30px rgba(2, 8, 23, .14)
    }

    .sector-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(124, 77, 255, .26), transparent 68%);
      filter: blur(10px);
      pointer-events: none
    }

    .sector-card h3 {
      margin: 20px 0 16px;
      font-size: 1.85rem
    }

    .sector-card p {
      margin: 0;
      line-height: 1.75;
      color: rgba(255, 255, 255, .72)
    }

    .cases-highlight {
      margin-top: 30px;
      padding: 24px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(16, 24, 40, .08);
      box-shadow: var(--shadow)
    }

    .cases-highlight small {
      display: inline-block;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-weight: 800;
      color: var(--primary)
    }

    .cases-highlight h3 {
      margin: 0;
      color: var(--text-dark);
      font-size: 1.2rem
    }

    .cases-highlight p {
      margin: 6px 0 0;
      color: var(--muted-dark)
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 34px;
      align-items: start
    }

    .contact-list {
      list-style: none;
      padding: 0;
      margin: 34px 0 0;
      display: grid;
      gap: 18px
    }

    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      color: rgba(255, 255, 255, .82)
    }

    .contact-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: var(--primary);
      border: 1px solid rgba(124, 77, 255, .24);
      background: rgba(124, 77, 255, .08);
      flex: 0 0 auto;
      margin-top: -2px
    }

    .form-card {
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, .10);
      background: rgba(255, 255, 255, .06);
      backdrop-filter: blur(14px);
      padding: 30px;
      box-shadow: 0 12px 36px rgba(2, 8, 23, .15)
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px
    }

    .field,
    .field-full {
      width: 100%;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(9, 17, 31, .36);
      color: #fff;
      padding: 14px 18px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease
    }

    .field::placeholder,
    textarea::placeholder {
      color: rgba(255, 255, 255, .56)
    }

    textarea.field-full {
      min-height: 140px;
      border-radius: 22px;
      resize: vertical
    }

    .field:focus,
    .field-full:focus {
      border-color: rgba(124, 77, 255, .8);
      box-shadow: 0 0 0 4px rgba(124, 77, 255, .14);
      background: rgba(9, 17, 31, .48)
    }

    select.field {
      appearance: none
    }

    .form-note {
      margin: 0 0 14px;
      color: rgba(255, 255, 255, .7)
    }

    .helper {
      display: block;
      margin-top: 14px;
      color: rgba(255, 255, 255, .52);
      font-size: .83rem;
      line-height: 1.55
    }

    .footer {
      border-top: 1px solid rgba(255, 255, 255, .10);
      padding: 24px 0;
      color: rgba(255, 255, 255, .62)
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      font-size: .95rem
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, .96);
      border-radius: 14px;
      padding: 10px 12px
    }

    .footer-logo img {
      max-height: 28px;
      width: auto
    }

    .social-inline {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .privacy-link:hover {
      color: #fff
    }

    .badge-note {
      position: fixed;
      right: 14px;
      bottom: 14px;
      z-index: 50;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(7, 13, 26, .82);
      color: rgba(255, 255, 255, .69);
      font-size: .8rem;
      border: 1px solid rgba(255, 255, 255, .08);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow)
    }

    .badge-note button {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      border: 0;
      background: rgba(255, 255, 255, .1);
      color: #fff;
      cursor: pointer
    }

    @media (max-width:1100px) {
      .cards.cols-5 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
      }
    }

    @media (max-width:980px) {
      :root {
        --header-h: 82px
      }

      .nav,
      .header-cta {
        display: none
      }

      .menu-toggle {
        display: inline-flex
      }

      .mobile-panel.show {
        display: block
      }

      .grid-2,
      .grid-2.reverse,
      .contact-grid {
        grid-template-columns: 1fr
      }

      .cards.cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
      }

      .cards.cols-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
      }

      .social-rail {
        display: none
      }

      .hero-content {
        padding-top: calc(var(--header-h) + 64px)
      }

      .image-card {
        min-height: 380px
      }
    }

    @media (max-width:768px) {
      .video-desktop {
        display: none
      }

      .video-mobile {
        display: block
      }
    }

    @media (max-width:720px) {
      .section {
        padding: 76px 0
      }

      .section-sm {
        padding: 52px 0
      }

      .cards.cols-3,
      .cards.cols-2,
      .cards.cols-5,
      .form-grid {
        grid-template-columns: 1fr
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch
      }

      .hero-wrap {
        width: min(100% - 28px, 980px)
      }

      .logo-box {
        min-width: 154px;
        padding: 10px 12px
      }

      .footer-inner {
        justify-content: center;
        text-align: center
      }

      .footer-brand {
        justify-content: center
      }

      .marquee-wrap::before,
      .marquee-wrap::after {
        width: 42px
      }

      .sector-card,
      .card,
      .form-card {
        padding: 24px
      }

      .badge-note {
        left: 12px;
        right: 12px;
        bottom: 12px
      }
    }

    @media (prefers-reduced-motion:reduce) {
      html {
        scroll-behavior: auto
      }

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
      }
    }