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

    :root {
      --preto: #0D0D0D;
      --preto-medio: #181818;
      --preto-card: #1A1A1A;
      --ouro: #B8924A;
      --ouro-claro: #D4AA6A;
      --ouro-escuro: #8A6A30;
      --branco: #F5F5F0;
      --cinza: #888880;
      --cinza-claro: #CCCCC4;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--preto);
      color: var(--branco);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: rgba(13,13,13,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(184,146,74,0.15);
      transition: padding 0.3s;
    }
    nav.scrolled { padding: 12px 60px; }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 44px; height: 44px;
      background: var(--ouro);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 900;
      color: var(--preto);
      flex-shrink: 0;
    }
    .nav-logo-text { line-height: 1.2; }
    .nav-logo-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      color: var(--branco);
      letter-spacing: 0.02em;
    }
    .nav-logo-text span {
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--ouro);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--cinza-claro);
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--ouro); }

    .nav-cta {
      background: transparent;
      border: 1px solid var(--ouro);
      color: var(--ouro) !important;
      padding: 8px 22px;
      border-radius: 2px;
      transition: background 0.2s, color 0.2s !important;
    }
    .nav-cta:hover {
      background: var(--ouro) !important;
      color: var(--preto) !important;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 60px 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,146,74,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,146,74,0.04) 0%, transparent 60%);
    }

    .hero-line-v {
      position: absolute;
      top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(184,146,74,0.3) 30%, rgba(184,146,74,0.3) 70%, transparent);
    }
    .hero-line-v:nth-child(1) { left: 25%; }
    .hero-line-v:nth-child(2) { left: 50%; opacity: 0.4; }
    .hero-line-v:nth-child(3) { left: 75%; }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 32px;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ouro);
    }
    .hero-tag::before {
      content: '';
      display: block;
      width: 32px; height: 1px;
      background: var(--ouro);
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(48px, 7vw, 88px);
      font-weight: 700;
      line-height: 1.05;
      margin-bottom: 28px;
      color: var(--branco);
    }
    .hero-title em {
      font-style: normal;
      color: var(--ouro);
    }

    .hero-sub {
      font-size: 17px;
      color: var(--cinza-claro);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 52px;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 64px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--ouro);
      color: var(--preto);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--ouro-claro); transform: translateY(-1px); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(184,146,74,0.4);
      color: var(--branco);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: 2px;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-secondary:hover { border-color: var(--ouro); color: var(--ouro); }

    .hero-stats {
      display: flex;
      gap: 48px;
      padding-top: 48px;
      border-top: 1px solid rgba(184,146,74,0.2);
    }
    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--ouro);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 12px;
      color: var(--cinza);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 6px;
    }

    .hero-badge {
      position: absolute;
      right: 80px;
      bottom: 80px;
      width: 140px; height: 140px;
      border-radius: 50%;
      border: 1px solid rgba(184,146,74,0.3);
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ouro);
      line-height: 1.5;
      animation: rotateBadge 20s linear infinite;
    }
    @keyframes rotateBadge {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    .hero-badge-inner {
      animation: rotateBadge 20s linear infinite reverse;
      font-size: 13px;
    }

    /* ─── SECTION BASE ─── */
    section { padding: 100px 60px; }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ouro);
      margin-bottom: 20px;
    }
    .section-tag::before {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--ouro);
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700;
      line-height: 1.1;
      color: var(--branco);
      margin-bottom: 16px;
    }
    .section-title em { font-style: normal; color: var(--ouro); }
    .section-desc {
      font-size: 16px;
      color: var(--cinza-claro);
      line-height: 1.7;
      font-weight: 300;
      max-width: 580px;
    }

    /* ─── SOBRE ─── */
    #sobre {
      background: var(--preto-medio);
      position: relative;
      overflow: hidden;
    }
    #sobre::before {
      content: 'L&A';
      position: absolute;
      right: -40px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Playfair Display', serif;
      font-size: 280px;
      font-weight: 900;
      color: rgba(184,146,74,0.03);
      line-height: 1;
      pointer-events: none;
    }

    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
    }
    .sobre-left .section-desc { max-width: 100%; margin-bottom: 24px; }

    .sobre-pilares {
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .sobre-pilar {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 24px;
      background: rgba(184,146,74,0.06);
      border-left: 2px solid var(--ouro);
      border-radius: 0 4px 4px 0;
    }
    .sobre-pilar-icon {
      font-size: 20px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .sobre-pilar-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--ouro);
      margin-bottom: 4px;
      letter-spacing: 0.05em;
    }
    .sobre-pilar-text {
      font-size: 13px;
      color: var(--cinza-claro);
      line-height: 1.6;
      font-weight: 300;
    }

    .sobre-right {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .sobre-numeros {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .sobre-numero-card {
      background: var(--preto-card);
      border: 1px solid rgba(184,146,74,0.15);
      padding: 28px 24px;
      border-radius: 4px;
      text-align: center;
      transition: border-color 0.3s;
    }
    .sobre-numero-card:hover { border-color: rgba(184,146,74,0.5); }
    .sobre-numero-val {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--ouro);
      line-height: 1;
    }
    .sobre-numero-label {
      font-size: 12px;
      color: var(--cinza);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 8px;
    }

    .sobre-missao {
      background: linear-gradient(135deg, rgba(184,146,74,0.1), rgba(184,146,74,0.04));
      border: 1px solid rgba(184,146,74,0.2);
      padding: 28px;
      border-radius: 4px;
    }
    .sobre-missao-label {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ouro);
      margin-bottom: 10px;
    }
    .sobre-missao-text {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-style: italic;
      color: var(--branco);
      line-height: 1.6;
    }

    /* ─── ÁREAS ─── */
    #areas { background: var(--preto); }

    .areas-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
      flex-wrap: wrap;
      gap: 24px;
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2px;
    }

    .area-card {
      background: var(--preto-card);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: background 0.3s;
      border: 1px solid rgba(184,146,74,0.08);
    }
    .area-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--ouro);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .area-card:hover { background: #202020; }
    .area-card:hover::before { transform: scaleX(1); }

    .area-num {
      font-size: 11px;
      letter-spacing: 0.15em;
      color: var(--ouro-escuro);
      font-weight: 500;
      margin-bottom: 20px;
      display: block;
    }
    .area-icon {
      font-size: 32px;
      margin-bottom: 20px;
      display: block;
    }
    .area-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--branco);
      margin-bottom: 12px;
    }
    .area-desc {
      font-size: 14px;
      color: var(--cinza);
      line-height: 1.7;
      font-weight: 300;
    }
    .area-arrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      font-size: 12px;
      color: var(--ouro);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.3s;
      text-decoration: none;
    }
    .area-card:hover .area-arrow { opacity: 1; }

    /* ─── EQUIPE ─── */
    #equipe {
      background: var(--preto-medio);
    }
    .equipe-intro-grid {
      display: grid;
      grid-template-columns: 0.9fr 1fr;
      gap: 40px;
      align-items: center;
      margin: 0 auto 64px;
      max-width: 1280px;
    }
    .equipe-header {
      text-align: left;
    }
    .equipe-header .section-desc { margin: 0; text-align: left; }

    .equipe-banner {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid rgba(184,146,74,0.18);
      box-shadow: 0 28px 76px rgba(0,0,0,0.24);
      background: rgba(0,0,0,0.20);
    }

    .equipe-banner img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center 61%;
    }

    @media (max-width: 720px) {
      .equipe-banner {
        aspect-ratio: 4 / 5;
      }
      .equipe-banner img {
        object-position: center 22%;
      }
    }

    .equipe-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }

    .advogado-card {
      background: var(--preto-card);
      border: 1px solid rgba(184,146,74,0.12);
      border-radius: 4px;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .advogado-card:hover {
      transform: translateY(-4px);
      border-color: rgba(184,146,74,0.4);
      box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,146,74,0.1);
    }

    /* FOTO NOS CARDS */
    .advogado-foto {
      height: 260px;
      background-size: cover;
      background-position: center 8%;
      position: relative;
      overflow: hidden;
    }
    .advogado-foto::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.4) 50%, transparent 100%);
    }
    .advogado-foto-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 24px 24px 20px; z-index: 1;
    }
    .advogado-nome-foto {
      font-family: 'Playfair Display', serif;
      font-size: 17px; font-weight: 600;
      color: var(--branco); line-height: 1.3; margin-bottom: 6px;
    }
    .advogado-exp-foto {
      font-size: 11px; letter-spacing: 0.1em;
      color: var(--ouro); text-transform: uppercase;
    }

    .advogado-body { padding: 24px 28px; }

    .advogado-areas {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 18px;
    }
    .tag-area {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 2px;
      background: rgba(184,146,74,0.1);
      border: 1px solid rgba(184,146,74,0.2);
      color: var(--ouro-claro);
      letter-spacing: 0.05em;
    }

    .advogado-frase {
      font-size: 13px;
      color: var(--cinza-claro);
      line-height: 1.65;
      font-style: italic;
      font-weight: 300;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    /* ─── CONTATO ─── */
    #contato {
      background: var(--preto);
      position: relative;
      overflow: hidden;
    }
    #contato::after {
      content: '';
      position: absolute;
      bottom: -200px; right: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,146,74,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .contato-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      position: relative;
    }

    .contato-left .section-desc { margin-bottom: 40px; }

    .contato-itens {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contato-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 20px;
      background: var(--preto-card);
      border: 1px solid rgba(184,146,74,0.1);
      border-radius: 4px;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .contato-item:hover {
      border-color: rgba(184,146,74,0.35);
      background: #1A1A1A;
    }
    .contato-item-icon {
      width: 42px; height: 42px;
      background: rgba(184,146,74,0.12);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .contato-item-label {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ouro);
      margin-bottom: 4px;
    }
    .contato-item-val {
      font-size: 15px;
      color: var(--branco);
      font-weight: 400;
    }

    .contato-right {
      background: var(--preto-card);
      border: 1px solid rgba(184,146,74,0.15);
      padding: 48px;
      border-radius: 4px;
    }
    .contato-right h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 600;
      color: var(--branco);
      margin-bottom: 8px;
    }
    .contato-right p {
      font-size: 14px;
      color: var(--cinza);
      margin-bottom: 32px;
      font-weight: 300;
    }

    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ouro);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(184,146,74,0.2);
      border-radius: 2px;
      padding: 14px 16px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--branco);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--ouro); }
    .form-group select option { background: var(--preto-card); }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .form-submit {
      width: 100%;
      background: var(--ouro);
      color: var(--preto);
      border: none;
      padding: 16px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.2s;
    }
    .form-submit:hover { background: var(--ouro-claro); }

    /* ─── MAPA ─── */
    #mapa {
      padding: 0;
      height: 340px;
      position: relative;
    }
    .mapa-placeholder {
      width: 100%; height: 100%;
      background: #111;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .mapa-placeholder iframe {
      width: 100%; height: 100%;
      border: none;
      filter: grayscale(1) invert(0.9) brightness(0.8);
    }

    /* ─── FOOTER ─── */
    footer {
      background: #080808;
      border-top: 1px solid rgba(184,146,74,0.15);
      padding: 48px 60px 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }
    .footer-logo {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 18px;
    }
    .footer-logo-icon {
      width: 40px; height: 40px;
      background: var(--ouro);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 900;
      color: var(--preto);
    }
    .footer-logo-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      color: var(--branco);
    }
    .footer-logo-text span {
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--ouro);
      text-transform: uppercase;
    }
    .footer-desc {
      font-size: 13px;
      color: var(--cinza);
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 20px;
    }
    .footer-slogan {
      font-size: 11px;
      color: var(--ouro-escuro);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-style: italic;
    }

    .footer-col h4 {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ouro);
      margin-bottom: 20px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      text-decoration: none;
      color: var(--cinza);
      font-size: 13px;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--branco); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy { font-size: 12px; color: var(--cinza); }
    .footer-oab  { font-size: 12px; color: var(--cinza); }
    .footer-dev  { font-size: 12px; color: var(--cinza); margin-top: 4px; width: 100%; text-align: center; }

    /* ─── WHATSAPP FLOAT ─── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 200;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .whatsapp-float:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    }
    .whatsapp-float svg { width: 28px; height: 28px; fill: white; }

    /* ─── DIVIDER ─── */
    .ouro-divider {
      width: 60px; height: 2px;
      background: linear-gradient(to right, var(--ouro), transparent);
      margin: 20px 0;
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ─── MOBILE ─── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      nav.scrolled { padding: 12px 24px; }
      .nav-links { display: none; }
      #hero { padding: 100px 24px 60px; }
      .hero-badge { display: none; }
      section { padding: 72px 24px; }
      .sobre-grid,
      .contato-grid,
      .equipe-intro-grid { grid-template-columns: 1fr; gap: 48px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      footer { padding: 48px 24px 28px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .hero-stats { gap: 28px; flex-wrap: wrap; }
      .form-grid { grid-template-columns: 1fr; }
      .contato-right { padding: 28px; }
      .sobre-numeros { grid-template-columns: 1fr 1fr; }
    }

    /* --- POLISH PASS --- */
    :root {
      --preto: #080706;
      --preto-medio: #11100f;
      --preto-card: #171514;
      --ouro: #C4A15F;
      --ouro-claro: #E0C17F;
      --ouro-escuro: #8F6D35;
      --branco: #FAF7F0;
      --cinza: #9C978C;
      --cinza-claro: #DDD6C9;
      --borda-suave: rgba(224,193,127,0.16);
      --sombra-card: 0 24px 80px rgba(0,0,0,0.34);
    }

    html { background: var(--preto); }

    body {
      background:
        linear-gradient(135deg, rgba(196,161,95,0.08) 0%, transparent 32%),
        radial-gradient(circle at 18% 12%, rgba(196,161,95,0.10), transparent 28%),
        radial-gradient(circle at 84% 8%, rgba(255,255,255,0.035), transparent 24%),
        var(--preto);
      color: var(--branco);
      letter-spacing: 0;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: 0.36;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 88px 88px;
      mask-image: linear-gradient(to bottom, black, transparent 70%);
    }

    nav {
      padding: 14px 56px;
      background: rgba(8,7,6,0.72);
      border-bottom: 1px solid var(--borda-suave);
      box-shadow: 0 12px 42px rgba(0,0,0,0.24);
    }
    nav.scrolled { background: rgba(8,7,6,0.92); }
    .nav-logo img,
    .footer-logo img {
      object-fit: contain;
      filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
    }
    .nav-links a {
      color: rgba(250,247,240,0.76);
      font-weight: 600;
    }
    .nav-cta {
      border-radius: 999px;
      padding: 10px 22px;
      background: rgba(196,161,95,0.08);
    }

    #hero {
      min-height: 92vh;
      padding-top: 136px;
      background:
        linear-gradient(90deg, rgba(8,7,6,0.98) 0%, rgba(8,7,6,0.76) 54%, rgba(8,7,6,0.48) 100%),
        radial-gradient(circle at 77% 43%, rgba(196,161,95,0.17), transparent 28%);
    }
    .hero-bg {
      background:
        linear-gradient(115deg, transparent 0%, transparent 58%, rgba(196,161,95,0.08) 58.2%, transparent 82%),
        radial-gradient(ellipse 60% 74% at 86% 46%, rgba(196,161,95,0.10) 0%, transparent 68%);
    }
    .hero-line-v { opacity: 0.32; }
    .hero-content { max-width: 880px; }
    .hero-tag,
    .section-tag {
      font-weight: 700;
      color: var(--ouro-claro);
    }
    .hero-title {
      max-width: 820px;
      text-wrap: balance;
      text-shadow: 0 18px 46px rgba(0,0,0,0.42);
    }
    .hero-sub {
      color: rgba(250,247,240,0.76);
      font-size: 18px;
      max-width: 610px;
    }
    .btn-primary,
    .form-submit {
      border-radius: 999px;
      box-shadow: 0 18px 42px rgba(196,161,95,0.20);
    }
    .btn-secondary {
      border-radius: 999px;
      background: rgba(255,255,255,0.035);
    }
    .btn-secondary:hover {
      border-color: rgba(224,193,127,0.74);
      color: var(--ouro-claro);
      background: rgba(196,161,95,0.08);
    }
    .hero-stats {
      gap: 0;
      display: inline-flex;
      overflow: hidden;
      border: 1px solid var(--borda-suave);
      background: rgba(17,16,15,0.70);
      backdrop-filter: blur(18px);
      box-shadow: var(--sombra-card);
    }
    .hero-stat {
      padding: 22px 30px;
      min-width: 142px;
      border-right: 1px solid rgba(224,193,127,0.12);
    }
    .hero-stat:last-child { border-right: 0; }
    .hero-badge {
      border-color: rgba(224,193,127,0.30);
      box-shadow: 0 34px 90px rgba(0,0,0,0.42);
      background: linear-gradient(145deg, rgba(23,21,20,0.94), rgba(11,10,9,0.96));
    }

    section { padding: 112px 60px; }
    .section-title { text-wrap: balance; }
    .section-desc { color: rgba(250,247,240,0.70); }
    #sobre,
    #contato {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.025), transparent 30%),
        var(--preto-medio);
    }
    .sobre-pilar,
    .sobre-numero-card,
    .sobre-missao,
    .area-card,
    .advogado-card,
    .contato-item,
    .contato-right {
      border: 1px solid var(--borda-suave);
      background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
      box-shadow: 0 18px 52px rgba(0,0,0,0.22);
    }
    .sobre-pilar,
    .sobre-numero-card,
    .sobre-missao,
    .area-card,
    .advogado-card,
    .contato-item,
    .contato-right,
    .mapa-placeholder {
      border-radius: 8px;
    }
    .sobre-pilar:hover,
    .area-card:hover,
    .contato-item:hover,
    .advogado-card:hover {
      border-color: rgba(224,193,127,0.42);
      transform: translateY(-4px);
      box-shadow: 0 28px 70px rgba(0,0,0,0.30);
    }
    .sobre-pilar,
    .area-card,
    .contato-item,
    .advogado-card {
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }
    .areas-grid { gap: 18px; }
    .area-card { min-height: 260px; }
    .area-icon,
    .contato-item-icon {
      background: rgba(196,161,95,0.12);
      border: 1px solid rgba(224,193,127,0.18);
      color: var(--ouro-claro);
    }
    .advogados-grid { gap: 26px; }
    .advogado-foto { background-color: #0f0e0d; }
    .advogado-foto::after {
      background: linear-gradient(to top, rgba(8,7,6,0.96), transparent 62%);
    }
    .tag-area {
      border: 1px solid rgba(224,193,127,0.18);
      background: rgba(196,161,95,0.09);
      color: var(--ouro-claro);
    }

    .contato-right {
      backdrop-filter: blur(18px);
      padding: 44px;
    }
    input,
    textarea,
    select {
      border-radius: 8px;
      background: rgba(8,7,6,0.72);
      border-color: rgba(224,193,127,0.16);
    }
    input:focus,
    textarea:focus,
    select:focus {
      border-color: rgba(224,193,127,0.72);
      box-shadow: 0 0 0 4px rgba(196,161,95,0.10);
    }
    #mapa {
      padding: 0 60px 92px;
      background: var(--preto-medio);
    }
    .mapa-placeholder {
      overflow: hidden;
      border: 1px solid var(--borda-suave);
      box-shadow: var(--sombra-card);
    }
    footer {
      background:
        linear-gradient(180deg, rgba(196,161,95,0.07), transparent 24%),
        #070605;
    }
    .whatsapp-float {
      bottom: 24px;
      right: 24px;
      box-shadow: 0 18px 44px rgba(37,211,102,0.30);
    }

    @media (max-width: 900px) {
      nav { padding: 14px 20px; }
      #hero { min-height: auto; padding: 112px 22px 64px; }
      .hero-actions { margin-bottom: 34px; }
      .hero-stats { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
      .hero-stat { min-width: 0; padding: 18px 16px; }
      .hero-stat:nth-child(2) { border-right: 0; }
      section { padding: 72px 22px; }
      #mapa { padding: 0 22px 72px; }
      .contato-right { padding: 28px; }
      .btn-primary,
      .btn-secondary,
      .form-submit { width: 100%; justify-content: center; }
    }
  
    /* --- MODERN REDESIGN PASS --- */
    #hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
      align-items: center;
      gap: clamp(34px, 5vw, 76px);
      padding: 128px clamp(28px, 6vw, 86px) 78px;
      overflow: hidden;
    }

    #hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(112deg, rgba(5,5,5,0.98) 0%, rgba(12,10,8,0.94) 44%, rgba(43,33,20,0.74) 100%),
        radial-gradient(circle at 78% 42%, rgba(196,161,95,0.30), transparent 34%);
      z-index: 0;
    }

    #hero .hero-bg,
    #hero .hero-line-v { opacity: 0.36; }

    .hero-content {
      max-width: 760px !important;
      z-index: 2;
    }

    .hero-tag {
      margin-bottom: 22px;
      letter-spacing: 0;
      font-size: 13px;
      border-radius: 999px;
      padding: 10px 14px;
      color: #f2e3c0;
      background: rgba(196,161,95,0.13);
      border: 1px solid rgba(224,193,127,0.30);
      width: fit-content;
    }

    .hero-title {
      font-size: clamp(44px, 7vw, 92px);
      line-height: 0.92;
      letter-spacing: 0;
      max-width: 820px;
      margin-bottom: 24px;
    }

    .hero-title em {
      display: inline-block;
      color: #d9b779;
      text-shadow: 0 0 34px rgba(196,161,95,0.20);
    }

    .hero-sub {
      font-size: clamp(17px, 1.7vw, 22px);
      line-height: 1.65;
      max-width: 660px;
      color: rgba(255,255,255,0.80);
    }

    .hero-actions { margin: 34px 0 34px; }

    .btn-primary,
    .btn-secondary {
      min-height: 52px;
      border-radius: 12px;
      font-weight: 760;
      box-shadow: 0 20px 48px rgba(0,0,0,0.22);
    }

    .btn-primary { background: linear-gradient(135deg, #d7b06c, #9f773d); }

    .btn-secondary {
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.18);
      color: #f7f0e4;
    }

    .hero-stats {
      width: 100%;
      display: grid !important;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0 !important;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.11);
      background: rgba(255,255,255,0.055);
      backdrop-filter: blur(18px);
    }

    .hero-stats > div {
      padding: 20px 18px;
      border-right: 1px solid rgba(255,255,255,0.10);
    }

    .hero-stats > div:last-child { border-right: 0; }

    .hero-stat-num { font-size: clamp(26px, 3vw, 40px); }
    .hero-stat-label { color: rgba(255,255,255,0.66); font-size: 12px; }

    .hero-badge { display: none !important; }

    .hero-visual {
      position: relative;
      z-index: 2;
      min-height: min(680px, 72vh);
      display: grid;
      place-items: center;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      width: min(62vw, 620px);
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196,161,95,0.30), rgba(196,161,95,0.04) 58%, transparent 70%);
      filter: blur(4px);
    }

    .hero-brand-panel {
      position: relative;
      width: min(100%, 570px);
      aspect-ratio: 0.92;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 28px;
      padding: clamp(28px, 5vw, 58px);
      border-radius: 30px;
      background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: 0 46px 110px rgba(0,0,0,0.46), inset 0 1px 0 rgba(255,255,255,0.16);
      backdrop-filter: blur(20px);
    }

    .hero-brand-panel img {
      width: 100%;
      max-height: 310px;
      object-fit: contain;
      filter: drop-shadow(0 28px 42px rgba(0,0,0,0.40));
    }

    .hero-panel-copy {
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 22px;
    }

    .hero-panel-copy span {
      display: block;
      color: #d9b779;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .hero-panel-copy strong {
      display: block;
      color: white;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.04;
      font-weight: 600;
    }

    .hero-quick {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 16px;
      border-radius: 999px;
      color: white;
      background: rgba(10,10,10,0.72);
      border: 1px solid rgba(224,193,127,0.24);
      box-shadow: 0 18px 52px rgba(0,0,0,0.32);
      backdrop-filter: blur(14px);
    }

    .hero-quick .icon-svg { width: 19px; height: 19px; color: #d9b779; }
    .hero-quick strong { font-size: 13px; white-space: nowrap; }
    .hero-quick-a { left: -6px; top: 18%; }
    .hero-quick-b { right: -8px; bottom: 20%; }

    .icon-svg {
      width: 1em;
      height: 1em;
      display: block;
      flex: 0 0 auto;
    }

    .sobre-pilar-icon,
    .area-icon,
    .contato-item-icon {
      display: inline-grid !important;
      place-items: center;
      color: #d9b779;
    }

    .sobre-pilar-icon .icon-svg { width: 22px; height: 22px; }

    .area-icon {
      width: 58px !important;
      height: 58px !important;
      margin-bottom: 22px !important;
      border-radius: 16px !important;
    }

    .area-icon .icon-svg { width: 29px; height: 29px; }
    .area-icon-feature .icon-svg { width: 32px; height: 32px; }
    .contato-item-icon .icon-svg { width: 21px; height: 21px; }

    .area-card {
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,245,239,0.96));
      box-shadow: 0 22px 70px rgba(12,10,8,0.10);
    }

    .area-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 86px rgba(12,10,8,0.16);
    }

    .advogado-foto {
      position: relative;
      overflow: hidden;
      background-size: 122% auto !important;
      background-position: 55% 16% !important;
      filter: saturate(0.95) contrast(1.05);
    }

    .advogado-foto::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(6,6,6,0.60) 0%, rgba(6,6,6,0.32) 21%, rgba(6,6,6,0.02) 46%, rgba(6,6,6,0.20) 100%),
        linear-gradient(180deg, rgba(6,6,6,0.24) 0%, rgba(6,6,6,0) 42%, rgba(6,6,6,0.74) 100%);
    }

    .advogado-foto::after { z-index: 2; }
    .advogado-foto-info { z-index: 3; }

    @media (max-width: 1040px) {
      #hero {
        grid-template-columns: 1fr;
        padding-top: 120px;
      }

      .hero-visual {
        min-height: 420px;
        width: min(100%, 620px);
        margin-inline: auto;
      }
    }

    @media (max-width: 680px) {
      #hero { padding: 108px 20px 58px; }
      .hero-title { font-size: clamp(42px, 15vw, 62px); }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-stats { grid-template-columns: 1fr 1fr; }
      .hero-stats > div:nth-child(2) { border-right: 0; }
      .hero-stats > div:nth-child(1),
      .hero-stats > div:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.10); }
      .hero-brand-panel { border-radius: 22px; }
      .hero-quick { display: none; }
      .area-icon { width: 52px !important; height: 52px !important; }
    }

    /* --- AREA DARK FIX --- */
    #areas {
      background:
        radial-gradient(circle at 18% 22%, rgba(196,161,95,0.10), transparent 26%),
        radial-gradient(circle at 78% 58%, rgba(255,255,255,0.045), transparent 30%),
        #050505;
    }

    .areas-grid {
      align-items: stretch;
    }

    .area-card {
      background: linear-gradient(155deg, rgba(255,255,255,0.092), rgba(255,255,255,0.032)) !important;
      border: 1px solid rgba(224,193,127,0.16) !important;
      box-shadow: 0 26px 78px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.08) !important;
      color: #fff !important;
      backdrop-filter: blur(16px);
    }

    .area-card::before {
      background: linear-gradient(90deg, #d9b779, #9f773d) !important;
    }

    .area-card:hover {
      background: linear-gradient(155deg, rgba(196,161,95,0.18), rgba(255,255,255,0.052)) !important;
      border-color: rgba(224,193,127,0.34) !important;
      transform: translateY(-8px);
      box-shadow: 0 34px 90px rgba(0,0,0,0.46), inset 0 1px 0 rgba(255,255,255,0.10) !important;
    }

    .area-num {
      color: #d9b779 !important;
    }

    .area-title {
      color: #fffaf0 !important;
      text-shadow: 0 1px 18px rgba(0,0,0,0.22);
    }

    .area-desc {
      color: rgba(255,255,255,0.72) !important;
    }

    .area-icon {
      background: rgba(196,161,95,0.12) !important;
      border-color: rgba(224,193,127,0.24) !important;
      color: #d9b779 !important;
    }

    .area-card-feature {
      background: linear-gradient(155deg, rgba(196,161,95,0.15), rgba(255,255,255,0.036)) !important;
      border-color: rgba(224,193,127,0.24) !important;
    }

    /* --- OFFICE PHOTO HERO --- */
    #hero::before {
      background:
        linear-gradient(90deg, rgba(3,3,3,0.94) 0%, rgba(3,3,3,0.80) 38%, rgba(3,3,3,0.52) 68%, rgba(3,3,3,0.72) 100%),
        linear-gradient(180deg, rgba(3,3,3,0.60) 0%, rgba(3,3,3,0.12) 46%, rgba(3,3,3,0.86) 100%),
        url('../images/lima-alecrim-escritorio.jpg') center center / cover no-repeat !important;
    }

    #hero .hero-bg {
      opacity: 0.16 !important;
      background:
        radial-gradient(circle at 18% 26%, rgba(224,193,127,0.22), transparent 30%),
        radial-gradient(circle at 82% 62%, rgba(224,193,127,0.16), transparent 28%);
    }

    .hero-brand-panel {
      background: linear-gradient(145deg, rgba(0,0,0,0.60), rgba(0,0,0,0.30)) !important;
      border-color: rgba(224,193,127,0.26) !important;
    }

    .hero-visual::before {
      background: radial-gradient(circle, rgba(196,161,95,0.22), rgba(196,161,95,0.04) 60%, transparent 72%) !important;
    }

    @media (max-width: 760px) {
      #hero::before {
        background:
          linear-gradient(180deg, rgba(3,3,3,0.86) 0%, rgba(3,3,3,0.72) 45%, rgba(3,3,3,0.92) 100%),
          url('../images/lima-alecrim-escritorio.jpg') center top / cover no-repeat !important;
      }
    }

    /* --- OFFICE PHOTO INLINE --- */
    .sobre-office-photo {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      margin: 28px 0 0;
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid rgba(224,193,127,0.18);
      box-shadow: 0 28px 76px rgba(0,0,0,0.24);
      background: rgba(0,0,0,0.20);
    }

    .sobre-office-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, transparent 48%, rgba(0,0,0,0.30) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.08), transparent 36%, rgba(0,0,0,0.12));
      pointer-events: none;
    }

    .sobre-office-photo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    @media (max-width: 980px) {
      .sobre-office-photo {
        margin-top: 22px;
      }
    }

    /* --- TEAM GRID BALANCE --- */
    .equipe-grid {
      grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 1080px) {
      .equipe-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
      }
    }

    @media (max-width: 680px) {
      .equipe-grid {
        grid-template-columns: 1fr !important;
      }
    }

    /* --- TEAM PHOTO BREATHING ROOM --- */
    .advogado-foto {
      background-size: 110% auto !important;
      background-position: center 17% !important;
    }

    @media (max-width: 680px) {
      .advogado-foto {
        background-size: 116% auto !important;
        background-position: center 15% !important;
      }
    }

    /* --- MOBILE NAV MENU --- */
    .nav-menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(202, 166, 101, 0.55);
      border-radius: 50%;
      background: rgba(16, 14, 12, 0.88);
      color: var(--branco);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .nav-menu-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 76px;
      left: 16px;
      right: 16px;
      z-index: 998;
      padding: 12px;
      border: 1px solid rgba(202, 166, 101, 0.32);
      border-radius: 18px;
      background: rgba(10, 9, 8, 0.96);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      min-height: 48px;
      padding: 0 16px;
      border-radius: 12px;
      color: rgba(255, 255, 255, 0.88);
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
      text-decoration: none;
    }

    .mobile-menu a:hover,
    .mobile-menu a:focus-visible {
      background: rgba(202, 166, 101, 0.14);
      color: var(--ouro);
      outline: none;
    }

    /* ─── PÁGINA DO MEMBRO ─── */
    .membro-page { padding-top: 80px; }

    .membro-hero-wrap {
      background: var(--preto-medio);
      border-bottom: 1px solid rgba(184,146,74,0.12);
    }

    .membro-hero {
      max-width: 960px;
      margin: 0 auto;
      padding: 64px 40px;
      display: flex;
      gap: 52px;
      align-items: center;
    }

    .membro-foto-full {
      flex-shrink: 0;
      width: 280px;
      height: 340px;
      border-radius: 16px;
      background-size: cover;
      background-position: center top;
      border: 1px solid rgba(184,146,74,0.2);
    }

    .membro-foto-placeholder {
      background: var(--preto-card);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .membro-foto-placeholder svg { width: 64px; height: 64px; color: var(--cinza); }

    .membro-hero-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .membro-nome {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 2.6vw, 36px);
      font-weight: 700;
      line-height: 1.2;
      margin: 8px 0 6px;
    }

    .membro-cargo {
      color: var(--ouro-claro);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
    }

    .membro-oab {
      color: var(--cinza);
      font-size: 13px;
      margin-top: 4px;
      letter-spacing: 0.02em;
    }

    .membro-destaques {
      padding: 64px 40px;
      max-width: 960px;
      margin: 0 auto;
    }

    .membro-cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 28px;
    }

    .membro-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: var(--preto-card);
      border: 1px solid rgba(184,146,74,0.25);
      border-radius: 14px;
      padding: 20px 24px;
      transition: border-color 0.2s, transform 0.2s;
    }

    .membro-card:hover {
      border-color: rgba(184,146,74,0.5);
      transform: translateY(-2px);
    }

    .membro-card-frase {
      grid-column: 1 / -1;
      border-color: rgba(184,146,74,0.4);
    }

    .membro-card-icon {
      flex-shrink: 0;
      width: 36px; height: 36px;
      background: rgba(184,146,74,0.1);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .membro-card-icon svg {
      width: 18px; height: 18px;
      color: var(--ouro-claro);
    }

    .membro-card-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ouro);
      margin-bottom: 4px;
      font-weight: 600;
    }

    .membro-card-valor {
      font-size: 14px;
      color: var(--branco);
      line-height: 1.6;
      font-weight: 300;
    }

    .membro-card-frase .membro-card-valor {
      font-style: italic;
      font-size: 15px;
      color: var(--cinza-claro);
    }

    .membro-btn-equipe-rodape {
      display: flex;
      justify-content: center;
      padding: 0 40px 64px;
    }

    @media (max-width: 760px) {
      .membro-hero { flex-direction: column; padding: 40px 24px; gap: 32px; }
      .membro-foto-full { width: 100%; height: 300px; }
      .membro-destaques { padding: 40px 24px; }
      .membro-cards-grid { grid-template-columns: 1fr; }
      .membro-card-frase { grid-column: auto; }
      .membro-btn-equipe-rodape { padding: 0 24px 48px; }
      .membro-btn-equipe-rodape .btn-secondary { width: 100%; text-align: center; }
    }

    @media (max-width: 900px) {
      .nav-menu-toggle {
        display: inline-flex;
      }

      .mobile-menu {
        display: grid;
        gap: 4px;
      }

      .mobile-menu.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .nav-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .nav-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
      }

      .nav-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
    }
