    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #000000;
      --accent-1: #6366f1;
      --accent-2: #8B00FF;
      --accent-3: #00C2FF;
      --text: #ffffff;
      --muted: #a8b8cc;
      --glass-bg: rgba(255, 255, 255, 0.06);
      --glass-border: rgba(255, 255, 255, 0.12);
    }

    html,
    body {
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── Background (imagem estática + vídeo) ─── */
    #bg-image,
    #bg-video {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
      z-index: 0;
    }

    #bg-image {
      opacity: 0.45;
    }

    #bg-video {
      opacity: 0;
      /* começa invisível, GSAP faz crossfade */
    }

    /* ─── Page Layout ─── */
    .page {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* ─── Top Bar ─── */
    .top-bar-wrapper {
      position: fixed;
      top: 16px;
      left: 16px;
      right: 16px;
      z-index: 1000;
      display: flex;
      justify-content: center;
      pointer-events: none;

    }

    .top-bar {
      width: 100%;
      max-width: 1280px;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      pointer-events: all;
      background: rgba(8, 8, 20, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(99, 102, 241, 0.18);
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo img {
      height: 30px;
      width: auto;
      display: block;
    }

    /* Pill Navbar */
    .nav-pill {
      display: flex;
      align-items: center;
      gap: 2px;
      padding: 7px 10px;
      background: rgba(10, 10, 30, 0.70);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(99, 102, 241, 0.22);
      border-radius: 50px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-pill a {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 9px 20px;
      border-radius: 50px;
      font-size: 14.5px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }

    .nav-pill a:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-pill a.active {
      background: rgba(255, 255, 255, 0.10);
      color: #fff;
      font-weight: 600;
    }

    .nav-pill .nav-arrow {
      font-size: 11px;
      opacity: 0.6;
      display: inline-block;
      transition: transform 0.2s;
    }

    .nav-pill a:hover .nav-arrow {
      transform: rotate(180deg);
    }

    /* Contact Button */
    .btn-contact {
      padding: 11px 26px;
      background: var(--accent-1);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      box-shadow: 0 4px 24px rgba(99, 102, 241, 0.4);
    }

    .btn-contact:hover {
      background: var(--accent-2);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(99, 102, 241, 0.55);
    }

    /* ─── Hero ─── */
    .hero {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 24px;
      gap: 0;
      margin-top: 100px;
    }

    /* Badge */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 8px 8px 20px;
      background: rgba(15, 15, 40, 0.70);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(99, 102, 241, 0.30);
      border-radius: 50px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--muted);
      margin-bottom: 28px;

    }

    .badge-arrow {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--accent-1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
    }

    /* Headline */
    .headline {
      font-family: 'Syne', sans-serif;
      font-size: clamp(42px, 7vw, 80px);
      font-weight: 800;
      line-height: 1.06;
      letter-spacing: -2px;
      color: #fff;
      max-width: 760px;
      margin-bottom: 20px;
    }

    @keyframes line-draw {
      from {
        width: 0;
      }

      to {
        width: 100%;
      }
    }

    .reveal-container {
      overflow: hidden;
      display: inline-block;
    }

    .headline span {
      display: inline-block;
    }

    /* Subheadline */
    .subheadline {
      font-size: clamp(15px, 2vw, 18px);
      font-weight: 400;
      color: var(--muted);
      max-width: 480px;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    /* CTA Button */
    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 48px;
      background: var(--accent-1);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: -0.2px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      box-shadow: 0 4px 24px rgba(99, 102, 241, 0.4);
      margin-bottom: 18px;
    }

    .btn-cta:hover {
      background: var(--accent-2);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(99, 102, 241, 0.55);
    }

    .btn-cta:active {
      transform: scale(0.97);
    }


    /* ─── Hero Scroll Hint ─── */
    .hero-scroll-hint {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.35);
      transition: color 0.25s ease;
    }

    .hero-scroll-hint:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    .hero-scroll-mouse {
      width: 22px;
      height: 34px;
      border: 1.5px solid currentColor;
      border-radius: 12px;
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }

    .hero-scroll-wheel {
      width: 3px;
      height: 6px;
      background: currentColor;
      border-radius: 2px;
      animation: scroll-wheel 1.8s ease-in-out infinite;
    }

    @keyframes scroll-wheel {
      0% {
        transform: translateY(0);
        opacity: 1;
      }

      60% {
        transform: translateY(8px);
        opacity: 0;
      }

      61% {
        transform: translateY(0);
        opacity: 0;
      }

      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .hero-scroll-chevron {
      width: 16px;
      height: 16px;
      animation: chevron-bounce 1.8s ease-in-out infinite;
    }

    @keyframes chevron-bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(4px);
      }
    }

    /* ─── Project Modal CTA ─── */
    .project-cta-wrap {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 56px 24px 0;
    }

    .project-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 52px;
      border-radius: 50px;
      background: var(--accent-1);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 4px 32px rgba(99, 102, 241, 0.5);
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .project-cta-btn:hover {
      background: var(--accent-2);
      transform: translateY(-2px);
      box-shadow: 0 10px 40px rgba(99, 102, 241, 0.65);
    }

    /* ─── Keyframes ─── */
    @keyframes pulse {
      0% {
        transform: scale(0.8);
        opacity: 0.8;
      }

      70% {
        transform: scale(2.2);
        opacity: 0;
      }

      100% {
        transform: scale(0.8);
        opacity: 0;
      }
    }

    @keyframes beam {
      0% {
        transform: translateY(-100%);
        opacity: 0;
      }

      20% {
        opacity: 0.5;
      }

      50% {
        opacity: 0.2;
      }

      80% {
        opacity: 0.5;
      }

      100% {
        transform: translateY(100vh);
        opacity: 0;
      }
    }

    @keyframes spark {

      0%,
      100% {
        opacity: 0;
        transform: scale(0.5);
      }

      50% {
        opacity: 1;
        transform: scale(1.2);
      }
    }

    .dynamic-bg-wrapper {
      position: relative;
      overflow: hidden;
    }

    /* Grid de pontos */
    .dynamic-bg-wrapper::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.2px, transparent 1.2px);
      background-size: 28px 28px;
      z-index: 0;
      pointer-events: none;
    }

    /* Chuviscos / Sparks (camadas estáticas animadas) */
    .bg-sparks {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }

    .bg-spark {
      position: absolute;
      width: 2px;
      height: 2px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 0 10px #fff;
      animation: spark 3s ease-in-out infinite;
      opacity: 0;
    }

    /* Flashes de luz / Beams */
    .bg-beams {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }

    .bg-beam {
      position: absolute;
      width: 1px;
      height: 200px;
      background: linear-gradient(to bottom, transparent, var(--accent-1), transparent);
      animation: beam 8s linear infinite;
      opacity: 0;
    }

    /* ─── Testimonials Section ─── */
    .testimonials-section {
      position: relative;
      width: 100%;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 100px 0 80px;
      background: var(--bg);
      scroll-snap-align: start;
      overflow: hidden;
    }

    .testimonials-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 40% at 50% 20%, rgba(99, 102, 241, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 50% 90%, rgba(0, 194, 255, 0.05) 0%, transparent 60%);
      pointer-events: none;
    }


    .testimonials-header {
      text-align: center;
      margin-bottom: 56px;
      position: relative;
      z-index: 4;
      padding: 0 48px;
    }

    .testimonials-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--accent-1);
      margin-bottom: 14px;
      display: block;
    }

    .testimonials-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(34px, 5vw, 56px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .testimonials-sub {
      font-size: 15px;
      color: var(--muted);
    }

    /* Grid estático dos 3 depoimentos */
    .marquee-wrapper {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 48px;
      position: relative;
      z-index: 2;
    }

    .marquee-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      padding: 20px 0;
    }

    /* Card de depoimento */
    .testi-card {
      width: 100%;
      padding: 36px 32px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: border-color 0.3s, background 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }

    .testi-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .testi-card:hover {
      border-color: rgba(99, 102, 241, 0.3);
      background: rgba(99, 102, 241, 0.05);
      transform: translateY(-3px);
    }

    .testi-card:hover::before {
      opacity: 1;
    }

    /* Quote mark decorativo */
    .testi-quote-mark {
      font-family: 'Syne', sans-serif;
      font-size: 56px;
      line-height: 1;
      color: var(--accent-1);
      opacity: 0.25;
      position: absolute;
      top: 14px;
      right: 22px;
      font-weight: 800;
    }

    .testi-text {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.75;
      position: relative;
      z-index: 1;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
    }

    .testi-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .testi-avatar-img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      object-position: top;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .testi-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .testi-name {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      font-family: 'Syne', sans-serif;
    }

    .testi-role {
      font-size: 12px;
      color: var(--muted);
      font-weight: 400;
    }

    .testi-stars {
      display: flex;
      gap: 3px;
      margin-left: auto;
      align-self: flex-start;
      padding-top: 2px;
    }

    .testi-stars span {
      color: #6366f1;
      font-size: 13px;
    }

    @media (max-width: 860px) {
      .marquee-row {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
      }

      .marquee-wrapper {
        padding: 0 24px;
      }
    }

    /* ─── CTA Section ─── */
    .cta-section {
      position: relative;
      width: 100%;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-bottom: 120px;
      scroll-snap-align: start;
      overflow: hidden;
      background: #000;
    }

    .cta-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
      z-index: 0;
      opacity: 0.5;
    }

    .cta-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.55) 100%);
      z-index: 1;
    }

    .cta-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 24px;
      max-width: 820px;
    }

    .cta-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--accent-2);
      margin-bottom: 20px;
    }

    .cta-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(42px, 7vw, 82px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -2.5px;
      line-height: 1.04;
      margin-bottom: 20px;
    }

    .cta-sub {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.65;
      max-width: 480px;
      margin-bottom: 36px;
    }

    /* Pills de features */
    .cta-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 40px;
    }

    .cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 18px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.75);
    }

    .cta-pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #00C2FF;
      flex-shrink: 0;
      box-shadow: 0 0 6px rgba(19, 135, 180, 0.7);
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 52px;
      background: var(--accent-1);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      border: none;
      border-radius: 50px;
      text-decoration: none;
      cursor: none;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 32px rgba(99, 102, 241, 0.5);
    }

    .cta-btn:hover {
      background: var(--accent-2);
      transform: translateY(-2px);
      box-shadow: 0 10px 40px rgba(99, 102, 241, 0.65);
    }

    /* ─── Footer ─── */
    .site-footer {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(20px);
      padding: 24px 48px 18px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 20px;
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin: 0;
    }

    .footer-bottom {
      padding-top: 14px;
      display: flex;
      justify-content: center;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .footer-logo img {
      height: 28px;
      width: auto;
      opacity: 0.85;
      filter: brightness(0) invert(1);
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.25);
      font-weight: 400;
      letter-spacing: 0.01em;
    }

    .footer-socials {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: none;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }

    .footer-social-btn:hover {
      border-color: rgba(99, 102, 241, 0.55);
      background: rgba(99, 102, 241, 0.12);
      transform: translateY(-2px);
    }

    .footer-social-btn svg {
      width: 16px;
      height: 16px;
      fill: rgba(255, 255, 255, 0.55);
      transition: fill 0.2s;
    }

    .footer-social-btn:hover svg {
      fill: #fff;
    }

    @media (max-width: 600px) {
      .site-footer {
        padding: 20px 24px 14px;
      }

      .footer-social-btn {
        width: 36px;
        height: 36px;
      }

      .footer-logo img {
        height: 22px;
      }
    }

    /* ─── About Section ─── */
    .about-section {
      position: relative;
      width: 100%;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 48px 80px;
      background: var(--bg);
      scroll-snap-align: start;
      overflow: hidden;
    }

    .about-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 60% at 75% 50%, rgba(0, 194, 255, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 15% 60%, rgba(0, 194, 255, 0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
      max-width: 1200px;
      width: 100%;
      position: relative;
      z-index: 2;
    }

    /* ── Lado esquerdo ── */
    .about-left {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .about-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: #00C2FF;
      margin-bottom: 18px;
      display: block;
    }

    .about-heading {
      font-family: 'Syne', sans-serif;
      font-size: clamp(40px, 5.5vw, 68px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -2px;
      line-height: 1.05;
      margin-bottom: 28px;
    }

    .about-heading em {
      font-style: normal;
      color: #fff;
      -webkit-text-fill-color: #fff;
    }

    .about-bio {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.75;
      max-width: 540px;
      margin-bottom: 36px;
    }

    .about-bio p+p {
      margin-top: 14px;
    }

    /* Tags de skills */
    .about-skills {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 44px;
      width: fit-content;
    }

    .skill-tag {
      padding: 9px 20px;
      border-radius: 50px;
      border: 1px solid rgba(0, 194, 255, 0.3);
      background: rgba(0, 194, 255, 0.06);
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.65);
      letter-spacing: 0.3px;
      transition: border-color 0.25s, background 0.25s, color 0.25s;
      cursor: none;
      text-align: center;
      white-space: nowrap;
    }

    .skill-tag:hover {
      border-color: rgba(0, 194, 255, 0.65);
      background: rgba(0, 194, 255, 0.14);
      color: #fff;
    }

    /* Stats */
    .about-stats {
      display: flex;
      gap: 32px;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .stat-value {
      font-family: 'Syne', sans-serif;
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1;
    }

    .stat-value span {
      color: #00C2FF;
    }

    .stat-label {
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
    }

    .stat-divider {
      width: 1px;
      height: 40px;
      background: rgba(255, 255, 255, 0.08);
      align-self: center;
    }

    /* ── Lado direito — foto ── */
    .about-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .about-photo-wrap {
      position: relative;
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      cursor: none;
    }

    .about-photo-wrap img {
      width: 100%;
      display: block;
      border-radius: 20px;
      filter: grayscale(100%) contrast(1.05);
      transition: filter 0.65s ease;
    }

    .about-photo-wrap:hover img {
      filter: grayscale(0%) contrast(1);
    }

    /* Overlay glass no rodapé da foto */
    .photo-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 48px 24px 22px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
      border-radius: 0 0 20px 20px;
    }

    .photo-name {
      font-family: 'Syne', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .photo-role {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    /* Borda brilhante ao hover */
    .about-photo-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      border: 1px solid rgba(0, 194, 255, 0);
      transition: border-color 0.65s ease;
      pointer-events: none;
    }

    .about-photo-wrap:hover::after {
      border-color: rgba(0, 194, 255, 0.45);
    }

    @media (max-width: 960px) {
      .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-right {
        order: -1;
        max-width: 360px;
        margin: 0 auto;
        width: 100%;
      }

      .about-photo-wrap {
        max-height: 420px;
      }

      .about-photo-wrap img {
        height: 100%;
        object-fit: cover;
        object-position: top center;
      }

      .about-section {
        padding: 100px 20px 60px;
      }

      .about-skills {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
      }

      .skill-tag {
        font-size: 11px;
        padding: 8px 10px;
        white-space: normal;
        text-align: center;
      }
    }

    /* ─── Process Section ─── */
    .process-section {
      position: relative;
      width: 100%;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 100px 48px 80px;
      background: var(--bg);
      scroll-snap-align: start;
      overflow: hidden;
    }

    .process-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 45% at 50% 80%, rgba(0, 194, 255, 0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .process-header {
      text-align: center;
      margin-bottom: 52px;
      position: relative;
      z-index: 2;
    }

    .process-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: #00C2FF;
      margin-bottom: 14px;
      display: block;
    }

    .process-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -1.5px;
      line-height: 1.1;
    }

    /* Track de cards */
    .process-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      width: 100%;
      max-width: 1200px;
      position: relative;
      z-index: 2;
      height: 560px;
    }

    /* Card */
    .process-card {
      position: relative;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(255, 255, 255, 0.02);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      overflow: hidden;
      cursor: none;
      transition: border-color 0.5s ease, background 0.5s ease;
      display: flex;
      flex-direction: column;
      padding: 28px 28px 28px;
    }

    .process-card.active {
      border-color: rgba(0, 194, 255, 0.35);
      background: rgba(0, 194, 255, 0.06);
    }

    /* Linha cyan no topo quando ativo */
    .process-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, #00C2FF, rgba(0, 194, 255, 0.2));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .process-card.active::after {
      opacity: 1;
    }

    /* Topo: número + seta */
    .card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .card-num {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 1px;
      transition: color 0.4s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .card-num-icon {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .process-card.active .card-num {
      color: #00C2FF;
    }

    .card-arrow {
      color: rgba(255, 255, 255, 0.2);
      line-height: 1;
      transition: color 0.4s, transform 0.4s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .card-arrow svg {
      width: 20px;
      height: 20px;
    }

    .process-card.active .card-arrow {
      color: #00C2FF;
      transform: rotate(-45deg);
    }

    /* Título e descrição — visíveis só no ativo */
    .card-body {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.55s ease, opacity 0.4s ease;
    }

    .process-card.active .card-body {
      max-height: 220px;
      opacity: 1;
    }

    .card-step-title {
      font-family: 'Syne', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .card-step-desc {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
    }

    /* Área da imagem / visual central */
    .card-visual {
      flex: 1;
      border-radius: 12px;
      margin: 20px 0;
      overflow: hidden;
      position: relative;
      min-height: 0;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
      background: rgba(0, 194, 255, 0.04);
      border: 1px solid rgba(0, 194, 255, 0.12);
    }

    .process-card.active .card-visual {
      opacity: 1;
      transform: translateY(0);
    }

    /* Glow interno da visual */
    .card-visual-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-visual-glow {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 194, 255, 0.25) 0%, transparent 70%);
      position: absolute;
    }

    .card-visual svg {
      width: 72px;
      height: 72px;
      position: relative;
      z-index: 1;
      opacity: 0.7;
    }

    /* ── Animações dos ícones SVG ─────────────────────────── */

    /* Base: transform correto para SVG */
    .icon-ring-1,
    .icon-ring-2,
    .icon-dot,
    .icon-arrow {
      transform-box: fill-box;
      transform-origin: center;
    }

    /* CARD 1 — Crosshair: anéis girando + ping no centro */
    .icon-ring-1 {
      animation: svg-spin-cw 10s linear infinite;
    }

    .icon-ring-2 {
      animation: svg-spin-cw 16s linear infinite reverse;
    }

    .icon-dot {
      animation: svg-ping 2.8s ease-out infinite;
    }

    @keyframes svg-spin-cw {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes svg-ping {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      60% {
        transform: scale(2.6);
        opacity: 0;
      }

      61%,
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* CARD 2 — Monitor: dots piscam + linhas se escrevem */
    .icon-dot-a {
      animation: svg-blink 2.4s ease-in-out infinite 0s;
    }

    .icon-dot-b {
      animation: svg-blink 2.4s ease-in-out infinite 0.6s;
    }

    .icon-typeline-1 {
      stroke-dasharray: 24;
      stroke-dashoffset: 24;
      animation: svg-type-24 3.2s ease-in-out infinite 0.4s;
    }

    .icon-typeline-2 {
      stroke-dasharray: 16;
      stroke-dashoffset: 16;
      animation: svg-type-16 3.2s ease-in-out infinite 1s;
    }

    @keyframes svg-blink {

      0%,
      100% {
        opacity: 1;
      }

      40%,
      60% {
        opacity: 0.15;
      }
    }

    @keyframes svg-type-24 {

      0%,
      8% {
        stroke-dashoffset: 24;
      }

      50%,
      78% {
        stroke-dashoffset: 0;
      }

      100% {
        stroke-dashoffset: 24;
      }
    }

    @keyframes svg-type-16 {

      0%,
      8% {
        stroke-dashoffset: 16;
      }

      50%,
      78% {
        stroke-dashoffset: 0;
      }

      100% {
        stroke-dashoffset: 16;
      }
    }

    /* CARD 3 — Upload: seta flutua + barras de progresso preenchem */
    .icon-arrow {
      animation: svg-float 4.2s ease-in-out infinite;
    }

    .icon-prog-1 {
      stroke-dasharray: 12;
      stroke-dashoffset: 12;
      animation: svg-prog-12 5s ease-in-out infinite 0.8s;
    }

    .icon-prog-2 {
      stroke-dasharray: 8;
      stroke-dashoffset: 8;
      animation: svg-prog-8 5s ease-in-out infinite 1.8s;
    }

    @keyframes svg-float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-4px);
      }
    }

    @keyframes svg-prog-12 {

      0%,
      8% {
        stroke-dashoffset: 12;
        opacity: 0.3;
      }

      45%,
      75% {
        stroke-dashoffset: 0;
        opacity: 1;
      }

      100% {
        stroke-dashoffset: 12;
        opacity: 0.3;
      }
    }

    @keyframes svg-prog-8 {

      0%,
      8% {
        stroke-dashoffset: 8;
        opacity: 0.3;
      }

      45%,
      75% {
        stroke-dashoffset: 0;
        opacity: 1;
      }

      100% {
        stroke-dashoffset: 8;
        opacity: 0.3;
      }
    }

    /* Grade decorativa de pontos */
    .card-visual-dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(0, 194, 255, 0.18) 1px, transparent 1px);
      background-size: 24px 24px;
      opacity: 0.5;
    }

    /* Ícone inferior + label */
    .card-bottom {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: auto;
      padding-top: 16px;
    }

    .card-bottom-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(0, 194, 255, 0.08);
      border: 1px solid rgba(0, 194, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s;
    }

    .process-card.active .card-bottom-icon {
      background: rgba(0, 194, 255, 0.18);
    }

    .card-bottom-icon svg {
      width: 16px;
      height: 16px;
    }

    .card-bottom-label {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 1px;
      text-transform: lowercase;
      transition: color 0.4s;
    }

    .process-card.active .card-bottom-label {
      color: rgba(0, 194, 255, 0.8);
    }

    @media (max-width: 900px) {
      .process-track {
        grid-template-columns: 1fr;
        height: auto;
      }

      .process-card.active .card-visual {
        height: 180px;
      }

      .process-section {
        padding: 100px 20px 60px;
      }
    }

    /* Click hint pill — process cards */
    .process-card:not(.active)::before {
      content: '⌖ click';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, calc(-50% + 10px));
      padding: 7px 18px;
      border-radius: 50px;
      background: rgba(0, 194, 255, 0.07);
      border: 1px solid rgba(0, 194, 255, 0.28);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: rgba(0, 194, 255, 0.65);
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.25s ease, transform 0.25s ease;
      z-index: 3;
    }

    .process-card:not(.active):hover::before {
      opacity: 1;
      transform: translate(-50%, -50%);
    }

    /* ─── Services Section ─── */
    .services-section {
      position: relative;
      width: 100%;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 100px 48px 80px;
      background: var(--bg);
      scroll-snap-align: start;
      overflow: hidden;
    }

    /* fundo com glow sutil */
    .services-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(99, 102, 241, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(129, 140, 248, 0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Header da seção */
    .services-header {
      text-align: center;
      margin-bottom: 56px;
      position: relative;
      z-index: 2;
    }

    .services-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--accent-1);
      margin-bottom: 14px;
      display: block;
    }

    .services-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .services-sub {
      font-size: 15px;
      color: var(--muted);
      font-weight: 400;
    }

    /* Grid de cards */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      width: 100%;
      max-width: 1200px;
      position: relative;
      z-index: 2;
    }

    /* Card */
    .service-card {
      position: relative;
      height: 420px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      overflow: hidden;
      cursor: none;
      transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(129, 140, 248, 0.08) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
    }

    .service-card:hover {
      border-color: rgba(99, 102, 241, 0.45);
      background: rgba(99, 102, 241, 0.06);
      transform: translateY(-4px);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    /* Botão + no canto */
    .card-plus {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: rgba(255, 255, 255, 0.4);
      transition: border-color 0.3s, color 0.3s, transform 0.4s, background 0.3s;
      z-index: 2;
      line-height: 1;
    }

    .service-card:hover .card-plus {
      border-color: rgba(99, 102, 241, 0.6);
      background: rgba(99, 102, 241, 0.15);
      color: #fff;
      transform: rotate(45deg);
    }

    /* Conteúdo padrão (ícone + nome) */
    .card-default {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      z-index: 1;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .service-card:hover .card-default {
      opacity: 0;
      transform: translateY(-10px);
    }

    .card-icon {
      width: 64px;
      height: 64px;
      opacity: 0.55;
      transition: opacity 0.3s;
    }

    .card-icon svg {
      width: 100%;
      height: 100%;
    }

    .card-name {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 0.2px;
    }

    /* Conteúdo hover (label + descrição) */
    .card-hover {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 32px 28px;
      z-index: 1;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
    }

    .service-card:hover .card-hover {
      opacity: 1;
      transform: translateY(0);
    }

    .card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--accent-2);
      margin-bottom: 10px;
    }

    .card-hover-title {
      font-family: 'Syne', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .card-desc {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.65;
    }

    /* Linha decorativa no topo do card ao hover */
    .service-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .service-card:hover::after {
      opacity: 1;
    }

    @media (max-width: 900px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 560px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      .services-section {
        padding: 100px 36px 60px;
      }

      .services-title {
        font-size: clamp(28px, 8vw, 58px);
        letter-spacing: -1px;
      }
    }

    /* ─── Portfolio Section ─── */
    .portfolio-section {
      position: relative;
      width: 100%;
      height: 100svh;
      overflow: hidden;
      flex-shrink: 0;
    }

    /* Slides track */
    .portfolio-track {
      display: flex;
      height: 100%;
      will-change: transform;
    }

    /* Individual slide */
    .portfolio-slide {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Slide background */
    .portfolio-slide .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
    }

    .portfolio-slide.active .slide-bg {
      transform: scale(1);
    }

    /* Intro slide */
    .slide-intro {
      background: var(--bg);
    }

    .slide-intro-content {
      text-align: left;
      padding: 0 80px;
      max-width: 900px;
      width: 100%;
      position: relative;
      z-index: 2;
    }

    .portfolio-label {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent-1);
      margin-bottom: 20px;
      display: block;
    }

    .portfolio-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(52px, 8vw, 100px);
      font-weight: 800;
      line-height: 1.0;
      letter-spacing: -3px;
      color: #fff;
      margin-bottom: 24px;
    }

    .portfolio-subtitle {
      font-size: clamp(15px, 1.8vw, 18px);
      color: var(--muted);
      font-weight: 400;
      line-height: 1.5;
      max-width: 440px;
      margin-bottom: 48px;
    }

    .portfolio-scroll-hint {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
    }

    .scroll-line {
      width: 48px;
      height: 1px;
      background: linear-gradient(90deg, var(--accent-1), transparent);
      display: block;
    }

    /* Project slides overlay */
    .slide-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.75) 35%, rgba(0, 0, 0, 0.25) 60%, transparent 80%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 35%);
      z-index: 1;
    }

    /* Project slide content */
    .slide-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      height: 100%;
      padding-bottom: 100px;
    }

    .slide-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 14px;
    }

    .slide-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(38px, 5.5vw, 68px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -2px;
      line-height: 1.05;
      margin-bottom: 14px;
    }

    .slide-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      max-width: 480px;
      line-height: 1.6;
      margin-bottom: 36px;
    }

    .btn-view-project {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 36px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(12px);
      border-radius: 50px;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .btn-view-project:hover {
      background: rgba(99, 102, 241, 0.22);
      border-color: rgba(99, 102, 241, 0.55);
      transform: translateY(-2px);
    }

    .btn-view-project .arrow-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--accent-1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      flex-shrink: 0;
    }

    /* Progress bar */
    .portfolio-nav {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .portfolio-nav-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      transition: border-color 0.2s, background 0.2s;
      flex-shrink: 0;
    }

    .portfolio-nav-arrow:hover {
      border-color: rgba(99, 102, 241, 0.6);
      background: rgba(99, 102, 241, 0.15);
    }

    .portfolio-dots {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 0 12px;
    }

    .portfolio-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
      cursor: none;
    }

    .portfolio-dot.active {
      width: 24px;
      border-radius: 3px;
      background: var(--accent-1);
    }

    /* Counter */
    .slide-counter {
      position: absolute;
      top: 36px;
      right: 48px;
      z-index: 10;
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 1px;
    }

    .slide-counter span {
      color: #fff;
    }

    /* ─── Project Viewer Modal ─── */
    .project-modal {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      pointer-events: none;
      background: #080808;
      clip-path: inset(0 0 100% 0);
    }

    .project-modal.open {
      pointer-events: all;
    }

    /* Topbar fixa */
    .project-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 28px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      flex-shrink: 0;
      background: rgba(8, 8, 8, 0.95);
      backdrop-filter: blur(12px);
      position: relative;
      z-index: 2;
    }

    .project-topbar-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .project-back {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.45);
      background: none;
      border: none;
      cursor: none;
      transition: color 0.2s;
      padding: 0;
    }

    .project-back:hover {
      color: #fff;
    }

    .project-topbar-title {
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.9);
    }

    .project-topbar-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent-1);
      padding: 3px 10px;
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 50px;
    }

    .project-topbar-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .project-behance-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 16px;
      border-radius: 50px;
      border: 1px solid rgba(99, 102, 241, 0.35);
      background: rgba(99, 102, 241, 0.08);
      color: rgba(255, 255, 255, 0.7);
      font-size: 12px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      cursor: none;
    }

    .project-behance-link:hover {
      background: rgba(99, 102, 241, 0.22);
      color: #fff;
    }

    .project-close {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.6);
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      transition: background 0.2s, color 0.2s;
    }

    .project-close:hover {
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
    }

    /* Área de scroll das imagens */
    .project-scroll {
      flex: 1;
      overflow-y: scroll;
      overflow-x: hidden;
      scrollbar-width: thin;
      scrollbar-color: rgba(99, 102, 241, 0.3) transparent;
    }

    .project-scroll::-webkit-scrollbar {
      width: 4px;
    }

    .project-scroll::-webkit-scrollbar-track {
      background: transparent;
    }

    .project-scroll::-webkit-scrollbar-thumb {
      background: rgba(99, 102, 241, 0.35);
      border-radius: 4px;
    }

    .project-images {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 0 80px;
      font-size: 0;
      line-height: 0;
    }

    .project-images img,
    .project-images video,
    .project-images .project-embed-wrap,
    .project-images .project-embed-wrap iframe {
      width: 100%;
      display: block;
      margin: 0;
      padding: 0;
      line-height: 0;
      font-size: 0;
    }

    /* Embed externo (ex: Juxtapose) */
    .project-embed-wrap {
      width: 100%;
      overflow: hidden;
      font-size: 0;
      line-height: 0;
    }

    @media (max-width: 768px) {
      .project-embed-wrap {
        background: #00143F;
      }
    }

    .project-embed-wrap iframe {
      width: 100%;
      display: block;
      border: none;
      overflow: hidden;
    }

    /* Loader enquanto carrega */
    .project-loader {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 200px;
      color: rgba(255, 255, 255, 0.3);
      font-size: 14px;
    }

    /* Ambient FX no modal */
    .modal-ambient {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .project-topbar {
      position: relative;
      z-index: 2;
    }

    .project-scroll {
      position: relative;
      z-index: 1;
    }


    /* Main page scrollable */
    html,
    body {
      overflow: hidden;
    }

    .site-wrapper {
      height: 100svh;
      overflow-y: scroll;
      scroll-snap-type: y proximity;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }

    .site-wrapper::-webkit-scrollbar {
      display: none;
    }

    .page,
    .portfolio-section {
      scroll-snap-align: start;
      flex-shrink: 0;
    }

    /* ─── Responsive ─── */
    @media (max-width: 900px) {
      .nav-pill a:not(.active):not(:last-child) {
        display: none;
      }

      .nav-pill a.all-pages {
        display: flex;
      }
    }

    /* ─── Hamburger ─── */
    .menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      cursor: pointer;
      padding: 10px;
      transition: background 0.2s, border-color 0.2s;
    }

    .menu-btn:hover {
      background: rgba(99, 102, 241, 0.15);
      border-color: rgba(99, 102, 241, 0.4);
    }

    .menu-btn span {
      display: block;
      width: 100%;
      height: 1.5px;
      background: rgba(255, 255, 255, 0.75);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .menu-btn.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .menu-btn.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .menu-btn.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* Drawer mobile */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 999;
      background: rgba(6, 6, 18, 0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .mobile-nav.open {
      opacity: 1;
      pointer-events: all;
    }

    .mobile-nav a {
      font-family: 'Syne', sans-serif;
      font-size: 32px;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      letter-spacing: -1px;
      transition: color 0.2s;
      padding: 10px 0;
    }

    .mobile-nav a:hover {
      color: #fff;
    }

    .mobile-nav-contact {
      margin-top: 16px;
      padding: 14px 48px !important;
      background: var(--accent-1);
      border-radius: 50px;
      font-size: 17px !important;
      font-weight: 700 !important;
      color: #fff !important;
      letter-spacing: -0.3px;
      box-shadow: 0 4px 24px rgba(99, 102, 241, 0.45);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    }

    .mobile-nav-contact:hover {
      background: var(--accent-2) !important;
      color: #fff !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 32px rgba(99, 102, 241, 0.6) !important;
    }

    @media (max-width: 640px) {
      .top-bar {
        padding: 10px 16px;
      }

      .nav-pill {
        display: none;
      }

      .btn-contact {
        display: none;
      }

      .menu-btn {
        display: flex;
      }

      .mobile-nav {
        display: flex;
      }

      .hero {
        padding: 0 36px;
      }

      .headline {
        font-size: clamp(32px, 9vw, 80px);
        letter-spacing: -1.5px;
      }

      .subheadline {
        font-size: clamp(14px, 3.5vw, 18px);
        padding: 0 4px;
      }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ─── CUSTOM CURSOR ───────────────────────────────────── */
    .cursor-dot {
      position: fixed;
      width: 12px;
      height: 12px;
      background: #00C2FF;
      border-radius: 50%;
      pointer-events: none;
      z-index: 100002;
      transform: translate(-50%, -50%);
      transition: width .15s ease, height .15s ease, opacity .2s ease;
      mix-blend-mode: screen;
    }

    .cursor-dot.hovering {
      width: 24px;
      height: 24px;
    }

    body.js-cursor {
      cursor: none;
    }

    body.js-cursor a,
    body.js-cursor button,
    body.js-cursor [role="button"] {
      cursor: none;
    }

    @media (pointer: coarse) {

      body,
      a,
      button,
      [role="button"] {
        cursor: auto !important;
      }

      .cursor-dot,
      .cursor-ring {
        display: none;
      }
    }

    /* ─── SCROLL REVEAL — handled by GSAP ScrollTrigger in main.js ── */

    /* ─── Section Progress Dots ─────────────────────────────── */
    .sr-nav {
      position: fixed;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 998;
      display: flex;
      flex-direction: column;
      gap: 10px;
      pointer-events: none;
    }

    .sr-nav-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.20);
      border: none;
      padding: 0;
      pointer-events: all;
      cursor: pointer;
      outline: none;
      transition: background 0.35s ease,
        height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-radius 0.35s ease,
        box-shadow 0.35s ease;
    }

    .sr-nav-dot.active {
      background: var(--accent-1);
      height: 26px;
      border-radius: 3px;
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
    }

    .sr-nav-dot:hover:not(.active) {
      background: rgba(255, 255, 255, 0.45);
    }

    @media (max-width: 640px) {
      .sr-nav {
        display: none;
      }
    }

    /* ─── Portfolio Enhanced ─────────────────────────────────── */
    /* Garante que o track e seu conteúdo ficam acima do video/overlay */
    #portfolioTrack {
      position: relative;
      z-index: 2;
    }

    .portfolio-bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.33;
      pointer-events: none;
      z-index: 0;
    }

    .portfolio-bg-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(5, 5, 16, 0.82) 0%, rgba(5, 5, 16, 0.45) 55%, transparent 100%),
        linear-gradient(to bottom, rgba(5, 5, 16, 0.5) 0%, transparent 30%, transparent 70%, rgba(5, 5, 16, 0.55) 100%);
      z-index: 1;
      pointer-events: none;
    }

    /* Two-column intro */
    .slide-intro-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
      padding: 0 80px;
      max-width: 1200px;
    }

    .intro-left {
      flex: 0 0 auto;
      max-width: 480px;
    }

    .intro-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

    /* Stacked project previews */
    .intro-previews {
      position: relative;
      width: 300px;
      height: 340px;
      cursor: none;
    }

    .preview-card {
      position: absolute;
      width: 256px;
      height: 160px;
      border-radius: 14px;
      background-size: cover;
      background-position: center;
      border: 1px solid rgba(255, 255, 255, 0.10);
      box-shadow: 0 20px 56px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(99, 102, 241, 0.08);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }

    .preview-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    }

    .preview-card--1 {
      top: 0;
      left: 28px;
      z-index: 3;
      transform: rotate(-3deg);
    }

    .preview-card--2 {
      top: 90px;
      left: 10px;
      z-index: 2;
      transform: rotate(1.5deg);
    }

    .preview-card--3 {
      top: 178px;
      left: 22px;
      z-index: 1;
      transform: rotate(-1.5deg);
    }

    .intro-previews:hover .preview-card--1 {
      transform: rotate(-3deg) translate(-16px, -18px);
      box-shadow: 0 32px 72px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(99, 102, 241, 0.25);
    }

    .intro-previews:hover .preview-card--2 {
      transform: rotate(1.5deg) translate(14px, 4px);
    }

    .intro-previews:hover .preview-card--3 {
      transform: rotate(-1.5deg) translate(-8px, 18px);
    }

    /* Count + tags row */
    .intro-meta {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .intro-meta-num {
      font-family: 'Syne', sans-serif;
      font-size: 52px;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.05);
      letter-spacing: -2px;
      line-height: 1;
    }

    .intro-meta-tags {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .intro-meta-tag {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.28);
    }

    .intro-meta-tag span {
      width: 18px;
      height: 1px;
      background: var(--accent-1);
      opacity: 0.7;
      display: block;
    }

    @media (max-width: 960px) {
      .intro-right {
        display: none;
      }

      .slide-intro-content {
        padding: 0 40px;
        justify-content: flex-start;
      }
    }

