@charset "UTF-8";

/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ══════════════════════════════════════════════════════════
   1. RESET & TOKENS
   ══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores */
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dim:    rgba(201, 168, 76, 0.14);
  --gold-border: rgba(201, 168, 76, 0.22);
  --black:  #080808;
  --dark:   #101010;
  --dark-2: #181818;
  --dark-3: #1e1d1d;

  /* Textos */
  --text-primary:   #f0ece4;
  --text-secondary: #ccc7bc;
  --text-muted:     #8a867e;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max-w:    1100px;
  --nav-h:    68px;
  --section-py: 72px;

  /* Borda dourada para imagens */
  --img-border: 1px solid var(--gold-border);
  --img-shadow: 0 4px 32px rgba(201, 168, 76, 0.10);
}

/* ══════════════════════════════════════════════════════════
   2. BASE
   ══════════════════════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.78;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ══════════════════════════════════════════════════════════
   3. UTILITÁRIOS
   ══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto;
  flex-shrink: 0;
}

.divider--left {
  margin-left: 0;
}

/* ── Botões ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.22);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-ghost::after {
  content: '→';
  font-size: 15px;
  transition: transform 0.25s ease;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--text-primary);
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* Botão voltar ao início (usado na página sobre.html) */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-back::before {
  content: '←';
  font-size: 15px;
  transition: transform 0.25s ease;
}

.btn-back:hover,
.btn-back:focus-visible {
  color: var(--gold);
  gap: 14px;
}

.btn-back:hover::before {
  transform: translateX(-4px);
}

/* ══════════════════════════════════════════════════════════
   4. BORDA DOURADA EM IMAGENS
   ══════════════════════════════════════════════════════════ */

/* Hero */
.hero-image-frame {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  animation: fadeIn 1s 0.35s ease both;
  border: var(--img-border);
  box-shadow: var(--img-shadow);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%) contrast(1.06);
}

.hero-image-frame .placeholder-img {
  width: 100%;
  height: 100%;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid var(--gold-border);
  z-index: -1;
  pointer-events: none;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.38) 0%, transparent 55%);
  pointer-events: none;
}

/* Galeria */
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  aspect-ratio: 4/3;
  border: var(--img-border);
  box-shadow: var(--img-shadow);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 6px 40px rgba(201, 168, 76, 0.18);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.06);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.48) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Processo */
.process-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark-2);
  border: var(--img-border);
  box-shadow: var(--img-shadow);
}

.process-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%);
}

/* Objeção */
.objection-image-frame {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: var(--dark-2);
  border: var(--img-border);
  box-shadow: var(--img-shadow);
}

.objection-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%);
}

.objection-image-frame::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -10px;
  top: 10px;
  right: 10px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  z-index: -1;
}

/* ══════════════════════════════════════════════════════════
   5. NAVEGAÇÃO
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
  transition: background 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1;
}

.nav-logo span {
  font-style: italic;
  font-weight: 300;
}

.nav-links {
  display: none;
  gap: 36px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  padding: 32px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform 0.32s ease, opacity 0.32s ease, visibility 0s 0.32s;
  z-index: 199;
}

.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s, padding-left 0.2s;
}

.nav-mobile a:hover  { color: var(--gold-light); padding-left: 6px; }
.nav-mobile a:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════════
   6. HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 45%, rgba(201, 168, 76, 0.055) 0%, transparent 70%),
    linear-gradient(160deg, #0e0d0d 0%, var(--black) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.18), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  width: 100%;
  padding: 56px 0 72px;
}

.hero-image { order: -1; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 66px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 440px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.18s ease both;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.24s ease both;
}

.hero-tags span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 7px 14px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* ══════════════════════════════════════════════════════════
   7. TÍTULOS DE SEÇÃO
   ══════════════════════════════════════════════════════════ */
.section-header {
  margin-bottom: 52px;
}

.section-header--center {
  text-align: center;
}

.section-header h2,
section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 50px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-primary);
}

.section-header h2 em,
section h2 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 14px;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════════
   8. GALERIA
   ══════════════════════════════════════════════════════════ */
#galeria {
  background: var(--dark);
  padding: var(--section-py) 0;
  background-image: radial-gradient(ellipse 80% 40% at 50% 100%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-placeholder-icon {
  width: 36px;
  height: 36px;
  opacity: 0.22;
}

.gallery-placeholder-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
}

.gallery-placeholder-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   9. PROCESSO
   ══════════════════════════════════════════════════════════ */
#processo {
  background: var(--black);
  background-image: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(201, 168, 76, 0.035) 0%, transparent 70%);
  padding: var(--section-py) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.process-intro {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 400px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  min-width: 30px;
  padding-top: 1px;
  flex-shrink: 0;
}

.step-text strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.68;
}

.process-image { position: relative; }

.process-quote {
  position: absolute;
  bottom: 24px;
  right: 0;
  left: 20px;
  background: rgba(18, 17, 17, 0.94);
  border-left: 2px solid var(--gold);
  padding: 18px 22px;
  backdrop-filter: blur(8px);
}

.process-quote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   10. SERVIÇOS
   ══════════════════════════════════════════════════════════ */
#servicos {
  background: var(--dark);
  padding: var(--section-py) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.service-card {
  position: relative;
  background: var(--dark-2);
  padding: 36px 28px;
  border-bottom: 2px solid transparent;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(201, 168, 76, 0.12);
}

.service-card:hover {
  border-bottom-color: var(--gold);
  background: var(--dark-3);
}

.service-icon {
  font-size: 26px;
  display: block;
  margin-bottom: 18px;
  opacity: 0.8;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ══════════════════════════════════════════════════════════
   11. QUEBRA DE OBJEÇÃO
   ══════════════════════════════════════════════════════════ */
#por-que {
  background: var(--black);
  padding: var(--section-py) 0;
}

.objection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}

.objection-content h2  { margin-bottom: 14px; }

.objection-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 460px;
}

.objection-content p + p { margin-top: 16px; }

/* ══════════════════════════════════════════════════════════
   12. CTA FINAL
   ══════════════════════════════════════════════════════════ */
#contato {
  background: linear-gradient(160deg, #111010 0%, #0c0b0b 100%);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(201, 168, 76, 0.055) 0%, transparent 70%);
  pointer-events: none;
}

#contato::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.25), transparent);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(36px, 7vw, 60px);
  margin-bottom: 18px;
}

.cta-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 44px;
}

/* ══════════════════════════════════════════════════════════
   13. SOBRE MIM — página sobre.html
   ══════════════════════════════════════════════════════════ */
#sobre {
  background: var(--dark);
  padding: var(--section-py) 0;
  background-image: radial-gradient(ellipse 60% 50% at 100% 50%, rgba(201, 168, 76, 0.035) 0%, transparent 70%);
}

.sobre-intro-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.82;
  max-width: 700px;
  margin-bottom: 56px;
}

.sobre-blocos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.sobre-item {
  border-top: 1px solid var(--gold-border);
  padding-top: 32px;
}

.sobre-item h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sobre-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
}

.sobre-quote {
  margin-top: 64px;
  padding: 40px 36px;
  background: var(--dark-2);
  border-left: 2px solid var(--gold);
  max-width: 720px;
}

.sobre-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 16px;
}

.sobre-quote p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}

/* Barra de retorno (topo da página sobre.html) */
.sobre-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--nav-h) + 32px) 0 0;
  margin-bottom: 56px;
}

/* ══════════════════════════════════════════════════════════
   14. RODAPÉ
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  order: 3;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   15. ANIMAÇÕES
   ══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   16. RESPONSIVIDADE — Tablet (≥ 640px)
   ══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --section-py: 88px; }

  .container { padding: 0 32px; }

  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .sobre-blocos-grid  { grid-template-columns: repeat(2, 1fr); gap: 40px 48px; }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 36px 40px;
  }

  .footer-copy { order: unset; }
}

/* ══════════════════════════════════════════════════════════
   17. RESPONSIVIDADE — Desktop (≥ 900px)
   ══════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  :root { --section-py: 110px; }

  .container { padding: 0 40px; }
  .nav       { padding: 0 48px; }

  .nav-toggle { display: none; }
  .nav-links  { display: flex; align-items: center; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 0 96px;
  }

  .hero-image { order: unset; }

  .hero-image-frame {
    aspect-ratio: 3/4;
    max-height: 600px;
  }

  /* Galeria */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
  }

  .gallery-item               { aspect-ratio: 3/4; }
  .gallery-item:nth-child(1)  { grid-column: 1; grid-row: 1 / 3; aspect-ratio: unset; }
  .gallery-item:nth-child(2)  { grid-column: 2; grid-row: 1; }
  .gallery-item:nth-child(3)  { grid-column: 3; grid-row: 1; }
  .gallery-item:nth-child(4)  { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(5)  { grid-column: 3; grid-row: 2; }

  /* Processo */
  .process-grid    { grid-template-columns: 1fr 1fr; gap: 96px; }
  .process-quote   { left: auto; right: -16px; max-width: 270px; }

  /* Serviços */
  .services-grid   { grid-template-columns: repeat(3, 1fr); }

  /* Objeção */
  .objection-grid  { grid-template-columns: 1fr 1fr; gap: 96px; }

  /* Sobre */
  .sobre-blocos-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 56px; }
}

/* ══════════════════════════════════════════════════════════
   18. RESPONSIVIDADE — Wide (≥ 1200px)
   ══════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .nav { padding: 0 60px; }
}

/* ══════════════════════════════════════════════════════════
   19. REDUÇÃO DE MOVIMENTO
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}