  :root {
    --navy: #060d1a;
    --navy2: #0a1628;
    --navy3: #0f1f3a;
    --lime: #c8f400;
    --lime2: #a8d000;
    --blue-accent: #1e6fff;
    --white: #ffffff;
    --gray: #8a9bb0;
    --light: #dce8f5;
    --border: rgba(200,244,0,0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(6,13,26,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,244,0,0.08);
  }
  .nav-logo { display: flex; align-items: center; }
  .nav-logo img { height: 56px; width: auto; display: block; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gray); text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--lime); }
  .nav-cta {
    background: #d5e000; color: #112240;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 12px;
    border: 1px solid #d5e000; cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }
  .nav-cta:hover { background: #fff; border-color: #fff; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    padding: 120px 60px 80px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(6,13,26,0.97) 45%, rgba(10,22,40,0.85) 100%),
      url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center/cover no-repeat;
  }
  .hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,244,0,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,244,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-accent {
    position: absolute; right: -100px; top: 50%;
    transform: translateY(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(200,244,0,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; max-width: 820px; }
  .hero-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--lime);
    border: 1px solid var(--lime);
    padding: 6px 16px;
    margin-bottom: 32px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }
  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 28px;
  }
  .hero h1 em { color: var(--lime); font-style: normal; }
  .hero-sub {
    font-size: 18px; font-weight: 300;
    color: var(--light);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 48px;
  }
  .hero-sub strong { color: var(--white); font-weight: 600; }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary,
  .btn-outline {
    display: inline-flex; align-items: center; gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 2vw, 22px);
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-primary {
    background: #d5e000; color: #112240;
    border: 1px solid #d5e000;
  }
  .btn-primary:hover { background: #fff; border-color: #fff; transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: #d5e000;
    border: 1px solid #d5e000;
  }
  .btn-outline:hover { background: rgba(213,224,0,0.08); transform: translateY(-2px); }
  .btn-icon { width: 24px; height: 24px; flex-shrink: 0; }
  .hero-stats {
    display: flex; gap: 48px;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; color: var(--lime);
    line-height: 1;
  }
  .stat-label {
    font-size: 13px; font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: 100px 60px; }
  .section-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--lime);
    border-left: 3px solid var(--lime);
    padding-left: 12px;
    margin-bottom: 20px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .section-title em { color: var(--lime); font-style: normal; }
  .section-desc {
    font-size: 17px; font-weight: 300;
    color: var(--gray);
    line-height: 1.75;
    max-width: 580px;
  }

  /* ─── DIFERENCIAL ─── */
  .diferencial {
    background: var(--navy2);
    position: relative;
  }
  .diferencial-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .diferencial-left {}
  .diferencial-quote {
    margin-top: 40px;
    padding: 28px 32px;
    border-left: 4px solid var(--lime);
    background: rgba(200,244,0,0.04);
  }
  .diferencial-quote p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 600;
    color: var(--white);
    font-style: italic;
    line-height: 1.4;
  }
  .diferencial-quote span {
    display: block; margin-top: 8px;
    font-size: 13px; color: var(--lime);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 2px; text-transform: uppercase;
  }
  .diferencial-right {
    display: flex; flex-direction: column; gap: 24px;
  }
  .dif-card {
    background: var(--navy3);
    border: 1px solid rgba(200,244,0,0.1);
    padding: 28px 32px;
    display: flex; gap: 20px; align-items: flex-start;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }
  .dif-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--lime);
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: bottom;
  }
  .dif-card:hover::before { transform: scaleY(1); }
  .dif-card:hover { border-color: rgba(200,244,0,0.3); transform: translateX(4px); }
  .dif-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; color: rgba(200,244,0,0.15);
    line-height: 1; min-width: 44px;
  }
  .dif-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--white); margin-bottom: 6px;
  }
  .dif-body p { font-size: 15px; color: var(--gray); line-height: 1.6; }

  /* ─── PROJEÇÕES ─── */
  .projecoes { background: var(--navy3); }
  .proj-header { max-width: 700px; margin: 0 auto; text-align: center; }
  .proj-header .section-desc { margin: 0 auto; text-align: center; }
  .proj-highlight {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
    color: var(--lime);
    text-align: center;
    max-width: 640px;
    margin: 28px auto 56px;
  }
  .proj-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto;
  }
  .proj-card {
    background: var(--navy2);
    border: 1px solid rgba(200,244,0,0.1);
    padding: 24px;
    display: flex; align-items: center; gap: 16px;
    text-align: left;
    flex: 1 1 280px;
    max-width: 340px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .proj-card:hover { border-color: rgba(200,244,0,0.3); transform: translateY(-3px); }
  .proj-icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(200,244,0,0.3);
    background: rgba(200,244,0,0.06);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }
  .proj-icon svg { width: 20px; height: 20px; color: var(--lime); }
  .proj-card span {
    font-size: 15px;
    font-weight: 500;
    color: var(--light);
    line-height: 1.45;
  }

  /* ─── COMO FUNCIONA ─── */
  .como { background: var(--navy); }
  .como-header { text-align: center; margin-bottom: 64px; }
  .como-header .section-desc { margin: 0 auto; text-align: center; }
  .steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 52px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime), var(--lime), var(--lime), var(--lime), transparent);
    opacity: 0.3;
  }
  .step {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 0 16px;
    position: relative;
  }
  .step-circle {
    width: 104px; height: 104px;
    border: 2px solid rgba(200,244,0,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    background: var(--navy2);
    position: relative; z-index: 2;
    transition: all 0.3s;
  }
  .step:hover .step-circle {
    border-color: var(--lime);
    background: rgba(200,244,0,0.08);
  }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px; color: var(--lime);
  }
  .step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--white); margin-bottom: 8px;
  }
  .step p { font-size: 14px; color: var(--gray); line-height: 1.5; }

  /* ─── SERVIÇOS ─── */
  .servicos { background: var(--navy2); }
  .servicos-header {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 24px; margin-bottom: 64px;
  }
  .servicos-header .section-desc { max-width: 600px; }
  .servicos-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 2px;
  }
  .serv-card { flex: 0 1 calc(33.333% - 2px); }
  .serv-card {
    background: var(--navy3);
    padding: 40px 36px;
    border-top: 3px solid transparent;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .serv-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 0;
    background: rgba(200,244,0,0.04);
    transition: height 0.3s;
  }
  .serv-card:hover::after { height: 100%; }
  .serv-card:hover { border-top-color: var(--lime); }
  .serv-icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(200,244,0,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    background: rgba(200,244,0,0.06);
  }
  .serv-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--white); margin-bottom: 12px;
    position: relative; z-index: 1;
  }
  .serv-card p {
    font-size: 15px; color: var(--gray);
    line-height: 1.65; position: relative; z-index: 1;
  }
  .serv-highlight {
    grid-column: span 2;
    background: var(--lime);
    padding: 48px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
    border-top: none;
  }
  .serv-highlight::after { display: none; }
  .serv-highlight:hover { border-top-color: transparent; }
  .serv-highlight h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px; letter-spacing: 2px;
    color: var(--navy); margin-bottom: 8px;
  }
  .serv-highlight p { color: rgba(6,13,26,0.7); font-size: 16px; }
  .serv-highlight-btn {
    background: var(--navy); color: var(--lime);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 14px 28px; border: none; cursor: pointer;
    white-space: nowrap;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.3s;
    text-decoration: none; display: inline-block;
  }
  .serv-highlight-btn:hover { background: var(--navy3); }

  /* ─── PÚBLICO ─── */
  .publico { background: var(--navy); }
  .publico-header { text-align: center; margin-bottom: 64px; }
  .publico-header .section-desc { margin: 0 auto; }
  .publico-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pub-card {
    border: 1px solid rgba(255,255,255,0.06);
    padding: 48px 36px;
    position: relative; overflow: hidden;
    transition: all 0.3s;
  }
  .pub-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,244,0,0.04) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
  }
  .pub-card:hover::before { opacity: 1; }
  .pub-card:hover { border-color: rgba(200,244,0,0.25); transform: translateY(-4px); }
  .pub-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(200,244,0,0.07);
    line-height: 1;
    margin-bottom: -20px;
    position: relative; z-index: 1;
  }
  .pub-icon { font-size: 36px; margin-bottom: 16px; position: relative; z-index: 1; }
  .pub-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--lime); margin-bottom: 8px;
    position: relative; z-index: 1;
  }
  .pub-card h4 {
    font-size: 16px; font-weight: 600;
    color: var(--white); margin-bottom: 12px;
    position: relative; z-index: 1;
  }
  .pub-card p {
    font-size: 15px; color: var(--gray); line-height: 1.65;
    position: relative; z-index: 1;
  }
  .pub-list {
    margin-top: 20px; list-style: none;
    position: relative; z-index: 1;
  }
  .pub-list li {
    font-size: 14px; color: var(--light);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; gap: 8px;
  }
  .pub-list li::before {
    content: '›'; color: var(--lime); font-size: 18px; font-weight: bold;
  }

  /* ─── CONSULTORIA ─── */
  .consultoria {
    background: var(--navy2);
    position: relative; overflow: hidden;
  }
  .consultoria-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .consult-cards { display: flex; flex-direction: column; gap: 20px; }
  .consult-card {
    padding: 32px;
    border: 1px solid rgba(200,244,0,0.12);
    background: var(--navy3);
    position: relative;
    transition: all 0.3s;
  }
  .consult-card:hover { border-color: rgba(200,244,0,0.35); }
  .consult-card-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 10px;
  }
  .consult-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--white); margin-bottom: 10px;
  }
  .consult-card p { font-size: 15px; color: var(--gray); line-height: 1.65; }

  /* ─── FORMAÇÃO DE INVESTIDORES ─── */
  .investidores { background: var(--navy); }
  .inv-inner {
    display: grid; grid-template-columns: 5fr 4fr;
    gap: 80px; align-items: center;
  }
  .inv-visual {
    background: var(--navy3);
    border: 1px solid rgba(200,244,0,0.12);
    padding: 48px;
    position: relative;
  }
  .inv-chart {
    display: flex; flex-direction: column; gap: 20px;
  }
  .inv-stage {
    display: flex; align-items: center; gap: 20px;
  }
  .inv-stage-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--gray); min-width: 100px;
    text-align: right;
  }
  .inv-bar-wrap { flex: 1; height: 36px; background: rgba(255,255,255,0.05); position: relative; }
  .inv-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--navy3), var(--lime));
    display: flex; align-items: center; padding-left: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    color: var(--navy);
  }
  .inv-bar.bar1 { width: 60%; }
  .inv-bar.bar2 { width: 85%; }
  .inv-bar.bar3 { width: 100%; background: linear-gradient(90deg, var(--lime2), var(--lime)); }

  /* ─── NOSSOS PARCEIROS (CARROSSEL DE LOGOS) ─── */
  .logos-section {
    background: var(--navy2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
  }
  .logos-header { text-align: center; margin-bottom: 56px; padding: 0 60px; }
  .logos-header .section-tag { margin-left: auto; margin-right: auto; }
  .logos-header .section-desc { margin: 0 auto; text-align: center; }
  .logos-track-wrap {
    position: relative;
    overflow: hidden;
  }
  .logos-track-wrap::before,
  .logos-track-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    width: 120px; z-index: 2; pointer-events: none;
  }
  .logos-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy2), transparent);
  }
  .logos-track-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--navy2), transparent);
  }
  .logos-track {
    display: flex; align-items: center;
    gap: 24px;
    width: max-content;
    animation: logos-scroll 32s linear infinite;
  }
  .logos-track:hover { animation-play-state: paused; }
  @keyframes logos-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .logo-card {
    width: 160px; height: 160px;
    background: var(--navy3);
    border: 1px solid rgba(200,244,0,0.12);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s, transform 0.3s;
  }
  .logo-card:hover { border-color: rgba(200,244,0,0.35); transform: translateY(-4px); }
  .logo-card svg { width: 60px; height: 60px; color: rgba(200,244,0,0.3); }
  @media (prefers-reduced-motion: reduce) {
    .logos-track { animation: none; }
  }

  /* ─── REDE DE PARCEIROS ─── */
  .parceiros { background: var(--navy3); position: relative; overflow: hidden; }
  .parceiros-header { max-width: 760px; margin: 0 auto; text-align: center; }
  .parceiros-header .section-tag { margin-left: auto; margin-right: auto; border-left: none; padding-left: 0; }
  .parceiros-sub {
    font-size: 19px; font-weight: 300;
    color: var(--light); line-height: 1.7;
    max-width: 720px; margin: 24px auto 48px;
    text-align: center;
  }
  .parceiros-sub strong { color: var(--white); font-weight: 600; }
  .parceiros-text {
    max-width: 780px; margin: 0 auto 64px;
    display: flex; flex-direction: column; gap: 20px;
  }
  .parceiros-text p {
    font-size: 16px; color: var(--gray);
    line-height: 1.75; text-align: center;
  }
  .parceiros-text p strong { color: var(--white); font-weight: 600; }
  .parceiros-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-bottom: 64px;
  }
  .parc-card {
    background: var(--navy2);
    border: 1px solid rgba(200,244,0,0.12);
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .parc-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--lime);
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: bottom;
  }
  .parc-card:hover::before { transform: scaleY(1); }
  .parc-card:hover { border-color: rgba(200,244,0,0.3); transform: translateY(-4px); }
  .parc-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px; color: rgba(200,244,0,0.15);
    line-height: 1; margin-bottom: 12px;
  }
  .parc-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--white); margin-bottom: 10px;
  }
  .parc-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
  .parceiros-cta { text-align: center; }
  .parceiros-cta p {
    font-size: 15px; color: var(--gray);
    margin-top: 20px;
  }

  /* ─── VÍDEOS INSTITUCIONAIS ─── */
  .videos-cta {
    background: var(--navy3);
    border-top: 1px solid rgba(213,224,0,0.4);
    border-bottom: 1px solid rgba(213,224,0,0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .videos-cta-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(15,31,58,0) 55%, var(--navy3) 100%),
      url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center/cover no-repeat;
    opacity: 0.4;
    filter: grayscale(55%);
  }
  .videos-cta-inner {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; gap: 46px;
  }
  .videos-cta-grid {
    display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  }
  .video-card {
    width: 320px; aspect-ratio: 403 / 756;
    background: var(--navy2);
    border: 1px solid #d5e000;
    border-radius: 16px;
    overflow: hidden;
  }
  .video-embed {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    background: var(--navy2);
  }

  /* ─── EQUIPE ─── */
  .equipe { background: var(--navy2); }
  .equipe-header { text-align: center; margin-bottom: 64px; }
  .team-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px; max-width: 900px; margin: 0 auto;
  }
  .team-card {
    background: var(--navy3);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 40px;
    display: flex; gap: 28px;
    transition: border-color 0.3s;
  }
  .team-card:hover { border-color: rgba(200,244,0,0.2); }
  .team-photo {
    width: 90px; height: 90px;
    border: 2px solid rgba(200,244,0,0.3);
    flex-shrink: 0;
    background: var(--navy2);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    overflow: hidden;
  }
  .team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .team-photo img.pos-willian {
    object-position: center calc(50% + 15px);
  }
  .team-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--white); margin-bottom: 4px;
  }
  .team-role {
    font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--lime); margin-bottom: 12px;
  }
  .team-info p { font-size: 14px; color: var(--gray); line-height: 1.6; }

  /* ─── CTA ─── */
  .cta-section {
    background: var(--navy3);
    padding: 100px 60px;
    position: relative; overflow: hidden;
    text-align: center;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,244,0,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 80px);
    letter-spacing: 3px; line-height: 1;
    margin-bottom: 20px;
    position: relative; z-index: 1;
  }
  .cta-section h2 em { color: var(--lime); font-style: normal; }
  .cta-section p {
    font-size: 18px; font-weight: 300;
    color: var(--gray); max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative; z-index: 1;
  }
  .cta-btns {
    display: flex; justify-content: center;
    gap: 16px; flex-wrap: wrap;
    position: relative; z-index: 1;
  }
  .contacts {
    display: flex; justify-content: center; gap: 48px;
    margin-top: 60px; flex-wrap: wrap;
    position: relative; z-index: 1;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .contact-item {
    text-align: center;
  }
  .contact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gray); margin-bottom: 6px;
  }
  .contact-value {
    font-size: 16px; font-weight: 600;
    color: var(--white);
  }
  .contact-value a { color: var(--lime); text-decoration: none; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    padding: 32px 60px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap; gap: 16px;
  }
  .footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 4px; color: var(--white);
  }
  .footer-brand span { color: var(--lime); }
  .footer-legal {
    font-size: 12px; color: var(--gray);
    text-align: center;
    line-height: 1.6;
  }
  .footer-creci {
    font-size: 12px; color: var(--gray);
    text-align: right;
  }

  /* ─── ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-up:nth-child(1) { transition-delay: 0s; }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.4s; }

  /* ─── LINHA DECORATIVA ─── */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,244,0,0.3), transparent);
    margin: 0;
  }

  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    .hero { padding: 100px 24px 60px; }
    .hero-content { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-stats { flex-wrap: wrap; justify-content: center; gap: 28px; }
    .diferencial-inner,
    .consultoria-inner,
    .inv-inner { grid-template-columns: 1fr; gap: 40px; }
    .proj-card { max-width: 100%; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .serv-card { flex-basis: 100%; }
    .publico-grid { grid-template-columns: 1fr; }
    .parceiros-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .logos-section { padding: 56px 0; }
    .logos-header { padding: 0 24px; margin-bottom: 40px; }
    .logo-card { width: 120px; height: 120px; border-radius: 12px; }
    .logo-card svg { width: 44px; height: 44px; }
    .logos-track-wrap::before,
    .logos-track-wrap::after { width: 60px; }
    .video-card { width: 240px; }
    footer { flex-direction: column; text-align: center; }
    .footer-creci { text-align: center; }
  }
