  :root {
    --navy: #0C2D5E;
    --navy-light: #133870;
    --cyan: #2AA0D4;
    --cyan-light: #4DB8E8;
    --white: #FFFFFF;
    --off-white: #F4F8FC;
    --gray-100: #EEF3F8;
    --gray-200: #D0DCE8;
    --gray-500: #6B87A4;
    --gray-700: #334E6A;
    --dark: #0A1628;
    --success: #0F6E56;
    --amber: #BA7517;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: 'Space Grotesk', 'Work Sans', sans-serif;
    --font-body: 'Work Sans', sans-serif;
  }

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

  .icon {
    width: 1em; height: 1em;
    stroke: currentColor; fill: none;
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
    vertical-align: -0.125em;
    flex-shrink: 0;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, .section-title, .clientes-title, .hero-stat .val, .demand-title,
  .why-victor-closing-text, .dash-custom-title, .contact-cta-box h3,
  .module-title, .cycle-card-title, .training-card-title, .auto-card-title,
  .content-card-title, .benefit-title, .app-feature-title, .demand-card-title,
  .hero-solution-title {
    font-family: var(--font-display);
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    border-bottom: 1px solid rgba(12,45,94,0.08);
    box-shadow: 0 2px 20px rgba(12,45,94,0.07);
    transition: var(--transition-smooth);
  }

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

  .nav-logo img {
    height: 36px; width: auto;
    transition: opacity 0.2s;
  }
  .nav-logo img:hover { opacity: 0.85; }

  .nav-links {
    display: flex; align-items: center; gap: 18px;
    list-style: none;
  }

  .nav-links a {
    color: var(--navy); text-decoration: none;
    font-size: 13px; font-weight: 500;
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative; padding-bottom: 4px;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--cyan);
    transition: var(--transition-smooth);
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a:hover { color: var(--cyan); }

  .nav-cta {
    background: var(--navy); color: var(--white) !important;
    padding: 10px 24px; border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(12,45,94,0.2);
    transition: var(--transition-smooth) !important;
  }
  .nav-cta:hover {
    background: var(--cyan) !important; color: var(--white) !important;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(42,160,212,0.3);
  }
  .nav-cta::after { display: none !important; }

  .nav-dropdown { position: relative; }
  .nav-dropdown::after {
    content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
  }
  .nav-dropdown-menu {
    display: none; flex-direction: column; gap: 2px;
    position: absolute; top: 100%; left: 0; margin-top: 12px;
    background: var(--white); border-radius: 12px; padding: 8px;
    box-shadow: 0 12px 32px rgba(12,45,94,0.15); min-width: 220px;
  }
  .nav-dropdown-menu a {
    padding: 8px 12px; border-radius: 8px; white-space: nowrap;
  }
  .nav-dropdown-menu a:hover { background: var(--off-white); }
  .nav-dropdown-menu a::after { display: none !important; }
  .nav-dropdown:hover .nav-dropdown-menu { display: flex; }

  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .nav-hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--dark);
    display: flex; align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
  }

   .hero::before {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 62%;
    background:
      linear-gradient(120deg, rgba(6,14,30,0.55) 0%, rgba(12,45,94,0.4) 40%, rgba(10,22,40,0.75) 100%),
      url("mcp.png") center center / cover no-repeat;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  } 

  .hero::after {
    content: '';
    position: absolute; top: 0; left: 0; bottom: 0; width: 44%;
    background: linear-gradient(180deg, transparent, rgba(42,160,212,0.05));
  }

  .hero-bg-v {
    position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
    font-size: clamp(300px, 40vw, 520px);
    font-weight: 700; color: rgba(42,160,212,0.06);
    line-height: 1; pointer-events: none; user-select: none;
    font-family: var(--font-display);
  }

  .hero-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 60px; align-items: center;
    max-width: 1200px; margin: 0 auto; width: 100%;
    position: relative; z-index: 1;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(42,160,212,0.15); border: 1px solid rgba(42,160,212,0.3);
    color: var(--cyan); font-size: 12px; font-weight: 600;
    padding: 6px 14px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 20px;
  }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }

  .hero h1 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800; color: var(--white);
    line-height: 1.15; letter-spacing: -0.035em;
    margin-bottom: 20px;
  }

  .hero h1 em { font-style: normal; color: var(--cyan); }

  .hero p {
    font-size: 16px; color: rgba(255,255,255,0.7);
    max-width: 480px; margin-bottom: 36px;
    line-height: 1.7;
  }

  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

  .btn-primary {
    background: var(--cyan); color: var(--white);
    padding: 16px 32px; border-radius: 50px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 18px rgba(42,160,212,0.3);
  }
  .btn-primary:hover {
    background: var(--cyan-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(42,160,212,0.45);
  }

  .btn-outline {
    border: 2px solid rgba(255,255,255,0.6); color: var(--white);
    padding: 16px 32px; border-radius: 50px;
    font-size: 15px; font-weight: 500; text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08);
  }
  .btn-outline:hover {
    border-color: var(--cyan);
    background: rgba(42,160,212,0.15);
    transform: translateY(-3px);
  }

  .hero-stats {
    display: flex; gap: 32px; margin-top: 48px;
    padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1);
    align-items: flex-end;
  }

  .hero-stat { display: flex; flex-direction: column; }

  .hero-stat .val {
    font-size: 28px; font-weight: 800; color: var(--white);
    letter-spacing: -0.03em; line-height: 1;
  }
  .hero-stat .val span { color: var(--white); }
  .hero-stat .lbl {
    font-size: 12px; color: rgba(255,255,255,0.5);
    margin-top: 6px; line-height: 1.3;
  }

  .hero-visual {
    display: flex; flex-direction: column; gap: 16px;
  }

  .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(42,160,212,0.15);
    border-radius: 18px; padding: 24px 28px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
  }
  .hero-card:hover {
    border-color: rgba(42,160,212,0.5);
    background: rgba(42,160,212,0.08);
    transform: translateY(-5px) scale(1.02);
  }

  .hero-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
  .hero-card-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(42,160,212,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .hero-card-title { font-size: 14px; font-weight: 600; color: var(--white); }
  .hero-card-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }

  .hero-card-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
  .chip { font-size: 10px; padding: 3px 8px; border-radius: 20px; background: rgba(42,160,212,0.15); color: var(--cyan); font-weight: 500; }

  /* ── HERO SOLUTIONS SIGNATURE (Etapa 5 — scoped to hero-visual only) ── */
  .hero-solutions-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
  }
  .hero-solutions-grid {
    display: grid; grid-template-columns: 1.3fr 1fr;
    grid-auto-rows: min-content;
    gap: 12px;
  }
  .hero-solution:nth-child(1), .hero-solution:nth-child(4) { grid-column: 1 / -1; }
  .hero-solution {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(42,160,212,0.15);
    border-radius: 3px 18px 3px 18px; padding: 18px 16px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
  }
  .hero-solution:hover {
    border-color: rgba(42,160,212,0.55);
    background: rgba(42,160,212,0.09);
    transform: translate(3px, -3px);
  }
  .hero-solution-icon {
    width: 30px; height: 30px; border-radius: 8px;
    background: rgba(42,160,212,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; margin-bottom: 10px;
  }
  .hero-solution-title { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: -0.015em; margin-bottom: 4px; }
  .hero-solution-desc { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.4; }

  /* ── SECTIONS GENERIC ── */
  section { padding: 100px 5%; }

  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 10px;
  }

  .section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800; color: var(--navy); letter-spacing: -0.035em;
    line-height: 1.2; margin-bottom: 14px;
  }

  .section-sub {
    font-size: 16px; color: var(--gray-500); max-width: 560px;
    line-height: 1.7;
  }

  .section-header { margin-bottom: 52px; }

  /* ── ALTERNATING BG ── */
  .bg-white { background: var(--white); }
  .bg-off { background: var(--off-white); }
  .bg-dark { background: var(--dark); }
  .bg-navy { background: var(--navy); }

  /* ── VLP SECTION ── */
  .vlp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

  .vlp-cycle {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  }

  .cycle-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: 18px; padding: 22px;
    box-shadow: 0 8px 24px rgba(12,45,94,0.03);
    transition: var(--transition-smooth);
  }
  .cycle-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 16px 36px rgba(42,160,212,0.15);
    transform: translateY(-6px);
  }

  .cycle-card-icon { font-size: 22px; margin-bottom: 8px; }
  .cycle-card-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .cycle-card-items { font-size: 11px; color: var(--gray-500); line-height: 1.6; }

  .vlp-modules { display: flex; flex-direction: column; gap: 0; }

  .module-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 0; border-bottom: 1px solid var(--gray-100);
  }
  .module-item:last-child { border-bottom: none; }

  .module-num {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--navy); color: var(--cyan);
    font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .module-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
  .module-desc { font-size: 12px; color: var(--gray-500); line-height: 1.55; }

  /* ── SOLUÇÕES E SERVIÇOS (visão geral) ── */
  .solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

  /* ── AUTOMATION ── */
  .auto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .auto-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(42,160,212,0.15);
    border-radius: 18px; padding: 32px 24px;
    transition: var(--transition-smooth);
  }
  .auto-card:hover {
    border-color: var(--cyan);
    background: rgba(42,160,212,0.06);
    transform: translateY(-6px);
  }

  .auto-card-icon { font-size: 28px; margin-bottom: 14px; }
  .auto-card-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .auto-card-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

  .auto-stat-row {
    display: flex; gap: 0; margin-top: 56px;
    border: 1px solid rgba(42,160,212,0.2); border-radius: 12px;
    overflow: hidden;
  }

  .auto-stat {
    flex: 1; min-width: 0; padding: 28px 24px; text-align: center;
    border-right: 1px solid rgba(42,160,212,0.2);
  }
  .auto-stat:last-child { border-right: none; }

  .auto-stat-val { font-size: 36px; font-weight: 800; color: var(--cyan); letter-spacing: -0.04em; }
  .auto-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

  /* ── CLIENTES ── */
  .clientes-section {
    background: var(--off-white);
    padding: 96px 5%;
    position: relative;
    overflow: hidden;
  }

  .clientes-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--cyan), var(--navy));
  }

  .clientes-inner-wrap { max-width: 1200px; margin: 0 auto; }

  .clientes-header { margin-bottom: 56px; }

  .clientes-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--cyan);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cyan);
  }

  .clientes-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.035em; line-height: 1.2;
    margin-bottom: 12px;
  }

  .clientes-sub {
    font-size: 15px; color: var(--gray-500);
    max-width: 520px; line-height: 1.7;
  }

  .clientes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .clt-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(12,45,94,0.04);
    transition: var(--transition-smooth);
  }
  .clt-card:hover {
    box-shadow: 0 20px 40px rgba(12,45,94,0.1);
    transform: translateY(-6px) scale(1.03);
  }

  .clt-logo-area {
    height: 140px;
    display: flex; align-items: center; justify-content: center;
    padding: 28px 24px;
    border-radius: 14px;
  }

  .clt-white { background: #ffffff; }
  .clt-dark  { background: #111111; }
  .clt-fratelli { background: #0c2d5e; }

  .clt-logo {
    max-width: 100%; max-height: 80px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

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

  /* ── TRAINING ── */
  .training-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .training-grid-4 { grid-template-columns: repeat(2, 1fr); }

  .training-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: 18px; padding: 32px 24px;
    border-top: 4px solid var(--cyan);
    box-shadow: 0 8px 24px rgba(12,45,94,0.03);
    transition: var(--transition-smooth);
    position: relative;
  }
  .training-card:hover {
    box-shadow: 0 20px 40px rgba(12,45,94,0.1);
    transform: translateY(-6px);
  }

  .training-card-highlight {
    border-top: 3px solid var(--navy);
    background: linear-gradient(135deg, #f0f7ff 0%, var(--white) 100%);
  }

  .training-card-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--navy); color: var(--cyan);
    font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.08em;
  }

  .training-card-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
  .training-chip {
    font-size: 11px; padding: 3px 10px; border-radius: 20px;
    background: rgba(12,45,94,0.08); color: var(--navy); font-weight: 500;
  }

  .training-card-icon { font-size: 28px; margin-bottom: 14px; }
  .training-card-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .training-card-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

  /* ── DASHBOARD ── */
  .dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

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

  .dash-card {
    background: var(--navy-light); border: 1px solid rgba(42,160,212,0.15);
    border-radius: 18px; padding: 32px;
    position: relative; overflow: hidden;
    transition: var(--transition-smooth);
  }
  .dash-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
  }
  .dash-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  }

  .dash-card-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
  .dash-card-title span { font-size: 20px; }

  .dash-metrics { display: flex; gap: 20px; margin-bottom: 18px; }
  .dash-metric-val { font-size: 26px; font-weight: 800; color: var(--cyan); }
  .dash-metric-lbl { font-size: 11px; color: rgba(255,255,255,0.5); }

  .dash-list { list-style: none; }
  .dash-list li {
    font-size: 12px; color: rgba(255,255,255,0.65);
    padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 8px;
  }
  .dash-list li:last-child { border-bottom: none; }
  .dash-list li::before { content: '→'; color: var(--cyan); font-size: 11px; }

  .dash-custom {
    background: linear-gradient(135deg, var(--navy), #1a4a8a);
    border-radius: 12px; padding: 36px;
    display: flex; flex-direction: column; justify-content: center;
    grid-column: 1 / -1;
    border: 1px solid rgba(42,160,212,0.3);
    position: relative; overflow: hidden;
  }

  .dash-custom::after {
    content: '◈'; position: absolute; right: 36px; top: 50%; transform: translateY(-50%);
    font-size: 120px; color: rgba(42,160,212,0.07); pointer-events: none;
  }

  .dash-custom-title { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
  .dash-custom-sub { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 500px; text-align: justify; }

  .dash-custom-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
  .dash-custom-chip {
    font-size: 12px; padding: 6px 14px; border-radius: 20px;
    border: 1px solid rgba(42,160,212,0.4); color: var(--cyan);
    font-weight: 500;
  }

  /* ── APP ── */
  .app-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }

  .app-phones-wrapper {
    position: relative;
    width: 300px;
    margin: 0 auto;
    height: 520px;
  }

  .app-phone {
    position: absolute;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    overflow: hidden;
  }

  .app-phone-back {
    width: 230px; top: 30px; left: 0;
    transform: rotate(-6deg);
    opacity: 0.85; z-index: 1;
    border: 3px solid rgba(42,160,212,0.2);
  }

  .app-phone-front {
    width: 240px; top: 10px; right: 0;
    transform: rotate(3deg); z-index: 2;
    border: 3px solid rgba(42,160,212,0.35);
    box-shadow: 0 30px 80px rgba(12,45,94,0.3);
  }

  .app-phones-wrapper:hover .app-phone-front { transform: rotate(0deg) scale(1.03); }
  .app-phones-wrapper:hover .app-phone-back { transform: rotate(-10deg) translateX(-15px); }

  .app-screen {
    background: #0f1a2e; border-radius: 14px;
    padding: 16px; min-height: 380px;
  }

  .app-screen-header {
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: var(--cyan);
    letter-spacing: 0.1em; margin-bottom: 16px;
  }

  .app-icons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

  .app-icon-btn {
    border-radius: 12px; padding: 14px 8px;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 500; color: var(--white);
    text-align: center; line-height: 1.3;
  }
  .app-icon-btn .ico { font-size: 22px; }

  .app-icon-btn.purple { background: #5B4FD0; }
  .app-icon-btn.amber { background: #C4830D; }
  .app-icon-btn.green { background: #0A7C55; }
  .app-icon-btn.red { background: #C23B2A; }
  .app-icon-btn.blue { background: #1A6BB5; }
  .app-icon-btn.dark { background: #2a2a3a; }

  .app-features { display: flex; flex-direction: column; gap: 16px; }

  .app-feature {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 20px 24px; border-radius: 18px;
    background: var(--white); border: 1px solid var(--gray-100);
    box-shadow: 0 6px 20px rgba(12,45,94,0.02);
    transition: var(--transition-smooth);
  }
  .app-feature:hover {
    border-color: var(--cyan);
    box-shadow: 0 12px 30px rgba(42,160,212,0.1);
    transform: translateX(6px);
  }

  .app-feature-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--off-white); display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .app-feature-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .app-feature-desc { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

  /* ── VIDEO/CONTENT ── */
  .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  .content-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 12px; padding: 28px;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .content-card:hover { box-shadow: 0 8px 30px rgba(12,45,94,0.1); transform: translateY(-2px); }
  .content-card-icon { font-size: 28px; margin-bottom: 14px; }
  .content-card-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .content-card-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
  .content-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
  .tag { font-size: 11px; padding: 3px 10px; border-radius: 20px; background: var(--gray-100); color: var(--gray-700); }
  .tag-blue { background: rgba(42,160,212,0.1); color: var(--cyan); }

  /* ── BENEFITS ── */
  .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .benefit-card {
    padding: 32px 24px; border-radius: 18px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition-smooth);
  }
  .benefit-card:hover {
    border-color: rgba(42,160,212,0.4);
    background: rgba(42,160,212,0.06);
    transform: translateY(-6px);
  }

  .benefit-icon { font-size: 28px; margin-bottom: 14px; }
  .benefit-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .benefit-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

  /* ── POR QUE ESCOLHER A VICTOR (institucional) — classes exclusivas desta seção ── */
  .why-victor-lead {
    font-size: 17px; color: var(--gray-700); line-height: 1.8;
    max-width: 760px; margin: 0 auto 12px;
  }
  .why-victor-sub {
    font-size: 14px; color: var(--gray-500); line-height: 1.8;
    max-width: 760px; margin: 0 auto;
  }
  .why-victor-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-top: 56px;
  }
  .why-victor-card { padding: 8px 6px; }
  .why-victor-num {
    font-size: 34px; font-weight: 800; color: var(--cyan);
    opacity: 0.35; line-height: 1; margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
  }
  .why-victor-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; }
  .why-victor-desc { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; text-align: justify; }
  .why-victor-closing {
    text-align: center; margin-top: 72px; padding-top: 48px;
    border-top: 1px solid var(--gray-100);
  }
  .why-victor-closing-text {
    font-size: 22px; font-weight: 700; color: var(--navy);
    letter-spacing: -0.01em; line-height: 1.5;
    max-width: 640px; margin: 0 auto 28px;
    text-align: justify;
  }

  /* ── CUSTOM / DEMAND ── */
  .demand-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 100%);
    padding: 90px 5%;
  }

  .demand-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

  .demand-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(42,160,212,0.15); border: 1px solid rgba(42,160,212,0.3);
    color: var(--cyan); font-size: 11px; font-weight: 700;
    padding: 5px 12px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 16px;
  }

  .demand-title { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 16px; }
  .demand-sub { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }

  .demand-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .demand-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; }
  .demand-list li::before { content: '✓'; color: var(--cyan); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

  .demand-right { display: flex; flex-direction: column; gap: 14px; }

  .demand-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(42,160,212,0.15);
    border-radius: 16px; padding: 22px 24px;
    display: flex; align-items: center; gap: 16px;
    transition: var(--transition-smooth);
  }
  .demand-card:hover {
    border-color: rgba(42,160,212,0.5);
    transform: scale(1.02);
  }

  .demand-card-icon { font-size: 24px; flex-shrink: 0; }
  .demand-card-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
  .demand-card-sub { font-size: 12px; color: rgba(255,255,255,0.5); }

  /* ── CONTACT ── */
  .contact-section { background: var(--off-white); padding: 90px 5%; }

  .contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

  .contact-info { display: flex; flex-direction: column; gap: 20px; }

  .contact-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 16px; padding: 20px 24px;
    box-shadow: 0 6px 20px rgba(12,45,94,0.02);
    transition: var(--transition-smooth);
  }
  .contact-item:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(12,45,94,0.08);
  }

  .contact-item-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--navy); color: var(--cyan);
    font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .contact-item-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 3px; }
  .contact-item-value { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; }
  .contact-item-value:hover { color: var(--cyan); }

  .contact-cta-box {
    background: linear-gradient(135deg, var(--navy), #1a4a8a);
    border-radius: 16px; padding: 40px;
    display: flex; flex-direction: column; justify-content: center;
  }

  .contact-cta-box h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em; }
  .contact-cta-box p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 28px; line-height: 1.65; }

  .cta-btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: var(--white);
    padding: 16px 32px; border-radius: 50px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: var(--transition-smooth);
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  }
  .cta-btn-wa:hover {
    background: #1ebe5d;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  }

  .cta-btn-email {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08); color: var(--white);
    padding: 14px 28px; border-radius: 50px;
    font-size: 14px; font-weight: 500; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition-smooth);
  }
  .cta-btn-email:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--cyan);
    transform: translateY(-2px);
  }

  .cta-buttons { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }

  /* ── FOOTER ── */
  footer {
    background: var(--dark); padding: 36px 5%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }

  .footer-left { font-size: 13px; color: rgba(255,255,255,0.4); }
  .footer-left a { color: var(--cyan); text-decoration: none; }

  .footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
  .footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--cyan); }

  /* ── QUOTE STRIP ── */
  .quote-strip {
    background: var(--cyan); padding: 24px 5%;
    text-align: center;
  }
  .quote-strip p { font-size: 16px; font-weight: 600; color: var(--white); letter-spacing: -0.01em; }
  .quote-strip em { font-style: italic; opacity: 0.85; }




  /* ── VIDEO ── */
  .video-section {
    background: var(--navy);
    padding: 100px 5%;
  }

  .video-header { margin-bottom: 48px; }

  .video-wrapper {
    position: relative;
    width: 100%; max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    aspect-ratio: 16/9;
    background: #000;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }

  .video-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #0C2D5E 60%, #1a4a8a 100%);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }

  .video-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(42,160,212,0.12) 0%, transparent 70%);
  }

  .video-placeholder-inner {
    display: flex; flex-direction: column;
    align-items: center; gap: 20px;
    position: relative; z-index: 1;
  }

  .video-play-btn {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(42,160,212,0.2);
    border: 2px solid rgba(42,160,212,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--cyan);
    padding-left: 6px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
  }

  .video-placeholder:hover .video-play-btn {
    background: var(--cyan);
    color: var(--white);
    border-color: var(--cyan);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(42,160,212,0.4);
  }

  .video-placeholder-text {
    text-align: center;
  }

  .video-placeholder-text span {
    display: block;
    font-size: 18px; font-weight: 700;
    color: var(--white); letter-spacing: -0.02em;
  }

  .video-placeholder-text small {
    font-size: 13px; color: rgba(255,255,255,0.5);
    margin-top: 4px; display: block;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .hero-grid, .vlp-grid, .app-grid, .contact-inner, .demand-inner { grid-template-columns: 1fr; }
    .vlp-cycle { grid-template-columns: 1fr; }
    .auto-grid, .training-grid, .benefits-grid, .solutions-grid { grid-template-columns: 1fr 1fr; }
    .why-victor-grid { grid-template-columns: 1fr 1fr; }
    .content-grid, .dash-grid { grid-template-columns: 1fr; }
    .dash-custom { grid-column: 1; }
    .hero-bg-v { display: none; }
    .hero-visual { display: none; }
    .hero { min-height: auto; }
    .hero::before { opacity: 0.3; width: 100%; }
    .hero::after { display: none; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy); padding: 20px 5%; gap: 16px; border-bottom: 1px solid rgba(12,45,94,0.12); }
    .nav-links.open > li > a { color: var(--white); }
    .nav-dropdown-menu { display: flex; position: static; box-shadow: none; background: transparent; margin-top: 8px; padding: 0 0 0 12px; }
    .nav-dropdown-menu a { color: rgba(255,255,255,0.75); padding: 6px 0; }
    .nav-dropdown-menu a:hover { background: transparent; color: var(--cyan); }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
  }

  @media (max-width: 600px) {
    .auto-grid, .training-grid, .benefits-grid, .solutions-grid { grid-template-columns: 1fr; }
    .why-victor-grid { grid-template-columns: 1fr; }
    section { padding: 60px 5%; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── ACTIVE NAV ── */
  .nav-links a.active { color: var(--cyan); }
