    /* ── DESIGN SYSTEM ─────────────────────────────────── */
    :root {
      --black: #08070D;
      --deep: #0E0C18;
      --purple-dark: #3B1A6B;
      --purple: #7B3FD4;
      --purple-mid: #9B6AE8;
      --purple-light: #C4A0F5;
      --lilac: #E8DCFF;
      --white: #F8F5FF;
      --text-muted: #A89BC2;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'DM Sans', system-ui, sans-serif;

      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --radius-xl: 48px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: auto;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── CUSTOM SCROLLBAR ── */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: var(--black);
    }
    ::-webkit-scrollbar-thumb {
      background: var(--purple-dark);
      border-radius: 10px;
      border: 2px solid var(--black);
    }
    ::-webkit-scrollbar-thumb:hover {
      background: var(--purple);
    }

    /* ── CUSTOM CURSOR ── */
    #custom-cursor {
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      mix-blend-mode: difference;
    }

    .cursor-dot {
      width: 6px;
      height: 6px;
      background-color: var(--white);
      border-radius: 50%;
      position: fixed;
      transform: translate(-50%, -50%);
    }

    .cursor-outline {
      width: 40px;
      height: 40px;
      border: 1px solid var(--white);
      border-radius: 50%;
      position: fixed;
      transform: translate(-50%, -50%);
      transition: width 0.3s, height 0.3s, background-color 0.3s;
    }

    #custom-cursor.hover .cursor-outline {
      width: 60px;
      height: 60px;
      background-color: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 1024px) {
      #custom-cursor { display: none; }
    }

    /* ── FLOATING BACKGROUND GLOWS ── */
    .bg-glow-container {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .bg-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(140px);
      opacity: 0.2;
      mix-blend-mode: screen;
      animation: floatGlow 20s infinite alternate ease-in-out;
    }

    .bg-glow-1 {
      width: 50vw;
      height: 50vw;
      background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
      top: -10%;
      left: -10%;
      animation-duration: 25s;
    }

    .bg-glow-2 {
      width: 40vw;
      height: 40vw;
      background: radial-gradient(circle, var(--purple-dark) 0%, transparent 70%);
      bottom: 10%;
      right: -5%;
      animation-delay: -5s;
      animation-duration: 18s;
    }

    .bg-glow-3 {
      width: 30vw;
      height: 30vw;
      background: radial-gradient(circle, var(--purple-mid) 0%, transparent 70%);
      top: 40%;
      left: 60%;
      animation-delay: -10s;
      animation-duration: 30s;
    }

    @keyframes floatGlow {
      0% { transform: translate(0, 0) scale(1) rotate(0deg); }
      33% { transform: translate(5vw, 10vh) scale(1.1) rotate(120deg); }
      66% { transform: translate(-5vw, 5vh) scale(0.9) rotate(240deg); }
      100% { transform: translate(0, 0) scale(1) rotate(360deg); }
    }

    /* ── LOGO SLIDER ── */
    .logo-slider-section {
      padding: 40px 0;
      background: rgba(255, 255, 255, 0.02);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      overflow: hidden;
    }

    .logo-slider-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo-slider-track {
      display: flex;
      width: calc(250px * 10);
      animation: scrollLogo 30s linear infinite;
    }

    .logo-slide {
      width: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 40px;
    }

    .logo-slide img {
      height: 40px;
      object-fit: contain;
      filter: grayscale(1) opacity(0.5);
      transition: all 0.3s ease;
    }

    .logo-slide img:hover {
      filter: grayscale(0) opacity(1);
    }

    @keyframes scrollLogo {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-250px * 5)); }
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
      z-index: 9999;
      mix-blend-mode: overlay;
    }

    /* ── PARTICLES CANVAS ── */
    #particles-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 0;
      pointer-events: none;
      /* Allows clicking through the canvas */
    }

    /* Adjust main content z-index so it sits above particles */
    nav,
    section,
    footer {
      position: relative;
      z-index: 1;
    }

    /* ── UTILITIES ── */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(123, 63, 212, 0.15);
      border: 1px solid rgba(123, 63, 212, 0.3);
      color: var(--purple-light);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      transition: all 0.3s ease;
    }
    
    .tag:hover {
      letter-spacing: 0.2em;
      background: rgba(123, 63, 212, 0.25);
      border-color: var(--purple-light);
    }

    .tag::before {
      content: '●';
      font-size: 8px;
      color: var(--purple-mid);
    }

    /* Ajuste para alinhar os Material Symbols perfeitamente */
    .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 20px 0;
      background: rgba(8, 7, 13, 0.4);
      backdrop-filter: blur(30px) saturate(180%) brightness(1.1);
      -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(1.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      background-image: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      background-size: 200% 100%;
      animation: glassMelting 12s infinite linear;
      transition: all 0.4s ease;
    }

    @keyframes glassMelting {
      from { background-position: 200% 0; }
      to { background-position: -200% 0; }
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Estilização da Logo Principal */
    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo-img {
      height: 48px;
      width: auto;
      transition: height 0.4s ease;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-cta {
      background: var(--purple);
      color: var(--white) !important;
      padding: 10px 24px;
      border-radius: 100px;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.2s !important;
    }

    .nav-cta:hover {
      background: var(--purple-mid) !important;
      transform: translateY(-1px);
    }

    /* ── HERO ── */
    #hero.hero-scroll-wrapper {
      height: 300vh;
      position: relative;
      padding: 0;
      display: block;
      min-height: auto;
    }

    .hero-sticky-container {
      position: sticky;
      top: 0;
      height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      overflow: visible; /* Alterado de hidden para garantir que o conteúdo não seja cortado */
      padding-top: 80px; /* Reduzido de 100px */
    }

    .hero-video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.15; /* Sutil background */
    }

    .hero-container {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .hero-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
    }

    .hero-glow-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(123, 63, 212, 0.35) 0%, transparent 70%);
      top: -100px;
      right: -100px;
    }

    .hero-glow-2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(59, 26, 107, 0.5) 0%, transparent 70%);
      bottom: -50px;
      left: -50px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
    }

    #hero-canvas {
      width: auto;
      height: auto;
      max-width: 720px;
      object-fit: contain;
    }

    .hero-eyebrow {
      margin-bottom: 20px; /* Reduzido de 28px */
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(40px, 6vw, 76px); /* Levemente reduzido o tamanho máximo */
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 20px; /* Reduzido de 28px */
      opacity: 0;
      animation: fadeUp 0.8s 0.4s forwards;
    }

    .hero-title em {
      font-style: italic;
      background: linear-gradient(90deg, var(--purple-mid) 0%, var(--purple-light) 50%, var(--purple-mid) 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(16px, 1.8vw, 19px); /* Levemente reduzido */
      color: var(--text-muted);
      max-width: 520px; /* Reduzido de 560px */
      line-height: 1.6; /* Reduzido de 1.65 */
      margin-bottom: 32px; /* Reduzido de 44px */
      opacity: 0;
      animation: fadeUp 0.8s 0.6s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s 0.8s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--purple);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      padding: 16px 32px;
      border-radius: 100px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 0 40px rgba(123, 63, 212, 0.4);
    }

    .btn-primary:hover {
      background: var(--purple-mid);
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 12px 60px rgba(123, 63, 212, 0.6);
      letter-spacing: 0.02em;
    }

    .btn-primary svg {
      width: 18px;
      height: 18px;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--text-muted);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      padding: 16px 24px;
      border-radius: 100px;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.1);
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-ghost:hover {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .hero-proof {
      margin-top: 40px; /* Reduzido de 60px */
      display: flex;
      align-items: center;
      gap: 24px;
      opacity: 0;
      animation: fadeUp 0.8s 1s forwards;
    }

    .proof-avatars {
      display: flex;
    }

    .proof-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid var(--black);
      margin-right: -10px;
      background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: white;
      flex-shrink: 0;
    }

    .proof-text {
      font-size: 13px;
      color: var(--text-muted);
    }

    .proof-text strong {
      color: var(--white);
    }

    /* ── PAIN SECTION ── */
    #pain {
      padding: 100px 0;
      position: relative;
    }

    .pain-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: rgba(123, 63, 212, 0.1);
      border: 1px solid rgba(123, 63, 212, 0.15);
    }

    .pain-card {
      background: var(--deep);
      padding: 44px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .pain-card:hover {
      background: #130F22;
    }

    .pain-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--purple), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .pain-card:hover::before {
      opacity: 1;
    }

    .pain-number {
      font-family: var(--font-display);
      font-size: 80px;
      font-weight: 900;
      color: rgba(123, 63, 212, 0.12);
      line-height: 1;
      position: absolute;
      top: 20px;
      right: 24px;
      pointer-events: none;
    }

    .pain-icon {
      width: 48px;
      height: 48px;
      background: rgba(123, 63, 212, 0.15);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--white);
      /* Força o ícone a ser branco */
    }

    .pain-icon .material-symbols-outlined {
      font-size: 26px;
      /* Ajuste do tamanho do ícone */
    }

    .pain-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .pain-card p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.65;
    }

    /* ── ABOUT ── */
    #sobre {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-card-main {
      background: linear-gradient(135deg, var(--purple-dark) 0%, #1A0A35 100%);
      border: 1px solid rgba(123, 63, 212, 0.3);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
    }

    .about-card-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at top right, rgba(155, 106, 232, 0.2) 0%, transparent 60%);
      pointer-events: none;
    }

    .about-quote {
      font-family: var(--font-display);
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 700;
      font-style: italic;
      line-height: 1.3;
      margin-bottom: 24px;
    }

    .about-quote em {
      color: var(--purple-mid);
      font-style: normal;
    }

    .about-stats {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    .stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .about-floating {
      position: absolute;
      background: var(--deep);
      border: 1px solid rgba(123, 63, 212, 0.25);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .about-floating-1 {
      bottom: -20px;
      right: -20px;
    }

    .about-floating .icon {
      width: 36px;
      height: 36px;
      background: rgba(123, 63, 212, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .about-floating .text {
      font-size: 13px;
    }

    .about-floating .text strong {
      display: block;
      font-weight: 600;
    }

    .about-floating .text span {
      color: var(--text-muted);
      font-size: 11px;
    }

    .about-text .tag {
      margin-bottom: 24px;
    }

    .about-text h2 {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .about-text h2 em {
      font-style: italic;
      color: var(--purple-mid);
    }

    .about-text p {
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .about-pillars {
      list-style: none;
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .about-pillars li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 500;
    }

    .pillar-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--purple-mid);
      flex-shrink: 0;
    }

    /* ── SERVICES ── */
    #servicos {
      padding: 100px 0;
      background: var(--deep);
      position: relative;
      overflow: hidden;
    }

    #servicos::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(123, 63, 212, 0.4), transparent);
    }

    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-header .tag {
      margin-bottom: 20px;
    }

    .section-header h2 {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .section-header h2 em {
      font-style: italic;
      background: linear-gradient(90deg, var(--purple-mid) 0%, var(--purple-light) 50%, var(--purple-mid) 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-header p {
      color: var(--text-muted);
      font-size: 18px;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      background: var(--black);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      position: relative;
      transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .service-card:hover {
      border-color: rgba(123, 63, 212, 0.5);
      transform: translateY(-10px);
      box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6), 
        0 0 20px rgba(123, 63, 212, 0.2);
      background: rgba(255, 255, 255, 0.03);
    }

    .service-card:hover .service-icon {
      transform: scale(1.1) rotate(5deg);
      background: rgba(123, 63, 212, 0.25);
      border-color: var(--purple-light);
    }

    .service-icon {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .service-card.featured {
      background: linear-gradient(135deg, var(--purple-dark) 0%, #210D42 100%);
      border-color: rgba(123, 63, 212, 0.45);
    }

    .service-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--purple);
      color: white;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      background: rgba(123, 63, 212, 0.18);
      border: 1px solid rgba(123, 63, 212, 0.3);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--purple-light);
      /* Cor do ícone */
    }

    .service-icon .material-symbols-outlined {
      font-size: 28px;
      /* Ajuste do tamanho do ícone */
    }

    .service-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .service-card p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .service-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .service-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .service-features li::before {
      content: '→';
      color: var(--purple-mid);
      font-size: 12px;
      flex-shrink: 0;
    }

    /* ── MÉTODO ── */
    #metodo {
      padding: 100px 0;
      position: relative;
    }

    .method-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 32px;
      margin-top: 60px;
    }

    .method-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: var(--radius-lg);
      padding: 40px;
      position: relative;
      transition: all 0.4s ease;
      overflow: hidden;
    }

    .method-card:hover {
      background: rgba(123, 63, 212, 0.05);
      border-color: var(--purple-light);
      transform: translateY(-5px);
    }

    .method-number {
      font-size: 64px;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.03);
      position: absolute;
      top: 10px;
      right: 20px;
      transition: color 0.4s ease;
    }

    .method-card:hover .method-number {
      color: rgba(155, 106, 232, 0.1);
    }

    .method-card h3 {
      font-size: 20px;
      margin-bottom: 16px;
      color: var(--white);
    }

    .method-card p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.6;
    }

    /* ── PORTFOLIO ── */
    #portfolio {
      padding: 100px 0;
    }

    .portfolio-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
    }

    .portfolio-header h2 {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .portfolio-header p {
      color: var(--text-muted);
      max-width: 320px;
      text-align: right;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .portfolio-item {
      background: var(--deep);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 12px;
      min-height: 120px;
      transition: border-color 0.3s;
    }

    .portfolio-item:hover {
      border-color: var(--purple-light);
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(123, 63, 212, 0.2);
      background: rgba(255, 255, 255, 0.04);
    }

    .portfolio-item img {
      transition: all 0.4s ease;
    }

    .portfolio-item:hover img {
      transform: scale(1.1);
      filter: drop-shadow(0 0 8px rgba(123, 63, 212, 0.4));
    }

    .portfolio-item .client-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
    }

    .portfolio-item .client-sector {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* Imagens das Marcas no Portfólio */
    .client-logo-img {
      height: 40px;
      /* Tamanho padrão */
      width: auto;
      max-width: 100%;
      object-fit: contain;
      margin-bottom: 4px;
    }

    /* Card destaque (LTECV) aumenta a logo proporcionalmente */
    .portfolio-item.featured-card .client-logo-img {
      height: 55px;
      margin-bottom: 8px;
    }

    .client-logo {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 900;
      color: var(--purple-light);
      letter-spacing: -0.02em;
    }

    /* ── DEPOIMENTOS ── */
    #depoimentos {
      padding: 100px 0;
      background: var(--deep);
      position: relative;
      overflow: hidden;
    }

    #depoimentos::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(123, 63, 212, 0.4), transparent);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .testimonial-card {
      background: var(--black);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      position: relative;
      transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      background: #0f0f17;
      box-shadow:
        inset 0 0 60px rgba(123, 63, 212, 0.15),
        0 0 40px rgba(123, 63, 212, 0.08);
      border-color: transparent;
    }

    /* Glow roxo animado na borda */
    .border-beam {
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      padding: 1px;

      background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 30%,
        #7b3fD4, /* Usando a cor do design system */
        #a855f7,
        #c084fc,
        transparent 70%,
        transparent 100%
      );

      background-size: 300% 300%;
      animation: beamMove 6s linear infinite;

      opacity: 0.15;
      transition: opacity 0.4s ease;

      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;

      pointer-events: none;
    }

    .testimonial-card:hover .border-beam {
      opacity: 0.9;
    }

    @keyframes beamMove {
      0% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 200% 50%;
      }
    }

    .testimonial-card.highlight {
      border-color: rgba(123, 63, 212, 0.4);
      background: linear-gradient(135deg, #130F22 0%, var(--black) 100%);
    }

    .testimonial-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 20px;
      color: var(--purple-mid);
      font-size: 14px;
    }

    .testimonial-text {
      font-size: 15px;
      line-height: 1.75;
      color: rgba(248, 245, 255, 0.85);
      margin-bottom: 28px;
      font-style: italic;
    }

    .testimonial-text::before {
      content: '"';
      color: var(--purple-mid);
      font-size: 24px;
      line-height: 0;
      vertical-align: -8px;
      margin-right: 4px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple-dark), var(--purple));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
      border: 2px solid rgba(123, 63, 212, 0.3);
    }

    .author-info strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
    }

    .author-info span {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* ── CTA ── */
    #cta {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-glow {
      position: absolute;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(123, 63, 212, 0.2) 0%, transparent 65%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      border-radius: 50%;
    }

    .cta-inner {
      position: relative;
      z-index: 2;
    }

    .cta-eyebrow {
      margin-bottom: 24px;
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    .cta-title em {
      font-style: italic;
      color: var(--purple-mid);
    }

    .cta-sub {
      color: var(--text-muted);
      font-size: 18px;
      line-height: 1.65;
      max-width: 520px;
      margin: 0 auto 48px;
    }

    .cta-form {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      max-width: 520px;
      margin: 0 auto;
    }

    .cta-input {
      flex: 1;
      min-width: 220px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 100px;
      padding: 14px 22px;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
    }

    .cta-input::placeholder {
      color: var(--text-muted);
    }

    .cta-input:focus {
      border-color: rgba(123, 63, 212, 0.5);
    }

    .cta-note {
      margin-top: 16px;
      font-size: 12px;
      color: var(--text-muted);
    }

    /* ── FOOTER ── */
    footer {
      padding: 80px 0 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
      background: linear-gradient(to top, rgba(123, 63, 212, 0.08) 0%, transparent 100%);
    }

    footer::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--purple-mid), transparent);
      filter: blur(2px);
      opacity: 0.4;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    /* Estilização da Logo no Footer */
    .footer-logo {
      display: inline-block;
      text-decoration: none;
    }

    .footer-logo-img {
      height: 60px;
      /* Um pouco maior no rodapé */
      width: auto;
      opacity: 0.9;
      transition: opacity 0.3s ease;
    }

    .footer-logo-img:hover {
      opacity: 1;
    }

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .footer-links a {
      color: var(--text-muted);
      font-size: 13px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--white);
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(168, 155, 194, 0.5);
    }

    /* ── DECORATIVE LINE ── */
    .section-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(123, 63, 212, 0.3), transparent);
      margin: 0;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .about-floating {
      animation: float 4s ease-in-out infinite;
    }



    /* ── FAQ ── */
    #faq {
      padding: 140px 0;
      position: relative;
    }

    .faq-accordion {
      max-width: 1000px;
      margin: 80px auto 0;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid transparent; /* Alterado de rgba(255, 255, 255, 0.08) para evitar clipping da beam */
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      backdrop-filter: blur(30px); /* Glassmorphism Blur */
      -webkit-backdrop-filter: blur(30px);
    }

    .faq-item:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(123, 63, 212, 0.3);
      transform: translateY(-4px);
    }

    .faq-item.active {
      background: rgba(123, 63, 212, 0.08);
      border: 2px solid transparent; /* Tornar transparente para que a border-beam apareça */
      box-shadow: 0 30px 100px rgba(123, 63, 212, 0.4);
      animation: shadowPulse 4s infinite alternate; /* Sombra que muda de cor */
    }

    @keyframes shadowPulse {
      0% { box-shadow: 0 30px 100px rgba(123, 63, 212, 0.3); }
      100% { box-shadow: 0 30px 100px rgba(196, 160, 245, 0.5); }
    }

    .faq-question {
      padding: 40px 48px; /* Caixas maiores */
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
      position: relative;
      z-index: 2; /* Acima do numeral */
    }

    .faq-question h3 {
      font-size: 22px; /* Fonte levemente maior */
      font-weight: 600;
      color: var(--white);
      transition: color 0.3s ease;
      line-height: 1.4;
      padding-right: 32px;
    }

    .faq-item.active .faq-question h3 {
      color: var(--white);
    }

    .faq-icon {
      font-size: 32px;
      color: var(--text-muted);
      transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      color: var(--purple-light);
    }

    .faq-answer {
      height: 0;
      overflow: hidden;
      transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 2; /* Acima do numeral */
    }

    .faq-answer-content {
      padding: 0 48px 48px;
      color: var(--text-muted);
      font-size: 18px;
      line-height: 1.8;
      max-width: 900px;
    }

    .faq-item .border-beam {
      opacity: 0;
      inset: 0; /* Alterado de -1px para 0 para não ser cortado pelo overflow:hidden */
      padding: 1px;
      background: linear-gradient(
        90deg,
        transparent 0%,
        var(--purple) 50%,
        var(--purple-light) 100%
      );
      background-size: 200% 100%;
      animation: faqBeamMove 3s linear infinite; /* Usando keyframes específicos para o FAQ */
      transition: opacity 0.5s ease;
    }

    .faq-item:hover .border-beam {
      opacity: 0.4;
    }

    .faq-item.active .border-beam {
      opacity: 1;
      padding: 2px; /* Aumentar a espessura da beam quando ativo */
    }

    /* Numeral Grande ao Lado Direito */
    .faq-item::after {
      content: attr(data-number);
      position: absolute;
      top: 50%;
      right: 20px; /* Ajustado para um numeral maior */
      transform: translateY(-50%);
      font-family: var(--font-display);
      font-size: 400px; /* Gigante conforme solicitado */
      font-weight: 900;
      color: #43009d; /* Cor específica solicitada */
      opacity: 0;
      pointer-events: none;
      transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 0;
      filter: blur(20px);
    }

    .faq-item.active::after {
      opacity: 0.15; /* Sutil mas presente */
      right: 40px;
      filter: blur(0);
    }

    @keyframes faqBeamMove {
      0% { background-position: -200% 0%; }
      100% { background-position: 200% 0%; }
    }

    /* ── EQUIPE ── */
    #equipe {
      padding: 100px 0;
      position: relative;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      justify-content: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .team-card {
      background: var(--deep);
      border-radius: var(--radius-lg);
      padding: 24px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      opacity: 0;
      transform: translateY(30px);
    }

    .team-image-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 1;
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 24px;
      background: var(--black);
    }

    .team-image-wrapper::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--purple-dark);
      mix-blend-mode: color;
      opacity: 0.4;
      transition: opacity 0.6s ease;
      pointer-events: none;
    }

    .team-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) brightness(0.9) contrast(1.1);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .team-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(123, 63, 212, 0.7), transparent);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 2;
    }

    .team-overlay .material-symbols-outlined {
      font-size: 48px;
      color: var(--white);
      transform: translateY(20px);
      transition: transform 0.4s ease;
    }

    .team-card:hover {
      transform: translateY(-10px);
      border-color: rgba(123, 63, 212, 0.3);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    }

    .team-card:hover .team-img {
      filter: grayscale(0%) brightness(1) contrast(1);
      transform: scale(1.08);
    }

    .team-card:hover .team-image-wrapper::after {
      opacity: 0;
    }

    .team-card:hover .team-overlay {
      opacity: 1;
    }

    .team-card:hover .team-overlay .material-symbols-outlined {
      transform: translateY(0);
    }

    .team-info h3 {
      font-family: var(--font-display);
      font-size: 24px;
      margin-bottom: 8px;
    }

    .team-role {
      color: var(--purple-light);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* ── MOBILE MENU (OVERLAY & BTN) ── */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 1001; /* Above overlay */
      position: relative;
    }

    .hamburger-line {
      width: 100%;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger-btn.active .hamburger-line:nth-child(1) {
      transform: translateY(9.5px) rotate(45deg);
    }
    .hamburger-btn.active .hamburger-line:nth-child(2) {
      opacity: 0;
    }
    .hamburger-btn.active .hamburger-line:nth-child(3) {
      transform: translateY(-9.5px) rotate(-45deg);
    }

    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(8, 7, 13, 0.95);
      backdrop-filter: blur(15px);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .mobile-nav-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-nav-links {
      list-style: none;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .mobile-nav-links a {
      color: var(--white);
      font-size: 24px;
      font-family: var(--font-display);
      text-decoration: none;
      font-weight: 700;
      transition: color 0.2s;
    }

    .mobile-nav-links a:hover {
      color: var(--purple-light);
    }

    .mobile-nav-links a.nav-cta {
      font-family: var(--font-body);
      font-size: 16px;
      display: inline-block;
      margin-top: 16px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger-btn {
        display: flex;
      }

      #hero.hero-scroll-wrapper {
        height: auto;
      }

      .hero-sticky-container {
        position: relative;
        height: auto;
        padding: 100px 0 60px;
      }

      .hero-visual {
        display: none; /* Esconder visual canvas no mobile */
      }

      .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
      }

      #hero-canvas {
        max-width: 100%;
        margin-top: 20px;
      }

      .hero-visual {
        margin-top: 32px;
      }

      .pain-grid {
        grid-template-columns: 1fr;
      }

      .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .portfolio-header p {
        text-align: left;
      }

      .hero-proof {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-form {
        flex-direction: column;
      }

      .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }

    /* ── WHATSAPP FLOATING ── */
    .wa-btn {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: float 3s ease-in-out infinite;
    }

    .wa-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    }

    .wa-btn svg {
      width: 28px;
      height: 28px;
      fill: white;
    }

    </style>