  :root {
    --ink: #0A0A0B;
    --ink-2: #121214;
    /* Golds from the official brand manual (Manual de Aplicações da Marca):
       light #E8CE92, deep #AD8951; --gold is their midpoint for UI accents. */
    --gold: #CBAB71;
    --gold-light: #E8CE92;
    --gold-deep: #AD8951;
    --gold-grad: linear-gradient(180deg, #E8CE92 0%, #CBAB71 55%, #AD8951 100%);
    --paper: #F7F4EE;
    --paper-2: #FFFDF8;
    --line: #E4DECF;
    --text: #232B38;
    --muted: #6B7280;
    --serif: "Cinzel", Georgia, "Times New Roman", serif;
    --accent: "Playfair Display", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  [hidden] { display: none !important; }
  html { scroll-behavior: smooth; scroll-padding-top: 96px; }
  body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img, svg { display: block; }
  a { color: inherit; text-decoration: none; }
  ul, ol { list-style: none; }
  .container { width: min(1140px, 92vw); margin-inline: auto; }

  /* ---------- Typography ---------- */
  .eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }
  .eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
  .eyebrow.centered { justify-content: center; }
  .eyebrow.centered::after { content: ""; width: 36px; height: 1px; background: var(--gold); }

  h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: 0.01em; }
  h1 em, h2 em {
    font-family: var(--accent);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0;
  }
  .section-title {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    color: var(--ink);
    margin: 1rem 0 1.25rem;
  }
  .section-lead { max-width: 600px; color: var(--muted); font-size: 1.02rem; font-weight: 300; }
  .section-head { margin-bottom: 3rem; }
  .section-head.center { text-align: center; }
  .section-head.center .section-lead { margin-inline: auto; }
  section { padding: 6.5rem 0; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.9rem;
    font: 600 0.8rem/1 var(--sans);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn svg { width: 16px; height: 16px; }
  .btn-gold { background: var(--gold); color: var(--ink); }
  .btn-gold:hover { background: var(--gold-light); }
  .btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; background: transparent; }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
  .btn-outline { border-color: rgba(10,10,11,0.35); color: var(--ink); background: transparent; }
  .btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--gold-light); }
  .btn.disabled { opacity: 0.45; pointer-events: none; }

  /* ---------- Header ---------- */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10,10,11,0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .site-header.scrolled { border-bottom-color: rgba(201,162,75,0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
  .nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; }

  .brand { display: flex; align-items: center; gap: 0.85rem; flex: none; }
  .brand > img { height: 46px; width: auto; flex: none; }
  .brand-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: 0.18em;
    background-image: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    line-height: 1;
  }
  .brand-name small {
    display: block;
    white-space: nowrap;
    margin-top: 5px;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 0.56rem;
    letter-spacing: 0.42em;
    color: rgba(255,255,255,0.6);
    -webkit-text-fill-color: rgba(255,255,255,0.6);
  }

  .nav-links { display: flex; align-items: center; gap: 1.35rem; }
  .nav-links a {
    font-size: 0.74rem; font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    padding: 0.4rem 0; position: relative;
    transition: color 0.2s ease;
  }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav-links a:hover { color: #fff; }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links .nav-cta {
    margin-left: 0.25rem;
    padding: 0.72rem 1.2rem;
    border: 1px solid rgba(201,162,75,0.72);
    background: transparent;
    color: var(--gold-light);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
  .nav-links .nav-cta::after { display: none; }
  .nav-links .nav-cta:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
  }

  .nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 0.5rem; }
  .nav-toggle svg { width: 26px; height: 26px; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding: 7.5rem 0 6.75rem;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0.16) 34%, rgba(10,10,11,0.18) 70%, rgba(10,10,11,0.88) 100%),
      linear-gradient(90deg, rgba(10,10,11,0.96) 0%, rgba(10,10,11,0.78) 44%, rgba(11,11,12,0.12) 100%),
      url("fachada-hero.webp") center 42% / cover no-repeat,
      #0B0B0C;
  }
  .hero .eyebrow { color: var(--gold-light); }
  .hero h1 {
    max-width: 800px;
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 1.35rem 0 0.9rem;
  }
  .hero h1 em { color: var(--gold-light); }
  .hero p.hero-subtitle {
    max-width: 700px;
    margin-bottom: 1rem;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
  }
  .hero p.lead {
    max-width: 585px;
    margin-bottom: 2.2rem;
    color: rgba(255,255,255,0.7);
    font-size: 1.04rem;
    font-weight: 300;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

  /* ---------- Band ---------- */
  .band {
    background: var(--ink);
    padding: 1.8rem 0;
    border-top: 1px solid rgba(201,162,75,0.25);
  }
  .band .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 3rem;
    text-align: center;
  }
  .band span {
    color: rgba(255,255,255,0.72);
    font-family: var(--serif);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-transform: uppercase;
  }

  /* ---------- About ---------- */
  #escritorio { padding-block: 5.5rem; }
  .about-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 3rem 5rem; align-items: start; }
  .about-intro { max-width: 520px; }
  .about-intro .section-title { margin-bottom: 0; }
  .about-text p { color: var(--muted); font-weight: 300; margin-bottom: 1.2rem; }
  .about-oab {
    margin: 1.6rem 0;
    padding: 0.9rem 1.2rem;
    border-left: 2px solid var(--gold);
    background: var(--paper-2);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: var(--ink);
  }
  .about-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  .about-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid var(--line);
    background: var(--paper-2);
    font-size: 0.95rem;
  }
  .about-list svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--gold-deep); }
  .about-list b { display: block; margin-bottom: 0.4rem; font-weight: 600; color: var(--ink); }
  .about-list span.desc { display: block; color: var(--muted); font-weight: 300; font-size: 0.88rem; line-height: 1.65; }

  /* ---------- Office photos ---------- */
  .media-slot {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201,162,75,0.3);
    background:
      radial-gradient(520px 360px at 50% 24%, rgba(201,162,75,0.1), transparent 60%),
      linear-gradient(160deg, #151515 0%, #09090A 100%);
  }
  .media-slot::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 1;
    border: 1px solid rgba(201,162,75,0.18);
    pointer-events: none;
  }
  .media-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
  }
  .espaco-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 2.6rem;
  }
  .espaco-photo { min-height: 0; }
  .espaco-photo-main { grid-row: 1 / 3; aspect-ratio: 4 / 3; }
  .espaco-photo-detail { aspect-ratio: auto; }
  .espaco-photo img { object-position: center; transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
  .espaco-photo:hover img { transform: scale(1.018); }
  .espaco-photo-detail:nth-child(2) img { object-position: center 42%; }
  .espaco-photo figcaption {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 2.4rem 1.2rem 1rem;
    background: linear-gradient(transparent, rgba(10,10,11,0.78));
    color: rgba(255,255,255,0.82);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ---------- Practice areas ---------- */
  .areas { background: var(--paper-2); }
  .areas-directory {
    max-width: 920px;
    margin: -0.7rem auto 3rem;
    padding: 1.5rem 2rem;
    border-block: 1px solid var(--line);
    text-align: center;
  }
  .areas-directory p {
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(0.68rem, 1vw, 0.78rem);
    letter-spacing: 0.09em;
    line-height: 1.9;
  }
  .areas-directory span { margin-inline: 0.45rem; color: var(--gold-deep); }
  .areas-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }
  .area-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 2.2rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .area-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(10,10,11,0.08);
  }
  .area-num {
    font-family: var(--serif);
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gold);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    letter-spacing: 0.08em;
  }
  .area-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--gold);
    display: grid; place-items: center;
    color: var(--gold);
    margin-bottom: 1.3rem;
  }
  .area-icon svg { width: 21px; height: 21px; }
  .area-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 0.55rem; letter-spacing: 0.03em; }
  .area-card p { color: var(--muted); font-size: 0.88rem; font-weight: 300; }
  .area-card.cta {
    justify-content: flex-start;
    background: linear-gradient(145deg, #0A0A0B 0%, #15130F 100%);
    border-color: rgba(201,162,75,0.4);
  }
  .area-card.cta::before {
    content: "";
    width: 42px;
    height: 1px;
    margin-bottom: 1.35rem;
    background: var(--gold);
  }
  .area-card.cta .cta-kicker {
    margin-bottom: 0.7rem;
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }
  .area-card.cta h3 { color: #fff; font-size: 1.05rem; line-height: 1.45; }
  .area-card.cta p { margin-bottom: 1.8rem; color: rgba(255,255,255,0.62); }
  .area-card.cta .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: auto;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  .area-card.cta .cta-link::after { content: "→"; font-size: 1rem; transition: transform 0.2s ease; }
  .area-card.cta .cta-link:hover::after { transform: translateX(4px); }

  /* ---------- Process ---------- */
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .step { border-top: 1px solid rgba(201,162,75,0.5); padding-top: 1.8rem; }
  .step-num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 1rem; letter-spacing: 0.05em; }
  .step h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 0.7rem; }
  .step p { color: var(--muted); font-size: 0.92rem; font-weight: 300; }

  /* ---------- Lawsuit phases ---------- */
  .fases { background: var(--ink); }
  .fases .section-title { color: #fff; }
  .fases .section-lead { color: rgba(255,255,255,0.55); }
  .fases-list { max-width: 720px; margin: 0 auto; position: relative; }
  .fases-list::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(201,162,75,0.3);
  }
  .fases-list li { position: relative; padding: 0 0 2.4rem 76px; }
  .fases-list li:last-child { padding-bottom: 0; }
  .fase-num {
    position: absolute;
    left: 0;
    top: -4px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201,162,75,0.5);
    background: var(--ink);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: var(--gold-light);
  }
  .fases-list h3 { color: #fff; font-size: 1.08rem; margin-bottom: 0.35rem; }
  .fases-list p { color: rgba(255,255,255,0.6); font-size: 0.92rem; font-weight: 300; max-width: 560px; }
  .fases-note {
    max-width: 720px;
    margin: 3rem auto 0;
    text-align: center;
  }
  .fases-note h3 {
    margin-bottom: 0.8rem;
    color: #fff;
    font-size: 1.08rem;
  }
  .fases-note p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 300;
  }
  .fases-note p + p { margin-top: 0.8rem; }

  /* ---------- First consultation ---------- */
  .consulta { background: var(--paper-2); }
  .consulta-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: start; }
  .consulta-intro > p { color: var(--muted); font-weight: 300; margin-bottom: 1.2rem; }
  .consulta-note {
    margin-top: 1.6rem;
    padding: 0.9rem 1.2rem;
    border-left: 2px solid var(--gold);
    background: var(--paper);
    font-size: 0.88rem;
    color: var(--ink);
  }
  .consulta-panel {
    background: #fff;
    border: 1px solid var(--line);
    padding: 2.4rem 2.2rem;
    box-shadow: 0 24px 60px rgba(10,10,11,0.07);
  }
  .consulta-panel h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 0.4rem; }
  .consulta-panel > p { color: var(--muted); font-size: 0.9rem; font-weight: 300; margin-bottom: 1.4rem; }
  .chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
  .chip {
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--line);
    background: var(--paper-2);
    font: 600 0.68rem/1 var(--sans);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .chip:hover { border-color: var(--gold); }
  .chip.active { background: var(--ink); border-color: var(--ink); color: var(--gold-light); }
  .doc-list { margin-bottom: 1.8rem; }
  .doc-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
    color: var(--text);
  }
  .doc-list li:last-child { border-bottom: 0; }
  .doc-list li::before {
    content: "";
    flex: none;
    width: 7px;
    height: 7px;
    margin-top: 0.55em;
    background: var(--gold);
  }

  /* ---------- Meeting room for other lawyers ---------- */
  .estrutura { background: var(--paper); padding: 5.5rem 0; }
  .estrutura-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4rem;
    align-items: center;
  }
  .estrutura .section-title { margin-bottom: 0.8rem; }
  .estrutura-inner > div:first-child > p { max-width: 65ch; color: var(--muted); font-weight: 300; }
  .estrutura-cta { min-width: 260px; text-align: center; }
  .estrutura-note { margin-top: 1rem; color: var(--muted); font-size: 0.82rem; font-weight: 300; }

  /* ---------- Contact ---------- */
  .contact { background: var(--paper-2); }
  .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
  .contact-info h2 { margin-bottom: 1.4rem; }
  .contact-info > p { color: var(--muted); font-weight: 300; margin-bottom: 2rem; }
  .info-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.1rem 0;
    border-top: 1px solid var(--line);
  }
  .info-item:last-of-type { border-bottom: 1px solid var(--line); }
  .info-item .ico {
    width: 40px; height: 40px; flex: none;
    border: 1px solid var(--gold);
    display: grid; place-items: center;
    color: var(--gold);
  }
  .info-item svg { width: 18px; height: 18px; }
  .info-item b { display: block; font-size: 0.86rem; color: var(--ink); }
  .info-item span,
  .info-item .email-link { font-size: 0.9rem; color: var(--muted); font-weight: 300; }
  .info-item .email-link:hover { color: var(--gold-deep); }
  .business-link { display: block; }
  .business-link small {
    display: inline-block;
    margin-top: 0.3rem;
    color: var(--gold-deep);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .business-link small span { color: inherit; font-size: inherit; font-weight: inherit; }
  .business-link:hover small { color: var(--ink); transform: translateX(2px); }

  .map-wrap {
    position: relative;
    margin-top: 1.8rem;
    border: 1px solid var(--line);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--ink);
  }
  .map-wrap iframe { width: 100%; height: 100%; border: 0; pointer-events: none; }
  .map-wrap > a {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    z-index: 2;
    padding: 0.7rem 0.9rem;
    background: var(--ink);
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(10,10,11,0.22);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .map-wrap > a:hover { background: var(--gold); color: var(--ink); }

  .contact-form {
    background: #fff;
    border: 1px solid var(--line);
    padding: 2.6rem 2.4rem;
    box-shadow: 0 24px 60px rgba(10,10,11,0.07);
  }
  .contact-form h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 0.4rem; }
  .contact-form > p { color: var(--muted); font-size: 0.9rem; font-weight: 300; margin-bottom: 1.8rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  .field { margin-bottom: 1.1rem; }
  .field label {
    display: block;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.45rem;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--line);
    background: var(--paper-2);
    font: 400 0.92rem/1.5 var(--sans);
    color: var(--text);
    transition: border-color 0.2s ease;
  }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
  .field textarea { resize: vertical; min-height: 110px; }
  .field .error { display: none; color: #B4462F; font-size: 0.76rem; margin-top: 0.35rem; }
  .field.invalid input, .field.invalid select { border-color: #B4462F; }
  .field.invalid .error { display: block; }
  .form-note { margin-top: 0.9rem; font-size: 0.76rem; color: var(--muted); font-weight: 300; text-align: center; }

  /* ---------- Footer ---------- */
  .site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 4.5rem 0 0; font-size: 0.88rem; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; }
  .site-footer h4 { font-family: var(--serif); font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
  .site-footer li { padding: 0.28rem 0; }
  .site-footer a { transition: color 0.2s ease; }
  .site-footer a:hover { color: var(--gold-light); }
  .footer-brand .brand { margin-bottom: 1.2rem; }
  .footer-brand p { font-weight: 300; font-size: 0.88rem; max-width: 300px; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.4rem 0;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
    font-size: 0.74rem; color: rgba(255,255,255,0.4);
  }
  .footer-legal-link {
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.28);
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .footer-legal-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

  /* ---------- Privacy and consent ---------- */
  .privacy-dialog {
    width: min(680px, 92vw);
    max-height: min(780px, 88vh);
    margin: auto;
    border: 1px solid var(--line);
    background: var(--paper-2);
    color: var(--text);
    padding: 0;
    box-shadow: 0 30px 90px rgba(10,10,11,0.32);
  }
  .privacy-dialog::backdrop { background: rgba(10,10,11,0.72); backdrop-filter: blur(3px); }
  .privacy-dialog-head {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper-2);
  }
  .privacy-dialog-head h2 { margin-top: 0.55rem; color: var(--ink); font-size: 1.5rem; }
  .privacy-close {
    flex: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font: 300 1.7rem/1 var(--sans);
    cursor: pointer;
  }
  .privacy-close:hover { border-color: var(--gold); }
  .privacy-copy { padding: 1.8rem 2.2rem 2.2rem; overflow-y: auto; }
  .privacy-copy p { color: var(--muted); font-size: 0.9rem; font-weight: 300; }
  .privacy-copy h3 { margin: 1.35rem 0 0.35rem; color: var(--ink); font: 600 0.78rem/1.4 var(--sans); letter-spacing: 0.1em; text-transform: uppercase; }
  .privacy-copy a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
  .privacy-settings {
    margin-top: 1.4rem;
    border: 0;
    border-bottom: 1px solid var(--gold-deep);
    background: transparent;
    color: var(--ink);
    font: 600 0.7rem/1.5 var(--sans);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .privacy-updated { margin-top: 1.5rem; font-size: 0.75rem !important; }

  .consent-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 80;
    width: min(1040px, calc(100vw - 36px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid var(--gold);
    background: var(--paper-2);
    box-shadow: 0 20px 70px rgba(10,10,11,0.28);
  }
  .consent-banner strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 0.94rem; letter-spacing: 0.04em; }
  .consent-banner p { max-width: 70ch; margin-top: 0.3rem; color: var(--muted); font-size: 0.8rem; font-weight: 300; }
  .consent-policy {
    margin-top: 0.45rem;
    border: 0;
    border-bottom: 1px solid var(--gold-deep);
    background: transparent;
    color: var(--gold-deep);
    font: 600 0.67rem/1.5 var(--sans);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .consent-actions { display: flex; gap: 0.7rem; }
  .consent-actions .btn { padding: 0.8rem 1.2rem; font-size: 0.68rem; }

  /* ---------- WhatsApp float ---------- */
  .wa-float {
    position: fixed;
    right: 22px; bottom: 22px;
    z-index: 60;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: grid; place-items: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 36px rgba(0,0,0,0.38); }
  .wa-float svg { width: 28px; height: 28px; color: #fff; }

  /* ---------- Reveal ---------- */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ---------- Responsive ---------- */
  @media (max-width: 980px) {
    section { padding: 4.5rem 0; }
    .hero { padding: 5.5rem 0 5rem; }
    .about-grid, .contact-grid, .consulta-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-list { grid-column: auto; grid-template-columns: 1fr; gap: 0.85rem; }
    .areas-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .band .container { grid-template-columns: 1fr; gap: 0.9rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 1240px) {
    .nav-toggle { display: block; }
    .nav-links {
      position: absolute; top: 78px; left: 0; right: 0;
      flex-direction: column; align-items: flex-start; gap: 0;
      background: var(--ink);
      border-bottom: 1px solid rgba(201,162,75,0.3);
      padding: 0.5rem 4vw 1.5rem;
      transform: translateY(-12px); opacity: 0; visibility: hidden;
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    }
    .nav-links.open { opacity: 1; visibility: visible; transform: none; }
    .nav-links a { padding: 0.8rem 0; width: 100%; }
    .nav-links .nav-cta { width: 100%; margin: 1rem 0 0; }
  }

  @media (max-width: 720px) {
    /* On narrow screens the text spans the full width, so the lighter
       right-side gradient would sit behind it — use a stronger uniform veil. */
    .hero {
      background:
        linear-gradient(180deg, rgba(10,10,11,0.88) 0%, rgba(10,10,11,0.8) 100%),
        url("fachada-hero.webp") center 40% / cover no-repeat,
        #0B0B0C;
    }
    .areas-grid { grid-template-columns: 1fr; }
    .areas-directory { margin-top: -0.5rem; padding-inline: 0; }
    .areas-directory p { line-height: 1.75; }
    .espaco-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
    .espaco-photo-main { grid-row: auto; }
    .espaco-photo,
    .espaco-photo-detail { aspect-ratio: 4 / 3; }
    .estrutura-inner { grid-template-columns: 1fr; gap: 2rem; }
    .estrutura-cta { min-width: 0; text-align: left; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .band .container { grid-template-columns: 1fr; }
    .privacy-dialog-head { padding: 1.5rem 1.35rem 1.1rem; }
    .privacy-copy { padding: 1.4rem 1.35rem 1.8rem; }
    .consent-banner {
      bottom: 10px;
      width: calc(100vw - 20px);
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 1.15rem;
    }
    .consent-actions { width: 100%; }
    .consent-actions .btn { flex: 1; }
  }
