*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

@media (max-width: 860px) {
  html { scrollbar-width: none; }
  html::-webkit-scrollbar { display: none; }
}

@media (min-width: 769px) {
  html { font-size: 20px; }
}

:root {
  --ink:     #111820;
  --ink-mid: #1c2a38;
  --gold:    #b8924a;
  --gold-lt: #d4b07a;
  --sand:    #f2ede5;
  --sand-dk: #e8e1d6;
  --white:   #faf9f7;
  --muted:   #7a7a8a;
  --border:  rgba(184,146,74,.18);
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ════ NAV ════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(17,24,32,.97);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 400;
  color: var(--sand); letter-spacing: .06em;
}
.logo b { color: var(--gold); font-weight: 700; }
.logo-img {
  height: auto;
  width: 200px;
  max-width: calc(100vw - 120px);
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-menu { display: flex; gap: 36px; list-style: none; }
.nav-menu a {
  font-size: .85rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(242,237,229,.5); text-decoration: none; transition: color .25s;
}
.nav-menu a:hover { color: var(--gold); }
.nav-right { display: flex; gap: 10px; align-items: center; }
.nav-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  padding: 9px 20px; transition: .25s;
}
.nav-btn.ghost {
  background: transparent; color: rgba(242,237,229,.6);
  border: 1px solid rgba(242,237,229,.15);
}
.nav-btn.ghost:hover { border-color: var(--gold); color: var(--gold); }
.nav-btn.solid { background: var(--gold); color: var(--ink); font-weight: 500; }
.nav-btn.solid:hover { background: var(--gold-lt); }

/* ════ HERO ════ */
.hero {
  height: 100vh;
  min-height: 580px;
  max-height: 860px;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 68px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 52px 60px 72px;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}
.hero-tag::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 500; line-height: 1.15;
  color: var(--sand); margin-bottom: 18px;
}
.hero h1 i { color: var(--gold-lt); font-size: 1.1em; text-shadow: 0 0 40px rgba(201,169,110,.35); }
.hero-desc {
  font-size: 1rem; line-height: 1.8;
  color: rgba(242,237,229,.52);
  max-width: 390px; margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--ink);
  white-space: nowrap;
  padding: 13px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: .86rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-line {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: rgba(242,237,229,.7);
  white-space: nowrap;
  padding: 12px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: .86rem; font-weight: 300; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(242,237,229,.22);
  transition: border-color .25s, color .25s; cursor: pointer;
}
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

.hero-oab {
  margin-top: 32px;
  display: flex; align-items: center; gap: 14px;
}
.oab-bar {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.oab-text {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(242,237,229,.3); line-height: 1.6;
}

/* direita: foto */
.hero-photo {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right, var(--ink) 0%, transparent 18%),
    linear-gradient(to top,   var(--ink) 0%, transparent 8%);
}
.hero-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 15%;
  z-index: 1;
}
.photo-accent {
  position: absolute;
  top: 10%; bottom: 0; right: 72px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 40%, transparent);
  z-index: 1;
}
.photo-wrap {
  position: relative; z-index: 3;
  width: 92%; max-width: 420px; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.photo-wrap img,
.photo-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.photo-card {
  position: absolute; z-index: 4;
  bottom: 36px; left: 8%;
  background: rgba(17,24,32,.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
}
.photo-card-name {
  font-family: 'Playfair Display', serif;
  font-size: .98rem; font-weight: 500;
  color: var(--sand); margin-bottom: 3px;
}
.photo-card-sub {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
}

/* ════ NÚMEROS ════ */
.numeros {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--ink-mid);
  border-bottom: 1px solid var(--border);
}
.num-item {
  padding: 36px 16px; text-align: center;
  border-right: 1px solid var(--border);
}
.num-item:last-child { border-right: none; }
.num-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 400;
  color: var(--gold); line-height: 1; margin-bottom: 7px;
}
.num-lbl {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(242,237,229,.38);
}

/* ════ SOBRE ════ */
.sobre {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.sobre-foto {
  background: var(--sand-dk);
  min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sobre-foto-img {
  display: none;
}
.sobre-foto {
  background: var(--sand-dk) url('imagens/madson2.PNG') no-repeat center 30% / cover;
}
.sobre-foto-inner {
  width: 240px; height: 320px;
  background: var(--sand);
  border: 1px solid rgba(0,0,0,.08);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: #aaa; position: relative;
}
.sobre-foto-inner::before {
  content: '';
  position: absolute; top: 32px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--sand-dk); border: 1px solid rgba(0,0,0,.07);
}
.sobre-foto::after {
  content: '';
  position: absolute; top: 40px; bottom: 40px; right: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 50%, transparent);
}
.sobre-texto {
  padding: 72px 80px 72px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.sec-label {
  font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.sec-label::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--gold);
}
.sobre-texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 500; line-height: 1.2;
  color: var(--ink); margin-bottom: 6px;
}
.sobre-cargo {
  font-size: .88rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
  word-break: break-word;
}
.sobre-texto p {
  font-size: 1rem; line-height: 1.85; color: #5a5a6a; margin-bottom: 18px;
}
.sobre-sep { width: 40px; height: 1px; background: var(--gold); margin: 24px 0; }
.sobre-btns { display: flex; gap: 12px; margin-top: 28px; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: var(--sand);
  white-space: nowrap;
  padding: 13px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: .86rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer; transition: background .25s;
}
.btn-dark:hover { background: var(--ink-mid); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--ink);
  white-space: nowrap;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: .86rem; font-weight: 300; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(0,0,0,.18);
  transition: border-color .25s; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ════ SERVIÇOS ════ */
.servicos { background: var(--sand); padding: 88px 72px; }
.sec-header { margin-bottom: 60px; }
.sec-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500; color: var(--ink); margin-bottom: 12px;
}
.sec-header p {
  font-size: .88rem; color: var(--muted); line-height: 1.7; max-width: 440px;
}
.servicos-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(0,0,0,.07); border: 1px solid rgba(0,0,0,.07);
}
.srv-card {
  background: var(--white); padding: 40px 32px;
  transition: background .3s; cursor: default;
}
.srv-card:hover { background: var(--ink); }
.srv-card:hover .srv-n,
.srv-card:hover .srv-title,
.srv-card:hover .srv-desc { color: var(--sand); }
.srv-card:hover .srv-link { color: var(--gold-lt); }
.srv-card:hover .srv-rule { background: var(--gold); }
.srv-rule { width: 28px; height: 1px; background: var(--gold); margin-bottom: 24px; transition: background .3s; }
.srv-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 400;
  color: rgba(0,0,0,.07); line-height: 1; margin-bottom: 14px; transition: color .3s;
}
.srv-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--ink); margin-bottom: 12px; line-height: 1.3; transition: color .3s;
}
.srv-desc {
  font-size: .92rem; line-height: 1.75; color: var(--muted); margin-bottom: 24px; transition: color .3s;
}
.srv-link {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}

/* ════ ÁREAS ════ */
.areas { display: grid; grid-template-columns: 1fr 1fr; }
.areas-esq {
  padding: 80px 64px 80px 72px;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.areas-esq h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 500; color: var(--ink); margin-bottom: 10px;
}
.areas-esq > p {
  font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 40px;
}
.areas-lista { list-style: none; margin-bottom: 40px; }
.areas-lista li {
  padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex; gap: 18px; align-items: flex-start;
}
.areas-lista li:first-child { border-top: 1px solid rgba(0,0,0,.06); }
.area-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-top: 6px; flex-shrink: 0;
}
.area-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 2px;
}
.area-desc { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.areas-dir {
  background: var(--ink);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; min-height: 480px;
}
.areas-dir::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.areas-dir-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .45;
}
.areas-citacao { position: relative; z-index: 2; padding: 64px 56px; text-align: center; }
.areas-citacao blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 400; font-style: italic;
  color: rgba(242,237,229,.7); line-height: 1.65; margin-bottom: 20px;
}
.areas-citacao cite {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}

/* ════ DIFERENCIAIS ════ */
.diferenciais {
  background: var(--sand-dk);
  overflow: hidden;
}
.dif-top {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(26,31,42,.14);
}
.dif-left {
  padding: 72px 64px 68px 72px;
  border-right: 1px solid rgba(26,31,42,.14);
}
.dif-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.6vw, 3.4rem);
  font-weight: 400; line-height: 1.12;
  color: var(--ink); margin-bottom: 28px;
}
.dif-blockquote {
  font-size: .88rem; line-height: 1.85;
  color: rgba(26,31,42,.62); font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 20px; margin: 0 0 24px; max-width: 520px;
}
.dif-body {
  font-size: .95rem; line-height: 1.85;
  color: rgba(26,31,42,.75); margin-bottom: 16px;
}
.dif-right {
  display: flex; flex-direction: column;
  align-items: stretch;
  background: var(--ink);
}
.dif-btn-wrap {
  padding: 24px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.dif-btn-bottom {
  display: inline-flex !important;
  width: auto !important;
  flex-shrink: 0;
}
.dif-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  height: 100%;
}
.dif-card {
  padding: 24px 28px;
  background: var(--white);
  border-right: 1px solid rgba(26,31,42,.08);
  border-bottom: 1px solid rgba(26,31,42,.08);
  transition: background .25s; cursor: default;
}
.dif-card:nth-child(2) { border-right: none; }
.dif-card:nth-child(3) { border-bottom: none; }
.dif-card:nth-child(4) { border-right: none; border-bottom: none; }
.dif-card:hover { background: var(--ink) !important; }
.dif-card:hover .card-num   { color: rgba(255,255,255,.08); }
.dif-card:hover .card-rule  { width: 48px; background: var(--gold-lt); }
.dif-card:hover .card-title { color: var(--sand); }
.dif-card:hover .card-desc  { color: rgba(242,237,229,.5); }
.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 300;
  color: rgba(26,31,42,.18); line-height: 1;
  margin-bottom: 16px; transition: color .25s;
}
.card-rule {
  width: 24px; height: 1px; background: var(--gold);
  margin-bottom: 18px; transition: width .3s ease;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 500;
  color: var(--ink); margin-bottom: 10px;
  line-height: 1.3;
}
.card-desc {
  font-size: .88rem; line-height: 1.8;
  color: rgba(26,31,42,.55); font-weight: 300;
}

/* ════ CONTATO ════ */
.contato {
  background: var(--ink); padding: 96px 72px;
  position: relative; overflow: hidden;
}
.contato::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.contato-inner {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto; text-align: center;
}
.contato-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.2; color: var(--sand); margin-bottom: 14px;
}
.contato-inner h2 i { font-style: italic; color: var(--gold-lt); }
.contato-inner > p {
  font-size: 1rem; line-height: 1.75;
  color: rgba(242,237,229,.45); margin-bottom: 48px;
}
.contato-canais {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-bottom: 36px;
}
.canal {
  background: var(--ink-mid); padding: 32px 28px; text-align: left;
  transition: background .25s; text-decoration: none; display: block;
}
.canal:hover { background: #223244; }
.canal-icone {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,146,74,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 14px;
}
.canal-rotulo {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(242,237,229,.3); margin-bottom: 5px;
}
.canal-valor { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--sand); }
.contato-nota { font-size: .82rem; letter-spacing: .08em; color: rgba(242,237,229,.22); }

/* ════ RODAPÉ ════ */
footer {
  background: #090e14; padding: 28px 72px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; color: rgba(242,237,229,.3); letter-spacing: .08em;
}
.footer-logo b { color: var(--gold); }
.footer-info { font-size: .82rem; letter-spacing: .08em; color: rgba(242,237,229,.18); }

/* ════ BOTÕES FLUTUANTES ════ */
.float-btns {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.float-btn {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .25s, box-shadow .25s;
}
.float-wpp { background: #25d366; box-shadow: 0 4px 18px rgba(37,211,102,.32); }
.float-wpp:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,.48); }
.float-email { background: #c9a96e; box-shadow: 0 4px 18px rgba(201,169,110,.32); }
.float-email:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(201,169,110,.48); }
.float-btn svg { width: 22px; fill: white; }

/* ════ ANIMAÇÕES ════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag  { animation: fadeUp .6s ease both; }
.hero h1   { animation: fadeUp .6s .12s ease both; }
.hero-desc { animation: fadeUp .6s .22s ease both; }
.hero-btns { animation: fadeUp .6s .32s ease both; }
.hero-oab  { animation: fadeUp .6s .42s ease both; }

/* ════ HAMBURGER ════ */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--sand); border-radius: 2px; transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════ RESPONSIVO ════ */
@media (min-width: 861px) and (max-width: 1024px) {
  .areas-dir-img { object-position: 20% 15% !important; }
}

@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-menu { gap: 16px; }
  .nav-menu a { font-size: .7rem; }
  .nav-btn { font-size: .68rem; padding: 7px 10px; letter-spacing: .06em; white-space: nowrap; }
  .hero-copy { padding: 40px 36px 60px 40px; }
  .servicos { padding: 72px 40px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-esq { padding: 64px 40px; }
  .areas-dir { min-height: 600px; }
  .areas-dir-img { object-position: 22% 15%; }
  .dif-top { grid-template-columns: 1fr; }
  .dif-left { padding: 56px 40px 48px; border-right: none; border-bottom: 1px solid rgba(26,31,42,.14); }
  .dif-right { padding: 0; }
  .dif-cards { grid-template-columns: repeat(2, 1fr); }
  .dif-card:nth-child(2) { border-right: none; }
  .dif-card:nth-child(3) { border-bottom: none; }
  .dif-card:nth-child(4) { border-right: none; border-bottom: none; }
  .contato { padding: 80px 40px; }
  footer { padding: 24px 40px; }
}

@media (max-width: 860px) {
  nav { padding: 0 20px; }
  .nav-menu {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(11,16,22,1);
    flex-direction: column; gap: 0;
    padding: 8px 0 16px;
    border-bottom: 2px solid var(--gold); z-index: 199;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a { display: block; padding: 14px 24px; font-size: .75rem; }
  .nav-right { display: none; }
  .nav-right.open {
    display: flex;
    position: fixed;
    top: calc(68px + 4 * 43px + 16px);
    left: 0; right: 0;
    flex-direction: column;
    padding: 12px 20px 20px;
    background: rgba(11,16,22,1);
    border-bottom: 2px solid var(--gold);
    gap: 8px; z-index: 199;
  }
  .nav-right .nav-btn { text-align: center; padding: 12px; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; height: auto; max-height: none; min-height: auto; }
  .hero-copy { padding: 96px 24px 40px; order: 1; }
  .hero-photo { order: 2; min-height: 460px; }
  .hero-photo-img { object-position: 65% 20%; }
  .photo-card { bottom: 28px; left: 6%; padding: 10px 14px; max-width: 60%; }
  .photo-card-name { font-size: .85rem; }
  .photo-card-sub { font-size: .55rem; }
  .photo-accent { right: 32px; }

  .numeros { grid-template-columns: repeat(2, 1fr); }
  .num-item:nth-child(2) { border-right: none; }
  .num-item:nth-child(3) { border-top: 1px solid var(--border); }
  .num-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .sobre { grid-template-columns: 1fr; }
  .sobre-foto { min-height: 520px; background-position: center 30% !important; }
  .sobre-texto { padding: 48px 24px; max-width: 100vw; overflow: hidden; word-break: break-word; }
  .sobre-btns { flex-direction: column; }
  .sobre-btns a { width: 100%; justify-content: center; }

  .servicos { padding: 56px 24px; }
  .servicos-grid { grid-template-columns: 1fr; }

  .areas { grid-template-columns: 1fr; }
  .areas-esq { padding: 56px 24px; }
  .areas-dir { min-height: 320px; }
  .areas-dir-img { object-fit: cover; object-position: 10% center; }
  .areas-citacao { padding: 40px 28px; }
  .areas-citacao blockquote { font-size: 1.1rem; }

  .diferenciais { padding: 0; }
  .dif-top { grid-template-columns: 1fr; }
  .dif-left { padding: 56px 24px 48px; border-right: none; border-bottom: 1px solid rgba(26,31,42,.14); }
  .dif-right { padding: 48px 24px; }
  .dif-cards { grid-template-columns: 1fr 1fr; }
  .dif-card:nth-child(2) { border-right: none; }
  .dif-card:nth-child(3) { border-top: 1px solid rgba(26,31,42,.1); }
  .dif-card:nth-child(4) { border-top: 1px solid rgba(26,31,42,.1); border-right: none; }

  .contato { padding: 64px 24px; }
  .contato-canais { grid-template-columns: 1fr; }

  footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px 20px; }
}

@media (max-width: 480px) {
  .areas-dir { min-height: 420px; }
  .areas-dir-img { object-fit: cover; object-position: 10% top; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { justify-content: center; width: 100%; }
  .sobre-btns { flex-direction: column; }
  .sobre-btns a { text-align: center; justify-content: center; width: 100%; }
  .numeros { grid-template-columns: 1fr 1fr; }
  .num-val { font-size: 1.9rem; }
  .btn-gold, .btn-line, .btn-dark, .btn-ghost { white-space: normal; }
}

