/* ═══════════════════════════════════════════════════════════════
   SOLLIEVO ENGENHARIA — main.css
   Direção: editorial premium e acolhedor, estilo revista de arquitetura.
   Navy dominante · dourado como fio de destaque · seções em ritmo
   navy/areia como capítulos. Tipografia protagonista: Poppins +
   Cormorant Garamond itálico em palavras emocionais.
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #2C3D4D;
  --navy-deep:   #22303D;
  --charcoal:    #10171F;
  --gold:        #BE9B73;
  --gold-soft:   #D8BE9D;
  --gold-deep:   #8A6840;   /* dourado escurecido p/ contraste AA sobre areia/branco */
  --sand:        #E8E0D4;
  --sand-soft:   #F4F0E8;
  --white:       #FFFFFF;

  --ink:         #1E2A35;                  /* texto sobre claro */
  --ink-mid:     #4A5866;                  /* texto de apoio sobre claro */
  --paper-ink:   rgba(255,255,255,0.78);   /* texto sobre navy */
  --paper-dim:   rgba(255,255,255,0.55);

  --font-sans:  'Poppins', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --radius:     18px;
  --radius-lg:  28px;
  --radius-xl:  36px;

  --container:  1200px;
  --gutter:     clamp(20px, 4vw, 40px);

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --dur:        0.65s;

  --header-h:   78px;
}

/* ── 2. RESET / BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sand-soft);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold); color: var(--charcoal); }

/* ── 3. TIPOGRAFIA ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: inherit;
}

/* Palavra emocional: serifada itálica dentro dos títulos */
h1 em, h2 em, h3 em, .serif-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--gold);
}

.sec--sand h1 em, .sec--sand h2 em, .sec--sand h3 em,
.sec--paper h1 em, .sec--paper h2 em, .sec--paper h3 em { color: var(--gold-deep); }

.display-1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem);  font-weight: 800; }
.display-2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem);  font-weight: 800; }
.display-3 { font-size: clamp(1.45rem, 2.8vw, 2.1rem); font-weight: 700; }

.lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
}

/* Hierarquia sustentada por tipografia e espaçamento — sem labels/eyebrows */

/* ── 4. LAYOUT / SEÇÕES ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sec { position: relative; padding: clamp(72px, 10vw, 128px) 0; overflow: hidden; }

.sec--navy {
  background:
    radial-gradient(120% 90% at 20% 0%, #35485B 0%, var(--navy) 46%, var(--navy-deep) 100%);
  color: var(--white);
}
.sec--charcoal {
  background: radial-gradient(110% 80% at 50% 0%, #1B2632 0%, var(--charcoal) 70%);
  color: var(--white);
}
.sec--sand  { background: var(--sand);      color: var(--ink); }
.sec--paper { background: var(--sand-soft); color: var(--ink); }

.sec--navy p, .sec--charcoal p { color: var(--paper-ink); }
.sec--sand p, .sec--paper p    { color: var(--ink-mid); }

/* Grain/noise fino sobre fundos navy — CSS puro (SVG turbulence inline) */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}
.grain > .container { position: relative; z-index: 2; }

/* Marca d'água tipográfica gigante */
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(5rem, 18vw, 15rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: currentColor;
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}
.watermark--top { top: 12%; transform: translate(-50%, 0); }

/* Cabeçalho de seção */
.sec-head { max-width: 680px; margin-bottom: clamp(40px, 6vw, 72px); position: relative; z-index: 2; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .gold-rule { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* Fio dourado divisor */
.gold-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: none;
  margin: 22px 0;
}

/* ── 5. BOTÕES ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-out), background-color 0.35s, color 0.35s, border-color 0.35s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }

.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-soft); }

.btn--ghost { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-deep); }

.btn--line { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn--line:hover { background: var(--gold-deep); color: var(--white); }

.btn--lg { padding: 18px 38px; font-size: 0.95rem; }
.btn--sm { padding: 10px 22px; font-size: 0.8rem; }
.btn--block { width: 100%; }

/* ── 6. HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(34, 48, 61, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(190, 155, 115, 0.22);
}

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

/* Marca sobre navy: assinatura horizontal branca oficial (arquivo do manual) */
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  z-index: 130;
  position: relative;
}
.brand-mark { display: block; width: auto; }

.main-nav ul { display: flex; gap: clamp(14px, 2.2vw, 30px); }
.main-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 0;
  transition: color 0.3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.main-nav a:hover, .main-nav li.active a { color: var(--white); }
.main-nav a:hover::after, .main-nav li.active a::after { transform: scaleX(1); }

.header-cta { white-space: nowrap; }
.main-nav .nav-cta-mobile { display: none; }

/* Toggle mobile */
.nav-toggle {
  display: none;
  z-index: 130;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Menu mobile em tela cheia navy */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    background:
      radial-gradient(120% 90% at 20% 0%, #35485B 0%, var(--navy) 50%, var(--navy-deep) 100%);
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 12px) var(--gutter) 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease-out), visibility 0.45s;
    overflow-y: auto;
  }
  .main-nav.open { opacity: 1; visibility: visible; }

  .main-nav ul { flex-direction: column; gap: 2px; width: 100%; }
  .main-nav a {
    font-size: clamp(1.6rem, 6.4vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.85);
    display: inline-block;
    padding: 8px 0;
  }
  .main-nav a::after { bottom: 8px; height: 2px; }
  .main-nav li {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  }
  .main-nav.open li { opacity: 1; transform: none; }
  .main-nav.open li:nth-child(1) { transition-delay: 0.06s; }
  .main-nav.open li:nth-child(2) { transition-delay: 0.12s; }
  .main-nav.open li:nth-child(3) { transition-delay: 0.18s; }
  .main-nav.open li:nth-child(4) { transition-delay: 0.24s; }
  .main-nav.open li:nth-child(5) { transition-delay: 0.30s; }
  .main-nav.open li:nth-child(6) { transition-delay: 0.36s; }
  .main-nav.open li:nth-child(7) { transition-delay: 0.42s; }
  .main-nav.open li:nth-child(8) { transition-delay: 0.48s; }

  .main-nav .nav-cta-mobile { display: block; margin-top: 28px; }
  .main-nav .nav-cta-mobile .btn { font-size: 0.9rem; font-weight: 600; padding: 16px 32px; }
}

/* ── 7. HERO (home) — capa de revista ──────────────────────
   Foto full-bleed à direita dissolvendo no navy, headline gigante.
   Fotos manuais de Admin → Fotos do Site (fotos_hero(), hero-1..3). */
.hero {
  position: relative;
  /* desconta a altura do marquee: hero + faixa aparecem juntos, sem scroll */
  min-height: calc(100svh - 62px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 120px);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

/* Palco de fotos: slides absolutos colados na borda direita */
.hero-stage { position: absolute; inset: 0; z-index: 0; }
.hero-shot {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64%;
  opacity: 0;
  transition: opacity 1.2s ease;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%);
          mask-image: linear-gradient(to right, transparent 0%, #000 30%);
}
.hero-shot.on { opacity: 1; }
.hero-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
/* Ken Burns sutil só no slide ativo */
.hero-shot.on img { animation: heroKb 7s ease-out forwards; }
@keyframes heroKb { from { transform: scale(1.02); } to { transform: scale(1.09); } }

/* Véus: legibilidade do índice (baixo→cima) e do headline (diagonal) */
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(16,23,31,0.78) 0%, rgba(16,23,31,0.25) 34%, rgba(16,23,31,0) 55%);
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, rgba(44,61,77,0.55) 38%, rgba(44,61,77,0) 62%);
}


/* Conteúdo da capa */
.hero-cover { position: relative; z-index: 5; padding: 0 clamp(24px, 5vw, 72px); }
.hero-cover h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-size: clamp(3.5rem, 8.6vw, 8rem);
  max-width: 15ch;
}
.hero-cover h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  font-size: 1.06em;
  letter-spacing: 0;
}
.hero-leadrow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-leadrow p {
  font-weight: 300;
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 46ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-btn-ghost {
  background: rgba(16, 23, 31, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Rodapé fino do hero: CREA · slogan */
.hero-foot {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  /* folga extra à direita: o botão flutuante do WhatsApp mora naquele canto */
  padding: 0 clamp(88px, 8vw, 120px) 26px clamp(24px, 5vw, 72px);
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.45);
}
.hero-foot .sl {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  color: var(--gold);
}

/* Hero responsivo: foto vira fundo full-screen com véu mais forte */
@media (max-width: 1080px) {
  .hero-shot { width: 100%; -webkit-mask-image: none; mask-image: none; }
  .hero-stage::after {
    background: linear-gradient(to top, rgba(34,48,62,0.9) 20%, rgba(34,48,62,0.45) 60%, rgba(34,48,62,0.25) 100%);
  }
  .hero-cover h1 { font-size: clamp(2.75rem, 11vw, 4.5rem); }
  .hero-leadrow { flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 28px; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── 8. FAIXA SIGNIFICADO + MARQUEE ────────────────────────── */
.meaning { text-align: center; }
.meaning .display-3 {
  max-width: 720px;
  margin-inline: auto;
  font-weight: 600;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(190,155,115,0.35);
  border-bottom: 1px solid rgba(190,155,115,0.35);
  background: var(--charcoal);
  color: var(--sand);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-seq {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-seq span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
.marquee-seq em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--gold);
}
.marquee-seq span::after {
  content: "◆";
  font-size: 0.5rem;
  color: var(--gold);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 9. CARDS BASE ─────────────────────────────────────────── */
.card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(190, 155, 115, 0.4);
  padding: clamp(28px, 4vw, 44px);
  transition: transform 0.5s var(--ease-out);
}
.card--float:hover { transform: translateY(-6px); }
.card--navy {
  background: linear-gradient(160deg, #33465A 0%, var(--navy-deep) 100%);
  color: var(--white);
}
.card--navy p { color: var(--paper-ink); }
.card--paper { background: var(--white); color: var(--ink); }
.card--paper p { color: var(--ink-mid); }

/* ── 10. QUEM SOMOS / NÚMEROS ──────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-grid .lead + .lead { margin-top: 20px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(190,155,115,0.35);
  border: 1px solid rgba(190,155,115,0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--sand);
  padding: 28px 18px;
  text-align: center;
}
.sec--navy .stat, .sec--charcoal .stat { background: var(--navy-deep); }
.stat-num {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
}
.sec--navy .stat-num, .sec--charcoal .stat-num { color: var(--gold); }
.stat-num sup { font-size: 0.55em; font-weight: 600; }
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: 6px;
}
.sec--navy .stat-label, .sec--charcoal .stat-label { color: var(--paper-dim); }

/* ── 11. MÉTODO (resumo home + página) ─────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.step-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(190,155,115,0.4);
  background: linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 60%);
  padding: 32px 26px;
  transition: transform 0.5s var(--ease-out), border-color 0.5s;
}
.step-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.08rem; margin-bottom: 10px; color: var(--white); }
.step-card p  { font-size: 0.88rem; line-height: 1.7; }

/* Jornada "Método Chave na Mão": nós circulares ligados por fio
   dourado tracejado que se desenha com o scroll (clip-path no fio). */
.journey { position: relative; z-index: 2; }
.journey-wires { position: absolute; inset: 0; pointer-events: none; }
.journey-wire {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  overflow: visible;
}
.journey-wire path {
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 7 9;
  stroke-linecap: round;
}
.journey-wire--base path { stroke: rgba(138, 104, 64, 0.32); }
.journey-wire--gold path { stroke: var(--gold-deep); }
.sec--navy .journey-wire--base path,
.sec--charcoal .journey-wire--base path { stroke: rgba(190, 155, 115, 0.25); }
.sec--navy .journey-wire--gold path,
.sec--charcoal .journey-wire--gold path { stroke: var(--gold); }

/* Linha vertical (mobile) */
.journey-vline { display: none; }

.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.journey-node {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: var(--sand);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}
.sec--paper .journey-node { background: var(--sand-soft); }
.sec--navy .journey-node, .sec--charcoal .journey-node {
  background: var(--navy-deep);
  border-color: var(--gold);
  color: var(--gold);
}
.journey-step:hover .journey-node,
.journey-step:focus-within .journey-node {
  transform: scale(1.07);
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(190, 155, 115, 0.16);
}
.journey-num {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.66rem;
  font-weight: 700;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Serpenteio: nós alternam de altura para casar com a onda do fio */
@media (min-width: 861px) {
  .journey-step:nth-child(odd)  .journey-node { margin-top: 22px; }
  .journey-step:nth-child(even) .journey-node { margin-top: 72px; }
}
.journey-body { margin-top: 22px; max-width: 230px; }
.journey-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.journey-body p { font-size: 0.86rem; line-height: 1.7; }

@media (max-width: 860px) {
  .journey-wire { display: none; }
  .journey-vline {
    display: block;
    position: absolute;
    left: 37px;
    top: 12px;
    bottom: 12px;
    width: 0;
    border-left: 1.5px dashed rgba(138, 104, 64, 0.32);
  }
  .journey-vline--gold { border-left-color: var(--gold-deep); }
  .sec--navy .journey-vline--base, .sec--charcoal .journey-vline--base { border-left-color: rgba(190,155,115,0.25); }
  .sec--navy .journey-vline--gold, .sec--charcoal .journey-vline--gold { border-left-color: var(--gold); }

  .journey-steps { grid-template-columns: 1fr; gap: 40px; }
  .journey-step {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 22px;
    text-align: left;
    align-items: start;
  }
  .journey-body { margin-top: 6px; max-width: none; }
}

/* ── Jornada interativa: passos clicáveis + painel de detalhes ──
   O card inteiro do passo é clicável (botão esticado via ::before);
   o painel abre com animação de grid-template-rows 0fr → 1fr. */
.journey--interactive .journey-step { position: relative; cursor: pointer; }

.journey-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.journey-trigger::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius); }
.journey-trigger i {
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 0.45s var(--ease-out), background 0.3s, color 0.3s;
}
.journey--interactive .journey-step:hover .journey-trigger i {
  background: var(--gold-deep);
  color: var(--sand-soft);
}
.journey-step.is-active .journey-trigger i {
  transform: rotate(45deg);
  background: var(--gold-deep);
  color: var(--sand-soft);
}
.journey-step.is-active .journey-node {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 0 0 6px rgba(190, 155, 115, 0.22);
}
.journey-step.is-active .journey-body h3 { color: var(--gold-deep); }
.sec--navy .journey-step.is-active .journey-node,
.sec--charcoal .journey-step.is-active .journey-node {
  background: var(--gold);
  color: var(--charcoal);
}

/* Painel */
.journey-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.65s var(--ease-out), margin-top 0.65s var(--ease-out);
  position: relative;
  z-index: 2;
}
.journey-detail.open { grid-template-rows: 1fr; margin-top: clamp(36px, 5vw, 52px); }
.journey-detail-clip { overflow: hidden; min-height: 0; }
.journey-detail-slot { list-style: none; }
.journey-detail-slot .journey-detail.open { margin-top: 0; }

.journey-pane {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(138, 104, 64, 0.25);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 24px 60px -30px rgba(16, 23, 31, 0.25);
}
.journey-pane[hidden] { display: none; }
.journey-pane::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(26px, 4vw, 44px);
  width: 64px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
}
@keyframes journeyPaneIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.journey-pane.in { animation: journeyPaneIn 0.5s var(--ease-out) both; }

.journey-pane-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.journey-pane-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.journey-pane-head h4 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.25; }
.journey-pane-tools { display: flex; align-items: center; gap: 18px; flex-shrink: 0; padding-top: 4px; }
.journey-dots { display: flex; align-items: center; gap: 8px; }
.journey-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(138, 104, 64, 0.25);
  transition: background 0.3s, transform 0.3s;
}
.journey-dot:hover { background: var(--gold); }
.journey-dot.on { background: var(--gold-deep); transform: scale(1.3); }
.journey-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(138, 104, 64, 0.3);
  border-radius: 50%;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s, transform 0.45s var(--ease-out);
}
.journey-close:hover { border-color: var(--gold-deep); color: var(--ink); transform: rotate(90deg); }

.journey-pane-lead {
  margin-top: 14px;
  max-width: 64ch;
  color: var(--ink-mid);
  line-height: 1.75;
}

.journey-pane-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 32px);
  margin-top: 28px;
}
.journey-col { border-radius: var(--radius); padding: 22px 24px; }
.journey-col--nos { background: var(--sand-soft); }
.journey-col--voce { border: 1px dashed rgba(138, 104, 64, 0.4); }
.journey-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.journey-col li {
  position: relative;
  padding-left: 26px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.journey-col li + li { margin-top: 10px; }
.journey-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-deep);
  font-weight: 700;
}
.journey-col--nos li::before { content: '✓'; }
.journey-col--voce li::before { content: '→'; }

.journey-entrega {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(190, 155, 115, 0.18), rgba(190, 155, 115, 0.04));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
}
.journey-entrega svg { flex-shrink: 0; margin-top: 4px; color: var(--gold-deep); }
.journey-entrega b { color: var(--gold-deep); }
.journey-entrega em { font-family: var(--font-serif); font-size: 1.08em; }

.journey-pane-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(138, 104, 64, 0.15);
}
.journey-pane-nav { display: flex; align-items: center; gap: 24px; }
.journey-nav-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition: color 0.3s;
}
.journey-nav-btn:hover { color: var(--gold-deep); }

@media (max-width: 860px) {
  .journey--interactive .journey-step { padding-bottom: 4px; }
  .journey-pane-cols { grid-template-columns: 1fr; }
  .journey-pane-foot { flex-direction: column-reverse; align-items: stretch; text-align: center; }
  .journey-pane-foot .btn { text-align: center; }
  .journey-pane-nav { justify-content: space-between; width: 100%; }
  .journey-pane-tools { gap: 12px; }
  .journey-dots { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .journey-detail { transition: none; }
  .journey-pane.in { animation: none; }
  .journey-close, .journey-trigger i { transition: none; }
}

/* Timeline vertical com fio dourado que se desenha (página método) */
.timeline {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  padding-left: clamp(36px, 6vw, 56px);
  z-index: 2;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(190,155,115,0.25);
}
.timeline-wire {
  position: absolute;
  left: 8px;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.8s var(--ease-out);
}
.timeline.wired .timeline-wire { transform: scaleY(1); }

.tl-item { position: relative; padding-bottom: clamp(48px, 7vw, 72px); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(36px, 6vw, 56px) + 3.5px);
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold);
}
.tl-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.tl-item h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--white); margin-bottom: 12px; }
.tl-item p { max-width: 560px; }

/* Mockup CSS "Área do Cliente" */
.mockup {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(190,155,115,0.45);
  background: linear-gradient(160deg, #33465A 0%, var(--navy-deep) 100%);
  padding: 28px;
  max-width: 460px;
  box-shadow: 0 30px 60px -30px rgba(16,23,31,0.7);
  color: var(--white);
}
.mockup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.mockup-top strong { font-size: 0.85rem; color: var(--white); font-weight: 600; }
.mockup-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(190,155,115,0.5);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}
.mockup-stage {
  font-size: 0.78rem;
  color: var(--paper-dim);
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mockup-stage b { color: var(--sand); font-weight: 600; }
.mockup-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  margin-bottom: 24px;
}
.mockup-bar i {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s var(--ease-out) 0.3s;
}
.mockup.on .mockup-bar i { transform: scaleX(1); }
.mockup-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mockup-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(190,155,115,0.35), rgba(190,155,115,0.08));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.mockup.on .mockup-thumb { opacity: 1; transform: none; }
.mockup.on .mockup-thumb:nth-child(1) { transition-delay: 0.5s; }
.mockup.on .mockup-thumb:nth-child(2) { transition-delay: 0.65s; }
.mockup.on .mockup-thumb:nth-child(3) { transition-delay: 0.8s; }
.mockup.on .mockup-thumb:nth-child(4) { transition-delay: 0.95s; }
.mockup-note { font-size: 0.72rem; color: var(--paper-dim); margin-top: 18px; }

/* ── 12. OBRAS — grids e cards ─────────────────────────────── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.work-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(190,155,115,0.4);
  background: var(--navy-deep);
  aspect-ratio: 4 / 3;
  grid-column: span 2;
}
/* Ritmo assimétrico editorial */
.works-grid .work-card:nth-child(6n+1),
.works-grid .work-card:nth-child(6n+2) { grid-column: span 3; aspect-ratio: 16 / 10; }

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.work-card:hover img { transform: scale(1.07); }

.work-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,23,31,0.88) 0%, rgba(16,23,31,0.25) 45%, rgba(16,23,31,0) 70%);
  opacity: 0.85;
  transition: opacity 0.6s;
}
.work-card:hover .work-veil { opacity: 1; }

.work-info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 24px 26px;
  color: var(--white);
  transform: translateY(8px);
  transition: transform 0.6s var(--ease-out);
}
.work-card:hover .work-info { transform: translateY(0); }
.work-info h3 { font-size: 1.12rem; margin: 4px 0 2px; }
.work-meta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}
.work-cta {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--sand);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease-out) 0.08s, transform 0.5s var(--ease-out) 0.08s;
}
.work-card:hover .work-cta { opacity: 1; transform: none; }

.work-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  background: rgba(16,23,31,0.55);
  border: 1px solid rgba(190,155,115,0.55);
  border-radius: 999px;
  padding: 6px 14px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* Placeholder de foto (obra sem imagem) */
.work-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(190,155,115,0.45);
  background:
    linear-gradient(155deg, rgba(190,155,115,0.12) 0%, rgba(190,155,115,0.02) 60%),
    var(--navy-deep);
}

/* Pills de filtro */
.pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.pills-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-right: 6px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px; /* alvo de toque */
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(138,104,64,0.45);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-mid);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.pill:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.pill.on {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.pills-sep { width: 1px; height: 22px; background: rgba(138,104,64,0.3); margin: 0 8px; }

/* Paginação */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(40px, 6vw, 64px);
}
.pagination a, .pagination .current {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(138,104,64,0.35);
  color: var(--ink-mid);
  transition: border-color 0.3s, color 0.3s;
}
.pagination a:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.pagination .current { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* Estado vazio */
.empty-state {
  text-align: center;
  padding: clamp(56px, 9vw, 96px) 24px;
  border: 1px dashed rgba(138,104,64,0.4);
  border-radius: var(--radius-lg);
  color: var(--ink-mid);
  position: relative;
  z-index: 2;
}
.sec--navy .empty-state, .sec--charcoal .empty-state {
  border-color: rgba(190,155,115,0.35);
  color: var(--paper-dim);
}
.empty-state svg { margin: 0 auto 18px; opacity: 0.6; color: var(--gold-deep); }
.sec--navy .empty-state svg, .sec--charcoal .empty-state svg { color: var(--gold); }
.empty-state p { max-width: 420px; margin: 0 auto 22px; }

/* ── 13. OBRA INDIVIDUAL / PAGE HERO ───────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(56px, 8vw, 88px);
  background: radial-gradient(120% 90% at 20% 0%, #35485B 0%, var(--navy) 46%, var(--navy-deep) 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero h1 { max-width: 820px; margin-bottom: 18px; }
.page-hero .lead { color: var(--paper-ink); max-width: 620px; }
.page-hero--tall { padding-bottom: clamp(96px, 12vw, 150px); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.breadcrumb a { color: var(--paper-dim); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-style: normal; color: rgba(190,155,115,0.6); }

.cover-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(190,155,115,0.45);
  margin-top: clamp(-90px, -8vw, -56px);
  position: relative;
  z-index: 3;
  box-shadow: 0 40px 80px -40px rgba(16,23,31,0.55);
  cursor: pointer;
}
.cover-frame img { width: 100%; max-height: 620px; object-fit: cover; }

.factsheet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: clamp(32px, 5vw, 56px) 0;
}
.fact {
  border: 1px solid rgba(138,104,64,0.4);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--white);
}
.fact-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.fact-value { font-weight: 600; font-size: 0.96rem; color: var(--ink); margin-top: 4px; }

.prose {
  max-width: 68ch;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
}
.prose p + p { margin-top: 1.4em; }
.prose strong { color: var(--ink); font-weight: 600; }
/* Subtítulos e listas gerados por blog_formatar() nos posts */
.prose h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--ink);
  margin: 1.8em 0 0.7em;
  line-height: 1.3;
}
.prose h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--ink);
  margin: 1.6em 0 0.6em;
}
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul { list-style: disc; margin: 1.2em 0; padding-left: 1.4em; }
.prose li { margin: 0.5em 0; }
.prose li::marker { color: var(--gold-deep); }

/* ── Entregas emocionantes: texto à esquerda + galeria 3×3 (Admin → Vídeos) ── */
.entregas-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.entregas-texto .lead { max-width: 46ch; }

.entregas-galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.video-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-deep);
  box-shadow: 0 12px 30px rgba(10, 16, 22, 0.35);
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.video-thumb:hover img { transform: scale(1.06); }
.video-thumb-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(232, 224, 212, 0.8);
  background: linear-gradient(160deg, rgba(44, 61, 77, 0.9), rgba(16, 23, 31, 0.95));
}
.video-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(190, 155, 115, 0.94);
  color: var(--charcoal);
  box-shadow: 0 6px 20px rgba(10, 16, 22, 0.45);
  transition: transform 0.35s var(--ease-out);
}
.video-thumb:hover .video-thumb-play { transform: translate(-50%, -50%) scale(1.12); }

/* Modal do vídeo */
.video-modal { position: fixed; inset: 0; z-index: 300; }
.video-modal-back {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 22, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.video-modal-box {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
}
.video-modal-frame {
  width: min(400px, 92vw);
  max-height: 82vh;
  aspect-ratio: 9 / 16;
}
.video-modal--quadrado .video-modal-frame { width: min(460px, 92vw); aspect-ratio: 4 / 5; }
.video-modal--paisagem .video-modal-frame { width: min(880px, 92vw); aspect-ratio: 16 / 9; }
.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.video-modal-titulo {
  font-size: 0.9rem;
  color: var(--sand);
  text-align: center;
  max-width: 520px;
}
.video-modal-x {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232, 224, 212, 0.3);
  border-radius: 50%;
  background: rgba(16, 23, 31, 0.6);
  color: var(--sand);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-x:hover { background: rgba(190, 155, 115, 0.9); color: var(--charcoal); }

@media (max-width: 960px) {
  .entregas-wrap { grid-template-columns: 1fr; }
  .entregas-galeria { max-width: 540px; }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(138,104,64,0.35);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  padding: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(138,104,64,0.35);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.tag-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(138,104,64,0.4);
  color: var(--gold-deep);
}

/* ── 13b. EQUIPE (home) + foto com moldura deslocada ───────── */
.framed-photo {
  position: relative;
  border-radius: var(--radius-lg);
}
.framed-photo::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid rgba(190, 155, 115, 0.55);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 0;
}
.framed-photo img,
.framed-photo .photo-ph {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(190, 155, 115, 0.4);
  object-fit: cover;
}

/* Placeholder de foto em áreas claras */
.photo-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(190, 155, 115, 0.55);
  background:
    linear-gradient(155deg, rgba(190,155,115,0.14) 0%, rgba(190,155,115,0.03) 60%),
    var(--navy-deep);
}
.photo-ph--43  { aspect-ratio: 4 / 3; }
.photo-ph--45  { aspect-ratio: 4 / 5; }
.photo-ph--169 { aspect-ratio: 16 / 9; }

/* ── 13b2. GRADE DE DEPOIMENTOS (home): até 4 cards com fachada ── */
.depo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 980px;
  margin: 44px auto 0;
}
.depo-card {
  display: flex;
  flex-direction: column;
  background: var(--sand-soft);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(10, 16, 22, 0.35);
}
.depo-fachada {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.depo-fachada img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.depo-card:hover .depo-fachada img { transform: scale(1.045); }
.depo-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
  margin: 0;
  padding: 24px 26px 24px;
}
.depo-card-body .depo-stars { color: var(--gold-deep); }
/* especificidade extra: vence o ".sec--navy p" que clareia parágrafos */
.depo-card .depo-card-quote,
.sec--navy .depo-card .depo-card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink-mid);
  flex: 1;
}
.depo-card-quote::before { content: "“"; color: var(--gold-deep); }
.depo-card-quote::after  { content: "”"; color: var(--gold-deep); }
.depo-card-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(44, 61, 77, 0.12);
}
.depo-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.depo-avatar img { width: 100%; height: 100%; object-fit: cover; }
.depo-avatar--inicial {
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 600;
}
.depo-card-nome { display: flex; flex-direction: column; line-height: 1.35; }
.depo-card-nome strong { font-size: 0.92rem; color: var(--ink); font-weight: 600; }
.depo-card-nome span { font-size: 0.76rem; color: var(--ink-mid); }
@media (max-width: 860px) {
  .depo-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── 13c. CARROSSEL DE DEPOIMENTOS ─────────────────────────── */
.depo-carousel {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  z-index: 2;
}
.depo-viewport { overflow: hidden; }
.depo-track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
  touch-action: pan-y;
}
.depo-track.dragging { transition: none; cursor: grabbing; }
.depo-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 8px clamp(8px, 4vw, 48px);
  text-align: center;
  user-select: none;
}
.depo-stars {
  display: inline-flex;
  gap: 5px;
  color: var(--gold-deep);
  margin-bottom: 26px;
}
.sec--navy .depo-stars, .sec--charcoal .depo-stars { color: var(--gold); }
.depo-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.55;
  color: var(--ink);
}
.sec--navy .depo-quote, .sec--charcoal .depo-quote { color: var(--sand); }
.depo-person { margin-top: 28px; }
.depo-person strong { display: block; font-size: 0.95rem; font-weight: 600; }
.depo-person span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.sec--navy .depo-person span { color: var(--gold); }

.depo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}
.depo-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(138, 104, 64, 0.45);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.depo-arrow:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.sec--navy .depo-arrow { border-color: rgba(190,155,115,0.45); color: var(--gold); }
.sec--navy .depo-arrow:hover { background: var(--gold); color: var(--charcoal); }
.depo-dots { display: flex; gap: 2px; }
.depo-dot {
  /* alvo de toque 44px com miolo visual pequeno */
  width: 30px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.depo-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(138, 104, 64, 0.35);
  transition: background-color 0.3s, transform 0.3s;
}
.sec--navy .depo-dot::before { background: rgba(190,155,115,0.35); }
.depo-dot.on::before { background: var(--gold-deep); transform: scale(1.4); }
.sec--navy .depo-dot.on::before { background: var(--gold); }

/* ── 13d. SERVIÇOS — mídia no topo do card ─────────────────── */
.service-card { padding: 0; overflow: hidden; }
.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(190, 155, 115, 0.35);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 61, 77, 0.35);
  opacity: 0;
  transition: opacity 0.6s;
}
.service-card:hover .service-media img { transform: scale(1.06); }
.service-card:hover .service-media::after { opacity: 1; }
.service-media .photo-ph { width: 100%; height: 100%; border: none; border-radius: 0; }
.service-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 4vw, 40px);
  flex: 1;
}

/* ── 13e. SÓCIOS (sobre) ───────────────────────────────────── */
.partner-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.partner-photo {
  aspect-ratio: 4 / 5;
  max-height: 420px;
  overflow: hidden;
  border-bottom: 1px solid rgba(190, 155, 115, 0.35);
}
.partner-photo img { width: 100%; height: 100%; object-fit: cover; }
.partner-photo .photo-ph { width: 100%; height: 100%; border: none; border-radius: 0; }
.partner-body { padding: clamp(24px, 3.5vw, 36px); position: relative; z-index: 2; }
.partner-body h3 { font-size: 1.3rem; margin-bottom: 6px; }
.partner-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.partner-body p:last-child { font-size: 0.92rem; }

/* ── 14. DEPOIMENTOS ───────────────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.quote-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(190,155,115,0.4);
  background: var(--white);
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.5s var(--ease-out);
}
.quote-card:hover { transform: translateY(-6px); }
.quote-card::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  height: 0.35em;
}
.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.quote-who { display: flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(138,104,64,0.5);
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.quote-avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.quote-city { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); }

/* Variante sobre navy */
.sec--navy .quote-card, .sec--charcoal .quote-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 70%);
}
.sec--navy .quote-text, .sec--charcoal .quote-text { color: var(--sand); }
.sec--navy .quote-name, .sec--charcoal .quote-name { color: var(--white); }
.sec--navy .quote-city, .sec--charcoal .quote-city { color: var(--gold); }
.sec--navy .quote-avatar, .sec--charcoal .quote-avatar { background: var(--navy-deep); color: var(--gold); }

/* ── 15. BLOG ──────────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(138,104,64,0.35);
  background: var(--white);
  transition: transform 0.5s var(--ease-out);
}
.post-card:hover { transform: translateY(-6px); }
.post-thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy-deep); }
.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease-out);
}
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-thumb--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(190,155,115,0.45);
  background: linear-gradient(150deg, rgba(190,155,115,0.14), rgba(190,155,115,0.02)), var(--navy-deep);
}
.post-body { padding: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-date {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.post-body h3 { font-size: 1.12rem; line-height: 1.35; }
.post-body p { font-size: 0.88rem; flex: 1; }
.post-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.post-link:hover { color: var(--navy); border-color: var(--navy); }

/* Editoria no cartão */
.post-cat {
  color: var(--navy);
  border-right: 1px solid rgba(138,104,64,0.5);
  padding-right: 8px;
  margin-right: 8px;
}

/* Abas de editoria na listagem */
.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(28px, 4vw, 44px);
  position: relative;
  z-index: 2;
}
.blog-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(138,104,64,0.45);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-mid);
  background: var(--white);
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
.blog-tab span { font-size: 0.72rem; color: var(--gold-deep); }
.blog-tab:hover { border-color: var(--navy); color: var(--navy); }
.blog-tab.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.blog-tab.is-active span { color: var(--gold-soft); }

/* Manchete principal da listagem */
.blog-lead {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(138,104,64,0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.blog-lead:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -40px rgba(16,23,31,0.5); }
.blog-lead-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy-deep); min-width: 0; }
.blog-lead-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-out); }
.blog-lead:hover .blog-lead-media img { transform: scale(1.04); }
.blog-lead-media--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(190,155,115,0.45);
  background: linear-gradient(150deg, rgba(190,155,115,0.14), rgba(190,155,115,0.02)), var(--navy-deep);
}
.blog-lead-text { padding: clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px) 0; min-width: 0; }
.blog-lead-meta {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.blog-lead-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}
.blog-lead-excerpt { font-size: 0.95rem; line-height: 1.75; margin-bottom: 18px; }
.blog-lead .post-link { display: inline-block; }

/* ── 15B. ARTIGO (padrão editorial) ────────────────────────── */
/* Página começa clara: o cabeçalho fixo precisa de fundo desde o topo */
body.top-claro .site-header {
  background: rgba(34, 48, 61, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(190, 155, 115, 0.22);
}

.article {
  background: var(--sand-soft);
  padding: calc(var(--header-h) + clamp(28px, 4vw, 52px)) 0 clamp(56px, 8vw, 88px);
}
.article-col { max-width: 860px; margin-inline: auto; min-width: 0; }

.breadcrumb--light { color: var(--ink-mid); margin-bottom: 22px; }
.breadcrumb--light a { color: var(--ink-mid); }
.breadcrumb--light a:hover { color: var(--gold-deep); }
.breadcrumb--light i { color: var(--gold-deep); }

.article-title {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.article-standfirst {
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-top: 16px;
}

/* Caixa "o que você precisa saber" */
.article-summary {
  border-left: 3px solid var(--gold-deep);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin-top: 28px;
}
.article-summary-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.article-summary ul { list-style: none; display: grid; gap: 10px; }
.article-summary li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}
.article-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-deep);
}

/* Assinatura */
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(138,104,64,0.3);
}
.article-byline-who { display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline; }
.article-author { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.article-dates { font-size: 0.8rem; color: var(--ink-mid); }

/* Compartilhar */
.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(138,104,64,0.3);
}
.article-share-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-right: 4px;
}
.article-share a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(138,104,64,0.45);
  color: var(--navy);
  background: var(--white);
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.article-share a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.article-share-copy {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(138,104,64,0.45);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  transition: background-color 0.25s, color 0.25s;
}
.article-share-copy:hover { background: var(--navy); color: var(--white); }
.article-share-copy.is-copied { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }

/* Capa com legenda e crédito */
.article-cover { margin-top: clamp(26px, 4vw, 38px); }
.article-cover img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(138,104,64,0.3);
}
.article-cover figcaption,
.ed-figure figcaption {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--ink-mid);
  margin-top: 10px;
}
.ed-credito {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--ink-mid);
  opacity: 0.75;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-body { max-width: none; margin-top: clamp(28px, 4vw, 40px); }
.article-body a, .ed-box a {
  color: var(--gold-deep);
  font-weight: 500;
  border-bottom: 1px solid rgba(138,104,64,0.5);
}
.article-body a:hover, .ed-box a:hover { color: var(--navy); border-color: var(--navy); }

/* Componentes editoriais dentro do texto (shortcodes) */
.ed-quote {
  border-left: 3px solid var(--gold-deep);
  padding: 4px 0 4px 24px;
  margin: clamp(28px, 4vw, 40px) 0;
}
.ed-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.45;
  color: var(--ink);
}
.ed-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.ed-leia {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: clamp(26px, 4vw, 36px) 0;
}
.ed-leia span {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.ed-leia a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid rgba(44,61,77,0.35);
}
.ed-leia a:hover { border-color: var(--navy); }

.ed-box {
  background: rgba(190,155,115,0.11); /* claro da marca, destacado do papel */
  border: 1px solid rgba(138,104,64,0.4);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: clamp(26px, 4vw, 36px) 0;
}
.ed-box p { font-size: 0.95rem; line-height: 1.75; color: var(--ink); }

.ed-figure { margin: clamp(28px, 4vw, 40px) 0; }
.ed-figure img { width: 100%; border-radius: var(--radius); border: 1px solid rgba(138,104,64,0.3); }
.ed-legenda-solta { font-size: 0.8rem; color: var(--ink-mid); margin-top: -18px; }

.ed-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  margin: clamp(28px, 4vw, 40px) 0;
}
.ed-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* CTA e tags no fim do artigo */
.article-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 42px);
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
}
.article-cta h2 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); font-weight: 700; margin-bottom: 10px; }
.article-cta p { color: var(--paper-ink); font-size: 0.95rem; line-height: 1.7; margin-bottom: 22px; }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.article-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-mid);
  background: var(--white);
  border: 1px solid rgba(138,104,64,0.35);
  border-radius: 999px;
  padding: 7px 15px;
}

.article-related { padding-top: clamp(48px, 6vw, 72px); }

/* ── 16. FORMULÁRIOS ───────────────────────────────────────── */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: inherit;
}
.field .opt { font-weight: 400; text-transform: none; letter-spacing: 0.02em; opacity: 0.6; }

.input {
  width: 100%;
  font: inherit;
  font-size: 1rem; /* ≥16px: evita zoom automático no iOS */
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(138,104,64,0.4);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
textarea.input { resize: vertical; min-height: 110px; }
.input:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(190,155,115,0.25);
}
.input.is-invalid { border-color: #B4552F; }

/* Inputs dentro de card navy */
.card--navy .input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(190,155,115,0.4);
  color: var(--white);
}
.card--navy .input::placeholder { color: rgba(255,255,255,0.4); }
.card--navy .input:focus { border-color: var(--gold); }
.card--navy select.input option { color: var(--ink); background: var(--white); }

select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BE9B73' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.field-error {
  display: block;
  font-size: 0.76rem;
  color: #B4552F;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.card--navy .field-error { color: #E9A184; }
.field-hint { font-size: 0.76rem; opacity: 0.65; margin-top: 6px; }

.alert {
  border-radius: var(--radius);
  padding: 22px 26px;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  border: 1px solid;
}
.alert--ok  { border-color: rgba(190,155,115,0.6); background: rgba(190,155,115,0.12); }
.alert--err { border-color: rgba(180,85,47,0.5);  background: rgba(180,85,47,0.08); color: #8C3E20; }
.card--navy .alert--ok { color: var(--sand); }

/* ── 17. CTA FINAL ─────────────────────────────────────────── */
.cta-final { text-align: center; position: relative; z-index: 2; }
.cta-final h2 { max-width: 780px; margin: 0 auto 20px; }
.cta-final .lead { max-width: 520px; margin: 0 auto 40px; }

/* ── 18. FOOTER ────────────────────────────────────────────── */
.site-footer {
  position: relative;
  background: radial-gradient(120% 100% at 50% 0%, #1B2632 0%, var(--charcoal) 65%);
  color: var(--paper-ink);
  padding: clamp(64px, 9vw, 104px) 0 0;
  overflow: hidden;
}
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(48px, 7vw, 72px);
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand > p { font-size: 0.88rem; max-width: 340px; color: var(--paper-dim); }
.footer-social { display: flex; gap: 14px; margin-top: 24px; }
.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(190,155,115,0.4);
  color: var(--gold);
  transition: background-color 0.3s, color 0.3s, transform 0.35s var(--ease-out);
}
.footer-social a:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-3px); }

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--paper-dim);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.88rem; color: var(--paper-dim); margin-bottom: 12px; }
.footer-col p strong { color: var(--sand); font-weight: 600; }

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(190,155,115,0.2);
  padding: 26px 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* Botão flutuante WhatsApp — discreto e coerente com a identidade */
.wpp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold);
  box-shadow: 0 12px 32px -8px rgba(16,23,31,0.5);
  transition: transform 0.35s var(--ease-out), background-color 0.35s, color 0.35s;
}
.wpp-float:hover { transform: translateY(-4px); background: var(--gold); color: var(--charcoal); }

/* ── 19. LIGHTBOX ──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16,23,31,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 84vh;
  border-radius: var(--radius);
  border: 1px solid rgba(190,155,115,0.4);
  object-fit: contain;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  color: var(--sand);
  font-size: 2rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(190,155,115,0.35);
  transition: background-color 0.3s, color 0.3s;
  z-index: 2;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold); color: var(--charcoal); }
.lightbox-close { top: 24px; right: 24px; font-size: 1.6rem; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

/* ── 20. SERVIÇOS ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}
.services-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin-inline: auto;
}
.service-card { display: flex; flex-direction: column; }
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold-deep);
  line-height: 1;
}
.card--navy .service-num { color: var(--gold); }
.service-card h3 { font-size: 1.3rem; }
.service-for {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(138,104,64,0.3);
  font-size: 0.85rem;
}
.service-for b {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

/* ── 21. 404 ───────────────────────────────────────────────── */
.notfound {
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: var(--header-h);
}
.notfound-code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(190,155,115,0.55);
}
.notfound h1 { margin: 12px 0 16px; }
.notfound .lead { max-width: 460px; margin: 0 auto 36px; }
.notfound .hero-ctas { justify-content: center; }

/* ── 22. REVEALS / ANIMAÇÃO ────────────────────────────────── */
/* estado oculto só existe com JS ativo (html.js) — sem JS tudo fica visível */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
html.js [data-reveal].in { opacity: 1; transform: none; }

/* ── 23. RESPONSIVO ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid .work-card,
  .works-grid .work-card:nth-child(6n+1),
  .works-grid .work-card:nth-child(6n+2) { grid-column: span 1; aspect-ratio: 4 / 3; }
  .quotes-grid, .posts-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .framed-photo::before { inset: -10px 10px 10px -10px; }
}

@media (max-width: 860px) {
  .blog-lead { grid-template-columns: 1fr; }
  .blog-lead-media { aspect-ratio: 16 / 9; }
  .blog-lead-text { padding: 0 clamp(20px, 5vw, 32px) clamp(24px, 5vw, 32px); }
}

@media (max-width: 620px) {
  .works-grid, .quotes-grid, .posts-grid, .services-grid, .steps-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 20px 8px; }
  .gallery { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .factsheet { grid-template-columns: repeat(2, 1fr); }
  .brand-mark { height: 40px; }
}

/* ── 24. MOVIMENTO REDUZIDO ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; transform: none; }
  html.js [data-reveal] { opacity: 1; transform: none; }
  /* hero capa: sem Ken Burns e barra de progresso cheia, estática */
  .hero-shot.on img { animation: none; transform: none; }
  .timeline-wire { transform: scaleY(1); }
  .mockup .mockup-bar i, .mockup .mockup-thumb { transform: none; opacity: 1; }
  .depo-track { transition: none; }
}

