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

    :root {
      --ink: #0d0f14;
      --cream: #f5f0e8;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --slate: #3a3f52;
      --muted: #7a8099;
      --white: #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--ink);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.4rem 5vw;
      background: rgba(13,15,20,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--cream);
    }
    .nav-logo span { color: var(--gold); }
    nav ul {
      list-style: none;
      display: flex; gap: 2.5rem;
    }
    nav ul a {
      text-decoration: none;
      color: var(--muted);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.25s;
    }
    nav ul a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--ink) !important;
      padding: 0.5rem 1.3rem;
      border-radius: 2px;
    }
    .nav-cta:hover { background: var(--gold-light); color: var(--ink) !important; }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 7rem 5vw 5rem;
      position: relative;
      overflow: hidden;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-glow {
      position: absolute;
      top: -10%; right: -5%;
      width: 55vw; height: 55vw;
      background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 680px;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 2rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: block; width: 28px; height: 1px;
      background: var(--gold);
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: 1.05;
      font-weight: 900;
      margin-bottom: 1.8rem;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero p {
      font-size: 1.1rem;
      line-height: 1.75;
      color: var(--muted);
      max-width: 520px;
      margin-bottom: 2.8rem;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      display: inline-block;
      background: var(--gold);
      color: var(--ink);
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      padding: 1rem 2.2rem;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-ghost {
      display: inline-block;
      border: 1px solid rgba(201,168,76,0.4);
      color: var(--cream);
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      padding: 1rem 2.2rem;
      text-decoration: none;
      border-radius: 2px;
      transition: border-color 0.25s, color 0.25s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    .hero-stats {
      position: absolute; right: 5vw; bottom: 8vh;
      display: flex; gap: 3rem;
      z-index: 2;
    }
    .stat { text-align: right; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.75rem; color: var(--muted);
      letter-spacing: 0.06em; text-transform: uppercase;
      margin-top: 0.25rem;
    }

    /* SECTION BASE */
    section { padding: 7rem 5vw; }
    .section-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .section-tag::before {
      content: ''; display: block;
      width: 20px; height: 1px; background: var(--gold);
    }
    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700; line-height: 1.15;
      margin-bottom: 1.2rem;
    }
    .lead {
      font-size: 1.05rem; line-height: 1.75;
      color: var(--muted); max-width: 540px;
    }

    /* SOBRE */
    .about { background: #10131a; }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-card {
      background: linear-gradient(135deg, #181c27 0%, #1e2335 100%);
      border: 1px solid rgba(201,168,76,0.18);
      border-radius: 4px;
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .about-accent {
      position: absolute; bottom: -30px; right: -30px;
      width: 160px; height: 160px;
      background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
    }
    .about-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 700;
      margin-bottom: 0.3rem;
    }
    .about-role {
      font-size: 0.8rem; color: var(--gold);
      letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .about-bio {
      font-size: 0.95rem; line-height: 1.8;
      color: var(--muted);
    }
    .badge-row {
      display: flex; gap: 0.6rem; flex-wrap: wrap;
      margin-top: 1.8rem;
    }
    .badge {
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.35rem 0.8rem;
      border: 1px solid rgba(201,168,76,0.35);
      border-radius: 2px; color: var(--gold);
    }
    .about-text h2 { color: var(--cream); }
    .about-text p {
      font-size: 1rem; line-height: 1.8;
      color: var(--muted); margin-bottom: 1.2rem;
    }
    .experience-bar {
      display: flex; align-items: center; gap: 1rem;
      margin-top: 2rem;
      padding: 1.2rem 1.5rem;
      background: rgba(201,168,76,0.07);
      border-left: 2px solid var(--gold);
    }
    .exp-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem; font-weight: 900;
      color: var(--gold); line-height: 1;
    }
    .exp-label { font-size: 0.85rem; color: var(--muted); line-height: 1.4; }

    /* SERVIÇOS */
    .services { background: var(--ink); }
    .services-header { margin-bottom: 4rem; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.1);
    }
    .service-item {
      background: var(--ink);
      padding: 2.8rem 2.4rem;
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }
    .service-item::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 0;
      background: linear-gradient(to top, rgba(201,168,76,0.06), transparent);
      transition: height 0.4s;
    }
    .service-item:hover { background: #13161f; }
    .service-item:hover::after { height: 100%; }
    .service-icon {
      font-size: 2rem; margin-bottom: 1.5rem;
      display: block;
    }
    .service-item h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-weight: 700;
      margin-bottom: 0.8rem;
      color: var(--cream);
    }
    .service-item p {
      font-size: 0.9rem; line-height: 1.75;
      color: var(--muted);
    }
    .service-num {
      position: absolute; top: 1.5rem; right: 1.8rem;
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem; font-weight: 900;
      color: rgba(201,168,76,0.07);
      line-height: 1; pointer-events: none;
    }

    /* SETORES */
    .sectors { background: #10131a; }
    .sectors-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start;
    }
    .sector-list { margin-top: 3rem; }
    .sector-item {
      display: flex; align-items: center; gap: 1.2rem;
      padding: 1.2rem 0;
      border-bottom: 1px solid rgba(201,168,76,0.08);
      transition: padding-left 0.3s;
      cursor: default;
    }
    .sector-item:hover { padding-left: 0.5rem; }
    .sector-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }
    .sector-name {
      font-size: 0.95rem; font-weight: 500;
      color: var(--cream);
    }
    .sector-desc {
      font-size: 0.8rem; color: var(--muted);
      margin-left: auto;
    }
    .sectors-right { padding-top: 2rem; }
    .track-card {
      background: linear-gradient(135deg, #181c27, #1a1f2e);
      border: 1px solid rgba(201,168,76,0.15);
      padding: 2rem 2.2rem;
      border-radius: 3px;
      margin-bottom: 1rem;
      position: relative;
    }
    .track-card::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 2px; background: var(--gold);
      border-radius: 2px 0 0 2px;
    }
    .track-title {
      font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.4rem;
    }
    .track-desc {
      font-size: 0.9rem; line-height: 1.65; color: var(--muted);
    }

    /* METODOLOGIA */
    .method { background: var(--ink); }
    .method-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 4rem;
      position: relative;
    }
    .method-steps::before {
      content: '';
      position: absolute;
      top: 2.2rem; left: 12%; right: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
      opacity: 0.3;
    }
    .method-step {
      padding: 0 2rem;
      text-align: center;
      position: relative;
    }
    .step-num {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid var(--gold);
      background: var(--ink);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700;
      color: var(--gold);
      position: relative; z-index: 1;
    }
    .method-step h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700;
      margin-bottom: 0.6rem; color: var(--cream);
    }
    .method-step p {
      font-size: 0.85rem; line-height: 1.7; color: var(--muted);
    }

    /* CTA */
    .cta-section {
      background: linear-gradient(135deg, #181c27 0%, #1a1e2c 100%);
      border-top: 1px solid rgba(201,168,76,0.12);
      border-bottom: 1px solid rgba(201,168,76,0.12);
      text-align: center;
      padding: 8rem 5vw;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 400px;
      background: radial-gradient(ellipse, rgba(201,168,76,0.07), transparent 70%);
      pointer-events: none;
    }
    .cta-section h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); position: relative; }
    .cta-section p {
      font-size: 1.05rem; color: var(--muted);
      max-width: 500px; margin: 1.5rem auto 3rem;
      line-height: 1.75; position: relative;
    }
    .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

    /* FOOTER */
    footer {
      background: #0a0c11;
      padding: 3rem 5vw;
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid rgba(201,168,76,0.08);
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700;
      color: var(--cream);
    }
    .footer-logo span { color: var(--gold); }
    .footer-copy {
      font-size: 0.8rem; color: var(--muted);
      letter-spacing: 0.04em;
    }
    .footer-links {
      display: flex; gap: 2rem; list-style: none;
    }
    .footer-links a {
      font-size: 0.8rem; color: var(--muted);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }

    /* CLIENTES */
    .clients { background: #10131a; padding: 6rem 5vw; text-align: center; }
    .clients h2 { margin-bottom: 0.8rem; }
    .clients .lead { margin: 0 auto 4rem; text-align: center; }

    .brands-marquee-wrap {
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    }
    .brands-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    .brands-track:hover { animation-play-state: paused; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .brand-pill {
      display: flex; align-items: center; justify-content: center;
      padding: 0 3rem;
      height: 100px;
      border-right: 1px solid rgba(201,168,76,0.1);
      white-space: nowrap;
      transition: background 0.3s;
    }
    .brand-pill:hover { background: rgba(201,168,76,0.05); }
    .brand-pill span {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: rgba(245,240,232,0.35);
      letter-spacing: 0.04em;
      transition: color 0.3s;
    }
    .brand-pill:hover span { color: var(--gold); }

    .brands-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(201,168,76,0.08);
      border: 1px solid rgba(201,168,76,0.08);
      margin-top: 3rem;
    }
    .brand-cell {
      background: #10131a;
      display: flex; align-items: center; justify-content: center;
      padding: 2.2rem 1.5rem;
      position: relative;
      transition: background 0.3s;
      cursor: default;
    }
    .brand-cell:hover { background: #141820; }
    .brand-cell span {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: rgba(245,240,232,0.3);
      letter-spacing: 0.05em;
      transition: color 0.3s;
    }
    .brand-cell:hover span { color: var(--gold-light); }
    .brand-cell::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at center, rgba(201,168,76,0.06), transparent 70%);
      opacity: 0; transition: opacity 0.3s;
    }
    .brand-cell:hover::after { opacity: 1; }

    .clients-footer {
      margin-top: 3rem;
      font-size: 0.85rem;
      color: var(--muted);
      letter-spacing: 0.04em;
    }
    .clients-footer strong { color: var(--gold); }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-content > * {
      animation: fadeUp 0.8s ease both;
    }
    .hero-eyebrow { animation-delay: 0.1s; }
    .hero h1     { animation-delay: 0.25s; }
    .hero p      { animation-delay: 0.4s; }
    .hero-actions{ animation-delay: 0.55s; }
    .hero-stats  { animation: fadeUp 0.8s 0.7s ease both; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .about-inner,
      .sectors-inner { grid-template-columns: 1fr; gap: 3rem; }
      .services-grid { grid-template-columns: 1fr; }
      .method-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
      .method-steps::before { display: none; }
      .hero-stats { position: static; margin-top: 3rem; justify-content: flex-start; }
      nav ul { display: none; }
      .hero-stats { display: none; }
    }