
    @font-face {
      font-display: swap;
      font-family: Inter;
      font-style: normal;
      font-weight: 400;
      src: url("../fonts/inter-400_72666dc606d6.woff2") format("woff2")
    }

    @font-face {
      font-display: swap;
      font-family: Inter;
      font-style: normal;
      font-weight: 500;
      src: url("../fonts/Inter-Medium_8c121852ac4e.woff2") format("woff2")
    }

    @font-face {
      font-display: swap;
      font-family: JetBrains Mono;
      font-style: normal;
      src: url("../fonts/JetBrainsMono-Regular_e6a6d620c66d.woff2") format("woff2")
    }
  

    :root {
      --bg-page: #0A0A0A;
      --bg-card: #141414;
      --bg-elevated: #1E1E1E;
      --bg-hover: #313131;
      --glass: rgba(255, 255, 255, .08);
      --glass-hover: rgba(255, 255, 255, .16);
      --text-primary: #ffffff;
      --text-secondary: #A7A7A7;
      --text-muted: #7C7C7C;
      --accent: #ffd600;
      --accent-dim: rgba(255, 214, 0, .12);
      --accent-soft: rgba(255, 214, 0, .24);
      --border: rgba(255, 255, 255, .08);
      --border-ghost: rgba(255, 255, 255, .24);
      --radius: 8px;
      --max-w: 1512px;
      --pad-desktop: 124px;
      --pad-tablet: 64px;
      --pad-mobile: 16px;
    }

    * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent
    }

    html {
      background: var(--bg-page);
      overflow-x: hidden;
      scroll-behavior: smooth
    }

    body {
      color: var(--text-primary);
      font-family: Inter, -apple-system, system-ui, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      margin: 0;
      padding: 0;
      font-feature-settings: 'liga' on;
      font-size: 16px;
      line-height: 1.5;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
      margin: 0;
      padding: 0
    }

    a {
      color: inherit;
      outline: none;
      text-decoration: none
    }

    button,
    input,
    textarea,
    select {
      -webkit-appearance: none;
      appearance: none;
      font-family: inherit
    }

    ul,
    ol {
      padding: 0;
      margin: 0;
      list-style: none
    }

    img {
      display: block;
      max-width: 100%
    }
  

    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      padding: 0 var(--pad-desktop);
      background: rgba(10, 10, 10, .72);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background .3s, border-color .3s;
    }

    .navbar.scrolled {
      background: rgba(10, 10, 10, .92);
      border-color: rgba(255, 255, 255, .12)
    }

    @media(max-width:1280px) {
      .navbar {
        padding: 0 var(--pad-tablet)
      }
    }

    @media(max-width:799px) {
      .navbar {
        padding: 0 var(--pad-mobile);
        height: 64px
      }
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0
    }

    .navbar-logo img {
      height: 32px;
      width: auto
    }

    .navbar-logo span {
      font-size: 18px;
      font-weight: 500;
      letter-spacing: -.5px;
      color: var(--text-primary);
    }

    @media(max-width:799px) {
      .navbar-logo span {
        display: none
      }
    }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 32px
    }

    @media(max-width:899px) {
      .navbar-links {
        display: none
      }
    }

    .navbar-links a {
      font-size: 14px;
      font-weight: 500;
      line-height: 18px;
      color: var(--text-secondary);
      transition: color .2s;
      position: relative;
    }

    .navbar-links a::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s cubic-bezier(.4, 0, .2, 1);
    }

    .navbar-links a:hover {
      color: var(--text-primary)
    }

    .navbar-links a:hover::after {
      transform: scaleX(1)
    }

    .navbar-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: var(--bg-page);
      font-size: 14px;
      font-weight: 500;
      line-height: 18px;
      padding: 10px 20px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
      white-space: nowrap;
    }

    .navbar-cta:hover {
      background: #ffe033;
      transform: translateY(-1px);
      box-shadow: 0 4px 24px rgba(255, 214, 0, .25);
    }

    /* Mobile menu toggle */
    .navbar-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-primary);
      cursor: pointer;
      padding: 8px
    }

    @media(max-width:899px) {
      .navbar-toggle {
        display: flex
      }
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 99;
      background: rgba(10, 10, 10, .96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 32px var(--pad-mobile);
      gap: 8px;
    }

    .mobile-menu.open {
      display: flex
    }

    .mobile-menu a {
      font-size: 20px;
      font-weight: 500;
      line-height: 28px;
      color: var(--text-secondary);
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      transition: color .2s;
    }

    .mobile-menu a:hover {
      color: var(--text-primary)
    }

    .mobile-menu .navbar-cta {
      margin-top: 16px;
      text-align: center;
      justify-content: center;
      width: 100%
    }
  

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Background layers */
    /* Background layers enabled for all screens */
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .hero-bg picture,
    .hero-bg img,
    .hero-bg video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-bg picture,
    .hero-bg img {
      z-index: 1;
    }

    .hero-bg video {
      z-index: 2;
      transition: opacity .5s ease-in-out;
    }

    /* Fading gradients */
    .hero-fade-top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 180px;
      z-index: 3;
      background: linear-gradient(180deg, var(--bg-page) 0%, rgba(10, 10, 10, 0) 100%);
    }

    .hero-fade-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 240px;
      z-index: 3;
      background: linear-gradient(0deg, var(--bg-page) 0%, rgba(10, 10, 10, 0) 100%);
    }

    .hero-fade-left {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 40%;
      z-index: 3;
      background: linear-gradient(90deg, rgba(10, 10, 10, .85) 0%, rgba(10, 10, 10, .4) 50%, rgba(10, 10, 10, 0) 100%);
    }

    @media(max-width:799px) {
      .hero-fade-left { width: 100%; opacity: 0.8; background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%); }
    }

    /* Accent glow */
    .hero-glow {
      position: absolute;
      top: 30%;
      left: -10%;
      width: 600px;
      height: 600px;
      z-index: 2;
      background: radial-gradient(circle, rgba(255, 214, 0, .06) 0%, transparent 70%);
      filter: blur(80px);
      pointer-events: none;
      animation: pulseGlow 6s ease-in-out infinite alternate;
    }

    @keyframes pulseGlow {
      0% {
        opacity: .4;
        transform: scale(1)
      }

      100% {
        opacity: .8;
        transform: scale(1.15)
      }
    }

    /* Content */
    .hero-content {
      position: relative;
      z-index: 4;
      margin: 0 auto;
      max-width: var(--max-w);
      width: 100%;
      padding: 0 var(--pad-desktop);
      padding-top: 140px;
      padding-bottom: 96px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    @media(max-width:1280px) {
      .hero-content {
        padding: 120px var(--pad-tablet) 80px
      }
    }

    @media(max-width:799px) {
      .hero-content {
        padding: 100px var(--pad-mobile) 64px
      }
    }

    /* Kicker label */
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1px;
      line-height: 12px;
      text-transform: uppercase;
      color: var(--accent);
      animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) both;
      animation-delay: .1s;
    }

    .hero-kicker-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    /* Heading */
    .hero-h1 {
      font-family: Inter, sans-serif;
      font-weight: 500;
      letter-spacing: -2.5px;
      font-size: 64px;
      line-height: 72px;
      max-width: 640px;
      text-wrap: balance;
      animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) both;
      animation-delay: .2s;
    }

    .hero-h1 .accent {
      color: var(--accent)
    }

    @media(max-width:1280px) {
      .hero-h1 {
        font-size: 48px;
        line-height: 56px;
        letter-spacing: -1.5px;
        max-width: 560px
      }
    }

    @media(max-width:799px) {
      .hero-h1 {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -.75px;
        max-width: 100%
      }
    }

    /* Paragraph */
    .hero-p {
      font-size: 20px;
      font-weight: 400;
      line-height: 32px;
      color: var(--text-secondary);
      max-width: 480px;
      text-wrap: pretty;
      animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) both;
      animation-delay: .35s;
    }

    @media(max-width:1280px) {
      .hero-p {
        font-size: 18px;
        line-height: 28px
      }
    }

    @media(max-width:799px) {
      .hero-p {
        font-size: 16px;
        line-height: 26px;
        max-width: 100%
      }
    }

    /* CTA row */
    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) both;
      animation-delay: .5s;
    }

    /* Fade-up animation */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* Buttons */
    .btn-accent {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: var(--accent);
      color: var(--bg-page);
      font-size: 15px;
      font-weight: 500;
      line-height: 20px;
      padding: 14px 28px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .25s;
      box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
      white-space: nowrap;
      text-decoration: none;
    }

    .btn-accent:hover {
      background: #ffe033;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255, 214, 0, .3);
    }

    .btn-accent svg {
      transition: transform .2s
    }

    .btn-accent:hover svg {
      transform: translateX(3px)
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: var(--glass);
      color: var(--text-primary);
      border: 1px solid var(--border-ghost);
      font-size: 15px;
      font-weight: 500;
      line-height: 20px;
      padding: 14px 28px;
      border-radius: var(--radius);
      cursor: pointer;
      transition: background .2s, border-color .2s;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      white-space: nowrap;
      text-decoration: none;
    }

    .btn-ghost:hover {
      background: var(--bg-hover);
      border-color: rgba(255, 255, 255, .32)
    }
  

    .trust-bar {
      position: relative;
      z-index: 5;
      border-top: 1px solid var(--border);
      background: var(--bg-page);
    }

    .trust-bar-inner {
      margin: 0 auto;
      max-width: var(--max-w);
      padding: 48px var(--pad-desktop);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

    @media(max-width:1280px) {
      .trust-bar-inner {
        padding: 40px var(--pad-tablet)
      }
    }

    @media(max-width:799px) {
      .trust-bar-inner {
        padding: 32px var(--pad-mobile)
      }
    }

    .trust-bar-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1px;
      line-height: 12px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .trust-logos-track {
      display: flex;
      align-items: center;
      gap: 64px;
      animation: scrollLogos 35s linear infinite;
      width: max-content;
    }

    @keyframes scrollLogos {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .trust-logos-overflow {
      overflow: hidden;
      width: 100%;
      mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .logo-item {
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: .7;
      transition: opacity .3s, transform .3s;
    }

    .logo-item:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    .logo-item img {
      height: 100%;
      width: auto;
      max-width: 200px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: filter .3s ease;
    }

    .logo-item:hover img {
      filter: none;
    }

    /* ════════════════════════════════════════════════════════ */
    /* SERVICES SECTION                                       */
    /* ════════════════════════════════════════════════════════ */
    .services-section {
      background-color: #0A0A0A;
      background-image: 
        radial-gradient(circle at center, transparent 0%, #0A0A0A 100%),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 100% 100%, 48px 48px, 48px 48px;
      padding: 200px 0 120px 0;
      position: relative;
      overflow: hidden;
      border-top: none;
    }

    .services-inner {
      margin: 0 auto;
      max-width: var(--max-w);
      padding: 0 var(--pad-desktop);
      position: relative;
      z-index: 2;
    }

    @media(max-width:799px) {
      .services-inner { padding: 0 var(--pad-mobile); }
      .services-section { padding: 80px 0; }
    }

    /* ════════════════════════════════════════════════════════ */
    /* ABOUT SECTION                                          */
    /* ════════════════════════════════════════════════════════ */
    .about-sidebar {
      position: sticky;
      top: 120px;
      height: fit-content;
    }

    .about-kicker {
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      color: var(--accent);
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .about-title {
      font-size: 40px;
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -2px;
      color: var(--text-primary);
      margin-bottom: 32px;
    }

    .about-image-placeholder {
      width: 100%;
      height: 380px;
      background: linear-gradient(135deg, #141414 0%, #0A0A0A 100%);
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-top: 40px;
      position: relative;
    }

    .about-image-placeholder::after {
      content: "Espaço para Imagem";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: #313131;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .services-header {
      max-width: 800px;
      margin-bottom: 80px;
    }

    .services-kicker {
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .services-title {
      font-size: 48px;
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -2px;
      color: var(--text-primary);
      margin-bottom: 32px;
    }

    @media(max-width:799px) {
      .services-title { font-size: 32px; letter-spacing: -1px; }
    }

    .services-nav-buttons {
      display: none;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      justify-content: space-between;
      transform: translateY(-50%);
      z-index: 10;
      pointer-events: none;
      padding: 0 40px;
    }

    @media(min-width: 1024px) {
      .services-nav-buttons {
        display: flex;
      }
    }

    .services-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(20, 20, 20, 0.8);
      border: 1px solid var(--border);
      color: var(--text-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      transition: all .3s ease;
      backdrop-filter: blur(8px);
    }

    .services-btn:hover {
      background: var(--text-primary);
      color: #000;
      border-color: var(--text-primary);
    }

    .services-slider-wrap {
      width: 100%;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
      padding: 40px 0;
      position: relative;
    }

    .services-track {
      display: flex;
      width: max-content;
      gap: 32px;
      padding: 0 16px;
      will-change: transform;
    }

    /* Design System Card Component */
    .service-card {
      background: #141414;
      border: 1px solid #1E1E1E;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      width: 380px;
      flex-shrink: 0;
      transition: border-color .3s, transform .3s;
    }

    @media(max-width:799px) {
      .service-card { width: 300px; }
      .services-track { animation-duration: 40s; }
    }

    .service-card:hover {
      border-color: var(--accent);
      transform: translateY(-4px);
    }

    .service-card-media {
      height: 200px;
      background: linear-gradient(180deg, #141414 40%, #0A0A0A 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid #1E1E1E;
      position: relative;
    }

    .service-card-media::after {
      content: "Espaço para Imagem";
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #313131;
    }

    .service-card-content {
      padding: 32px 24px;
    }

    .service-card-title {
      font-size: 20px;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -.25px;
      color: var(--text-primary);
      margin-bottom: 12px;
    }

    .service-card-p {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.6;
      color: var(--text-secondary);
    }

    @media(max-width:799px) {
      .logo-item {
        height: 42px;
      }
      .trust-logos-track {
        gap: 40px;
        animation-duration: 25s;
      }
    }
  

    .stats-strip {
      border-top: 1px solid var(--border);
      background: var(--bg-card);
    }

    .stats-strip-inner {
      margin: 0 auto;
      max-width: var(--max-w);
      padding: 56px var(--pad-desktop);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    @media(max-width:1280px) {
      .stats-strip-inner {
        padding: 48px var(--pad-tablet);
        gap: 24px
      }
    }

    @media(max-width:799px) {
      .stats-strip-inner {
        padding: 40px var(--pad-mobile);
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
      }
    }

    .stat-item {
      text-align: center
    }

    .stat-number {
      font-family: Inter, sans-serif;
      font-size: 48px;
      font-weight: 500;
      letter-spacing: -2px;
      line-height: 56px;
      color: var(--accent);
      margin-bottom: 8px;
    }

    @media(max-width:799px) {
      .stat-number {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -1px
      }
    }

    .stat-label {
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 22px;
      color: var(--text-secondary);
    }
  

    .portfolio-section {
      position: relative;
      background: var(--bg-page);
      padding: 100px 0 80px;
      overflow: hidden;
    }

    .portfolio-header {
      text-align: center;
      margin: 0 auto 64px;
      max-width: var(--max-w);
      padding: 0 var(--pad-desktop);
    }

    @media(max-width:1280px) {
      .portfolio-header {
        padding: 0 var(--pad-tablet)
      }
    }

    @media(max-width:799px) {
      .portfolio-header {
        padding: 0 var(--pad-mobile)
      }
    }

    /* ════════════════════════════════════════════════════════ */
    /* ABOUT SECTION                                            */
    /* ════════════════════════════════════════════════════════ */
    .about-section {
      background: var(--bg-card);
      padding: 120px 0;
      border-top: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .about-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 250px; /* Aumentado para uma transição mais longa e suave */
      background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0) 0%, 
        rgba(10, 10, 10, 0.05) 15%, 
        rgba(10, 10, 10, 0.15) 30%, 
        rgba(10, 10, 10, 0.3) 45%, 
        rgba(10, 10, 10, 0.5) 60%, 
        rgba(10, 10, 10, 0.75) 80%, 
        rgba(10, 10, 10, 1) 100%
      );
      pointer-events: none;
      z-index: 1;
    }

    .about-inner {
      margin: 0 auto;
      max-width: var(--max-w);
      padding: 0 var(--pad-desktop);
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 64px;
    }

    @media(max-width:1280px) {
      .about-inner { padding: 0 var(--pad-tablet); gap: 40px; }
    }

    @media(max-width:990px) {
      .about-inner { display: flex; flex-direction: column; gap: 40px; }
      .about-sidebar { display: contents; }
      .about-main { order: 2; flex: 1; }
      .about-kicker, .about-title { order: 1; position: static; }
      .about-image-placeholder { order: 3; margin-top: 20px; height: 320px; }
    }

    @media(max-width:799px) {
      .about-inner { padding: 0 var(--pad-mobile); }
    }

    .about-sidebar {
      grid-column: 1 / span 4;
    }

    .about-main {
      grid-column: 6 / span 7;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .about-kicker {
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .about-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
    }

    .about-title {
      font-size: 48px;
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -2px;
      margin-bottom: 32px;
    }

    @media(max-width:799px) {
      .about-title { font-size: 32px; letter-spacing: -1px; }
    }

    .about-p {
      font-size: 18px;
      line-height: 1.6;
      color: var(--text-secondary);
      max-width: 600px;
    }

    .about-p strong {
      color: var(--text-primary);
      font-weight: 500;
    }

    .about-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 16px;
    }

    .about-list-item {
      padding: 16px 20px;
      background: var(--bg-hover);
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 12px;
      transition: border-color .3s, transform .3s;
    }

    @media(max-width:799px) {
      .about-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .about-list-item {
        padding: 12px 16px;
        font-size: 11px;
        gap: 8px;
        height: 100%;
      }
      .about-list-item svg {
        width: 14px;
        height: 14px;
      }
    }

    .about-list-item:hover {
      border-color: var(--accent);
      transform: translateY(-2px);
    }

    .about-list-item svg {
      color: var(--accent);
      flex-shrink: 0;
    }

    .about-highlight {
      padding: 40px;
      background: linear-gradient(135deg, var(--bg-hover) 0%, var(--bg-elevated) 100%);
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-top: 16px;
    }

    .about-highlight p {
      font-size: 20px;
      font-weight: 500;
      line-height: 1.4;
      color: var(--text-primary);
      margin-bottom: 0;
    }

    .about-deco-glow {
      position: absolute;
      top: -10%;
      right: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 214, 0, 0.04) 0%, transparent 70%);
      filter: blur(60px);
      pointer-events: none;
    }

    /* ════════════════════════════════════════════════════════ */
    /* TESTIMONIALS SECTION                                     */
    /* ════════════════════════════════════════════════════════ */
    .testimonial-section {
      background-color: #0A0A0A;
      background-image: 
        radial-gradient(circle at center, transparent 0%, #0A0A0A 100%),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 100% 100%, 48px 48px, 48px 48px;
      padding: 160px 0 200px 0;
      position: relative;
      overflow: hidden;
      border-top: none;
    }

    .testimonial-inner {
      margin: 0 auto;
      max-width: 900px;
      padding: 0 var(--pad-desktop);
      position: relative;
      z-index: 2;
    }

    @media(max-width:799px) {
      .testimonial-inner { padding: 0 var(--pad-mobile); }
      .testimonial-section { padding: 100px 0 140px 0; }
    }

    .testimonial-quote-wrap {
      display: flex;
      gap: 28px;
      align-items: flex-start;
      margin-bottom: 64px;
    }

    .testimonial-avatar {
      width: 64px;
      height: 64px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--bg-hover);
      border: 1px solid var(--border);
    }

    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testimonial-text {
      font-size: 32px;
      font-weight: 500;
      line-height: 1.35;
      letter-spacing: -0.5px;
      color: var(--text-primary);
      margin: 0;
    }

    @media(max-width:799px) {
      .testimonial-text { font-size: 24px; }
      .testimonial-quote-wrap { gap: 16px; }
      .testimonial-avatar { width: 48px; height: 48px; }
    }

    .testimonial-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 32px;
      gap: 20px;
      flex-wrap: wrap;
    }

    .testimonial-brand {
      height: 24px;
      display: flex;
      align-items: center;
    }

    .testimonial-brand img {
      height: 100%;
      width: auto;
      opacity: 0.9;
    }

    .testimonial-divider {
      width: 1px;
      height: 48px;
      background: rgba(255, 255, 255, 0.1);
      margin: 0 12px;
    }

    @media(max-width:599px) {
      .testimonial-divider { display: none; }
    }

    .testimonial-meta {
      display: flex;
      align-items: center;
      flex-grow: 1;
    }

    .testimonial-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .testimonial-name {
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-primary);
    }

    .testimonial-role {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .testimonial-controls {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .testimonial-nums {
      display: flex;
      gap: 16px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      color: var(--text-muted);
    }

    .testimonial-nums span.active {
      color: var(--text-primary);
      position: relative;
    }

    .testimonial-nums span.active::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--text-primary);
    }

    .testimonial-progress-track {
      width: 80px;
      height: 2px;
      background: rgba(255, 255, 255, 0.1);
      position: relative;
    }

    .testimonial-progress-thumb {
      position: absolute;
      top: 0;
      left: 60%; /* Exemplo de progresso na 3a posição */
      width: 8px;
      height: 8px;
      background: var(--text-primary);
      border-radius: 1px;
      transform: translateY(-40%);
    }

    .portfolio-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1px;
      line-height: 12px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .portfolio-kicker-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    .portfolio-title {
      font-family: Inter, sans-serif;
      font-weight: 500;
      font-size: 48px;
      line-height: 56px;
      letter-spacing: -2px;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    @media(max-width:799px) {
      .portfolio-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -1px;
      }
    }

    .portfolio-subtitle {
      font-size: 18px;
      line-height: 28px;
      color: var(--text-secondary);
      max-width: 560px;
      margin: 0 auto;
    }

    @media(max-width:799px) {
      .portfolio-subtitle {
        font-size: 16px;
        line-height: 26px;
      }
    }

    /* ─── Rows ─── */
    .portfolio-row {
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
      width: 100%;
      /* Centraliza: expande do centro para fora */
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }

    @media(max-width:799px) {
      .portfolio-row {
        gap: 6px;
        margin-bottom: 6px;
      }
    }

    /* wrapper extra já não é necessário — itens direto na row */
    .portfolio-items {
      display: contents;
    }

    /* ─── Item ─── */
    .portfolio-item {
      position: relative;
      flex: 1 1 0%;
      min-width: 0;
      height: 320px;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
    }

    @media(max-width:1280px) {
      .portfolio-item {
        height: 260px;
      }
    }

    @media(max-width:799px) {
      .portfolio-item {
        height: 200px;
        border-radius: 6px;
      }
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .portfolio-item:hover img {
      transform: scale(1.06);
    }

    /* Overlay gradient */
    .portfolio-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0) 40%,
          rgba(0, 0, 0, .55) 100%);
      opacity: 0;
      transition: opacity .35s ease;
      pointer-events: none;
      border-radius: 10px;
    }

    .portfolio-item:hover::after {
      opacity: 1;
    }

    /* Label */
    .portfolio-item-label {
      position: absolute;
      bottom: 16px;
      left: 16px;
      right: 16px;
      z-index: 2;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .35s ease, transform .35s ease;
    }

    .portfolio-item:hover .portfolio-item-label {
      opacity: 1;
      transform: translateY(0);
    }

    .portfolio-item-name {
      font-family: Inter, sans-serif;
      font-weight: 500;
      font-size: 15px;
      line-height: 20px;
      color: #fff;
    }

    .portfolio-item-cat {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: .5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-top: 4px;
    }

    /* ════════════════════════════════════════════════════════ */
    /* METHODOLOGY SECTION                                      */
    /* ════════════════════════════════════════════════════════ */
    .method-section {
      background: #0A0A0A;
      padding: 160px 0;
      border-top: 1px solid var(--border);
      position: relative;
    }

    .method-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--pad-desktop);
    }

    .method-content {
      display: grid;
      grid-template-columns: 1fr 1.6fr; /* Split left (sidebar) and right (steps) */
      gap: 120px;
      align-items: start;
    }

    .method-sidebar {
      position: sticky;
      top: 140px;
      height: auto;
    }

    .method-kicker {
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
    }

    .method-desc {
      font-size: 18px;
      line-height: 1.6;
      color: var(--text-secondary);
      max-width: 440px;
    }

    .method-steps {
      display: flex;
      flex-direction: column;
    }

    .method-step {
      display: flex;
      gap: 48px;
      padding-bottom: 100px;
      position: relative;
    }

    /* Linha vertical conectando os passos */
    .method-step::before {
      content: "";
      position: absolute;
      left: 31px;
      top: 64px;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
    }

    .method-step:last-child {
      padding-bottom: 0;
    }

    .method-step:last-child::before {
      display: none;
    }

    .method-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #141414;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 18px;
      font-weight: 500;
      color: var(--text-primary);
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      transition: border-color .3s, color .3s;
    }

    .method-step:hover .method-num {
      border-color: var(--accent);
      color: var(--accent);
    }

    .method-text {
      padding-top: 14px;
    }

    .method-text h3 {
      font-size: 26px;
      font-weight: 500;
      line-height: 1.2;
      color: var(--text-primary);
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .method-text p {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: 580px;
    }

    @media(max-width:1100px) {
      .method-content {
        gap: 60px;
      }
      .method-title {
        font-size: 38px;
      }
    }

    @media(max-width:850px) {
      .method-section { padding: 100px 0; }
      .method-inner { padding: 0 var(--pad-mobile); }
      .method-content {
        grid-template-columns: 1fr;
        gap: 80px;
      }
      .method-sidebar {
        position: relative;
        top: 0;
      }
      .method-step {
        gap: 24px;
        padding-bottom: 60px;
      }
      .method-num {
        width: 48px;
        height: 48px;
        font-size: 14px;
      }
      .method-step::before {
        left: 23px;
        top: 48px;
      }
      .method-text h3 { font-size: 22px; }
    }
  
    /* ════════════════════════════════════════════════════════ */
    /* CONTACT SECTION                                         */
    /* ════════════════════════════════════════════════════════ */
    .contact-section {
      background: #0A0A0A;
      padding: 160px 0;
      border-top: 1px solid var(--border);
    }

    .contact-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--pad-desktop);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 120px;
    }

    .contact-kicker {
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      color: var(--accent);
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .contact-title {
      font-size: 48px;
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -2.5px;
      color: var(--text-primary);
      margin-bottom: 64px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 64px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      background: #141414;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 18px 24px;
      font-family: Inter, sans-serif;
      font-size: 15px;
      color: var(--text-primary);
      outline: none;
      transition: all .3s ease;
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 15px rgba(255, 214, 0, 0.05);
    }

    .contact-submit {
      width: fit-content;
      background: var(--text-primary);
      color: #000;
      border: none;
      padding: 20px 48px;
      font-weight: 600;
      font-size: 15px;
      border-radius: 4px;
      cursor: pointer;
      transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
      margin-top: 12px;
    }

    .contact-submit:hover {
      background: var(--accent);
      transform: translateY(-2px);
    }

    .contact-details {
      display: flex;
      gap: 64px;
      border-top: 1px solid var(--border);
      padding-top: 48px;
    }

    .contact-item-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .contact-item-value {
      font-size: 18px;
      font-weight: 500;
      color: var(--text-primary);
      text-decoration: none;
      transition: color .3s ease;
    }

    .contact-item-value:hover {
      color: var(--accent);
    }

    .contact-map {
      height: 700px;
      background: #111;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      position: relative;
    }

    .contact-map iframe {
      filter: grayscale(1) invert(0.9) contrast(1.2);
      opacity: 0.7;
      transition: all .6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .contact-map:hover iframe {
      filter: grayscale(0) invert(0) contrast(1);
      opacity: 1;
    }

    @media(max-width:1100px) {
      .contact-grid { gap: 60px; }
      .contact-title { font-size: 38px; }
    }

    @media(max-width:850px) {
      .contact-section { padding: 100px 0; }
      .contact-inner { padding: 0 var(--pad-mobile); }
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
      }
      .contact-map { height: 400px; order: -1; } /* Mapa em cima no mobile */
      .form-row { grid-template-columns: 1fr; }
      .contact-details { flex-direction: column; gap: 32px; }
    }
  
    /* Glow decorativo */
    .portfolio-glow {
      position: absolute;
      top: 50%;
      right: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 214, 0, .05) 0%, transparent 70%);
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
    }
  