/* =============================================
   Jefferson Brunhara — Fotografia
   Design: Editorial Luxuoso · Cálido · Em Movimento
   Paleta: Creme, Champanhe, Marrom Quente — Nada Preto
   ============================================= */

/* ── VARIÁVEIS ── */
:root {
  --cream:    #FEFCF7;
  --cream2:   #F7F2E9;
  --gold:     #C9A46C;
  --gold-lt:  #E8D5B0;
  --brown:    #3D2B1F;
  --brown-lt: #7A5C46;
  --taupe:    #B8A898;
  --white:    #FFFFFF;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', 'Helvetica Neue', sans-serif;
  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CURSOR ── */
.cursor { position: fixed; pointer-events: none; z-index: 10000; mix-blend-mode: multiply; }
.cursor-dot {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; position: absolute;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold); border-radius: 50%;
  position: absolute; transform: translate(-50%, -50%);
  opacity: .5; transition: all .12s var(--ease);
}
.cursor.hover .cursor-dot { width: 14px; height: 14px; }
.cursor.hover .cursor-ring { width: 56px; height: 56px; opacity: .2; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 28px 0;
  background: linear-gradient(to bottom, rgba(15,8,4,.58) 0%, rgba(15,8,4,0) 100%);
  transition: padding .5s var(--ease), background .5s var(--ease), box-shadow .5s;
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(254,252,247,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(61,43,31,.06);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-svg { transition: opacity .3s; }
.nav-logo-img { display: block; object-fit: contain; transition: opacity .3s; }

.nav-links { display: flex; list-style: none; gap: 40px; align-items: center; }
.nav-links a {
  font-size: .7rem; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.82); }
.navbar.scrolled .nav-links a { color: var(--brown-lt); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid currentColor !important;
  padding: 8px 24px; border-radius: 0;
}
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--white); margin: 6px 0;
  transition: all .3s var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--brown); }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex;
  align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -8%;
  background: center/cover no-repeat var(--brown);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(61,43,31,.12) 0%, rgba(61,43,31,.05) 45%, rgba(61,43,31,.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 110px; color: var(--white); max-width: 920px;
}
.hero-eyebrow {
  font-size: .65rem; font-weight: 300; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold-lt); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 300; line-height: 1.06;
  letter-spacing: .01em; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; font-weight: 300; }
.hero-sub {
  font-size: .88rem; font-weight: 300; letter-spacing: .1em;
  color: rgba(255,255,255,.7); margin-bottom: 48px;
  max-width: 480px; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 24px; align-items: center; }
.btn-hero {
  font-size: .7rem; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; padding: 14px 38px;
  border: 1px solid rgba(255,255,255,.45); color: var(--white);
  position: relative; overflow: hidden; transition: border-color .35s;
}
.btn-hero::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform .45s var(--ease-out); z-index: 0;
}
.btn-hero:hover { border-color: var(--gold); }
.btn-hero:hover::before { transform: translateX(0); }
.btn-hero span { position: relative; z-index: 1; }
.btn-link {
  font-size: .7rem; font-weight: 300; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 12px;
  transition: color .3s;
}
.btn-link-line { width: 36px; height: 1px; background: rgba(255,255,255,.35); transition: all .4s var(--ease-out); }
.btn-link:hover { color: var(--white); }
.btn-link:hover .btn-link-line { width: 56px; background: var(--gold); }
.hero-scroll {
  position: absolute; right: 56px; bottom: 64px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll-text {
  font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.4); writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0) translateY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1) translateY(0); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0) translateY(52px); transform-origin: bottom; opacity: 0; }
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--gold); padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--serif); font-size: 1rem;
  font-weight: 300; font-style: italic;
  color: var(--cream); padding: 0 44px;
  display: inline-flex; align-items: center; gap: 44px;
}
.marquee-item::after { content: '✦'; font-size: .55rem; opacity: .5; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SOBRE ── */
.sobre { padding: 140px 0; overflow: hidden; background: var(--cream); }
.sobre-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.sobre-visual { position: relative; }
.sobre-img-main { width: 100%; height: 620px; object-fit: cover; }
.sobre-img-secondary {
  position: absolute; bottom: -44px; right: -44px;
  width: 54%; height: 280px; object-fit: cover;
  border: 5px solid var(--cream); z-index: 2;
  box-shadow: 0 16px 48px rgba(61,43,31,.12);
}
.sobre-corner {
  position: absolute; top: -16px; left: -16px;
  width: 100px; height: 100px;
  border-top: 1px solid var(--gold-lt);
  border-left: 1px solid var(--gold-lt);
  z-index: 0;
}
.sobre-eyebrow {
  font-size: .63rem; font-weight: 300; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.sobre-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.sobre h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.15;
  color: var(--brown); margin-bottom: 24px;
}
.sobre h2 em { font-style: italic; color: var(--brown-lt); }
.sobre-text {
  font-size: .93rem; font-weight: 300; line-height: 2;
  color: var(--brown-lt); margin-bottom: 40px;
}
.stats-bar { display: flex; border-top: 1px solid var(--gold-lt); margin-bottom: 44px; }
.stat-cell {
  flex: 1; padding: 22px 0; text-align: center;
  border-right: 1px solid var(--gold-lt);
}
.stat-cell:last-child { border-right: none; }
.stat-n {
  font-family: var(--serif); font-size: 2.2rem;
  font-weight: 300; color: var(--gold); display: block;
}
.stat-l {
  font-size: .6rem; font-weight: 300; letter-spacing: .2em;
  text-transform: uppercase; color: var(--taupe); margin-top: 4px;
}
.btn-text {
  font-size: .7rem; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brown);
  display: inline-flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--gold-lt); padding-bottom: 8px;
  transition: color .3s, gap .35s var(--ease-out);
}
.btn-text::after { content: '→'; transition: transform .35s var(--ease-out); }
.btn-text:hover { color: var(--gold); gap: 22px; }
.btn-text:hover::after { transform: translateX(4px); }

/* ── PORTFOLIO ── */
.portfolio { padding: 120px 0; background: var(--cream2); }
.sec-header {
  text-align: center; max-width: 600px;
  margin: 0 auto 64px; padding: 0 40px;
}
.sec-eyebrow {
  font-size: .63rem; font-weight: 300; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300; line-height: 1.15; color: var(--brown);
}
.sec-title em { font-style: italic; }
.sec-line { width: 36px; height: 1px; background: var(--gold); margin: 18px auto 0; }
.tabs-nav {
  display: flex; justify-content: center; gap: 0;
  border-bottom: 1px solid var(--gold-lt);
  max-width: 1300px; margin: 0 auto 56px;
  padding: 0 56px; overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  font-size: .67rem; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: var(--taupe);
  background: none; border: none; cursor: pointer;
  padding: 14px 28px; position: relative;
  white-space: nowrap; transition: color .3s;
}
.tab-btn::after {
  content: ''; position: absolute; bottom: -1px;
  left: 0; right: 0; height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .4s var(--ease-out);
}
.tab-btn.active, .tab-btn:hover { color: var(--brown); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-panel { display: none; max-width: 1300px; margin: 0 auto; padding: 0 56px; }
.tab-panel.active { display: block; }

/* Wrapper recorta o overflow para mostrar slides parciais */
.swiper-wrap { overflow: hidden; position: relative; }

.swiper-port {
  width: 100%;
  height: min(68vh, 700px);
  overflow: visible !important;
}
.swiper-port .swiper-slide {
  overflow: hidden; cursor: zoom-in; position: relative;
  opacity: .38;
  transform: scale(.96);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.swiper-port .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.swiper-port .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.swiper-port .swiper-slide-active img:hover { transform: scale(1.04); }
.slide-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 80px 36px 32px;
  background: linear-gradient(transparent, rgba(61,43,31,.5));
  color: var(--cream); font-family: var(--serif);
  font-size: 1.1rem; font-style: italic; letter-spacing: .02em;
  opacity: 0; transform: translateY(8px);
  transition: all .45s var(--ease);
}
.swiper-port .swiper-slide-active:hover .slide-cap { opacity: 1; transform: translateY(0); }

/* Setas elegantes */
.sp-prev, .sp-next {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  background: rgba(254,252,247,.88);
  border: none; cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--brown);
  transition: background .3s, color .3s;
  backdrop-filter: blur(6px);
}
.sp-prev { left: 24px; }
.sp-next { right: 24px; }
.sp-prev:hover, .sp-next:hover { background: var(--gold); color: var(--white); }

/* Paginação abaixo do slide */
.sp-pagination {
  display: flex; justify-content: center; gap: 8px;
  padding: 20px 0 0;
}
.sp-pagination .swiper-pagination-bullet {
  width: 24px; height: 2px; border-radius: 0;
  background: var(--gold-lt); opacity: 1;
  transition: background .3s, width .3s;
}
.sp-pagination .swiper-pagination-bullet-active {
  background: var(--gold); width: 40px;
}
.empty-portfolio {
  height: 380px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1px dashed var(--gold-lt); gap: 8px;
}
.empty-portfolio .ep-title { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--taupe); }
.empty-portfolio .ep-sub { font-size: .75rem; letter-spacing: .1em; color: var(--gold-lt); }

/* ── NÚMEROS (strip escuro) ── */
.strip-nums { background: var(--brown); padding: 80px 0; }
.strip-nums-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 80px;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-left: 1px solid rgba(255,255,255,.07);
}
.sn-item {
  padding: 0 48px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.sn-num {
  font-family: var(--serif); font-size: 3rem;
  font-weight: 300; color: var(--gold); display: block;
}
.sn-lbl {
  font-size: .6rem; font-weight: 300; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(254,252,247,.35);
  margin-top: 8px; display: block;
}

/* ── DEPOIMENTOS ── */
.deps { padding: 140px 0; background: var(--cream); position: relative; overflow: hidden; }
.deps::before {
  content: '"'; font-family: var(--serif);
  font-size: 38rem; line-height: .72; color: var(--cream2);
  position: absolute; top: -40px; left: -20px;
  z-index: 0; pointer-events: none;
}
.deps-inner { max-width: 860px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }
.dep-slide { text-align: center; padding: 20px 48px; }
.dep-stars { color: var(--gold); font-size: .85rem; letter-spacing: 7px; margin-bottom: 32px; display: block; }
.dep-text {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300; font-style: italic; line-height: 1.75;
  color: var(--brown); margin-bottom: 32px;
}
.dep-name {
  font-size: .65rem; font-weight: 400; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
}
.dep-svc { font-size: .75rem; color: var(--taupe); margin-top: 4px; }
.dep-swiper .swiper-pagination-bullet { background: var(--taupe); opacity: .3; }
.dep-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

/* ── PREÇOS ── */
.precos { padding: 120px 0; background: var(--cream2); }
.precos-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 80px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 28px;
}
.pc {
  background: var(--white); padding: 52px 40px; position: relative;
  overflow: hidden; transition: transform .4s var(--ease-out), box-shadow .4s;
  box-shadow: 0 2px 24px rgba(61,43,31,.05);
}
.pc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform .45s var(--ease-out);
}
.pc:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(61,43,31,.1); }
.pc:hover::after { transform: scaleX(1); }
.pc.destaque { background: var(--brown); }
.pc-badge {
  position: absolute; top: 24px; right: 24px;
  font-size: .58rem; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: var(--white);
  background: var(--gold); padding: 5px 14px;
}
.pc-title {
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 300; margin-bottom: 12px;
}
.pc.destaque .pc-title { color: var(--cream); }
.pc-valor {
  font-family: var(--serif); font-size: 2.4rem;
  font-weight: 300; color: var(--gold); line-height: 1; margin: 18px 0;
}
.pc-desc { font-size: .88rem; font-weight: 300; line-height: 1.8; color: var(--brown-lt); margin-bottom: 24px; }
.pc.destaque .pc-desc { color: rgba(254,252,247,.55); }
.pc-items { list-style: none; margin-bottom: 36px; }
.pc-items li {
  font-size: .87rem; font-weight: 300; padding: 8px 0;
  border-bottom: 1px solid rgba(184,168,152,.12);
  display: flex; align-items: center; gap: 10px; color: var(--brown-lt);
}
.pc.destaque .pc-items li { color: rgba(254,252,247,.65); border-color: rgba(254,252,247,.07); }
.pc-items li::before { content: '—'; color: var(--gold); font-size: .75rem; }
.btn-pc {
  display: block; text-align: center;
  font-size: .68rem; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; padding: 14px;
  border: 1px solid var(--gold-lt); color: var(--brown);
  position: relative; overflow: hidden; transition: color .35s;
}
.pc.destaque .btn-pc { border-color: rgba(201,164,108,.3); color: var(--cream); }
.btn-pc::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateY(101%);
  transition: transform .4s var(--ease-out); z-index: 0;
}
.btn-pc span { position: relative; z-index: 1; }
.btn-pc:hover { color: var(--white); }
.btn-pc:hover::before { transform: translateY(0); }

/* ── CONTATO ── */
.contato { padding: 140px 0; background: var(--cream); }
.contato-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
}
.contato-foto { position: relative; }
.contato-foto img { width: 100%; height: 520px; object-fit: cover; }
.contato-badge-round {
  position: absolute; bottom: -24px; right: -24px;
  width: 130px; height: 130px; background: var(--gold);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 12px;
  animation: spin-slow 20s linear infinite;
}
.contato-badge-round span {
  font-family: var(--serif); font-size: .88rem;
  font-style: italic; color: var(--white); line-height: 1.3;
}
@keyframes spin-slow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.contato-badge-round span { animation: spin-slow-reverse 20s linear infinite; }
@keyframes spin-slow-reverse { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }

.contato-form h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 12px; color: var(--brown);
}
.contato-form p {
  font-size: .88rem; font-weight: 300; color: var(--brown-lt);
  margin-bottom: 40px; line-height: 1.85;
}
.fld { margin-bottom: 20px; position: relative; }
.fld label {
  display: block; font-size: .6rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--taupe);
  margin-bottom: 8px; transition: color .3s;
}
.fld:focus-within label { color: var(--gold); }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: 11px 0; background: transparent;
  border: none; border-bottom: 1px solid var(--gold-lt);
  font-family: var(--sans); font-size: .9rem; font-weight: 300;
  color: var(--brown); outline: none; transition: border-color .3s;
  -webkit-appearance: none;
}
.fld select option { background: var(--cream); color: var(--brown); }
.fld textarea { height: 70px; resize: none; }
.fld::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .45s var(--ease-out);
}
.fld:focus-within::after { width: 100%; }
.btn-enviar {
  margin-top: 28px;
  font-size: .7rem; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; padding: 15px 44px;
  background: var(--brown); color: var(--cream);
  border: 1px solid var(--brown); cursor: pointer;
  font-family: var(--sans); position: relative; overflow: hidden;
  transition: border-color .35s;
}
.btn-enviar::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform .45s var(--ease-out); z-index: 0;
}
.btn-enviar span { position: relative; z-index: 1; }
.btn-enviar:hover { border-color: var(--gold); }
.btn-enviar:hover::before { transform: translateX(0); }
.form-ok {
  display: none; margin-top: 18px;
  font-family: var(--serif); font-style: italic;
  font-size: .95rem; color: var(--brown-lt);
  padding: 12px 0; border-bottom: 1px solid var(--gold-lt);
}
.wa-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 28px;
  font-size: .68rem; font-weight: 300; letter-spacing: .18em;
  text-transform: uppercase; color: var(--taupe); transition: color .3s;
}
.wa-link:hover { color: #3EB54B; }
.wa-link svg { transition: transform .3s; }
.wa-link:hover svg { transform: scale(1.12); }

/* ── FOOTER ── */
footer {
  background: var(--brown); padding: 52px 80px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 300; font-style: italic; color: rgba(254,252,247,.5);
}
.footer-copy {
  font-size: .65rem; font-weight: 300; letter-spacing: .15em;
  color: rgba(254,252,247,.25); text-align: center;
}
.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(254,252,247,.3);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--gold); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(254,252,247,.97); z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 86vh; object-fit: contain; box-shadow: 0 32px 80px rgba(61,43,31,.15); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none;
  cursor: pointer; color: var(--taupe); transition: color .3s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-close { top: 36px; right: 48px; font-size: 1.8rem; }
.lb-prev { left: 28px; top: 50%; transform: translateY(-50%); font-size: 2.2rem; }
.lb-next { right: 28px; top: 50%; transform: translateY(-50%); font-size: 2.2rem; }

/* ── REVEAL CLASSES (GSAP) ── */
.g-fade { opacity: 0; }
.g-up { opacity: 0; transform: translateY(40px); }
.g-left { opacity: 0; transform: translateX(-40px); }
.g-right { opacity: 0; transform: translateX(40px); }
.g-scale { opacity: 0; transform: scale(.94); }
.g-clip { clip-path: inset(0 100% 0 0); }

/* ── GALERIA ── */
/* ── GALERIA PRÉVIA (index) ── */
.galeria-preview { padding: 100px 0; background: var(--cream2); }
.galeria-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 10px;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.galeria-preview-item {
  display: block; overflow: hidden; position: relative;
  background: var(--cream);
}
.galeria-preview-item:first-child {
  grid-row: 1 / 3;
}
.galeria-preview-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.galeria-preview-item:hover img { transform: scale(1.06); }
.galeria-preview-over {
  position: absolute; inset: 0;
  background: rgba(61,43,31,.0);
  transition: background .4s;
}
.galeria-preview-item:hover .galeria-preview-over {
  background: rgba(61,43,31,.18);
}

/* Botão ver galeria */
.btn-galeria {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .82rem; font-weight: 300;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--dark); text-decoration: none;
  border-bottom: 1px solid var(--gold); padding-bottom: 4px;
  transition: color .3s, gap .3s;
}
.btn-galeria:hover { color: var(--gold); gap: 16px; }

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 32px; }
  .sobre-inner, .contato-inner, .strip-nums-inner { padding: 0 40px; }
  .galeria-grid { padding: 0 24px; columns: 3 160px; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }

  /* Navbar */
  .navbar { padding: 18px 0; }
  .navbar.scrolled { padding: 12px 0; }
  .nav-inner { padding: 0 20px; }
  .nav-logo-svg { height: 44px !important; }
  .nav-logo-img { height: 36px !important; }
  .hamburger { display: block; }
  .hamburger span { background: var(--white); }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(254,252,247,.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 24px 20px;
    gap: 0; box-shadow: 0 20px 48px rgba(61,43,31,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--gold-lt); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { color: var(--brown) !important; font-size: .75rem; padding: 14px 0; display: block; }
  .nav-cta { border: none !important; padding: 14px 0 !important; }

  /* Hero */
  .hero-content { padding: 0 20px 80px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-sub { font-size: .82rem; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-scroll { display: none; }

  /* Sobre */
  .sobre { padding: 80px 0; }
  .sobre-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .sobre-img-secondary { display: none; }
  .sobre-img-main { height: 320px; }
  .sobre-corner { display: none; }
  .stats-bar { flex-wrap: wrap; }
  .stat-cell { flex: 0 0 50%; border-bottom: 1px solid var(--gold-lt); }
  .stat-cell:nth-child(odd) { border-right: 1px solid var(--gold-lt); }
  .stat-cell:last-child { border-right: none; }

  /* Portfolio */
  .portfolio { padding: 72px 0; }
  .tabs-nav { padding: 0 16px; gap: 0; }
  .tab-btn { padding: 12px 12px; font-size: .6rem; letter-spacing: .12em; }
  .tab-panel { padding: 0 0; }
  .swiper-port { height: min(62vw, 380px); }
  .swiper-wrap { border-radius: 0; }
  .sp-prev { left: 8px; width: 36px; height: 36px; font-size: .9rem; }
  .sp-next { right: 8px; width: 36px; height: 36px; font-size: .9rem; }

  /* Números */
  .strip-nums { padding: 52px 0; }
  .strip-nums-inner { grid-template-columns: repeat(2,1fr); padding: 0 20px; }
  .sn-item { padding: 20px 12px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .sn-num { font-size: 2.4rem; }

  /* Depoimentos */
  .deps { padding: 80px 0; }
  .deps::before { font-size: 16rem; top: -20px; }
  .deps-inner { padding: 0 20px; }
  .dep-slide { padding: 12px 4px; }
  .dep-text { font-size: 1.15rem; }

  /* Galeria prévia */
  .galeria-preview { padding: 72px 0; }
  .galeria-preview-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,180px); padding: 0 16px; }
  .galeria-preview-item:first-child { grid-row: 1 / 3; }

  /* Contato */
  .contato { padding: 80px 0; }
  .contato-inner { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .contato-foto { order: 2; }
  .contato-form { order: 1; padding: 0 20px 48px; }
  .contato-foto img { height: 340px; }
  .contato-badge-round { width: 88px; height: 88px; right: 12px; bottom: -18px; }
  .contato-badge-round span { font-size: .72rem; }

  /* Footer */
  footer { padding: 40px 20px; flex-direction: column; text-align: center; gap: 16px; }
  .footer-nav { justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* Lightbox */
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 16px; right: 16px; }
}

@media (max-width: 420px) {
  .nav-logo-svg { height: 36px !important; }
  .hero h1 { font-size: 2.1rem; }
  .btn-hero { padding: 13px 28px; }
  .sobre-img-main { height: 260px; }
  .stat-cell { flex: 0 0 100%; border-right: none !important; }
  .galeria-preview-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,140px); }
  .galeria-preview-item:first-child { grid-row: 1 / 3; }
  .dep-slide { padding: 8px 0; }
}
