  :root {
    /* Paleta institucional — sóbria, advocacia premium */
    --red: #8B1A2B;
    --red-hover: #A52238;
    --red-dark: #6B1522;
    --red-soft: rgba(139,26,43,0.08);
    --red-glow: rgba(139,26,43,0.22);
    --dark: #1F1F1F;             /* texto principal */
    --dark2: #F6F4EF;            /* compat: fundo creme suave */
    --dark3: #FAF8F4;            /* compat: fundo claro */
    --gray-800: #2A2A2A;
    --gray-600: #5A5A5A;
    --gray-400: #7A7A7A;
    --gray-200: #B5B0A8;
    --gray-100: #E7E2DB;
    --white: #FFFFFF;
    --offwhite: #F7F5F2;
    --success: #1F7A4D;

    --nav-height: 76px;
    --container-px: clamp(24px, 5vw, 64px);
    --section-py: clamp(72px, 10vw, 120px);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  body {
    font-family: 'Raleway', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  ::selection { background: var(--red); color: var(--white); }
  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }
  button { font-family: inherit; }

  /* Focus states for accessibility */
  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 2px;
  }
  .btn-white:focus-visible { outline-color: var(--white); }

  /* ===== NAV ===== */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 20px var(--container-px);
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s, padding 0.3s, border-color 0.4s;
  }
  nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 24px rgba(0,0,0,0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px var(--container-px);
    border-bottom: 1px solid var(--gray-100);
  }
  .n-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 600; color: var(--dark);
    display: flex; align-items: baseline; gap: 8px;
  }
  .n-logo strong { font-weight: 600; }
  .n-logo span { color: var(--red); }
  .n-logo .n-logo-suffix {
    font-family: 'Raleway', sans-serif; font-weight: 600;
    font-size: 0.55rem; letter-spacing: 0.2em;
    color: var(--gray-600); text-transform: uppercase;
  }
  .n-links { display: flex; gap: 28px; list-style: none; }
  .n-links a {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
    color: var(--gray-600); transition: color 0.3s;
    position: relative; padding: 4px 0;
  }
  .n-links a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 1px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
  }
  .n-links a:hover { color: var(--dark); }
  .n-links a:hover::after, .n-links a.is-active::after { transform: scaleX(1); }
  .n-links a.is-active { color: var(--dark); }
  .n-cta {
    font-size: 0.74rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white); background: var(--red);
    padding: 12px 24px; border-radius: 4px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .n-cta:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 8px 24px var(--red-glow); }
  .n-cta svg { width: 14px; height: 14px; }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 92vh;
    min-height: 92svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--offwhite);
    padding-top: var(--nav-height);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 95% 95%, rgba(139,26,43,0.04), transparent 60%),
      var(--offwhite);
  }
  .hero-overlay { display: none; }
  .hero-content {
    position: relative; z-index: 2;
    padding: 32px var(--container-px) 64px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
  }
  .hero-text { max-width: 620px; }
  .hero-portrait {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    max-width: 460px;
    justify-self: end;
    background:
      linear-gradient(135deg, #E7E2DB 0%, #D8D2CA 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
      0 30px 60px rgba(31,31,31,0.10),
      0 8px 20px rgba(31,31,31,0.06);
  }
  .hero-portrait::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent 0 20px, rgba(0,0,0,0.012) 20px 21px);
  }
  .hero-portrait-ph {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px;
    color: #8E867C;
  }
  .hero-portrait-ph svg { width: 56px; height: 56px; opacity: 0.5; }
  .hero-portrait-ph .ph-label {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #8E867C;
    text-align: center; max-width: 220px; line-height: 1.5;
  }
  .hero-portrait-frame {
    position: absolute; inset: 24px;
    border: 1px solid rgba(139,26,43,0.18);
    pointer-events: none;
  }
  .hero-portrait-corner {
    position: absolute;
    bottom: 16px; right: 16px;
    background: var(--red);
    color: var(--white);
    padding: 18px 22px;
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem;
    line-height: 1.4;
    box-shadow: 0 12px 28px rgba(139,26,43,0.24);
  }
  .hero-portrait-corner strong { display: block; font-weight: 600; font-size: 0.92rem; }
  .hero-portrait-corner span {
    display: block; font-family: 'Raleway', sans-serif; font-weight: 500;
    font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
    opacity: 0.85; margin-top: 2px;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--red); margin-bottom: 24px;
    white-space: nowrap;
  }
  .hero-tag::before { content: ''; width: 32px; height: 1.5px; background: var(--red); }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    line-height: 1.06; font-weight: 600;
    color: var(--dark); max-width: 600px;
    margin-bottom: 24px;
    text-wrap: balance;
    letter-spacing: -0.01em;
  }
  .hero h1 em { font-style: italic; color: var(--red); }
  .hero-desc {
    font-size: clamp(1rem, 1.1vw, 1.08rem); line-height: 1.75;
    color: var(--gray-600); max-width: 540px;
    margin-bottom: 36px;
    text-wrap: pretty;
  }
  .hero-row {
    display: flex; align-items: center;
    gap: 18px; flex-wrap: wrap;
  }
  .hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .btn-red {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--red); color: var(--white);
    font-size: 0.85rem; font-weight: 600; padding: 17px 32px;
    border-radius: 4px; border: 1px solid var(--red);
    transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
    cursor: pointer;
  }
  .btn-red:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(139,26,43,0.22); }
  .btn-outline-w {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 500; color: var(--dark);
    border: 1px solid var(--gray-100); padding: 16px 26px;
    border-radius: 4px; transition: background 0.3s, border-color 0.3s, color 0.3s;
    background: var(--white);
  }
  .btn-outline-w:hover { border-color: var(--red); color: var(--red); background: var(--white); }
  .btn-outline-w svg { width: 14px; height: 14px; opacity: 0.7; }

  .hero-stats { display: none; }
  .hero-stat { text-align: left; }
  .hero-stat-n {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700; color: var(--dark); line-height: 1;
  }
  .hero-stat-n .stat-accent { color: var(--red); }
  .hero-stat-line { width: 24px; height: 2px; background: var(--red); margin: 10px 0 8px; }
  .hero-stat-l { font-size: 0.7rem; color: var(--gray-600); letter-spacing: 0.04em; line-height: 1.4; }

  .hero-scroll { display: none; }
  
  

  /* ===== TRUST BAR ===== */
  .trust {
    background: var(--red);
    padding: 18px var(--container-px);
    display: flex; justify-content: center; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap;
  }
  .trust-i {
    font-size: 0.78rem; font-weight: 600; color: var(--white);
    display: flex; align-items: center; gap: 10px;
    letter-spacing: 0.02em;
  }
  .trust-i svg { width: 18px; height: 18px; opacity: 0.85; flex-shrink: 0; }

  /* ===== SECTION HELPERS ===== */
  .section-light { background: var(--offwhite); color: var(--dark); }
  .section-dark { background: var(--dark); color: var(--white); }
  .pad { padding: var(--section-py) var(--container-px); }
  .eyebrow {
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--red); display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
  }
  .eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); }
  .heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.12; font-weight: 700; margin-bottom: 20px;
    text-wrap: balance;
  }
  .heading em { font-style: italic; color: var(--red); }
  .section-light .heading { color: var(--dark); }

  /* ===== ÁREAS DE ATUAÇÃO (OVERVIEW) ===== */
  .areas { background: var(--white); }
  .areas-header {
    text-align: center; max-width: 720px; margin: 0 auto 56px;
  }
  .areas-header .eyebrow { justify-content: center; }
  .areas-header p {
    font-size: 1rem; line-height: 1.75; color: var(--gray-600);
    margin-top: 12px; text-wrap: pretty;
  }
  .areas-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px;
  }
  .area-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 6px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: flex; flex-direction: column;
  }
  .area-card::before { display: none; }
  .area-card:hover { border-color: var(--red); box-shadow: 0 6px 20px rgba(31,31,31,0.05); }
  
  .area-ico {
    width: 56px; height: 56px; border-radius: 6px;
    background: var(--red-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--red); margin-bottom: 28px;
    transition: background 0.3s, color 0.3s;
  }
  .area-card:hover .area-ico { background: var(--red); color: var(--white); }
  .area-ico svg { width: 26px; height: 26px; }
  .area-num {
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--gray-600); margin-bottom: 10px;
  }
  .area-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 600; color: var(--dark);
    line-height: 1.2; margin-bottom: 12px;
  }
  .area-text {
    font-size: 0.9rem; line-height: 1.7; color: var(--gray-600);
    margin-bottom: 24px; flex: 1; text-wrap: pretty;
  }
  .area-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; color: var(--red);
    letter-spacing: 0.02em; transition: gap 0.3s, color 0.3s;
    align-self: flex-start;
  }
  .area-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
  .area-card:hover .area-link { color: var(--red-hover); gap: 12px; }
  .area-card:hover .area-link svg { transform: translateX(2px); }

  /* ===== PUBLICAÇÕES ===== */
  .pubs { background: var(--offwhite); position: relative; }
  .pubs-header {
    display: grid; grid-template-columns: 1fr auto;
    gap: 32px; align-items: end; margin-bottom: 56px;
  }
  .pubs-header-text { max-width: 620px; }
  .pubs-desc {
    font-size: 1rem; line-height: 1.75; color: #3D3D3D;
    margin-top: 12px; text-wrap: pretty;
  }
  .pubs-foot-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--red); 
    padding-bottom: 6px; border-bottom: 1px solid var(--red);
    transition: gap 0.3s;
  }
  .pubs-foot-link:hover { gap: 14px; }
  .pubs-foot-link svg { width: 14px; height: 14px; }
  .pubs-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
  }
  .pub {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    display: flex; flex-direction: column;
    cursor: pointer;
  }
  .pub:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(31,31,31,0.07); border-color: var(--red); }
  .pub.pub-featured { grid-row: span 2; }
  .pub-img {
    height: 200px;
    background:
      linear-gradient(135deg, #F0EBE0 0%, #E7E2DB 100%);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .pub-img::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent 0 18px, rgba(31,31,31,0.025) 18px 19px);
    pointer-events: none;
  }
  .pub-img::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 75% 25%, rgba(139,26,43,0.06), transparent 60%);
    pointer-events: none;
  }
  .pub.pub-featured .pub-img { height: 320px; }
  .pub-img-ph {
    text-align: center; position: relative; z-index: 1;
  }
  .pub-img-ph svg { width: 36px; height: 36px; color: rgba(31,31,31,0.28); margin-bottom: 10px; }
  .pub-img-ph p {
    font-family: 'Raleway', sans-serif; font-weight: 600;
    font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(31,31,31,0.5);
  }
  .pub-tag {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    background: var(--red); color: var(--white);
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.62rem;
    padding: 7px 12px; border-radius: 3px; letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
  .pub-tag.tag-vitoria { background: #1F7A4D; color: var(--white); }
  .pub-tag.tag-artigo { background: #1A1A1A; color: var(--white); }
  .pub-tag.tag-noticia { background: #B8893A; color: var(--white); }
  .pub-body {
    padding: 24px 28px 28px;
    flex: 1; display: flex; flex-direction: column;
  }
  .pub.pub-featured .pub-body { padding: 32px 36px 36px; }
  .pub-meta {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.65rem; 
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #4A4A4A;
    margin-bottom: 14px;
  }
  .pub-meta-sep { width: 14px; height: 1px; background: #BFBFBF; }
  .pub-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600; color: var(--dark);
    line-height: 1.3; margin-bottom: 12px;
    text-wrap: balance;
  }
  .pub.pub-featured .pub-title { font-size: 1.55rem; }
  .pub-excerpt {
    font-size: 0.88rem; line-height: 1.7; color: #3D3D3D;
    margin-bottom: 22px; flex: 1; text-wrap: pretty;
  }
  .pub.pub-featured .pub-excerpt { font-size: 0.98rem; color: #2A2A2A; }
  .pub-readmore {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 700; color: var(--red);
    letter-spacing: 0.04em; text-transform: uppercase;
    align-self: flex-start;
    padding-bottom: 4px;
    border-bottom: 1.5px solid transparent;
    transition: gap 0.3s, border-color 0.3s;
    white-space: nowrap;
  }
  .pub:hover .pub-readmore { gap: 12px; border-color: var(--red); }
  .pub-readmore svg { width: 13px; height: 13px; }

  /* CTA Instagram no rodapé das publicações */
  .pubs-cta {
    margin-top: 48px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 48px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px; align-items: center;
    position: relative; overflow: hidden;
  }
  .pubs-cta::before {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #F58529, #DD2A7B, #8134AF);
    pointer-events: none;
  }
  .pubs-cta-ico {
    width: 64px; height: 64px; border-radius: 14px;
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
  }
  .pubs-cta-ico svg { width: 30px; height: 30px; }
  .pubs-cta-text { position: relative; z-index: 1; }
  .pubs-cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 600; color: var(--dark);
    margin-bottom: 6px; line-height: 1.3;
  }
  .pubs-cta-text p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }
  .pubs-cta-text p strong { color: var(--dark); }
  .pubs-cta .btn-red { position: relative; z-index: 1; white-space: nowrap; }

  /* ===== CRIMINAL (DARK + ACCENT) ===== */
  .criminal { background: var(--offwhite); position: relative; overflow: hidden; }
  .criminal::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(139,26,43,0.12), transparent 70%);
    border-radius: 50%; transform: translate(40%, -40%);
    pointer-events: none;
  }
  .crim-inner { position: relative; z-index: 1; }
  .crim-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 56px;
  }
  .crim-desc { font-size: 0.98rem; line-height: 1.8; color: var(--gray-600); max-width: 460px; align-self: end; text-wrap: pretty; }
  .crim-desc strong { color: var(--dark); }
  .crim-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }
  .crim-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 6px;
    padding: 28px 26px;
    display: flex; gap: 18px; align-items: flex-start;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .crim-card:hover { border-color: var(--red); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(31,31,31,0.05); }
  .crim-card-ico {
    width: 40px; height: 40px; border-radius: 6px;
    background: var(--red-soft);
    color: var(--red); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, color 0.3s;
  }
  .crim-card:hover .crim-card-ico { background: var(--red); color: var(--white); }
  .crim-card-ico svg { width: 18px; height: 18px; }
  .crim-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 600; color: var(--dark);
    margin-bottom: 6px; line-height: 1.3;
  }
  .crim-card-text { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }
  .crim-note {
    margin-top: 36px;
    display: flex; gap: 14px; align-items: flex-start;
    background: rgba(139,26,43,0.1);
    border: 1px solid rgba(139,26,43,0.25);
    border-radius: 6px; padding: 18px 22px;
    color: var(--dark); font-size: 0.88rem; line-height: 1.65;
  }
  .crim-note svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
  .crim-note strong { color: var(--red); }

  /* ===== PREVIDENCIÁRIO (LIGHT) ===== */
  .prev-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 56px;
  }
  .prev-desc { font-size: 0.98rem; line-height: 1.8; color: var(--gray-600); max-width: 460px; align-self: end; text-wrap: pretty; }
  .prev-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: var(--gray-100); border-radius: 10px; overflow: hidden;
    border: 1px solid var(--gray-100);
  }
  .prev-item {
    background: var(--white); padding: 32px 24px;
    transition: background 0.35s; position: relative;
    display: flex; flex-direction: column; min-height: 200px;
    cursor: default;
  }
  .prev-item::after { display: none; }
  .prev-item:hover { background: var(--offwhite); }
  
  .prev-item-ico {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(139,26,43,0.08);
    color: var(--red);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    transition: background 0.35s, color 0.35s;
  }
  .prev-item:hover .prev-item-ico { background: var(--red); color: var(--white); }
  .prev-item-ico svg { width: 20px; height: 20px; }
  .prev-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 600; color: var(--dark);
    margin-bottom: 8px; line-height: 1.3;
  }
  .prev-item-text { font-size: 0.8rem; color: var(--gray-600); line-height: 1.6; }

  .prev-cta {
    margin-top: 56px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-left: 4px solid var(--red);
    border-radius: 12px;
    padding: clamp(36px, 5vw, 56px);
    display: grid; grid-template-columns: 1fr auto;
    gap: 32px; align-items: center;
    position: relative; overflow: hidden;
  }
  .prev-cta::before {
    content: ''; position: absolute; top: -40%; right: -10%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(139,26,43,0.05), transparent 70%);
    border-radius: 50%;
  }
  .prev-cta-text { position: relative; z-index: 1; }
  .prev-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 600; color: var(--dark);
    line-height: 1.3; margin-bottom: 10px;
    text-wrap: balance;
  }
  .prev-cta h3 em { color: var(--red); font-style: italic; }
  .prev-cta p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.6; max-width: 520px; }
  .prev-cta .btn-red { position: relative; z-index: 1; white-space: nowrap; }


  .svc-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 56px;
  }
  .svc-desc {
    font-size: 0.98rem; line-height: 1.8; color: var(--gray-600);
    max-width: 460px; align-self: end;
    text-wrap: pretty;
  }
  .svc-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: var(--gray-100); border-radius: 10px; overflow: hidden;
    border: 1px solid var(--gray-100);
  }
  .svc {
    background: var(--white); padding: 32px 24px;
    transition: background 0.35s, transform 0.35s;
    position: relative; cursor: default;
    display: flex; flex-direction: column; min-height: 180px;
  }
  .svc::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--red);
    transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
  }
  .svc:hover { background: var(--offwhite); }
  
  .svc-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--gray-100); margin-bottom: 14px; line-height: 1;
    transition: color 0.35s;
    font-weight: 500;
  }
  .svc:hover .svc-num { color: var(--red); }
  .svc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 600; color: var(--dark);
    margin-bottom: 10px; line-height: 1.3;
  }
  .svc-text { font-size: 0.78rem; color: var(--gray-600); line-height: 1.6; }

  .svc-foot {
    margin-top: 48px; display: flex; justify-content: center;
  }

  /* ===== RESULTS ===== */
  .results { background: var(--offwhite); position: relative; overflow: hidden; }
  .results-bg { display: none; }
  .results-overlay { display: none; }
  .results-inner { position: relative; z-index: 2; }
  .results-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 56px;
  }
  .results-p { font-size: 0.98rem; line-height: 1.8; color: var(--gray-600); text-wrap: pretty; }
  .results-p strong { color: var(--dark); }
  .results-tip {
    background: rgba(139,26,43,0.12); border: 1px solid rgba(139,26,43,0.25);
    border-radius: 6px; padding: 22px;
    font-size: 0.88rem;
    color: var(--dark); line-height: 1.7;
    display: flex; gap: 14px; align-items: flex-start;
  }
  .results-tip svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
  .results-tip strong { color: var(--red); display: block; margin-bottom: 4px; }

  /* Cases */
  .cases-wrap { position: relative; }
  .cases {
    display: flex; gap: 22px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 4px 4px 18px;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  .cases::-webkit-scrollbar { display: none; }
  .case {
    flex: 0 0 380px;
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: 6px; overflow: hidden;
    scroll-snap-align: start;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    display: flex; flex-direction: column;
  }
  .case:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(31,31,31,0.06); }
  .case-img {
    height: 180px;
    background: linear-gradient(135deg, #F0EBE0 0%, #E7E2DB 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .case-img::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 30% 40%, rgba(139,26,43,0.07), transparent 60%),
      repeating-linear-gradient(45deg, transparent 0 14px, rgba(31,31,31,0.025) 14px 15px);
  }
  .case-img-ph { text-align: center; position: relative; z-index: 1; }
  .case-img-ph svg { width: 28px; height: 28px; color: rgba(31,31,31,0.28); margin-bottom: 6px; }
  .case-img-ph p {
    font-family: 'Raleway', sans-serif; font-weight: 600;
    font-size: 0.52rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(31,31,31,0.45); }
  .case-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--red); color: var(--white);
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.6rem; padding: 6px 11px; border-radius: 3px;
    letter-spacing: 0.1em; white-space: nowrap;
  }
  .case-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .case-type {
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--red); margin-bottom: 10px;
  }
  .case-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600; color: var(--dark);
    line-height: 1.3; margin-bottom: 10px;
  }
  .case-text { font-size: 0.82rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; flex: 1; }
  .case-ok {
    display: flex; align-items: flex-start; gap: 8px;
    background: rgba(31,122,77,0.08); border: 1px solid rgba(31,122,77,0.25);
    border-radius: 4px; padding: 10px 14px;
    font-size: 0.72rem; color: #1F7A4D; line-height: 1.5;
    font-weight: 600;
  }
  .case-ok svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; }

  .cases-controls {
    margin-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
  }
  .cases-nav { display: flex; gap: 8px; }
  .cases-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-100);
    color: var(--dark); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
  }
  .cases-btn:hover:not(:disabled) {
    background: var(--red); border-color: var(--red);
  }
  .cases-btn:disabled { opacity: 0.3; cursor: not-allowed; }
  .cases-btn svg { width: 18px; height: 18px; }

  .results-foot {
    margin-top: 32px;
    display: flex; justify-content: flex-end;
  }

  /* ===== ABOUT ===== */
  .about { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
  .about-slider {
    position: relative;
    background: linear-gradient(135deg, #F0EBE0 0%, #DCD5C9 100%);
    overflow: hidden;
  }
  .about-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .about-slide.active { opacity: 1; }
  .about-slide img { width: 100%; height: 100%; object-fit: cover; }
  .about-slide-ph {
    width: 100%; height: 100%;
    background:
      radial-gradient(circle at 30% 30%, rgba(139,26,43,0.08), transparent 55%),
      transparent;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px;
  }
  .about-slide-ph svg { width: 48px; height: 48px; color: rgba(31,31,31,0.28); }
  .about-slide-ph span {
    font-family: 'Raleway', sans-serif; font-weight: 600;
    font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase;
    color: rgba(31,31,31,0.5);
  }
  .about-slider-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(90deg, transparent 50%, var(--offwhite));
    pointer-events: none;
  }
  .about-slider-badge {
    position: absolute; bottom: 40px; left: 40px; z-index: 3;
    background: var(--red); color: var(--white);
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.74rem; padding: 14px 22px; border-radius: 3px; line-height: 1.4;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .about-slider-dots {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 4; display: flex; gap: 8px;
  }
  .about-slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(31,31,31,0.25); border: none; cursor: pointer;
    transition: all 0.3s; padding: 0;
  }
  .about-slider-dot.active {
    background: var(--red); width: 24px; border-radius: 4px;
  }
  .about-text-wrap {
    background: var(--offwhite);
    padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 64px);
    display: flex; flex-direction: column; justify-content: center;
  }
  .about-text-wrap .heading { color: var(--dark); }
  .about-text-wrap p {
    font-size: 0.98rem; line-height: 1.85; color: var(--gray-600); margin-bottom: 16px;
    text-wrap: pretty;
  }
  .about-text-wrap p strong { color: var(--dark); }
  .about-creds {
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid var(--gray-100);
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
  }
  .about-cred {
    font-size: 0.85rem; color: var(--gray-600);
    display: flex; align-items: center; gap: 10px; padding: 4px 0;
  }
  .about-cred::before {
    content: ''; width: 8px; height: 2px;
    background: var(--red); flex-shrink: 0;
  }

  /* ===== FAQ ===== */
  .faq { background: var(--offwhite); }
  .faq-grid {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 60px; align-items: start;
  }
  .faq-list { display: flex; flex-direction: column; gap: 8px; }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
  }
  .faq-item.open { border-color: var(--red); }
  .faq-q {
    width: 100%;
    background: transparent; border: none;
    padding: 22px 26px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    text-align: left; cursor: pointer;
    color: var(--dark); font-size: 0.95rem; font-weight: 600;
    font-family: inherit;
    transition: color 0.3s;
  }
  .faq-q:hover { color: var(--red); }
  .faq-q-icon {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform 0.35s, background 0.3s, border-color 0.3s;
    color: var(--dark);
  }
  .faq-q-icon svg { width: 12px; height: 12px; }
  .faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--red); border-color: var(--red); }
  .faq-a {
    overflow: hidden; max-height: 0;
    transition: max-height 0.4s ease;
  }
  .faq-a-inner {
    padding: 0 26px 22px;
    color: var(--gray-600); font-size: 0.88rem; line-height: 1.75;
  }

  /* ===== CONTACT ===== */
  .contact { background: var(--offwhite); position: relative; overflow: hidden; }
  .contact-bg { display: none; }
  .contact-overlay { display: none; }
  .contact-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  }
  .contact-left .heading { color: var(--dark); }
  .contact-sub {
    font-size: 0.98rem; line-height: 1.75; color: var(--gray-600);
    margin-bottom: 40px; max-width: 440px;
    text-wrap: pretty;
  }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px;
  }
  .contact-item {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .contact-item-ico {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(139,26,43,0.18); border: 1px solid rgba(139,26,43,0.3);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--red);
  }
  .contact-item-ico svg { width: 16px; height: 16px; }
  .ci-label {
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--red); margin-bottom: 4px;
  }
  .ci-val { font-size: 0.92rem; color: var(--dark); line-height: 1.55; }
  .ci-val a { transition: color 0.3s; }
  .ci-val a:hover { color: var(--red); }

  .contact-right {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--red);
    background-image:
      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(0,0,0,0.15), transparent 50%);
    border-radius: 12px; padding: clamp(48px, 5vw, 64px) clamp(28px, 5vw, 48px);
    text-align: center;
  }
  .contact-right .heading { color: var(--white); font-size: clamp(1.6rem, 2.4vw, 2rem); margin-bottom: 16px; }
  .contact-right .heading em { color: var(--white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); text-underline-offset: 4px; font-style: italic; }
  .contact-right p { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 28px; max-width: 320px; }
  .contact-right-meta {
    margin-top: 24px;
    display: flex; align-items: center; gap: 8px;
    font-family: 'Raleway', sans-serif; font-weight: 500;
    font-size: 0.72rem; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.85);
  }
  .contact-right-meta::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: #4ECCA3;
  }
  
  .btn-white {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); color: var(--red);
    font-size: 0.85rem; font-weight: 700; padding: 17px 32px;
    border-radius: 4px; border: none;
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: pointer;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--offwhite);
    border-top: 1px solid var(--gray-100);
    padding: 48px var(--container-px) 28px;
  }
  .f-row {
    display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-100);
  }
  .f-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; color: var(--dark);
  }
  .f-logo span { color: var(--red); }
  .f-legal {
    font-size: 0.7rem; color: var(--gray-600); text-align: center; line-height: 1.8;
  }
  .f-oab {
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.78rem; color: var(--red); text-align: right;
    letter-spacing: 0.04em;
  }
  .f-bottom {
    margin-top: 22px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    flex-wrap: wrap;
    font-size: 0.65rem; color: var(--gray-600);
  }
  .f-bottom a { color: var(--red); transition: color 0.3s; }
  .f-bottom a:hover { color: var(--red-hover); }

  /* ===== WHATSAPP FLOAT ===== */
  .wpp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
    display: flex; align-items: center; gap: 12px;
    background: #25D366;
    padding: 0;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s, padding 0.3s;
    overflow: hidden;
  }
  .wpp-float-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .wpp-float-icon svg { width: 28px; height: 28px; fill: var(--white); }
  .wpp-float-label {
    color: var(--white); font-weight: 600; font-size: 0.78rem;
    letter-spacing: 0.02em;
    max-width: 0; opacity: 0;
    overflow: hidden; white-space: nowrap;
    transition: max-width 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .wpp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37,211,102,0.5);
  }
  .wpp-float:hover .wpp-float-label {
    max-width: 200px; opacity: 1; padding-right: 22px;
  }
  .wpp-float-pulse { display: none; }
  

  /* ===== HAMBURGER ===== */
  .n-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 44px; height: 44px; position: relative; z-index: 110;
    padding: 10px 6px;
  }
  .n-hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--dark); position: absolute; left: 6px; right: 6px; width: calc(100% - 12px);
    transition: all 0.3s;
  }
  .n-hamburger span:nth-child(1) { top: 14px; }
  .n-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .n-hamburger span:nth-child(3) { bottom: 14px; }
  .n-hamburger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
  .n-hamburger.open span:nth-child(2) { opacity: 0; }
  .n-hamburger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 105;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  }
  .mobile-menu.open { display: flex; animation: fadeIn 0.3s ease; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--dark); transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--red); }
  .mobile-menu .n-cta {
    margin-top: 16px; font-size: 0.85rem; padding: 14px 32px;
  }

  /* ===== SCROLL REVEALS ===== */
  .rv { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .rv.in { opacity: 1; transform: translateY(0); }
  .rv-left { opacity: 0; transform: translateX(-12px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .rv-left.in { opacity: 1; transform: translateX(0); }
  .rv-scale { opacity: 0; transition: opacity 0.6s ease; }
  .rv-scale.in { opacity: 1; transform: scale(1); }
  .d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; }
  .d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }
  .d5 { transition-delay: 0.4s; }  .d6 { transition-delay: 0.48s; }
  .d7 { transition-delay: 0.56s; } .d8 { transition-delay: 0.64s; }
  .d9 { transition-delay: 0.72s; }

  /* ===== PROGRESS BAR ===== */
  .progress-bar {
    position: fixed; top: 0; left: 0;
    height: 3px; background: var(--red); z-index: 999;
    transition: width 0.1s linear;
    width: 0;
  }

  /* ===== TOAST ===== */
  .toast {
    position: fixed; bottom: 100px; right: 24px; z-index: 200;
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--red);
    border-radius: 4px;
    padding: 14px 20px;
    color: var(--white);
    font-size: 0.85rem;
    box-shadow: 0 10px 32px rgba(0,0,0,0.18);
    transform: translateX(120%);
    transition: transform 0.4s ease;
    max-width: 320px;
  }
  .toast.show { transform: translateX(0); }

  /* ===== TABLET (≤ 1024px) ===== */
  @media (max-width: 1024px) {
    :root {
      --section-py: clamp(56px, 8vw, 96px);
    }
    .n-links { display: none; }
    .n-hamburger { display: block; }
    nav .n-cta { display: none; }

    /* Hero: empilha — texto primeiro, portrait depois */
    .hero { min-height: auto; padding-top: var(--nav-height); }
    .hero-content {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 32px var(--container-px) 56px;
    }
    .hero-text { max-width: 100%; }
    .hero h1 { max-width: 100%; }
    .hero-portrait {
      max-width: 380px;
      margin: 0 auto;
      justify-self: center;
    }
    .hero-row { gap: 14px; flex-wrap: wrap; }
    .hero-creds { gap: 16px 20px; padding: 16px 0; }
    .hero-cred { font-size: 0.7rem; }

    .areas-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pubs-cta { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 18px; padding: 36px 28px; }
    .pubs-header { grid-template-columns: 1fr; gap: 20px; }
    .pubs-grid { grid-template-columns: 1fr; gap: 18px; }
    .pub.pub-featured { grid-row: auto; }
    .pub.pub-featured .pub-img { height: 200px; }
    .pub.pub-featured .pub-title { font-size: 1.2rem; }
    .pub.pub-featured .pub-body { padding: 24px 28px 28px; }
    .pub.pub-featured .pub-excerpt { font-size: 0.9rem; }
    .crim-header { grid-template-columns: 1fr; gap: 16px; }
    .crim-grid { grid-template-columns: 1fr; gap: 14px; }
    .prev-header { grid-template-columns: 1fr; gap: 16px; }
    .prev-cta { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 36px 28px; }
    .prev-cta p { max-width: none; }
    .prev-cta::before { display: none; }
    .results-header { grid-template-columns: 1fr; gap: 24px; }
    .cases { padding: 4px 4px 14px; }
    .case { flex: 0 0 320px; }
    .cases-controls { flex-direction: column-reverse; align-items: stretch; gap: 18px; }
    .cases-controls .btn-red { justify-content: center; }
    .cases-nav { justify-content: center; }

    /* Sobre: empilha vertical */
    .about { grid-template-columns: 1fr; }
    .about-slider {
      min-height: 360px;
      aspect-ratio: auto;
    }
    .about-slider-overlay {
      background: linear-gradient(180deg, transparent 65%, var(--offwhite));
    }
    .about-slider-badge { bottom: 24px; left: 24px; font-size: 0.72rem; padding: 12px 18px; }
    .about-creds { grid-template-columns: 1fr; gap: 8px; }

    .faq-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-inner { grid-template-columns: 1fr; gap: 36px; }
    .contact-right { padding: 40px 28px; }

    .f-row { grid-template-columns: 1fr; text-align: center; gap: 18px; }
    .f-oab { text-align: center; }
    .f-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }

    /* WhatsApp float: só ícone */
    .wpp-float-label { display: none; }
  }

  /* ===== MOBILE (≤ 640px) ===== */
  @media (max-width: 640px) {
    :root {
      --container-px: 20px;
      --section-py: 56px;
    }
    nav { padding: 14px 20px; }
    nav.scrolled { padding: 10px 20px; }
    .n-logo { font-size: 1.1rem; }

    /* Hero — compactar */
    .hero-content { padding: 24px 20px 48px; gap: 36px; }
    .hero-tag { font-size: 0.7rem; letter-spacing: 0.06em; gap: 10px; margin-bottom: 18px; }
    .hero-tag::before { width: 24px; }
    .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); margin-bottom: 20px; }
    .hero-desc { font-size: 0.98rem; margin-bottom: 28px; }
    .hero-creds {
      flex-direction: column; align-items: flex-start;
      gap: 12px; padding: 14px 0;
    }
    .hero-portrait {
      max-width: 100%;
      aspect-ratio: 5/6;
    }
    .hero-portrait-frame { inset: 16px; }
    .hero-portrait-corner {
      bottom: 14px; right: 14px; transform: none;
      padding: 14px 20px;
      text-align: left;
    }
    .hero-row { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-row a { justify-content: center; width: 100%; }
    .btn-red, .btn-outline-w { padding: 16px 24px; font-size: 0.88rem; }

    /* Trust bar */
    .trust {
      flex-direction: column; align-items: flex-start;
      gap: 12px; padding: 18px 20px;
    }
    .trust-i { font-size: 0.78rem; }

    /* Headings */
    .heading { font-size: clamp(1.8rem, 7vw, 2.2rem); }
    .eyebrow { font-size: 0.68rem; letter-spacing: 0.08em; }

    /* Áreas */
    .areas-grid { max-width: 100%; gap: 16px; }
    .area-card { padding: 32px 24px; }
    .area-title { font-size: 1.3rem; }
    .area-ico { width: 48px; height: 48px; margin-bottom: 22px; }
    .area-ico svg { width: 22px; height: 22px; }

    /* Bancário (resultados) */
    .case { flex: 0 0 280px; }
    .case-img { height: 160px; }
    .case-body { padding: 20px; }
    .case-title { font-size: 1rem; }
    .case-text { font-size: 0.8rem; }
    .results-tip { padding: 16px 18px; font-size: 0.82rem; }

    /* Criminal */
    .crim-card { padding: 22px 20px; gap: 14px; }
    .crim-card-title { font-size: 0.95rem; }
    .crim-card-text { font-size: 0.8rem; }
    .crim-note { padding: 16px 18px; font-size: 0.82rem; }

    /* Previdenciário */
    .prev-grid { grid-template-columns: 1fr; }
    .prev-item { min-height: auto; padding: 26px 22px; }
    .prev-cta h3 { font-size: 1.3rem; }

    /* Publicações */
    .pubs-header { gap: 16px; }
    .pubs-grid { gap: 16px; }
    .pub-body { padding: 22px 22px 24px; }
    .pub.pub-featured .pub-body { padding: 22px 22px 24px; }
    .pub.pub-featured .pub-title { font-size: 1.1rem; }
    .pub-img { height: 180px; }
    .pub.pub-featured .pub-img { height: 180px; }
    .pub-title { font-size: 1rem; }
    .pubs-cta-ico { width: 56px; height: 56px; }
    .pubs-cta-text h3 { font-size: 1.15rem; }
    .pubs-cta-text p { font-size: 0.86rem; }

    /* Sobre */
    .about-slider { min-height: 320px; }
    .about-slider-badge { bottom: 20px; left: 20px; font-size: 0.68rem; padding: 10px 16px; }
    .about-slider-dots { bottom: 16px; }
    .about-text-wrap { padding: 48px 20px 56px; }

    /* FAQ */
    .faq-q { padding: 18px 22px; font-size: 0.92rem; gap: 12px; }
    .faq-a-inner { padding: 0 22px 18px; font-size: 0.86rem; }

    /* Contato */
    .contact-grid { grid-template-columns: 1fr; gap: 22px; }
    .contact-item-ico { width: 32px; height: 32px; }
    .contact-item-ico svg { width: 14px; height: 14px; }
    .contact-right { padding: 36px 24px; border-radius: 8px; }
    .contact-right .heading { font-size: 1.4rem; }
    .contact-right p { font-size: 0.88rem; margin-bottom: 24px; }

    /* Mobile menu */
    .mobile-menu { gap: 22px; }
    .mobile-menu a { font-size: 1.35rem; }

    /* WhatsApp float */
    .wpp-float { bottom: 16px; right: 16px; }
    .wpp-float-icon { width: 52px; height: 52px; }
    .wpp-float-icon svg { width: 24px; height: 24px; }

    /* Toast */
    .toast { bottom: 84px; right: 16px; left: 16px; max-width: none; }

    /* Footer */
    footer { padding: 36px 20px 24px; }
    .f-legal { font-size: 0.7rem; }
    .f-bottom { font-size: 0.7rem; }
  }

  /* ===== MOBILE PEQUENO (≤ 380px) ===== */
  @media (max-width: 380px) {
    .hero h1 { font-size: 1.85rem; }
    .heading { font-size: 1.6rem; }
    .area-card { padding: 28px 20px; }
    .area-title { font-size: 1.2rem; }
    .hero-portrait-corner { padding: 12px 16px; font-size: 0.74rem; }
    .hero-portrait-corner strong { font-size: 0.86rem; }
  }

  /* =========================================================
     ADIÇÕES DO TEMA WORDPRESS (não presentes no HTML original)
     ========================================================= */

  /* Imagens reais cobrindo os slots (hero / casos / publicações) */
  .hero-portrait img.hero-portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .pub-img img.pub-img-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

  /* ===== BANNER DE CONSENTIMENTO (LGPD) ===== */
  .vn-consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
    background: #1F1F1F; color: #F7F5F2; border-radius: 10px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); }
  .vn-consent[hidden] { display: none; }
  .vn-consent-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    justify-content: space-between; padding: 18px 22px; max-width: 1100px; margin: 0 auto; }
  .vn-consent-text { font-size: 0.86rem; line-height: 1.6; margin: 0; flex: 1 1 320px; color: #E7E2DB; }
  .vn-consent-text a { color: #fff; text-decoration: underline; }
  .vn-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
  .vn-consent-btn { font-family: 'Raleway', sans-serif; font-size: 0.8rem; font-weight: 600;
    padding: 11px 22px; border-radius: 5px; cursor: pointer; border: 1px solid transparent;
    transition: background .25s, border-color .25s, transform .25s; }
  .vn-consent-accept { background: #8B1A2B; color: #fff; }
  .vn-consent-accept:hover { background: #A52238; transform: translateY(-1px); }
  .vn-consent-reject { background: transparent; color: #CFC9C0; border-color: rgba(255,255,255,0.22); }
  .vn-consent-reject:hover { border-color: #fff; color: #fff; }
  @media (max-width: 640px) {
    .vn-consent-inner { padding: 16px; }
    .vn-consent-actions { width: 100%; }
    .vn-consent-btn { flex: 1; }
  }

  /* ===== STEALTHAI — onda de brilho bem sutil (disfarçada) ===== */
  .f-stealth span {
    background-image: linear-gradient(100deg,
      var(--red) 0%, var(--red) 42%,
      #C9A84C 50%,
      var(--red) 58%, var(--red) 100%);
    background-size: 320% 100%;
    background-position: 130% 0;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: vnStealthShine 9s ease-in-out infinite;
  }
  @keyframes vnStealthShine {
    0%, 78%   { background-position: 130% 0; }
    93%, 100% { background-position: -40% 0; }
  }
  .f-stealth:hover span {
    -webkit-text-fill-color: var(--red-hover); color: var(--red-hover);
    animation: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .f-stealth span { animation: none; -webkit-text-fill-color: var(--red); color: var(--red); }
  }

  /* ===== AVALIAÇÕES (GOOGLE) ===== */
  .reviews .reviews-embed { max-width: 1100px; margin: 0 auto; }
