/* ============================================================
   FONTES (auto-hospedadas — não dependem do Google, carregam mais rápido)
   ============================================================ */
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 300; font-display: swap;
  src: url('../fonts/jost-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/jost-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/jost-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300; font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300; font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-300-italic.woff2') format('woff2'); }

/* ============================================================
   VICTOR HENRIQUE FOTOGRAFIA — folha de estilo
   Para mudar cores, fontes e espaçamentos, mexa só no bloco
   ":root" abaixo. Tudo no site usa essas variáveis.
   ============================================================ */

:root {
  /* Cores */
  --papel:        #FAF9F7;   /* fundo principal (branco quente) */
  --papel-2:      #F2F0EC;   /* fundo de seções alternadas */
  --tinta:        #14141A;   /* texto principal / quase preto */
  --tinta-suave:  #5E5E66;   /* texto secundário */
  --linha:        #E2DFD9;   /* filetes e bordas */
  --escuro:       #14141A;   /* seções escuras */
  --zap:          #25D366;   /* verde do WhatsApp */
  --zap-escuro:   #1DAE53;   /* verde do WhatsApp no hover */

  /* Tipografia */
  --sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;

  /* Ritmo */
  --secao:      clamp(72px, 10vw, 140px);  /* respiro vertical das seções */
  --largura:    1280px;                    /* largura máxima do conteúdo */
  --gutter:     clamp(20px, 5vw, 56px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--papel);
  color: var(--tinta);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- utilitários ---------- */
.wrap { max-width: var(--largura); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-estreito { max-width: 780px; margin: 0 auto; padding: 0 var(--gutter); }
.secao { padding: var(--secao) 0; }
.secao--papel2 { background: var(--papel-2); }
.secao--escura { background: var(--escuro); color: var(--papel); }

.olho {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--tinta-suave);
  font-weight: 400;
  margin: 0 0 22px;
}
.secao--escura .olho { color: rgba(250,249,247,.55); }

h1, h2, h3 { font-weight: 300; margin: 0; }

.titulo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 26px;
}
.titulo em { font-style: italic; }

.texto { color: var(--tinta-suave); max-width: 58ch; margin: 0 0 18px; }
.secao--escura .texto { color: rgba(250,249,247,.72); }

.filete { height: 1px; background: var(--linha); border: 0; margin: 0; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border: 1px solid var(--tinta);
  background: var(--tinta); color: var(--papel);
  font-size: 12px; letter-spacing: .17em; text-transform: uppercase; font-weight: 400;
  transition: background .28s ease, color .28s ease, transform .28s ease;
}
.btn:hover { background: transparent; color: var(--tinta); transform: translateY(-2px); }
.btn--vazado { background: transparent; color: var(--tinta); }
.btn--vazado:hover { background: var(--tinta); color: var(--papel); }
.secao--escura .btn { background: var(--papel); color: var(--tinta); border-color: var(--papel); }
.secao--escura .btn:hover { background: transparent; color: var(--papel); }

.link-linha {
  display: inline-block;
  font-size: 12px; letter-spacing: .17em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
  transition: opacity .25s ease;
}
.link-linha:hover { opacity: .55; }

/* ============================================================
   CABEÇALHO
   ============================================================ */
.topo {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  padding: 26px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.topo::before {
  content: ''; position: absolute; inset: 0; background: var(--papel);
  opacity: 0; transition: opacity .3s ease; z-index: -1;
}
.topo.compacto { padding: 13px 0; }
.topo.compacto::before { opacity: .96; box-shadow: 0 1px 0 var(--linha); }

.topo__grade { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.marca { line-height: 1.1; }
.marca__nome {
  display: block; font-size: 15px; letter-spacing: .2em; text-transform: uppercase; font-weight: 400;
}
.marca__nome b { font-weight: 500; }
.marca__sub {
  display: block; font-size: 8.5px; letter-spacing: .46em; text-transform: uppercase;
  color: var(--tinta-suave); margin-top: 4px; padding-left: 2px;
}

.menu { display: flex; align-items: center; gap: 30px; }
.menu a {
  font-size: 11.5px; letter-spacing: .17em; text-transform: uppercase; font-weight: 400;
  position: relative; padding: 4px 0;
}
.menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: currentColor; transition: width .3s ease;
}
.menu a:hover::after, .menu a.ativo::after { width: 100%; }
.menu a.externo::before {
  content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--tinta); margin-right: 7px; vertical-align: 2px; opacity: .35;
}

.topo__acoes { display: flex; align-items: center; gap: 16px; }
.icone { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.topo__acoes a { opacity: .75; transition: opacity .25s ease; }
.topo__acoes a:hover { opacity: 1; }

.hamburguer { display: none; background: none; border: 0; padding: 6px; color: inherit; }
.hamburguer span { display: block; width: 24px; height: 1px; background: currentColor; margin: 5px 0; transition: transform .3s ease, opacity .3s ease; }
.hamburguer.aberto span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburguer.aberto span:nth-child(2) { opacity: 0; }
.hamburguer.aberto span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 150px 0 var(--secao); }
.hero__grade {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 90px); align-items: center;
}
.hero__texto { max-width: 520px; }
.hero__titulo {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(38px, 5.6vw, 68px); line-height: 1.06; letter-spacing: -.015em;
  margin: 0 0 26px;
}
.hero__titulo em { font-style: italic; }
.hero__sub { color: var(--tinta-suave); font-size: 18px; margin: 0 0 36px; max-width: 44ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__foto { position: relative; }
.hero__foto img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 22%; }
.hero__legenda {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--tinta-suave); margin-top: 14px;
}

/* faixa de nichos */
.faixa { border-top: 1px solid var(--linha); border-bottom: 1px solid var(--linha); padding: 26px 0; }
.faixa__lista {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 42px;
  margin: 0; padding: 0; list-style: none;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--tinta-suave);
}

/* ============================================================
   GALERIA
   ============================================================ */
.galeria {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
}
.galeria--mosaico { grid-auto-rows: 1fr; }
.galeria__item {
  position: relative; overflow: hidden; background: var(--papel-2);
  cursor: zoom-in; display: block; width: 100%; padding: 0; border: 0;
}
.galeria__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.galeria__item::after {
  content: ''; position: absolute; inset: 0; background: var(--tinta);
  opacity: 0; transition: opacity .45s ease;
}
.galeria__item:hover img { transform: scale(1.045); }
.galeria__item:hover::after { opacity: .07; }
.galeria__item--alto { grid-row: span 2; }
.galeria__item img.retrato { aspect-ratio: 3/4; }
.galeria__item--alto img { aspect-ratio: auto; height: 100%; }

.galeria-fita {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 1fr);
  gap: clamp(8px, 1vw, 14px);
}

/* ============================================================
   PILARES / COMO FUNCIONA
   ============================================================ */
.pilares { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); }
.pilar__num {
  font-family: var(--serif); font-size: 40px; line-height: 1;
  color: var(--tinta); opacity: .22; margin-bottom: 14px;
}
.pilar h3 { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; margin: 0 0 12px; }
.pilar p { color: var(--tinta-suave); margin: 0; font-size: 16px; }
.secao--escura .pilar p { color: rgba(250,249,247,.7); }
.secao--escura .pilar__num { color: var(--papel); opacity: .3; }

.passos { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 44px); }
.passo { border-top: 1px solid var(--linha); padding-top: 22px; }
.secao--escura .passo { border-color: rgba(250,249,247,.2); }
.passo__num { font-size: 11px; letter-spacing: .22em; color: var(--tinta-suave); margin-bottom: 12px; }
.secao--escura .passo__num { color: rgba(250,249,247,.5); }
.passo h3 { font-size: 15px; font-weight: 400; margin: 0 0 10px; letter-spacing: .01em; }
.passo p { color: var(--tinta-suave); font-size: 15px; margin: 0; }
.secao--escura .passo p { color: rgba(250,249,247,.66); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.dep { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.dep + .dep { margin-top: clamp(56px, 8vw, 110px); }
.dep--invertido .dep__foto { order: -1; }
.dep__foto img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.dep__aspas { font-family: var(--serif); font-size: 76px; line-height: .55; color: var(--tinta); opacity: .16; display: block; margin-bottom: 20px; }
.dep__frase { font-family: var(--serif); font-size: clamp(20px, 2.3vw, 27px); line-height: 1.5; margin: 0 0 26px; font-weight: 300; }
.dep__quem { display: flex; align-items: center; gap: 14px; }
.dep__quem img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.dep__nome { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.dep__cargo { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--tinta-suave); }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 84px); align-items: start; }
.sobre__foto img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.sobre__assinatura {
  font-family: var(--serif); font-size: 26px; margin-top: 18px; display: block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--linha); }
.faq__item { border-bottom: 1px solid var(--linha); }
.faq__botao {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 24px 40px 24px 0; position: relative; color: inherit;
  font-size: 17px; font-weight: 400; line-height: 1.5;
}
.faq__botao::after {
  content: ''; position: absolute; right: 6px; top: 50%; width: 11px; height: 1px;
  background: currentColor; transition: transform .3s ease;
}
.faq__botao::before {
  content: ''; position: absolute; right: 11px; top: 50%; width: 1px; height: 11px;
  background: currentColor; transform: translateY(-50%); transition: transform .3s ease, opacity .3s ease;
}
.faq__item.aberto .faq__botao::before { opacity: 0; transform: translateY(-50%) rotate(90deg); }
.faq__resposta { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq__resposta p { color: var(--tinta-suave); margin: 0 0 26px; max-width: 68ch; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); }
.form__campo { margin-bottom: 22px; }
.form__campo label {
  display: block; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--tinta-suave); margin-bottom: 8px;
}
.form__campo input, .form__campo textarea, .form__campo select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--linha);
  padding: 10px 0; font: inherit; color: inherit; border-radius: 0;
  transition: border-color .25s ease;
}
.form__campo input:focus, .form__campo textarea:focus, .form__campo select:focus {
  outline: none; border-color: var(--tinta);
}
.form__campo textarea { resize: vertical; min-height: 90px; }
.form__nota { font-size: 13px; color: var(--tinta-suave); margin: 18px 0 0; }

.contatos { list-style: none; margin: 0; padding: 0; }
.contatos li { border-bottom: 1px solid var(--linha); padding: 18px 0; }
.contatos li:first-child { border-top: 1px solid var(--linha); }
.contatos span {
  display: block; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--tinta-suave); margin-bottom: 4px;
}
.contatos a, .contatos strong { font-weight: 400; font-size: 17px; }
.contatos a:hover { opacity: .6; }

/* ============================================================
   RODAPÉ + WHATSAPP FLUTUANTE
   ============================================================ */
.rodape { padding: 54px 0 40px; border-top: 1px solid var(--linha); }
.rodape__grade { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.rodape__links { display: flex; flex-wrap: wrap; gap: 22px; }
.rodape__links a { font-size: 11px; letter-spacing: .17em; text-transform: uppercase; color: var(--tinta-suave); }
.rodape__links a:hover { color: var(--tinta); }
.rodape__nota { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--tinta-suave); }

/* ---------- botão WhatsApp (verde da marca) ---------- */
.btn--zap {
  background: var(--zap); border-color: var(--zap); color: #fff;
}
.btn--zap:hover { background: var(--zap-escuro); border-color: var(--zap-escuro); color: #fff; }
.secao--escura .btn--zap { background: var(--zap); border-color: var(--zap); color: #fff; }
.secao--escura .btn--zap:hover { background: var(--zap-escuro); border-color: var(--zap-escuro); color: #fff; }
.btn svg, .btn-zap-topo svg { width: 17px; height: 17px; fill: currentColor; flex: none; }

/* pílula no cabeçalho */
.btn-zap-topo {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--zap); color: #fff;
  padding: 9px 17px; border-radius: 999px;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  transition: background .25s ease, transform .25s ease;
  white-space: nowrap;
}
.btn-zap-topo:hover { background: var(--zap-escuro); transform: translateY(-1px); }

/* pílula flutuante (desktop) */
.zap {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  display: inline-flex; align-items: center; gap: 11px;
  height: 58px; padding: 0 24px; border-radius: 999px;
  background: var(--zap); color: #fff;
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  box-shadow: 0 10px 30px rgba(37,211,102,.34), 0 2px 8px rgba(0,0,0,.14);
  transition: transform .3s ease, background .3s ease;
  animation: chamaAtencao 2.6s ease-out 1.4s 2;
}
.zap:hover { transform: translateY(-3px); background: var(--zap-escuro); }
.zap svg { width: 26px; height: 26px; fill: currentColor; flex: none; }

@keyframes chamaAtencao {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.34), 0 2px 8px rgba(0,0,0,.14); }
  35%      { box-shadow: 0 10px 30px rgba(37,211,102,.34), 0 0 0 14px rgba(37,211,102,0); }
  36%      { box-shadow: 0 10px 30px rgba(37,211,102,.34), 0 0 0 0 rgba(37,211,102,.5); }
}

/* barra fixa no rodapé (mobile) */
.barra-zap { display: none; }

/* ---------- migalhas de pão (breadcrumbs) ---------- */
.migalhas {
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--tinta-suave); margin: 0 0 26px;
}
.migalhas a { border-bottom: 1px solid transparent; transition: border-color .25s ease; }
.migalhas a:hover { border-color: currentColor; }
.migalhas span { opacity: .5; margin: 0 9px; }

/* ---------- cards de especialidade ---------- */
/* Cada card tem borda própria e as bordas vizinhas se sobrepõem em 1px.
   Assim os filetes ficam finos e uma linha incompleta não deixa bloco vazio
   à mostra — funciona com qualquer número de cards. */
.especialidades {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.especialidade {
  border: 1px solid var(--linha);
  margin: -1px 0 0 -1px;
  padding: 30px 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 178px;
  transition: background .3s ease, color .3s ease;
}
.especialidade:hover { background: var(--tinta); color: var(--papel); position: relative; z-index: 1; }
.especialidade h3 {
  font-size: 12.5px; letter-spacing: .17em; text-transform: uppercase; font-weight: 500; margin: 0;
}
.especialidade p { font-size: 14.5px; color: var(--tinta-suave); margin: 0; line-height: 1.6; }
.especialidade:hover p { color: rgba(250,249,247,.75); }
.especialidade__seta { font-size: 15px; margin-top: auto; padding-top: 14px; opacity: .4; }
.especialidade:hover .especialidade__seta { opacity: 1; }

/* card da especialidade em que o visitante já está */
.especialidade--atual { background: var(--linha); cursor: default; }
.secao--papel2 .especialidade--atual { background: #E7E4DE; }
.especialidade--atual h3 { opacity: .55; }
.especialidade--atual p { opacity: .7; }
.especialidade__aqui {
  margin-top: auto; padding-top: 14px;
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--tinta-suave);
}

@media (max-width: 940px) { .especialidades { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .especialidades { grid-template-columns: 1fr; }
  .especialidade { min-height: 0; } }

/* links dentro da faixa de nichos */
.faixa__lista a { border-bottom: 1px solid transparent; transition: color .25s ease, border-color .25s ease; }
.faixa__lista a:hover { color: var(--tinta); border-color: var(--tinta); }

/* ---------- texto corrido editorial ---------- */
.prosa p { color: var(--tinta-suave); max-width: 66ch; margin: 0 0 18px; }
.prosa h3 {
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: var(--tinta); margin: 38px 0 14px;
}
.prosa ul { color: var(--tinta-suave); max-width: 66ch; padding-left: 20px; margin: 0 0 18px; }
.prosa li { margin-bottom: 7px; }

/* bloco de chamada centralizado entre seções */
.chamada { text-align: center; }
.chamada__linha {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center;
}
.chamada__reforco {
  font-size: 13px; color: var(--tinta-suave); margin: 18px 0 0;
}
.secao--escura .chamada__reforco { color: rgba(250,249,247,.6); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(12,12,14,.94);
  display: none; align-items: center; justify-content: center; padding: 4vh 5vw;
}
.lightbox.ativo { display: flex; }
.lightbox img { max-width: 100%; max-height: 92vh; object-fit: contain; }
.lightbox__fechar, .lightbox__nav {
  position: absolute; background: none; border: 0; color: #fff; opacity: .7;
  transition: opacity .25s ease; padding: 14px; line-height: 0;
}
.lightbox__fechar:hover, .lightbox__nav:hover { opacity: 1; }
.lightbox__fechar { top: 14px; right: 16px; font-size: 26px; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 34px; line-height: 1; }
.lightbox__nav--ant { left: 8px; }
.lightbox__nav--prox { right: 8px; }

/* ============================================================
   ANIMAÇÃO DE ENTRADA
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.visivel { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1000px) {
  .passos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  body { font-size: 16px; padding-bottom: 68px; }  /* espaço para a barra fixa */
  .hamburguer { display: block; }
  .btn-zap-topo { display: none; }

  /* no celular a pílula flutuante dá lugar à barra fixa de largura total */
  .zap { display: none; }
  .barra-zap {
    display: flex; align-items: center; justify-content: center; gap: 11px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
    height: 60px; background: var(--zap); color: #fff;
    font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
    box-shadow: 0 -4px 20px rgba(0,0,0,.14);
  }
  .barra-zap svg { width: 24px; height: 24px; fill: currentColor; }
  .rodape { padding-bottom: 26px; }
  .menu {
    position: fixed; inset: 0; background: var(--papel);
    flex-direction: column; justify-content: center; gap: 30px;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  }
  .menu.aberto { transform: none; }
  .menu a { font-size: 15px; letter-spacing: .22em; }
  .topo__acoes .so-desktop { display: none; }
  .hero { padding-top: 120px; }
  .hero__grade, .dep, .sobre, .contato { grid-template-columns: 1fr; }
  .hero__foto { order: -1; }
  .hero__foto img { aspect-ratio: 3/4; }
  .dep--invertido .dep__foto { order: 0; }
  .dep__foto { order: -1; }
  .pilares { grid-template-columns: 1fr; gap: 34px; }
  .galeria { grid-template-columns: repeat(2, 1fr); }
  .galeria__item--alto { grid-row: span 1; }
  .galeria__item--alto img { aspect-ratio: 3/4; }
  .sobre__foto { max-width: 300px; }
}
@media (max-width: 520px) {
  .passos { grid-template-columns: 1fr; }
  .faixa__lista { gap: 10px 22px; font-size: 10px; }
  .rodape__grade { flex-direction: column; align-items: flex-start; text-align: left; }
}
