    /* ── RESET & BASE ──────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Outfit", "Inter", sans-serif;
      color: #0C1D3E;
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }

    /* ── TOKENS ────────────────────────────────────────────────── */
    :root {
      --orange: #F87422;
      --navy:   #0C1D3E;
      --blue:   #2A7FCC;
      --light:  #F4F8FD;
      --border: #DDE8F2;
      --muted:  #5A7294;
      --navy-dark: #08162E;
    }

    /* ── HELPERS ───────────────────────────────────────────────── */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
    @media (max-width: 768px) { .container { padding: 0 1.25rem; } }

    .tag {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: var(--orange); margin-bottom: .75rem;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700;
      letter-spacing: -.02em; line-height: 1.2; color: var(--navy);
    }
    .btn-orange {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .85rem 1.75rem; border-radius: .6rem;
      background: var(--orange); color: #fff;
      font-size: .875rem; font-weight: 600;
      box-shadow: 0 4px 18px rgba(248,116,34,.35);
      transition: box-shadow .2s, opacity .2s;
      border: none; cursor: pointer;
    }
    .btn-orange:hover { box-shadow: 0 8px 28px rgba(248,116,34,.45); opacity: .92; }
    .btn-navy {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .85rem 1.75rem; border-radius: .6rem;
      background: var(--navy); color: #fff;
      font-size: .875rem; font-weight: 600;
      transition: box-shadow .2s;
      border: none; cursor: pointer;
    }
    .btn-navy:hover { box-shadow: 0 8px 24px rgba(12,29,62,.25); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .85rem 1.75rem; border-radius: .6rem;
      border: 1px solid var(--border); background: #fff; color: var(--navy);
      font-size: .875rem; font-weight: 600;
      transition: box-shadow .2s;
      cursor: pointer;
    }
    .btn-outline:hover { box-shadow: 0 4px 14px rgba(12,29,62,.1); }

    /* ── NAVBAR ────────────────────────────────────────────────── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s, box-shadow .3s;
    }
    #navbar.scrolled {
      border-color: var(--border);
      box-shadow: 0 2px 20px rgba(12,29,62,.07);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }
    .nav-logo img { height: 40px; width: auto; }
    .nav-links {
      display: flex; align-items: center; gap: 2rem;
    }
    .nav-links a {
      font-size: .875rem; font-weight: 500; color: var(--navy);
      transition: opacity .2s;
    }
    .nav-links a:hover { opacity: .55; }
    .nav-cta { /* btn-orange small */ }
    .hamburger {
      display: none; background: none; border: none; cursor: pointer; padding: .4rem;
    }
    @media (max-width: 1024px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; flex-direction: column; gap: 5px; }
      .hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
    }

    /* ── DRAWER ────────────────────────────────────────────────── */
    #drawer-backdrop {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(8,22,46,.55); backdrop-filter: blur(4px);
      opacity: 0; transition: opacity .3s;
    }
    #drawer-backdrop.open { display: block; opacity: 1; }
    #drawer {
      position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
      width: 288px; background: #fff;
      box-shadow: -20px 0 60px rgba(8,22,46,.18);
      transform: translateX(100%);
      transition: transform .32s cubic-bezier(.4,0,.2,1);
      display: flex; flex-direction: column;
    }
    #drawer.open { transform: translateX(0); }
    .drawer-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
    }
    .drawer-header img { height: 32px; width: auto; }
    .drawer-close {
      width: 36px; height: 36px; border-radius: .5rem; border: none;
      background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .drawer-close:hover { background: #F4F8FD; }
    .drawer-nav {
      flex: 1; overflow-y: auto; padding: 1.5rem;
      display: flex; flex-direction: column; gap: .25rem;
    }
    .drawer-nav a {
      display: block; padding: .85rem 1rem; border-radius: .75rem;
      font-size: .875rem; font-weight: 500; color: var(--navy);
      transition: background .15s;
    }
    .drawer-nav a:hover { background: var(--light); }
    .drawer-footer {
      padding: 1.5rem; border-top: 1px solid var(--border);
    }
    .drawer-footer .btn-orange { width: 100%; justify-content: center; }
    .drawer-footer p { text-align: center; font-size: .7rem; color: #A0B4CC; margin-top: .75rem; }

    /* ── HERO ──────────────────────────────────────────────────── */
    #hero {
      padding-top: 72px; min-height: 100vh;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      background: linear-gradient(160deg, var(--light) 60%, #dceefa 100%);
    }
    #hero::before {
      content: ""; position: absolute; inset: 0;
      background-image: linear-gradient(var(--border) 1px, transparent 1px),
                        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px; opacity: .4;
    }
    .hero-inner {
      position: relative;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center; padding: 6rem 0;
    }
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
      .hero-image-wrap { order: -1; }
    }
    .hero-pill {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1.75rem;
      font-size: .7rem; font-weight: 700;
      background: rgba(42,127,204,.1); color: var(--blue);
      border: 1px solid rgba(42,127,204,.2);
    }
    .hero-pill-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
    }
    .hero-h1 {
      font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 700;
      letter-spacing: -.02em; line-height: 1.15; color: var(--navy); margin-bottom: 1.5rem;
    }
    .hero-h1 .gradient {
      background: linear-gradient(135deg, var(--blue), var(--orange));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-p { font-size: 1.1rem; line-height: 1.7; color: #4A6585; margin-bottom: 2.25rem; max-width: 32rem; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
    .hero-image-wrap { position: relative; }
    .hero-image-bg {
      position: absolute; inset: -1rem; border-radius: 1.5rem;
      background: linear-gradient(135deg, rgba(42,127,204,.12), rgba(248,116,34,.08));
    }
    .hero-img {
      position: relative; width: 100%; aspect-ratio: 4/3; object-fit: cover;
      border-radius: 1.25rem;
      box-shadow: 0 30px 80px rgba(12,29,62,.18);
    }
    .hero-stats {
      position: absolute; bottom: -1.25rem; left: 1.5rem; right: 1.5rem;
      background: #fff; border-radius: .9rem;
      padding: 1rem 1.5rem;
      display: flex; align-items: center; justify-content: space-between;
      border: 1px solid var(--border);
      box-shadow: 0 12px 40px rgba(12,29,62,.12);
    }
    .hero-stat { display: flex; align-items: center; gap: 1rem; }
    .hero-stat-divider { width: 1px; height: 2rem; background: var(--border); }
    .hero-stat-val { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
    .hero-stat-lbl { font-size: .7rem; color: #7A93B0; }

    /* ── O PROBLEMA ────────────────────────────────────────────── */
    #problema { padding: 7rem 0; background: #fff; }
    .problema-header { max-width: 36rem; margin-bottom: 3.5rem; }
    .problema-header p { font-size: 1.1rem; color: var(--muted); margin-top: 1rem; }
    .cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
    @media (max-width: 768px) { .cards-3 { grid-template-columns: 1fr; } }
    .prob-card {
      background: var(--light); border: 1px solid var(--border); border-radius: 1.25rem;
      padding: 2rem; transition: transform .3s, box-shadow .3s;
    }
    .prob-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(12,29,62,.1); }
    .prob-icon {
      width: 44px; height: 44px; border-radius: .75rem;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .prob-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
    .prob-card p { font-size: .85rem; line-height: 1.65; color: var(--muted); }
    .prob-bar {
      height: 2px; width: 40px; border-radius: 2px;
      margin-top: 1.5rem; transition: width .5s;
    }
    .prob-card:hover .prob-bar { width: 80px; }

    /* ── METODOLOGIA ───────────────────────────────────────────── */
    #methodology { padding: 7rem 0; background: var(--light); }
    .meth-header { text-align: center; max-width: 36rem; margin: 0 auto 4.5rem; }
    .meth-header p { color: var(--muted); margin-top: 1rem; }
    .steps { display: flex; gap: 1rem; }
    @media (max-width: 1024px) { .steps { flex-direction: column; } }
    .step {
      flex: 1; border-radius: 1.25rem; padding: 1.75rem;
      background: #fff; border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s;
    }
    .step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(12,29,62,.08); }
    .step.active { background: var(--navy); border-color: var(--navy); }
    .step-num {
      display: inline-block; font-size: .7rem; font-weight: 700;
      padding: .2rem .6rem; border-radius: .4rem; margin-bottom: 1rem;
      background: var(--light); color: var(--navy);
    }
    .step.active .step-num { background: var(--orange); color: #fff; }
    .step h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; color: var(--navy); }
    .step.active h3 { color: #fff; }
    .step p { font-size: .78rem; line-height: 1.55; color: #6B8AAD; }
    .step.active p { color: rgba(255,255,255,.6); }

    /* ── SERVIÇOS ──────────────────────────────────────────────── */
    #services { padding: 7rem 0; background: #fff; }
    .services-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
    .services-more { font-size: .875rem; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: .35rem; transition: opacity .2s; }
    .services-more:hover { opacity: .7; }
    .cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
    @media (max-width: 1200px) { .cards-4 { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 600px) { .cards-4 { grid-template-columns: 1fr; } }
    .srv-card {
      border-radius: 1.25rem; overflow: hidden;
      border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s;
    }
    .srv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(12,29,62,.1); }
    .srv-img-wrap { position: relative; height: 192px; overflow: hidden; }
    .srv-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .srv-card:hover .srv-img-wrap img { transform: scale(1.05); }
    .srv-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(12,29,62,.6) 0%, transparent 50%);
    }
    .srv-tag {
      position: absolute; top: 1rem; left: 1rem;
      font-size: .7rem; font-weight: 700; padding: .25rem .65rem; border-radius: .4rem;
      background: rgba(255,255,255,.15); color: #fff;
      backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2);
    }
    .srv-body { padding: 1.5rem; }
    .srv-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
    .srv-body p { font-size: .8rem; line-height: 1.6; color: #6B8AAD; }
    .srv-link {
      display: flex; align-items: center; gap: .4rem;
      font-size: .75rem; font-weight: 600; color: var(--blue);
      margin-top: 1.1rem;
    }

    /* ── QUEM SOMOS ────────────────────────────────────────────── */
    #about { padding: 7rem 0; background: var(--light); overflow: hidden; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    @media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }
    .about-img-wrap { position: relative; }
    .about-img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 1.25rem;
      box-shadow: 0 24px 64px rgba(12,29,62,.14);
    }
    .about-badge {
      position: absolute; right: -1.5rem; bottom: -1.5rem;
      background: var(--navy); border-radius: 1rem;
      padding: 1.25rem 1.5rem; text-align: center;
      box-shadow: 0 16px 40px rgba(12,29,62,.25);
    }
    @media (max-width: 768px) { .about-badge { right: 0; bottom: -1rem; } }
    .about-badge-val { font-size: 1.75rem; font-weight: 700; color: #fff; }
    .about-badge-lbl { font-size: .7rem; color: rgba(255,255,255,.6); }
    .about-text p { font-size: 1rem; line-height: 1.75; color: #4A6585; margin-bottom: 1.1rem; }
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin: 2rem 0; }
    .stat-box {
      background: #fff; border: 1px solid var(--border); border-radius: .9rem;
      padding: 1.1rem 1.25rem;
    }
    .stat-box-val { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
    .stat-box-lbl { font-size: .72rem; color: #7A93B0; }

    /* ── VALORES ───────────────────────────────────────────────── */
    #valores { padding: 7rem 0; background: var(--navy); }
    .valores-header { text-align: center; max-width: 30rem; margin: 0 auto 3.5rem; }
    .valores-header h2 { color: #fff; }
    .vals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
    @media (max-width: 768px) { .vals-grid { grid-template-columns: 1fr; } }
    .val-card {
      border-radius: 1.25rem; padding: 2rem;
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
      transition: transform .3s, box-shadow .3s;
    }
    .val-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
    .val-icon {
      width: 44px; height: 44px; border-radius: .75rem;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .val-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
    .val-card p { font-size: .85rem; line-height: 1.65; color: rgba(255,255,255,.55); }

    /* ── NEWSLETTER ────────────────────────────────────────────── */
    #newsletter { padding: 5rem 0; background: #fff; }
    .nl-card {
      position: relative; overflow: hidden; border-radius: 1.75rem;
      padding: 4rem;
      background: linear-gradient(135deg, var(--navy) 0%, #152d5c 100%);
      box-shadow: 0 30px 80px rgba(12,29,62,.2);
      display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
    }
    @media (max-width: 1024px) { .nl-card { grid-template-columns: 1fr; padding: 2.5rem; } }
    .nl-blob1 {
      position: absolute; right: -5rem; top: -5rem; width: 18rem; height: 18rem;
      border-radius: 50%; opacity: .1;
      background: radial-gradient(circle, var(--orange), transparent 70%);
      pointer-events: none;
    }
    .nl-blob2 {
      position: absolute; left: 50%; bottom: -4rem; width: 14rem; height: 14rem;
      border-radius: 50%; opacity: .1;
      background: radial-gradient(circle, var(--blue), transparent 70%);
      pointer-events: none;
    }
    .nl-pill {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1rem;
      font-size: .7rem; font-weight: 700;
      background: rgba(248,116,34,.18); color: var(--orange);
      border: 1px solid rgba(248,116,34,.25);
    }
    .nl-text h2 {
      font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700;
      letter-spacing: -.02em; color: #fff; margin-bottom: 1rem; line-height: 1.25;
    }
    .nl-text p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 32rem; }
    .nl-perks { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; }
    .nl-perk { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: rgba(255,255,255,.5); }
    .nl-form-wrap {
      min-width: 340px; background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 1.25rem; padding: 1.75rem;
    }
    @media (max-width: 1024px) { .nl-form-wrap { min-width: 0; } }
    .nl-form label { display: block; font-size: .78rem; font-weight: 600; color: #fff; margin-bottom: .5rem; }
    .nl-form input {
      width: 100%; padding: .75rem 1rem; border-radius: .75rem;
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
      color: #fff; font-size: .875rem; font-family: inherit;
      outline: none; transition: border-color .2s;
      margin-bottom: .75rem;
    }
    .nl-form input::placeholder { color: rgba(255,255,255,.35); }
    .nl-form input:focus { border-color: var(--orange); }
    .nl-form button {
      width: 100%; padding: .9rem; border-radius: .75rem;
      background: var(--orange); color: #fff;
      font-size: .875rem; font-weight: 600; font-family: inherit;
      border: none; cursor: pointer;
      box-shadow: 0 4px 16px rgba(248,116,34,.4);
      transition: box-shadow .2s, opacity .2s;
    }
    .nl-form button:hover { box-shadow: 0 8px 24px rgba(248,116,34,.5); opacity: .92; }
    .nl-form-note { text-align: center; font-size: .7rem; color: rgba(255,255,255,.35); margin-top: .75rem; }
    .nl-success {
      display: none; text-align: center; padding: 2rem 1rem;
    }
    .nl-success-icon {
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(248,116,34,.2);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1rem;
    }
    .nl-success h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
    .nl-success p { font-size: .82rem; color: rgba(255,255,255,.55); }

    /* ── CTA ───────────────────────────────────────────────────── */
    #contact {
      padding: 7rem 0; position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--light) 0%, #d8ebf9 100%);
    }
    .cta-blob1 {
      position: absolute; right: -8rem; top: -8rem; width: 500px; height: 500px;
      border-radius: 50%; opacity: .18;
      background: radial-gradient(circle, var(--blue), transparent 70%);
      pointer-events: none;
    }
    .cta-blob2 {
      position: absolute; left: -5rem; bottom: -5rem; width: 18rem; height: 18rem;
      border-radius: 50%; opacity: .1;
      background: radial-gradient(circle, var(--orange), transparent 70%);
      pointer-events: none;
    }
    .cta-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
    .cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.02em; color: var(--navy); margin-bottom: 1.25rem; }
    .cta-inner > p { font-size: 1.1rem; color: #4A6585; margin-bottom: 2.5rem; }
    .cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
    .cta-contacts {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem;
      font-size: .875rem; color: #7A93B0; padding-top: 2rem;
      border-top: 1px solid var(--border);
    }
    .cta-contact-item { display: flex; align-items: center; gap: .45rem; }

    /* ── FOOTER ────────────────────────────────────────────────── */
    footer { background: var(--navy-dark); }
    .footer-inner { padding: 4rem 0 2.5rem; }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
      gap: 3rem; margin-bottom: 3rem;
    }
    @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand img { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.1rem; }
    .footer-brand p { font-size: .8rem; line-height: 1.7; color: rgba(255,255,255,.4); max-width: 18rem; margin-bottom: 1.5rem; }
    .footer-socials { display: flex; gap: .65rem; }
    .footer-social {
      width: 36px; height: 36px; border-radius: .5rem;
      background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5); transition: background .2s;
    }
    .footer-social:hover { background: rgba(255,255,255,.14); }
    .footer-col h5 {
      font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: #fff; margin-bottom: 1.25rem;
    }
    .footer-col ul li + li { margin-top: .85rem; }
    .footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.42); transition: color .2s; }
    .footer-col ul li a:hover { color: #fff; }
    .footer-contact-item { display: flex; align-items: flex-start; gap: .65rem; font-size: .82rem; color: rgba(255,255,255,.42); margin-bottom: .9rem; }
    .footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
      padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
      font-size: .72rem; color: rgba(255,255,255,.28);
    }
    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .footer-bottom-links a { color: rgba(255,255,255,.28); transition: color .2s; }
    .footer-bottom-links a:hover { color: rgba(255,255,255,.6); }