  /* ─── RESET & VARIABLES ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:      #0D1B2A;
      --navy2:     #142236;
      --gold:      #C9A84C;
      --gold-lt:   #E2C97E;
      --gold-dim:  rgba(201,168,76,0.12);
      --gold-line: rgba(201,168,76,0.25);
      --white:     #F8F5EF;
      --gray:      #8A8FA0;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }
    body.menu-open {
      overflow: hidden;
      touch-action: none;
    }

    /* ─── NAVBAR ────────────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 1.3rem 5%;
      display: flex; align-items: center; justify-content: space-between;
      transition: all .45s ease;
    }
    .nav.scrolled {
      background: rgba(13,27,42,.97);
      backdrop-filter: blur(18px);
      padding: .85rem 5%;
      border-bottom: 1px solid var(--gold-line);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem; font-weight: 700;
      color: var(--white); cursor: pointer;
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }

    .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
    .nav-links a {
      font-size: .8rem; font-weight: 400;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: rgba(248,245,239,.72); cursor: pointer;
      text-decoration: none; transition: color .3s;
    }
    .nav-links a:hover { color: var(--gold); }

    .btn-cta {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: .55rem 1.4rem;
      font-family: 'Jost', sans-serif;
      font-size: .78rem; font-weight: 500;
      letter-spacing: 1.5px; text-transform: uppercase;
      cursor: pointer; transition: all .3s;
    }
    .btn-cta:hover { background: var(--gold); color: var(--navy); }

    .hamburger {
      display: none; flex-direction: column;
      gap: 5px; cursor: pointer; padding: 4px;
      background: none; border: none;
    }
    .hamburger span {
      display: block; width: 24px; height: 1.5px;
      background: var(--gold); transition: all .3s;
    }

    /* ─── MOBILE MENU ───────────────────────────────────────────── */
    .mobile-menu {
      position: fixed; inset: 0;
      background: rgba(13,27,42,.98); z-index: 1100;
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 2rem;
      padding: 6rem 1.5rem 2rem;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity .3s ease, visibility .3s ease;
    }
    .mobile-menu.open {
      opacity: 1; visibility: visible; pointer-events: auto;
    }
    .mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem; color: var(--white);
      cursor: pointer; text-decoration: none;
      transition: color .3s;
      text-align: center;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-close {
      position: absolute; top: 1.5rem; right: 5%;
      font-size: 2rem; color: var(--gold);
      cursor: pointer; background: none; border: none;
      font-family: inherit;
    }
    .mobile-menu .btn-primary {
      width: min(100%, 320px);
    }

    /* ─── BUTTONS ────────────────────────────────────────────────── */
    .btn-primary {
      background: var(--gold); color: var(--navy);
      border: none; padding: .9rem 2.2rem;
      font-family: 'Jost', sans-serif;
      font-size: .82rem; font-weight: 500;
      letter-spacing: 1.5px; text-transform: uppercase;
      cursor: pointer; transition: all .3s;
    }
    .btn-primary:hover {
      background: var(--gold-lt);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(201,168,76,.3);
    }
    .btn-outline {
      background: transparent; color: var(--white);
      border: 1px solid rgba(248,245,239,.3);
      padding: .9rem 2.2rem;
      font-family: 'Jost', sans-serif;
      font-size: .82rem; font-weight: 500;
      letter-spacing: 1.5px; text-transform: uppercase;
      cursor: pointer; transition: all .3s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    /* ─── HERO ───────────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: 10rem 5% 6rem;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,168,76,.06) 0%, transparent 70%),
        linear-gradient(135deg, #0D1B2A 0%, #0f2035 40%, #142236 100%);
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
      background-size: 80px 80px;
    }
    .hero-ornament {
      position: absolute; right: 5%; top: 50%;
      transform: translateY(-50%);
      width: 38vw; max-width: 520px;
      height: 38vw; max-height: 520px;
      border: 1px solid rgba(201,168,76,.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
    }
    .hero-ornament::before {
      content: '';
      width: 80%; height: 80%;
      border: 1px solid rgba(201,168,76,.06);
      border-radius: 50%;
    }
    .hero-ornament::after {
      content: '⚖';
      position: absolute;
      font-size: clamp(5rem,10vw,10rem);
      color: rgba(201,168,76,.07);
    }
    .hero-content { position: relative; z-index: 2; max-width: 680px; }

    .eyebrow {
      font-size: .75rem; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.5rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .eyebrow::before {
      content: ''; display: block;
      width: 40px; height: 1px; background: var(--gold);
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem,5vw,4.2rem);
      font-weight: 700; line-height: 1.15;
      margin-bottom: 1.5rem;
    }
    .hero h1 em { font-style: italic; color: var(--gold); }

    .hero-sub {
      font-size: 1.05rem; font-weight: 300;
      color: rgba(248,245,239,.65);
      max-width: 520px; margin-bottom: 2.8rem;
      line-height: 1.8;
    }
    .hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; }

    .hero-stats {
      display: flex; gap: 3rem; margin-top: 4rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--gold-line);
      flex-wrap: wrap;
    }
    .stat-num {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: 600;
      color: var(--gold);
    }
    .stat-lbl {
      font-size: .78rem; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--gray);
    }

    /* ─── SECTIONS SHARED ────────────────────────────────────────── */
    section { padding: 7rem 5%; }

    .section-label {
      font-size: .72rem; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1rem;
      display: flex; align-items: center; gap: .8rem;
    }
    .section-label::before {
      content: ''; display: block;
      width: 30px; height: 1px; background: var(--gold);
    }
    .section-label.center { justify-content: center; }
    .section-label.center::before { display: none; }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem,4vw,3rem);
      font-weight: 700; line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-title.center { text-align: center; }

    /* ─── SOBRE ──────────────────────────────────────────────────── */
    #sobre { background: var(--navy2); }

    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: center;
      max-width: 1200px; margin: 0 auto;
    }
    .sobre-text p {
      color: rgba(248,245,239,.65);
      margin-bottom: 1.2rem; font-size: 1rem;
    }
    .mvv {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1.2rem; margin-top: 2.5rem;
    }
    .mvv-card {
      padding: 1.4rem;
      border: 1px solid var(--gold-line);
      background: var(--gold-dim);
      transition: all .3s;
    }
    .mvv-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .mvv-card h4 {
      font-family: 'Playfair Display', serif;
      color: var(--gold); font-size: 1rem;
      margin-bottom: .5rem;
    }
    .mvv-card p { font-size: .82rem; color: var(--gray); line-height: 1.6; }

    .sobre-visual {
      position: relative; height: 500px;
    }
    .sobre-frame {
      position: absolute; inset: 0;
      border: 3px solid var(--gold-line);
      background: linear-gradient(135deg,rgba(201,168,76,.05),rgba(201,168,76,.02));
      display: flex; align-items: center; justify-content: center;
      font-size: 8rem; color: rgba(201,168,76,.12);

    }
     .sobre-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;

     }

     .hero-ornament img
      {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;  
      }

    .sobre-acc1 {
      position: absolute; bottom: -20px; right: -20px;
      width: 180px; height: 180px;
      border: 1px solid var(--gold); z-index: -1;
    }
    .sobre-acc2 {
      position: absolute; top: -20px; left: -20px;
      width: 80px; height: 80px;
      border: 1px solid rgba(201,168,76,.4); z-index: -1;
    }

    /* ─── ÁREAS ──────────────────────────────────────────────────── */
    #areas { background: var(--navy); }
    .areas-header { max-width: 600px; margin-bottom: 3rem; }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
      gap: 1.5rem; max-width: 1200px; margin: 0 auto;
    }
    .area-card {
      padding: 2.5rem 2rem;
      border: 1px solid var(--gold-line);
      background: rgba(20,34,54,.5);
      transition: all .4s;
      position: relative; overflow: hidden;
      cursor: default;
    }
    .area-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s;
    }
    .area-card:hover {
      border-color: var(--gold);
      background: rgba(201,168,76,.05);
      transform: translateY(-6px);
    }
    .area-card:hover::after { transform: scaleX(1); }
    .area-icon { font-size: 2.2rem; margin-bottom: 1.2rem; display: block; }
    .area-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; color: var(--white);
      margin-bottom: .8rem;
    }
    .area-card p { font-size: .88rem; color: var(--gray); line-height: 1.7; }

    /* ─── DIFERENCIAIS ───────────────────────────────────────────── */
    #diferenciais { background: var(--navy2); }
    .dif-inner { max-width: 1200px; margin: 0 auto; }
    .dif-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: end;
      margin-bottom: 4rem;
    }
    .dif-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-style: italic;
      color: rgba(248,245,239,.6); line-height: 1.5;
    }
    .dif-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
      gap: 2rem;
    }
    .dif-card {
      padding: 2rem;
      border-left: 2px solid var(--gold-line);
      transition: all .3s;
    }
    .dif-card:hover {
      border-left-color: var(--gold);
      background: var(--gold-dim);
    }
    .dif-icon { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
    .dif-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; margin-bottom: .6rem;
    }
    .dif-card p { font-size: .88rem; color: var(--gray); line-height: 1.7; }

    /* ─── EQUIPE ─────────────────────────────────────────────────── */
    #equipe { background: var(--navy); }
    .equipe-header { text-align: center; margin-bottom: 3rem; }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
      gap: 2rem; max-width: 1100px; margin: 0 auto;
    }
    .team-card {
      text-align: center; padding: 2.5rem 1.5rem;
      border: 1px solid var(--gold-line);
      background: rgba(20,34,54,.5);
      transition: all .4s; cursor: default;
    }
    .team-card:hover { border-color: var(--gold); transform: translateY(-5px); }
    .team-avatar {
      width: 90px; height: 90px; border-radius: 50%;
      background: linear-gradient(135deg,var(--navy2),#1e3a5f);
      border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; color: var(--gold);
    }
    .team-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; margin-bottom: .4rem;
    }
    .team-card p { font-size: .78rem; color: var(--gold); letter-spacing: .5px; }

    /* ─── DEPOIMENTOS ────────────────────────────────────────────── */
    #depoimentos { background: var(--navy2); }
    .dep-header { text-align: center; margin-bottom: 3rem; }
    .dep-slider { max-width: 800px; margin: 0 auto; text-align: center; }
    .dep-card { padding: 3rem; }
    .dep-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
    .dep-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem; font-style: italic;
      color: rgba(248,245,239,.8);
      line-height: 1.7; margin: 1.5rem 0;
    }
    .dep-author { margin-top: 1.5rem; }
    .dep-author strong { display: block; color: var(--white); font-size: .9rem; }
    .dep-author span { color: var(--gray); font-size: .8rem; }
    .dep-nav {
      display: flex; justify-content: center;
      gap: .6rem; margin-top: 2rem;
    }
    .dep-dot {
      width: 8px; height: 8px; border-radius: 4px;
      background: var(--gold-line); border: 1px solid var(--gold);
      cursor: pointer; transition: all .3s;
    }
    .dep-dot.active { background: var(--gold); width: 24px; }

    /* ─── CTA BANNER ─────────────────────────────────────────────── */
    #cta {
      background: linear-gradient(135deg,#0a1520 0%,#142236 50%,#0D1B2A 100%);
      text-align: center; padding: 8rem 5%;
      position: relative; overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%,rgba(201,168,76,.08) 0%,transparent 70%);
    }
    #cta > * { position: relative; z-index: 1; }
    #cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem,4vw,3.5rem);
      margin-bottom: 1.2rem;
    }
    #cta p {
      color: rgba(248,245,239,.6);
      max-width: 500px; margin: 0 auto 2.5rem;
    }

    /* ─── CONTATO ────────────────────────────────────────────────── */
    #contato { background: var(--navy2); }
    .cont-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; max-width: 1100px; margin: 0 auto;
    }
    .form-group { margin-bottom: 1.5rem; }
    .form-group label {
      display: block; font-size: .75rem;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gold); margin-bottom: .5rem;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      background: rgba(20,34,54,.7);
      border: 1px solid var(--gold-line);
      color: var(--white);
      padding: .9rem 1.2rem;
      font-family: 'Jost', sans-serif;
      font-size: .9rem; font-weight: 300;
      transition: border-color .3s;
      outline: none; resize: vertical;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--gold); }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--gray); }

    .cont-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem; margin-bottom: 2rem;
    }
    .cont-item {
      display: flex; gap: 1rem;
      margin-bottom: 1.5rem; padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--gold-line);
    }
    .cont-item:last-of-type { border-bottom: none; }
    .cont-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; }
    .cont-item strong { display: block; color: var(--white); font-size: .85rem; margin-bottom: .2rem; }
    .cont-item span { color: var(--gray); font-size: .88rem; }

    .map-mock {
      margin-top: 2rem; height: 160px;
      border: 1px solid var(--gold-line);
      background: linear-gradient(135deg,rgba(20,34,54,.8),rgba(13,27,42,.8));
      display: flex; align-items: center; justify-content: center;
      color: var(--gray); font-size: .85rem; letter-spacing: 1px;
      position: relative; overflow: hidden;
    }
    .map-mock::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,.05) 1px,transparent 1px),
        linear-gradient(90deg,rgba(201,168,76,.05) 1px,transparent 1px);
      background-size: 30px 30px;
    }
    .map-mock span { position: relative; z-index: 1; }

    .success-box {
      text-align: center; padding: 2.5rem;
      border: 1px solid var(--gold-line);
      background: var(--gold-dim);
    }
    .success-box h3 {
      font-family: 'Playfair Display', serif;
      color: var(--gold); font-size: 1.4rem;
      margin-bottom: .5rem;
    }
    .success-box p { color: var(--gray); font-size: .9rem; }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    footer {
      background: #060e18;
      padding: 4rem 5% 2rem;
      border-top: 1px solid var(--gold-line);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }
    .footer-brand p {
      color: var(--gray); font-size: .85rem;
      margin-top: 1rem; line-height: 1.7;
    }
    .footer-col h4 {
      color: var(--gold); font-size: .72rem;
      letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: .6rem; }
    .footer-col a {
      color: var(--gray); font-size: .85rem;
      text-decoration: none; transition: color .3s; cursor: pointer;
    }
    .footer-col a:hover { color: var(--gold); }
    .social-links { display: flex; gap: .8rem; margin-top: 1.2rem; }
    .social-btn {
      width: 36px; height: 36px;
      border: 1px solid var(--gold-line);
      display: flex; align-items: center; justify-content: center;
      color: var(--gray); font-size: .78rem; font-weight: 500;
      cursor: pointer; transition: all .3s;
      text-decoration: none; text-transform: uppercase;
      letter-spacing: 0;
    }
    .social-btn:hover { border-color: var(--gold); color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid var(--gold-line);
      padding-top: 2rem;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 1rem;
      font-size: .78rem; color: var(--gray);
    }
    .oab { color: var(--gold); font-weight: 500; }

    /* ─── WHATSAPP ───────────────────────────────────────────────── */
    .wa-btn {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      transition: all .3s;
    }
    .wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

    /* ─── SCROLL ANIMATIONS ──────────────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; }
    .delay-4 { transition-delay: .4s; }

    /* ─── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .nav-links, .btn-cta { display: none; }
      .hamburger { display: flex; }
      .sobre-grid, .cont-inner, .dif-header { grid-template-columns: 1fr; gap: 3rem; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .hero-ornament { display: none; }
      .mvv { grid-template-columns: 1fr; }
    }
    @media (max-width: 580px) {
      section { padding: 5rem 5%; }
      .footer-top { grid-template-columns: 1fr; }
      .hero-stats { gap: 2rem; }
      .hero-btns { flex-direction: column; }
      .hero-btns button { width: 100%; }
      .mobile-menu a { font-size: 1.45rem; }
    }
