    /* ═══════════════════════════════════════════
       CRAFT FOUNDATION — SNAP Studio
       Base fixa. Copiar verbatim em todo site.
       ═══════════════════════════════════════════ */

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    img,
    picture,
    video,
    canvas,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    input,
    textarea,
    select {
      font: inherit;
    }

    ul,
    ol {
      list-style: none;
    }

    /* --- Containers --- */
    .container {
      width: 100%;
      max-width: 1200px;
      margin-inline: auto;
      padding-inline: 1.5rem;
    }

    .container--wide {
      max-width: 1440px;
    }

    .container--narrow {
      max-width: 720px;
    }

    /* --- Typography defaults --- */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      line-height: 1.1;
      letter-spacing: -0.02em;
      text-wrap: balance;
    }

    p {
      text-wrap: pretty;
      max-width: 65ch;
    }

    /* --- Reveal animations (6 variantes) --- */
    .reveal {
      opacity: 0;
      transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal--up {
      transform: translateY(24px);
    }

    .reveal--fade {
      /* opacity only */
    }

    .reveal--left {
      transform: translateX(-32px);
    }

    .reveal--right {
      transform: translateX(32px);
    }

    .reveal--scale {
      transform: scale(0.95);
    }

    .reveal--blur {
      filter: blur(8px);
      transform: translateY(12px);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0) translateX(0) scale(1);
      filter: blur(0);
    }

    /* Stagger não-linear via nth-child */
    .reveal-group>.reveal:nth-child(1) {
      transition-delay: 0ms;
    }

    .reveal-group>.reveal:nth-child(2) {
      transition-delay: 100ms;
    }

    .reveal-group>.reveal:nth-child(3) {
      transition-delay: 220ms;
    }

    .reveal-group>.reveal:nth-child(4) {
      transition-delay: 360ms;
    }

    .reveal-group>.reveal:nth-child(5) {
      transition-delay: 520ms;
    }

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

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

      .reveal {
        opacity: 1;
        transform: none;
        filter: none;
      }
    }

    /* --- Focus visible --- */
    :focus-visible {
      outline: 2px solid var(--color-gold, #C4973A);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* --- Navbar — mobile: fixed + floating pill / desktop: static barra sólida --- */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
    }

    .navbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      max-width: 1200px;
      margin-inline: auto;
      border: 1px solid transparent;
      transition:
        max-width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        margin-top 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Mobile: floating pill ao scrollar */
    .navbar.scrolled .navbar__inner {
      max-width: 1060px;
      margin-top: 0.75rem;
      padding: 0.625rem 0.875rem 0.625rem 1.5rem;
      border-radius: 9999px;
      background: rgba(18, 40, 80, 0.72);
      backdrop-filter: blur(28px) saturate(1.8);
      -webkit-backdrop-filter: blur(28px) saturate(1.8);
      border-color: rgba(196, 151, 58, 0.20);
      box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
    }

    .navbar.scrolled .navbar__cta {
      background: var(--color-gold) !important;
      color: var(--color-navy-deep) !important;
    }

    .navbar.scrolled .navbar__cta:hover {
      background: var(--color-gold-deep) !important;
    }

    /* Desktop: absolute sobre o hero — composição unificada navbar+hero */
    @media (min-width: 769px) {
      .navbar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: transparent;
      }

      .navbar__inner {
        transition: none;
        border-color: transparent !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
        padding: 1.25rem 1.5rem !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
      }

      .navbar__cta {
        background: var(--color-gold) !important;
        color: var(--color-navy-deep) !important;
      }

      .navbar__cta:hover {
        background: var(--color-gold-deep) !important;
        transform: translateY(-1px);
      }
    }

    /* ═══════════════════════════════════════════
       BRAND TOKENS — SFO Advogados
       ═══════════════════════════════════════════ */
    :root {
      --color-navy: #1B3A6B;
      --color-gold: #C4973A;
      --color-white: #FFFFFF;
      --color-navy-deep: #122850;
      --color-navy-mid: #254E8E;
      --color-navy-surface: #D6E0F0;
      --color-gold-deep: #9E7828;
      --color-gold-light: #EDD898;
      --color-bg-base: #F8F7F4;
      --color-bg-alt: #F0F0F0;
      --color-text-primary: #1A1A2E;
      --color-text-secondary: #5C6279;
      --color-text-muted: #9BA3B4;
      --color-success: #2D6A4F;
      --color-error: #C62828;

      --font-heading: 'Playfair Display', 'Georgia', serif;
      --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

      --text-display: clamp(2.75rem, 6vw, 4.5rem);
      --text-h1: clamp(2rem, 4.5vw, 3.5rem);
      --text-h2: clamp(1.5rem, 3vw, 2.5rem);
      --text-h3: 1.75rem;
      --text-body-l: 1.125rem;
      --text-body-m: 1rem;
      --text-small: 0.875rem;
      --text-eyebrow: 0.6875rem;

      --section-padding-xl: 7rem;
      --section-padding-lg: 6rem;
      --section-padding-md: 5rem;

      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      --radius-pill: 9999px;

      --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(27, 58, 107, 0.06);
      --shadow-card-hover: 0 8px 24px rgba(27, 58, 107, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 4px 16px rgba(27, 58, 107, 0.12);
      --transition-normal: 250ms ease;
    }

    /* ═══════════════════════════════════════════
       SITE STYLES — SFO Advogados
       ═══════════════════════════════════════════ */

    body {
      font-family: var(--font-body);
      color: var(--color-text-primary);
      background: var(--color-bg-base);
      overflow-x: hidden;
    }

    /* --- Eyebrow --- */
    .eyebrow {
      font-family: var(--font-body);
      font-size: var(--text-eyebrow);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-gold);
    }

    /* ═══════════════════════════════════════════
       NAVBAR
       ═══════════════════════════════════════════ */
    .navbar__logo {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--color-white);
      letter-spacing: 0.04em;
    }

    .navbar__logo span {
      color: var(--color-gold);
    }

    .navbar__nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .navbar__nav a {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.75);
      transition: color var(--transition-normal);
      cursor: pointer;
      position: relative;
      padding-bottom: 2px;
    }

    .navbar__nav a::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--color-gold);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .navbar__nav a:hover {
      color: var(--color-white);
    }

    .navbar__nav a:hover::after {
      transform: scaleX(1);
    }

    .navbar__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      min-height: 44px;
      background: var(--color-navy-deep);
      color: var(--color-gold);
      border-radius: var(--radius-pill);
      font-size: 0.8125rem !important;
      font-weight: 600 !important;
      cursor: pointer;
      transition: background var(--transition-normal), transform var(--transition-normal) !important;
      white-space: nowrap;
    }

    .navbar__cta:hover {
      background: var(--color-navy-mid) !important;
      transform: translateY(-1px);
    }

    .navbar__cta::after {
      display: none !important;
    }

    .navbar__toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 0.75rem;
      min-width: 44px;
      min-height: 44px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .navbar__toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--color-white);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    [data-nav-menu] {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    @media (max-width: 768px) {
      .navbar__toggle {
        display: flex;
      }

      [data-nav-menu] {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: min(320px, 85vw);
        background: var(--color-navy-deep);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 5rem 2rem 2rem;
        transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 850;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
      }

      [data-nav-menu].open {
        right: 0;
      }

      .navbar__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
      }

      .navbar__nav a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1rem;
      }

      .navbar__cta {
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        background: transparent;
        color: var(--color-gold);
        border: 1px solid rgba(196, 151, 58, 0.4);
      }
    }

    /* ═══════════════════════════════════════════
       HERO — Full-bleed image + gradient overlay
       ═══════════════════════════════════════════ */
    .hero {
      background-color: var(--color-navy);
      /* URL sobrescrita via <style> inline no front-page.php com caminho absoluto do tema */
      background-image: url('bg-header.jpg');
      background-size: cover;
      background-position: right center;
      min-height: 100svh;
      display: flex;
      align-items: center;
      padding-top: 5rem;
      position: relative;
      overflow: hidden;
    }

    /* Overlay: denso no lado esquerdo (texto), dissolve à direita (imagem visível) */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg,
          rgba(18, 40, 80, 0.97) 0%,
          rgba(18, 40, 80, 0.93) 40%,
          rgba(18, 40, 80, 0.60) 65%,
          rgba(18, 40, 80, 0.18) 100%);
      pointer-events: none;
    }

    .hero__inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      max-width: 660px;
      padding-block: 4rem;
    }

    .hero__ornament {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 58%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(196, 151, 58, 0.25), transparent);
      pointer-events: none;
    }

    .hero__left {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    .hero__h1 {
      font-family: var(--font-heading);
      font-size: var(--text-display);
      font-weight: 700;
      color: var(--color-white);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .hero__sub {
      font-family: var(--font-body);
      font-size: var(--text-body-l);
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.65;
      max-width: 480px;
    }

    .hero__ctas {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hero__team {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      padding-top: 0.25rem;
    }

    .hero__team-faces {
      display: flex;
      flex-shrink: 0;
    }

    .hero__team-face {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      border: 2px solid rgba(196, 151, 58, 0.55);
      margin-left: -10px;
      background: var(--color-navy-deep);
    }

    .hero__team-face:first-child {
      margin-left: 0;
    }

    .hero__team-info {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }

    .hero__team-names {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.3;
    }

    .hero__team-oab {
      font-family: var(--font-body);
      font-size: 0.6875rem;
      font-weight: 400;
      color: rgba(196, 151, 58, 0.75);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.875rem;
      min-height: 44px;
      background: var(--color-navy-deep);
      color: var(--color-gold);
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.9375rem;
      cursor: pointer;
      transition: background var(--transition-normal), transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 20px rgba(18, 40, 80, 0.4);
    }

    .btn-primary:hover {
      background: var(--color-navy-mid);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(18, 40, 80, 0.5);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.875rem;
      min-height: 44px;
      border: 1px solid var(--color-gold);
      color: var(--color-gold);
      border-radius: var(--radius-pill);
      font-weight: 500;
      font-size: 0.9375rem;
      cursor: pointer;
      transition: background var(--transition-normal), transform 0.2s ease;
    }

    .btn-outline:hover {
      background: rgba(196, 151, 58, 0.1);
      transform: translateY(-2px);
    }

    @media (max-width: 900px) {
      .hero::before {
        background: linear-gradient(180deg,
            rgba(18, 40, 80, 0.96) 0%,
            rgba(18, 40, 80, 0.88) 100%);
      }

      .hero__inner {
        max-width: 100%;
      }

      .hero__ornament {
        display: none;
      }
    }

    /* ═══════════════════════════════════════════
       SITUAÇÕES — "Você passou por isso?"
       ═══════════════════════════════════════════ */
    .situations {
      background: var(--color-navy-deep);
      padding-block: 4rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .situations__header {
      margin-bottom: 2.5rem;
    }

    .situations__eyebrow {
      color: var(--color-gold);
      margin-bottom: 0.625rem;
    }

    .situations__h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.375rem, 2.5vw, 2rem);
      color: var(--color-white);
      font-weight: 400;
      font-style: italic;
    }

    .situations__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
    }

    .situation-item {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      padding: 1rem 1.25rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 10px;
      transition: background var(--transition-normal), border-color var(--transition-normal);
    }

    .situation-item:hover {
      background: rgba(196, 151, 58, 0.08);
      border-color: rgba(196, 151, 58, 0.2);
    }

    .situation-item__dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--color-gold);
      flex-shrink: 0;
    }

    .situation-item__text {
      font-size: 0.9375rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.4;
      max-width: none;
    }

    .situations__cta {
      margin-top: 2rem;
      font-size: var(--text-small);
      color: rgba(255, 255, 255, 0.45);
    }

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

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

    /* ═══════════════════════════════════════════
       SERVIÇOS — Editorial List
       ═══════════════════════════════════════════ */
    .services {
      background: var(--color-bg-base);
      padding-block: var(--section-padding-xl);
    }

    .services__header {
      margin-bottom: 3.5rem;
    }

    .services__h2 {
      font-family: var(--font-heading);
      font-size: var(--text-h2);
      color: var(--color-text-primary);
      margin-top: 0.75rem;
    }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
    }

    .service-card {
      display: grid;
      grid-template-columns: 2.5rem 1fr auto;
      align-items: start;
      gap: 1rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--color-navy-surface);
      transition: background var(--transition-normal);
      cursor: pointer;
    }

    .service-card:hover {
      background: rgba(27, 58, 107, 0.03);
    }

    .service-card:nth-child(odd) {
      padding-right: 3rem;
      border-right: 1px solid var(--color-navy-surface);
    }

    .service-card:nth-child(even) {
      padding-left: 3rem;
    }

    .service-card__icon {
      color: var(--color-navy);
      margin-top: 0.25rem;
      flex-shrink: 0;
    }

    .service-card__title {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--color-text-primary);
      margin-bottom: 0.375rem;
    }

    .service-card__desc {
      font-size: var(--text-small);
      color: var(--color-text-secondary);
      line-height: 1.5;
      max-width: none;
    }

    .service-card__arrow {
      color: var(--color-gold);
      font-size: 1.25rem;
      margin-top: 0.125rem;
      opacity: 0;
      transform: translateX(-4px);
      transition: opacity var(--transition-normal), transform var(--transition-normal);
    }

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

    .service-card--full {
      grid-column: 1 / -1;
      grid-template-columns: 2.5rem 1fr auto;
      border-right: none !important;
      padding-right: 0 !important;
      padding-left: 0 !important;
    }

    .services__footer {
      margin-top: 2rem;
    }

    .services__footer a {
      color: var(--color-gold);
      font-weight: 500;
      font-size: var(--text-body-m);
      transition: gap var(--transition-normal);
      cursor: pointer;
    }

    .services__footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .services__grid {
        gap: 0.5rem;
      }
    }

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

      .service-card:nth-child(odd) {
        padding-right: 0;
        border-right: none;
      }

      .service-card:nth-child(even) {
        padding-left: 0;
      }

      .service-card--full {
        grid-column: 1;
      }
    }

    /* ═══════════════════════════════════════════
       EQUIPE — Cards editoriais 21st.dev
       ═══════════════════════════════════════════ */
    .team {
      background: var(--color-bg-alt);
      padding-block: var(--section-padding-xl);
      border-top: 1px solid var(--color-navy-surface);
    }

    .team__header {
      margin-bottom: 3.5rem;
    }

    .team__h2 {
      font-family: var(--font-heading);
      font-size: var(--text-h2);
      color: var(--color-text-primary);
      margin-top: 0.75rem;
    }

    .team__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .team-card {
      background: var(--color-white);
      border: 1px solid var(--color-navy-surface);
      border-radius: var(--radius-xl);
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
      transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
    }

    .team-card:hover {
      border-color: var(--color-navy-surface);
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-2px);
    }

    .team-card__photo {
      width: 100%;
      aspect-ratio: 4/5;
      background: var(--color-navy-surface);
      border-radius: var(--radius-lg);
      margin-bottom: 1.25rem;
      position: relative;
      overflow: hidden;
    }

    .team-card__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .team-card__photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(27, 58, 107, 0.25) 0%, transparent 50%);
    }

    .team-card__name {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--color-text-primary);
      margin-bottom: 0.5rem;
      line-height: 1.25;
    }

    .team-card__oab {
      display: inline-flex;
      align-items: center;
      background: rgba(196, 151, 58, 0.1);
      color: var(--color-gold-deep);
      border: 1px solid rgba(196, 151, 58, 0.3);
      border-radius: var(--radius-pill);
      padding: 0.25rem 0.75rem;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.875rem;
    }

    .team-card__bio {
      font-size: 0.9375rem;
      color: var(--color-text-secondary);
      line-height: 1.6;
      max-width: none;
    }

    .team__note {
      text-align: center;
      font-size: var(--text-small);
      color: var(--color-text-muted);
      margin-top: 2.5rem;
    }

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

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

    /* ═══════════════════════════════════════════
       STATS — Cards grid
       ═══════════════════════════════════════════ */
    /* ═══════════════════════════════════════════
       PROCESSO — Editorial numbered list (dark)
       ═══════════════════════════════════════════ */
    .process {
      background: var(--color-navy-deep);
      padding-block: var(--section-padding-xl);
    }

    .process__header {
      margin-bottom: 3.5rem;
      max-width: 640px;
    }

    .process .eyebrow {
      color: var(--color-gold);
    }

    .process__h2 {
      font-family: var(--font-heading);
      font-size: var(--text-h2);
      color: var(--color-white);
      margin-top: 0.75rem;
    }

    .process__steps {
      display: flex;
      flex-direction: column;
    }

    .process-step {
      display: grid;
      grid-template-columns: 5rem 1fr;
      column-gap: 3rem;
      padding-block: 2.5rem;
      border-top: 1px solid rgba(196, 151, 58, 0.12);
      transition: border-color 300ms ease;
    }

    .process-step:last-child {
      border-bottom: 1px solid rgba(196, 151, 58, 0.12);
    }

    .process-step:hover {
      border-color: rgba(196, 151, 58, 0.28);
    }

    .process-step:hover .process-step__number {
      color: rgba(255, 255, 255, 0.18);
    }

    .process-step__number {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 4vw, 3.75rem);
      font-weight: 700;
      color: rgba(255, 255, 255, 0.08);
      line-height: 1;
      letter-spacing: -0.04em;
      transition: color 300ms ease;
      user-select: none;
      align-self: center;
    }

    .process-step__icon {
      display: none;
    }

    .process-step__content {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      justify-content: center;
    }

    .process-step__label {
      font-family: var(--font-heading);
      font-size: 1.375rem;
      font-weight: 400;
      color: var(--color-white);
      line-height: 1.2;
    }

    .process-step__desc {
      font-size: var(--text-body-m);
      color: rgba(255, 255, 255, 0.58);
      line-height: 1.7;
      max-width: 540px;
    }

    .process__cta {
      margin-top: 3.5rem;
    }

    .process__cta .btn-primary {
      background: var(--color-gold);
      color: var(--color-navy-deep);
    }

    .process__cta .btn-primary:hover {
      background: var(--color-gold-deep) !important;
    }

    @media (max-width: 900px) and (min-width: 641px) {
      .process-step {
        gap: 1.5rem;
        padding: 1.25rem;
      }
    }

    @media (max-width: 640px) {
      .process-step {
        grid-template-columns: 3rem 1fr;
        column-gap: 1.5rem;
        padding-block: 2rem;
      }

      .process-step__label {
        font-size: 1.125rem;
      }
    }

    /* ═══════════════════════════════════════════
       SOBRE NÓS
       ═══════════════════════════════════════════ */
    .about {
      background: var(--color-bg-base);
      padding-block: var(--section-padding-xl);
      border-top: 1px solid var(--color-navy-surface);
    }

    .about__inner {
      display: grid;
      grid-template-columns: 55fr 45fr;
      gap: 5rem;
      align-items: center;
    }

    .about__eyebrow {
      margin-bottom: 0.75rem;
    }

    .about__h2 {
      font-family: var(--font-heading);
      font-size: var(--text-h2);
      color: var(--color-text-primary);
      margin-bottom: 1.5rem;
      line-height: 1.15;
    }

    .about__text {
      font-size: var(--text-body-l);
      color: var(--color-text-secondary);
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 52ch;
    }

    .about__values {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      margin-bottom: 2.5rem;
    }

    .about__value {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
      font-size: var(--text-body-m);
      color: var(--color-text-primary);
      line-height: 1.5;
      max-width: none;
    }

    .about__value-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--color-gold);
      flex-shrink: 0;
      margin-top: 0.5rem;
    }

    .about__image-wrap {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 48px rgba(27, 58, 107, 0.14);
      aspect-ratio: 4/3;
    }

    .about__image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .about__image-wrap:hover img {
      transform: scale(1.03);
    }

    @media (max-width: 900px) {
      .about__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .about__image-wrap {
        order: -1;
        aspect-ratio: 16/9;
      }

      .about__text {
        max-width: none;
      }
    }

    /* ═══════════════════════════════════════════
       CTA FINAL
       ═══════════════════════════════════════════ */
    /* ═══════════════════════════════════════════
       CONTATO — Formulário Formspree
       ═══════════════════════════════════════════ */
    .contact {
      background: var(--color-navy-deep);
      padding-block: var(--section-padding-xl);
    }

    .contact__inner {
      display: grid;
      grid-template-columns: 1fr 1.35fr;
      gap: 5rem;
      align-items: start;
    }

    .contact .eyebrow {
      color: var(--color-gold);
    }

    .contact__h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 700;
      color: var(--color-white);
      margin-top: 0.75rem;
      margin-bottom: 1.25rem;
      line-height: 1.15;
    }

    .contact__desc {
      color: rgba(255, 255, 255, 0.6);
      font-size: var(--text-body-m);
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .contact__email {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      color: var(--color-gold);
      font-size: var(--text-body-m);
      font-weight: 500;
      margin-bottom: 1.5rem;
      transition: color var(--transition-normal);
      word-break: break-all;
    }

    .contact__email:hover {
      color: var(--color-gold-light);
    }

    .contact__note {
      font-size: var(--text-small);
      color: rgba(255, 255, 255, 0.3);
      line-height: 1.5;
    }

    .contact__form-wrap {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(196, 151, 58, 0.15);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.25rem;
    }

    .form-group label {
      font-size: var(--text-small);
      font-weight: 500;
      color: rgba(255, 255, 255, 0.65);
      letter-spacing: 0.02em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-md);
      padding: 0.75rem 1rem;
      color: var(--color-white);
      font-family: var(--font-body);
      font-size: var(--text-body-m);
      line-height: 1.5;
      width: 100%;
      transition: border-color var(--transition-normal), background var(--transition-normal);
      -webkit-appearance: none;
      appearance: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.28);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: rgba(196, 151, 58, 0.55);
      background: rgba(255, 255, 255, 0.09);
    }

    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.35)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
      cursor: pointer;
    }

    .form-group select option {
      background: var(--color-navy-deep);
      color: var(--color-white);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 110px;
    }

    .form-submit {
      width: 100%;
      padding: 0.9rem 1.5rem;
      background: var(--color-gold);
      color: var(--color-navy-deep);
      font-family: var(--font-body);
      font-size: var(--text-body-m);
      font-weight: 600;
      border: none;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: background var(--transition-normal), transform 0.2s ease;
      margin-top: 0.5rem;
    }

    .form-submit:hover {
      background: var(--color-gold-deep);
      transform: translateY(-1px);
    }

    .form-privacy {
      margin-top: 1rem;
      font-size: 0.6875rem;
      color: rgba(255, 255, 255, 0.22);
      line-height: 1.5;
      text-align: center;
    }

    .form-success {
      text-align: center;
      padding: 2.5rem 1rem;
      color: var(--color-gold-light);
      font-family: var(--font-heading);
      font-size: 1.375rem;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .contact__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    /* ═══════════════════════════════════════════
       FOOTER
       ═══════════════════════════════════════════ */
    .footer {
      background: var(--color-navy-deep);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 3.5rem;
      padding-bottom: 2rem;
    }

    .footer__top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer__logo {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--color-white);
      letter-spacing: 0.04em;
      margin-bottom: 0.625rem;
    }

    .footer__logo span {
      color: var(--color-gold);
    }

    .footer__tagline {
      font-family: var(--font-heading);
      font-style: italic;
      font-size: 0.9375rem;
      color: var(--color-gold);
      margin-bottom: 1rem;
    }

    .footer__location {
      font-size: var(--text-small);
      color: var(--color-text-muted);
    }

    .footer__nav-title {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-bottom: 1rem;
    }

    .footer__nav-links {
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .footer__nav-links a {
      font-size: var(--text-small);
      color: rgba(255, 255, 255, 0.65);
      transition: color var(--transition-normal);
      cursor: pointer;
    }

    .footer__nav-links a:hover {
      color: var(--color-white);
    }

    .footer__oab-title {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-bottom: 1rem;
    }

    .footer__oab-list {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer__oab-item {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.5;
    }

    .footer__social {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .footer__social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.7);
      transition: background var(--transition-normal), color var(--transition-normal);
      cursor: pointer;
    }

    .footer__social a:hover {
      background: var(--color-gold);
      color: var(--color-navy-deep);
    }

    .footer__bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .footer__copyright {
      font-size: 0.75rem;
      color: var(--color-text-muted);
    }

    .footer__legal {
      font-size: 0.6875rem;
      color: rgba(155, 163, 180, 0.6);
      max-width: 65ch;
    }

    @media (max-width: 900px) {
      .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

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

    /* ═══════════════════════════════════════════
       FLOATING WA BUTTON
       ═══════════════════════════════════════════ */
    .contact-float {
      position: fixed;
      bottom: 1.75rem;
      right: 1.75rem;
      z-index: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3.5rem;
      height: 3.5rem;
      background: var(--color-gold);
      color: var(--color-navy-deep);
      border-radius: 50%;
      box-shadow: 0 4px 20px rgba(196, 151, 58, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
      opacity: 0;
      pointer-events: none;
      cursor: pointer;
    }

    .contact-float.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .contact-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(196, 151, 58, 0.5);
    }

    /* ═══════════════════════════════════════════
       OVERLAY MOBILE NAV
       ═══════════════════════════════════════════ */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(18, 40, 80, 0.5);
      z-index: 840;
      backdrop-filter: blur(2px);
    }

    .nav-overlay.active {
      display: block;
    }

    /* ═══════════════════════════════════════════
       BREAKPOINT 375px — Mobile pequeno
       ═══════════════════════════════════════════ */
    @media (max-width: 390px) {
      .hero__h1 {
        font-size: clamp(1.875rem, 8vw, 2.75rem);
      }

      .hero__ctas {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero__ctas .btn-primary,
      .hero__ctas .btn-outline {
        width: 100%;
        justify-content: center;
      }

      .btn-gold {
        width: 100%;
        justify-content: center;
      }

      .cta-final__sub {
        font-size: 1rem;
      }

      .navbar__inner {
        padding-inline: 1rem;
      }
    }
