 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --black: #0F0F10;
    --graphite: #1B1B1D;
    --gold: #B08A57;
    --gold-light: #D4B483;
    --off-white: #F5F1EA;
    --gray-mid: #5E5E63;
    --gray-light: #A9A9AF;
    --beige: #E7DED2;
    --green: #4F7A61;
    --red: #8A4B4B;
    --blue-dark: #1F2C3D;

    --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Inter', 'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--off-white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    position: fixed;
    width: 32px; height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease, width 0.3s, height 0.3s;
    transform: translate(-50%, -50%);
  }
  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--gold-light); }

  /* Skip link */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    border-radius: 4px;
    z-index: 9999;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 1rem; }

  /* Grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 60px;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(15,15,16,0.96);
    backdrop-filter: blur(12px);
    padding: 18px 60px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
  }
  .logo-mark {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .logo-mark::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 50%; transform: translateX(-50%);
    width: 14px; height: 1px;
    background: var(--gold);
  }
  .logo-mark svg { width: 18px; height: 18px; }
  .logo-text { line-height: 1; }
  .logo-text span {
    display: block;
    font-family: var(--font-display);
    font-size: 17px; font-weight: 600;
    color: var(--off-white);
    letter-spacing: 0.02em;
  }
  .logo-text small {
    font-family: var(--font-body);
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gray-light);
    text-decoration: none;
    position: relative; padding-bottom: 3px;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--off-white); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none; padding: 12px 28px;
    cursor: none; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(176,138,87,0.18);
  }
  .nav-cta:hover { 
    background: var(--gold-light); 
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(176,138,87,0.3);
  }

  /* ─── HERO ─── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(176,138,87,0.08) 0%, transparent 60%);
  }
  .hero-left {
    background: var(--graphite);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-left::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B08A57' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .hero-eyebrow {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 16px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 32px; height: 1px;
    background: var(--gold);
  }
  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(52px, 6vw, 84px);
    font-weight: 700; line-height: 1.05;
    color: var(--off-white);
    margin-bottom: 36px;
    letter-spacing: -0.02em;
  }
  .hero-headline em {
    font-style: italic; color: var(--gold);
  }
  .hero-desc {
    font-size: 13px; font-weight: 300; line-height: 1.85;
    color: var(--gray-light);
    max-width: 380px; margin-bottom: 48px;
  }
  .hero-checks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .hero-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--off-white);
    font-weight: 500;
  }
  .check-icon {
    width: 20px; height: 20px;
    background: rgba(176,138,87,0.15);
    border: 1px solid rgba(176,138,87,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .check-icon svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .hero-phrase {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 2.5rem;
    opacity: 0.85;
  }
  .hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--gold); color: var(--black);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    text-decoration: none; padding: 16px 36px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(176,138,87,0.18);
  }
  .btn-primary:hover { 
    background: var(--gold-light);
    gap: 18px;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(176,138,87,0.3);
  }
  .btn-primary svg { width: 14px; height: 14px; transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-ghost {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: all 0.3s;
  }
  .btn-ghost:hover { 
    color: var(--off-white); 
    border-color: var(--off-white);
    transform: translateY(-2px);
  }

  .hero-right {
    background: var(--black);
    position: relative; overflow: hidden;
    display: flex; align-items: flex-end;
  }
  .hero-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: 200px; font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(176,138,87,0.06);
    line-height: 1; white-space: nowrap;
    bottom: -20px; right: -40px;
    pointer-events: none; user-select: none;
  }
  .hero-visual {
    width: 100%; height: 100%;
    position: relative; display: flex; align-items: center; justify-content: center;
  }
  .themis-silhouette {
    position: absolute; bottom: 0; right: 10%;
    width: 55%; opacity: 0.85;
  }
  .hero-color-blocks {
    position: absolute; top: 0; left: 0;
    width: 45%; height: 55%;
    background: var(--gold);
    opacity: 0.12;
  }
  .hero-color-blocks-2 {
    position: absolute; bottom: 0; left: 20%;
    width: 60%; height: 5px;
    background: var(--gold);
  }
  .hero-stats {
    position: absolute; bottom: 60px; left: 60px;
    display: flex; gap: 40px;
  }
  .hero-stat { text-align: left; }
  .hero-stat-number {
    font-family: var(--font-display);
    font-size: 38px; font-weight: 700; line-height: 1;
    color: var(--gold);
  }
  .hero-stat-label {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gray-mid); margin-top: 6px;
  }
  .scales-deco {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 280px; height: 280px;
    opacity: 0.06;
  }


  /* Hero image blend */
  .hero-img-blend {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
    mix-blend-mode: luminosity;
    filter: sepia(40%) brightness(0.7) contrast(1.1);
    pointer-events: none;
  }
  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,16,0.7) 0%, rgba(176,138,87,0.08) 50%, rgba(15,15,16,0.5) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-visual { z-index: 2; }
  .hero-bg-text { z-index: 2; }
  .hero-color-blocks { z-index: 0; }
  .hero-color-blocks-2 { z-index: 2; }

  /* ─── DIVIDER ─── */
  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
    margin: 0 60px;
  }

  /* ─── INSTITUCIONAL ─── */
  #institucional {
    background: var(--graphite);
    padding: 120px 60px;
    position: relative;
  }
  #institucional::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(176,138,87,0.3), transparent);
  }
  .section-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; margin-bottom: 80px;
    align-items: end;
  }
  .section-number {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
    display: flex; align-items: center; gap: 14px;
  }
  .section-number::before {
    content: ''; display: block;
    width: 28px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700; line-height: 1.1;
    color: var(--off-white);
    letter-spacing: -0.01em;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-intro {
    font-size: 13px; font-weight: 300; line-height: 1.9;
    color: var(--gray-light); align-self: end;
  }
  .inst-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--off-white);
    line-height: 1.5;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
  }
  .inst-text p { margin-bottom: 1.25rem; font-size: 1rem; color: var(--gray-light); line-height: 1.8; }

  /* ─── DIFERENCIAIS ─── */
  #diferenciais {
    padding: 120px 60px;
    background: var(--black);
    position: relative;
  }
  .diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .card {
    background: var(--graphite);
    border: 1px solid rgba(176,138,87,0.08);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
    overflow: hidden;
    cursor: none;
  }
  .card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(176,138,87,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
  }
  .card:hover {
    transform: translateY(-4px);
    border-color: rgba(176,138,87,0.22);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 15px 40px rgba(176,138,87,0.18);
  }
  .card:hover::after { opacity: 1; }
  .card-icon {
    width: 44px; height: 44px;
    background: rgba(176,138,87,0.1);
    border: 1px solid rgba(176,138,87,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    position: relative; z-index: 1;
  }
  .card-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .card h4 { 
    color: var(--off-white); 
    margin-bottom: 0.75rem; 
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative; z-index: 1; 
  }
  .card p { 
    font-size: 0.9rem; 
    color: var(--gray-light); 
    line-height: 1.65;
    position: relative; z-index: 1; 
  }

  /* ─── AREAS ─── */
  #areas {
    padding: 120px 60px;
    background: var(--graphite);
    position: relative;
  }
  #areas::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(176,138,87,0.3), transparent);
  }
  .areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .area-card {
    background: var(--black);
    border: 1px solid rgba(176,138,87,0.07);
    border-radius: 14px;
    padding: 1.75rem;
    position: relative; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
    cursor: none;
  }
  .area-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.5s ease;
  }
  .area-card:hover { 
    background: var(--graphite);
    border-color: rgba(176,138,87,0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(176,138,87,0.18);
  }
  .area-card:hover::before { width: 100%; }
  .area-card:hover .area-title,
  .area-card:hover .area-desc,
  .area-card:hover .area-link { color: var(--off-white); }
  .area-card:hover .area-num { color: var(--gold); }
  .area-num {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.15em; color: var(--gold);
    margin-bottom: 32px;
    opacity: 0.6;
    transition: opacity 0.4s;
  }
  .area-icon {
    width: 40px; height: 40px; margin-bottom: 24px;
    opacity: 0.7; transition: opacity 0.4s;
  }
  .area-card:hover .area-icon { opacity: 1; }
  .area-title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600; line-height: 1.3;
    color: var(--off-white); margin-bottom: 16px;
    transition: color 0.4s;
  }
  .area-desc {
    font-size: 12px; line-height: 1.8;
    color: var(--gray-mid); margin-bottom: 32px;
    transition: color 0.4s;
  }
  .area-link {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: color 0.4s, gap 0.3s;
  }
  .area-link:hover { gap: 16px; }
  .area-link svg { width: 14px; height: 14px; }

  /* ─── ADVOGADO ─── */
  #advogado {
    padding: 120px 60px;
    background: var(--black);
  }
  .advogado-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .adv-visual {
    position: relative;
  }
  .adv-placeholder {
    background: var(--graphite);
    border: 1px solid rgba(176,138,87,0.12);
    border-radius: 20px;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
  }
  .adv-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(176,138,87,0.08) 0%, transparent 60%);
  }
  .adv-initials {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(176,138,87,0.15);
    letter-spacing: -0.05em;
    position: relative;
  }
  .adv-oab-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(176,138,87,0.12);
    border: 1px solid rgba(176,138,87,0.25);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    font-weight: 600;
  }
  .adv-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 0.25rem;
    line-height: 1.1;
  }
  .adv-oab {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  .adv-text p { 
    margin-bottom: 1.25rem; 
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
  }
  .adv-quote {
    border-left: 2px solid var(--gold);
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    background: rgba(176,138,87,0.04);
    border-radius: 0 8px 8px 0;
  }
  .adv-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--off-white);
    line-height: 1.6;
  }

  /* ─── PROCESSO ─── */
  #processo {
    padding: 120px 60px;
    background: var(--graphite);
    position: relative; overflow: hidden;
  }
  #processo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(176,138,87,0.3), transparent);
  }
  #processo .section-title { color: var(--off-white); }
  #processo .section-intro { color: var(--gray-light); }
  #processo .section-number { color: var(--gold); }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; margin-top: 80px;
  }
  .process-step {
    background: var(--black);
    border: 1px solid rgba(176,138,87,0.07);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: none;
  }
  .process-step:hover {
    border-color: rgba(176,138,87,0.18);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(176,138,87,0.18);
  }
  .step-num {
    font-family: var(--font-display);
    font-size: 56px; font-weight: 700;
    color: rgba(176,138,87,0.08);
    line-height: 1; margin-bottom: 24px;
    position: absolute;
    top: 1rem; right: 1.25rem;
    letter-spacing: -0.04em;
  }
  .step-title {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600; color: var(--off-white);
    margin-bottom: 14px;
  }
  .step-desc {
    font-size: 12px; line-height: 1.8;
    color: var(--gray-light);
  }

  /* ─── DEPOIMENTOS ─── */
  #depoimentos {
    padding: 120px 60px;
    background: var(--black);
  }
  .depo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .depo-card {
    background: var(--graphite);
    border: 1px solid rgba(176,138,87,0.08);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.3s;
    cursor: none;
  }
  .depo-card:hover {
    border-color: rgba(176,138,87,0.18);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
  .depo-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.25rem;
  }
  .depo-stars span {
    color: var(--gold);
    font-size: 0.9rem;
  }
  .depo-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .depo-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .depo-avatar {
    width: 36px; height: 36px;
    background: rgba(176,138,87,0.12);
    border: 1px solid rgba(176,138,87,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
  }
  .depo-author-name { font-size: 0.8rem; color: var(--gray-light); font-weight: 500; }
  .depo-author-label { font-size: 0.72rem; color: var(--gray-mid); }

  /* ─── CTA FORTE ─── */
  #cta {
    padding: 120px 60px;
    background: var(--graphite);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(176,138,87,0.4), transparent);
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(176,138,87,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
  .cta-inner h2 { color: var(--off-white); margin-bottom: 1.25rem; }
  .cta-inner p { font-size: 1.05rem; color: var(--gray-light); margin-bottom: 2.5rem; }
  .whatsapp-icon { width: 22px; height: 22px; flex-shrink: 0; }

  /* ─── FAQ ─── */
  #faq {
    padding: 120px 60px;
    background: var(--black);
  }
  .faq-list { max-width: 720px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid rgba(176,138,87,0.1);
  }
  .faq-item:first-child { border-top: 1px solid rgba(176,138,87,0.1); }
  .faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--off-white);
    font-family: var(--font-body);
    text-align: left;
    min-height: 44px;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: none;
  }
  .faq-btn:hover { color: var(--gold); }
  .faq-arrow {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.3s;
  }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .faq-item.open .faq-answer { max-height: 200px; }
  .faq-answer p { padding-bottom: 1.5rem; font-size: 0.95rem; color: var(--gray-light); }

  /* ─── FOOTER ─── */
  footer {
    background: #0a0a0b;
    border-top: 1px solid rgba(176,138,87,0.12);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }
  .footer-brand .logo-text span { font-size: 20px; font-family: var(--font-display); font-weight: 600; }
  .footer-brand small { font-size: 0.65rem; }
  .footer-brand p {
    font-size: 12px; line-height: 1.8;
    color: var(--gray-mid); margin-top: 16px;
    max-width: 240px;
  }
  .footer-col h4 {
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul a {
    font-size: 12px; font-weight: 500;
    color: var(--gray-light); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col ul a:hover { color: var(--off-white); }
  .footer-bottom {
    background: #0a0a0b;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 60px;
    display: flex; justify-content: space-between;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.15em; color: var(--gray-mid);
  }
  .footer-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(176,138,87,0.5);
  }

  /* ─── WHATSAPP FIXED ─── */
  .whatsapp-fixed {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    width: 56px; height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(176,138,87,0.4);
    transition: all 0.3s;
    animation: pulse-gold 2.5s ease-in-out infinite;
  }
  .whatsapp-fixed:hover {
    background: var(--gold-light);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(176,138,87,0.5);
    animation: none;
  }
  .whatsapp-fixed svg { width: 26px; height: 26px; }
  @keyframes pulse-gold {
    0%, 100% { box-shadow: 0 8px 30px rgba(176,138,87,0.4); }
    50% { box-shadow: 0 8px 50px rgba(176,138,87,0.6), 0 0 0 8px rgba(176,138,87,0.05); }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes lineGrow {
    from { width: 0; }
    to   { width: 100%; }
  }
  .anim-up {
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
  }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.25s; }
  .delay-3 { animation-delay: 0.4s; }
  .delay-4 { animation-delay: 0.55s; }
  .delay-5 { animation-delay: 0.7s; }

  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none !important; }
    nav { padding: 20px 30px; }
    nav.scrolled { padding: 14px 30px; }
    .nav-links { display: none; }
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 140px 30px 80px; }
    .hero-right { display: none; }
    #institucional, #diferenciais, #areas, #advogado, #processo, #depoimentos, #cta, #faq, footer { padding: 80px 30px; }
    .areas-grid, .diferenciais-grid, .process-steps, .depo-grid { grid-template-columns: 1fr; gap: 1rem; }
    .section-header { grid-template-columns: 1fr; gap: 20px; }
    .advogado-grid { grid-template-columns: 1fr; gap: 2rem; }
    footer { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { padding: 20px 30px; flex-direction: column; gap: 8px; }
  }

  /* ─── MOBILE FIXES ─── */
  @media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
      overflow-x: hidden;
      max-width: 100vw;
    }

    /* Nav — compact, gold button */
    nav {
      padding: 16px 20px;
    }
    nav.scrolled {
      padding: 12px 20px;
    }
    .nav-cta {
      font-size: 9px;
      padding: 10px 16px;
      background: var(--gold) !important;
      color: var(--black) !important;
      border-radius: 10px;
      white-space: nowrap;
    }

    /* Hero headline: use large clamp so text breaks into multiple lines
       exactly like top.html screenshot (the reference on the right) */
    .hero-headline {
      font-size: clamp(52px, 13vw, 84px);
      letter-spacing: -0.03em;
    }
    .hero-left {
      padding: 120px 24px 70px;
    }
    .hero-desc {
      max-width: 100%;
    }
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
    }

    /* Buttons — gold only, never red */
    .btn-primary {
      background: var(--gold) !important;
      color: var(--black) !important;
      width: 100%;
      justify-content: center;
      padding: 16px 28px;
    }
    .btn-ghost {
      color: var(--gold) !important;
      border-bottom-color: var(--gold) !important;
    }

    /* Sections padding */
    #institucional, #diferenciais, #areas, #advogado,
    #processo, #depoimentos, #cta, #faq {
      padding: 60px 20px;
    }

    .section-divider {
      margin: 0 20px;
    }

    /* FAQ tap target */
    .faq-btn {
      cursor: pointer;
    }

    /* Footer */
    footer {
      padding: 50px 20px;
    }
    .footer-bottom {
      padding: 18px 20px;
    }

    /* Whatsapp button */
    .whatsapp-fixed {
      bottom: 1rem;
      right: 1rem;
      width: 50px;
      height: 50px;
    }
  }