*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      /* escuros — usados apenas no hero/navbar */
      --hero-bg:    #0f0e0c;
      --hero-text:  #f5f0e8;
      /* ouro */
      --ouro:       #c9a84c;
      --ouro-claro: #e8d5a3;
      --ouro-dark:  #a8862e;
      /* claros — corpo do site */
      --branco:     #ffffff;
      --creme:      #faf8f4;
      --creme2:     #f2ede4;
      --borda:      #e8e2d6;
      /* texto claro */
      --txt-esc:    #1a1814;
      --txt-med:    #5a5550;
      --txt-clr:    #9a928a;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--branco);
      color: var(--txt-med);
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      line-height: 1.8;
      overflow-x: hidden;
    }
    h1,h2,h3,h4 {
      font-family: 'Playfair Display', serif;
      color: var(--txt-esc);
      line-height: 1.25;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

    /* ── Utilitários ── */
    .tag {
      display: inline-block;
      font-size: 11px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--ouro); margin-bottom: 14px;
    }
    .divisor {
      width: 48px; height: 2px;
      background: var(--ouro);
      margin: 18px 0 32px;
    }
    .divisor.center { margin: 18px auto 32px; }
    .btn {
      display: inline-block;
      padding: 14px 36px;
      font-family: 'Lato', sans-serif;
      font-size: 12px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      transition: all .3s; cursor: pointer; border: none;
    }
    .btn-ouro {
      background: var(--ouro) !important; color: #1a1814 !important; font-weight: 700 !important;
    }
    .btn-ouro:hover { background: var(--ouro-dark); }
    .btn-outline-ouro {
      background: transparent;
      border: 1.5px solid var(--ouro);
      color: var(--ouro);
    }
    .btn-outline-ouro:hover { background: var(--ouro); color: #fff; }
    .btn-outline-branco {
      background: transparent;
      border: 1.5px solid rgba(255,255,255,.5);
      color: #fff;
    }
    .btn-outline-branco:hover { border-color: #fff; background: rgba(255,255,255,.08); }

    /* ══════════════════════════════════
       NAVBAR
    ══════════════════════════════════ */
    .admin-bar #navbar { top: 32px; }
    @media screen and (max-width: 782px) { .admin-bar #navbar { top: 46px; } }
    #navbar {
      position: fixed; top: 0; width: 100%; z-index: 1000;
      padding: 24px 0;
      transition: background .4s, padding .4s, box-shadow .4s;
    }
    /* transparente sobre o hero */
    #navbar.scrolled {
      background: rgba(15,14,12,.96);
      padding: 14px 0;
      box-shadow: 0 2px 24px rgba(0,0,0,.5);
      backdrop-filter: blur(8px);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 14px; letter-spacing: 2px;
      text-transform: uppercase; color: #fff;
    }
    .nav-logo span { color: var(--ouro); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,.75); transition: color .3s;
    }
    .nav-links a:hover { color: var(--ouro); }
    .nav-cta {
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 10px 24px;
      border: 1.5px solid var(--ouro);
      color: var(--ouro); transition: all .3s;
    }
    .nav-cta:hover { background: var(--ouro); color: #fff; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span { display: block; width: 24px; height: 1.5px; background: #fff; }
    .mobile-menu {
      display: none; position: fixed;
      inset: 0; background: rgba(15,14,12,.98);
      z-index: 999; flex-direction: column;
      align-items: center; justify-content: center; gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 13px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: rgba(255,255,255,.7); transition: color .3s;
    }
    .mobile-menu a:hover { color: var(--ouro); }
    .mobile-close {
      position: absolute; top: 24px; right: 24px;
      background: none; border: none;
      color: #fff; font-size: 28px; cursor: pointer;
    }

    /* ══════════════════════════════════
       HERO — escuro (como Levy Rabone)
    ══════════════════════════════════ */
    #hero {
      min-height: 100vh;
      background:
        linear-gradient(135deg, rgba(15,14,12,.92) 0%, rgba(20,18,10,.85) 50%, rgba(15,14,12,.95) 100%),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80') center/cover no-repeat;
      display: flex; align-items: center;
      padding: 140px 0 100px;
      position: relative;
    }
    /* faixa dourada decorativa lateral */
    #hero::before {
      content: '';
      position: absolute; left: 0; top: 15%; bottom: 15%;
      width: 3px; background: var(--ouro); opacity: .5;
    }
    .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .hero-text {}
    .hero-tag-line {
      display: flex; align-items: center; gap: 14px;
      font-size: 11px; font-weight: 700;
      letter-spacing: 4px; text-transform: uppercase;
      color: var(--ouro); margin-bottom: 28px;
    }
    .hero-tag-line::before {
      content: ''; width: 36px; height: 1px; background: var(--ouro);
    }
    #hero h1 {
      font-size: clamp(36px, 5vw, 62px);
      color: #fff; margin-bottom: 24px;
    }
    #hero h1 em { font-style: italic; color: var(--ouro-claro); }
    .hero-sub {
      font-size: 15px; color: rgba(255,255,255,.6);
      max-width: 480px; margin-bottom: 44px; line-height: 1.9;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-badges {
      margin-top: 60px;
      display: flex; gap: 0;
      border-top: 1px solid rgba(255,255,255,.12);
      padding-top: 40px;
    }
    .hero-badge {
      padding-right: 40px; margin-right: 40px;
      border-right: 1px solid rgba(255,255,255,.12);
    }
    .hero-badge:last-child { border-right: none; }
    .hero-badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 34px; color: var(--ouro); line-height: 1;
    }
    .hero-badge-label {
      font-size: 11px; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,.45);
      margin-top: 6px;
    }

    /* foto lado direito do hero */
    .hero-foto-wrap {
      position: relative; display: flex;
      justify-content: center; align-items: flex-end;
    }
    .hero-foto-moldura {
      position: relative; width: 100%; max-width: 380px;
    }
    .hero-foto-moldura::before {
      content: '';
      position: absolute; top: -20px; right: -20px;
      width: 100%; height: 100%;
      border: 1.5px solid var(--ouro); opacity: .4; z-index: 0;
    }
    .hero-foto-img {
      position: relative; z-index: 1;
      width: 100%; aspect-ratio: 3/4;
      object-fit: cover; display: block;
      filter: grayscale(20%);
    }
    .hero-foto-placeholder {
      position: relative; z-index: 1;
      width: 100%; aspect-ratio: 3/4;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.12);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 14px;
      color: rgba(255,255,255,.3);
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    }
    .hero-foto-placeholder svg { width: 48px; opacity: .25; fill: var(--ouro-claro); }
    .hero-foto-nome {
      position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2;
      background: var(--ouro);
      padding: 14px 24px;
    }
    .hero-foto-nome-titulo {
      font-family: 'Playfair Display', serif;
      font-size: 15px; color: #fff; font-weight: 600;
    }
    .hero-foto-nome-oab {
      font-size: 10px; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,.7);
      margin-top: 2px; font-weight: 700;
    }

    /* ══════════════════════════════════
       FAIXA ÁREAS — escuro/ouro entre hero e sobre
    ══════════════════════════════════ */
    .faixa-areas {
      background: var(--ouro);
      padding: 0;
    }
    .faixa-areas-inner {
      display: flex; overflow-x: auto;
    }
    .faixa-area-item {
      flex: 1; min-width: 160px;
      padding: 20px 24px;
      display: flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,.85);
      border-right: 1px solid rgba(255,255,255,.2);
      transition: background .3s;
      white-space: nowrap;
    }
    .faixa-area-item:last-child { border-right: none; }
    .faixa-area-item:hover { background: var(--ouro-dark); color: #fff; }
    .faixa-area-item::before {
      content: ''; width: 5px; height: 5px;
      background: rgba(255,255,255,.5); border-radius: 50%; flex-shrink: 0;
    }

    /* ══════════════════════════════════
       SOBRE — fundo claro
    ══════════════════════════════════ */
    #sobre {
      padding: 110px 0;
      background: var(--branco);
    }
    .sobre-grid {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 80px; align-items: center;
    }
    .sobre-foto-wrap { position: relative; }
    .sobre-foto-bg {
      position: absolute; bottom: -20px; left: -20px;
      width: 85%; height: 85%;
      background: var(--creme2); z-index: 0;
    }
    .sobre-foto-img {
      position: relative; z-index: 1;
      width: 100%; aspect-ratio: 3/4; object-fit: cover;
    }
    .sobre-foto-placeholder {
      position: relative; z-index: 1;
      width: 100%; aspect-ratio: 3/4;
      background: var(--creme);
      border: 1px solid var(--borda);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 12px;
      color: var(--txt-clr);
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    }
    .sobre-foto-placeholder svg { width: 48px; opacity: .3; fill: var(--ouro); }
    .sobre-foto-tag {
      position: absolute; bottom: 24px; right: -24px; z-index: 2;
      background: var(--ouro);
      padding: 18px 22px; min-width: 140px;
    }
    .sobre-foto-tag-num {
      font-family: 'Playfair Display', serif;
      font-size: 30px; color: #fff; line-height: 1;
    }
    .sobre-foto-tag-label {
      font-size: 10px; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,.75);
      margin-top: 4px;
    }
    #sobre h2 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 6px; }
    .sobre-oab {
      font-size: 11px; letter-spacing: 3px;
      text-transform: uppercase; color: var(--ouro);
      margin-bottom: 28px; display: block;
    }
    .sobre-p { color: var(--txt-med); line-height: 1.95; margin-bottom: 18px; font-size: 15px; }
    .sobre-selos {
      margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap;
      padding-top: 32px; border-top: 1px solid var(--borda);
    }
    .sobre-selo {
      display: flex; align-items: center; gap: 10px;
      font-size: 12px; color: var(--txt-med); font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
    }
    .sobre-selo::before {
      content: '✓';
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--ouro); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; flex-shrink: 0;
    }

    /* ══════════════════════════════════
       ÁREAS — fundo creme
    ══════════════════════════════════ */
    #areas {
      padding: 110px 0;
      background: var(--creme);
    }
    .sec-header { margin-bottom: 60px; }
    .sec-header.center { text-align: center; }
    .sec-header.center .divisor { margin: 18px auto 32px; }
    .sec-header h2 { font-size: clamp(26px, 3vw, 40px); }
    .sec-desc { font-size: 15px; color: var(--txt-med); max-width: 560px; }
    .sec-header.center .sec-desc { margin: 0 auto; }

    .areas-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .area-card {
      background: var(--branco);
      padding: 44px 36px;
      position: relative; overflow: hidden;
      transition: background .3s;
    }
    .area-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--ouro);
      transform: scaleX(0); transition: transform .4s;
      transform-origin: left;
    }
    .area-card:hover::after { transform: scaleX(1); }
    .area-card:hover { background: var(--creme); }
    .area-numero {
      font-family: 'Playfair Display', serif;
      font-size: 48px; color: var(--borda);
      line-height: 1; margin-bottom: 20px;
      transition: color .3s;
    }
    .area-card:hover .area-numero { color: var(--ouro-claro); }
    .area-card h3 {
      font-size: 18px; margin-bottom: 12px;
      color: var(--txt-esc);
    }
    .area-card p { font-size: 14px; color: var(--txt-med); line-height: 1.85; }
    .area-destaque {
      display: inline-block; margin-top: 18px;
      font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--ouro);
    }
    .area-cta {
      background: var(--ouro);
      display: flex; flex-direction: column;
      justify-content: center; padding: 44px 36px;
    }
    .area-cta p {
      font-size: 11px; letter-spacing: 3px;
      text-transform: uppercase; color: rgba(255,255,255,.7);
      margin-bottom: 12px;
    }
    .area-cta h3 { font-size: 22px; color: #fff; margin-bottom: 10px; }
    .area-cta small { font-size: 13px; color: rgba(255,255,255,.65); display: block; margin-bottom: 28px; }
    .btn-branco {
      display: inline-block;
      padding: 12px 28px;
      border: 1.5px solid rgba(255,255,255,.6);
      color: #fff; font-size: 11px;
      font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      transition: all .3s; width: fit-content;
    }
    .btn-branco:hover { background: rgba(255,255,255,.15); }

    /* ══════════════════════════════════
       DEPOIMENTOS — fundo branco
    ══════════════════════════════════ */
    #depoimentos {
      padding: 110px 0;
      background: var(--branco);
    }
    .dep-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 28px; margin-top: 60px;
    }
    .dep-card {
      padding: 40px 32px;
      border: 1px solid var(--borda);
      position: relative;
    }
    .dep-card::before {
      content: '"';
      position: absolute; top: 20px; right: 28px;
      font-family: 'Playfair Display', serif;
      font-size: 80px; color: var(--ouro);
      opacity: .15; line-height: 1;
    }
    .estrelas { color: var(--ouro); font-size: 13px; margin-bottom: 18px; letter-spacing: 2px; }
    .dep-texto {
      font-size: 14px; color: var(--txt-med);
      line-height: 1.95; font-style: italic; margin-bottom: 28px;
    }
    .dep-linha { width: 32px; height: 1px; background: var(--ouro); margin-bottom: 16px; }
    .dep-nome {
      font-family: 'Playfair Display', serif;
      font-size: 15px; color: var(--txt-esc);
    }
    .dep-cargo { font-size: 11px; color: var(--ouro); letter-spacing: 1px; margin-top: 3px; }

    /* ══════════════════════════════════
       BLOG — fundo creme
    ══════════════════════════════════ */
    #blog {
      padding: 110px 0;
      background: var(--creme);
    }
    .blog-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 28px; margin-top: 60px;
    }
    .blog-card { background: var(--branco); overflow: hidden; transition: box-shadow .3s; }
    .blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
    .blog-thumb {
      height: 196px; overflow: hidden; position: relative;
      background: var(--creme2);
      display: flex; align-items: center; justify-content: center;
    }
    .blog-thumb-icone {
      font-family: 'Playfair Display', serif;
      font-size: 64px; color: var(--ouro); opacity: .15;
    }
    .blog-cat {
      position: absolute; top: 18px; left: 18px;
      background: var(--ouro); color: #fff;
      font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 12px;
    }
    .blog-body { padding: 28px; }
    .blog-data { font-size: 11px; color: var(--txt-clr); letter-spacing: 1px; margin-bottom: 10px; }
    .blog-card h3 {
      font-size: 17px; color: var(--txt-esc);
      margin-bottom: 10px; line-height: 1.4;
    }
    .blog-card p { font-size: 13px; color: var(--txt-med); line-height: 1.85; }
    .blog-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--ouro); margin-top: 18px;
      transition: gap .25s;
    }
    .blog-link:hover { gap: 14px; }

    /* ══════════════════════════════════
       CONTATO — branco + faixa escura
    ══════════════════════════════════ */
    #contato {
      padding: 0;
      background: var(--branco);
    }
    .contato-split {
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .contato-esq {
      background: var(--hero-bg);
      padding: 96px 64px;
    }
    .contato-esq .tag { color: var(--ouro); }
    .contato-esq h2 { color: #fff; font-size: clamp(24px, 2.5vw, 36px); margin-bottom: 16px; }
    .contato-esq .divisor { background: var(--ouro); }
    .contato-esq p { color: rgba(255,255,255,.55); font-size: 14px; margin-bottom: 44px; }
    .contato-item {
      display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
    }
    .contato-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      border: 1px solid rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
    }
    .contato-icon svg { width: 17px; fill: var(--ouro); }
    .contato-label {
      font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--ouro); margin-bottom: 4px;
    }
    .contato-valor { font-size: 13px; color: rgba(255,255,255,.6); }
    .whatsapp-btn {
      margin-top: 36px;
      display: inline-flex; align-items: center; gap: 12px;
      background: #25d366; color: #fff;
      padding: 15px 28px;
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      transition: background .3s;
    }
    .whatsapp-btn:hover { background: #1ebe5a; color: #fff; }
    .whatsapp-btn svg { width: 20px; fill: #fff; }

    .contato-dir {
      background: var(--creme);
      padding: 96px 64px;
    }
    .contato-dir .tag { color: var(--ouro); }
    .contato-dir h2 { font-size: clamp(22px, 2vw, 32px); margin-bottom: 36px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block; margin-bottom: 6px;
      font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; color: var(--ouro);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; background: var(--branco);
      border: 1px solid var(--borda); border-radius: 0;
      color: var(--txt-esc); font-family: 'Lato', sans-serif;
      font-size: 14px; padding: 13px 16px;
      transition: border-color .3s; outline: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--txt-clr); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--ouro); }
    .form-group select { color: var(--txt-med); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-aviso { font-size: 11px; color: var(--txt-clr); margin-top: 12px; }

    /* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
    footer {
      background: var(--hero-bg);
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 72px 0 32px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 56px;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 15px; color: #fff; letter-spacing: 1.5px;
      margin-bottom: 14px;
    }
    .footer-logo span { color: var(--ouro); }
    .footer-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; margin-bottom: 24px; }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center;
      transition: all .3s;
    }
    .footer-social a:hover { border-color: var(--ouro); background: rgba(201,168,76,.08); }
    .footer-social svg { width: 14px; fill: rgba(255,255,255,.4); transition: fill .3s; }
    .footer-social a:hover svg { fill: var(--ouro); }
    .footer-col h4 {
      font-size: 10px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: rgba(255,255,255,.5); margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .3s; }
    .footer-col ul a:hover { color: var(--ouro); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 10px;
    }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
    .footer-oab { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ouro); opacity: .7; }

    /* WhatsApp flutuante */
    .whats-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 900;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25d366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,.25);
      transition: transform .3s;
    }
    .whats-float:hover { transform: scale(1.1); }
    .whats-float svg { width: 28px; fill: #fff; }

    /* ══════════════════════════════════
       RESPONSIVO
    ══════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 56px; }
      .hero-foto-wrap { display: none; }
      .areas-grid { grid-template-columns: repeat(2, 1fr); }
      .dep-grid { grid-template-columns: repeat(2, 1fr); }
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .sobre-grid { grid-template-columns: 1fr; gap: 60px; }
      .sobre-foto-tag { right: 0; bottom: 0; }
      .areas-grid { grid-template-columns: 1fr; }
      .dep-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .contato-split { grid-template-columns: 1fr; }
      .contato-esq, .contato-dir { padding: 60px 28px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }