/* ============================================
   GREPPA INTERIORES
   Premium One Page | Apple Premium + Lenis
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --primary:   #070707;
  --secondary: #f4f4f2;
  --accent:    #c8a45d;
  --gold:      #c8a45d;
  --gold-dark: #8c6a2f;
  --gold-light:#f1d99a;
  --white:     #ffffff;
  --soft-bg:   #eeeeec;
  --text:      #121212;
  --muted:     #6f6f6a;
  --card:      #ffffff;
  --border:    rgba(7,7,7,.14);
  --brand-cream: #f6f4f0;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Manrope', system-ui, sans-serif;
  --shadow:    0 2px 12px rgba(7,7,7,.08);
  --shadow-md: 0 8px 32px rgba(7,7,7,.14);
  --warm-grad: linear-gradient(145deg, #070707 0%, #2b2b29 48%, #c8a45d 130%);
  --warm-soft-grad: radial-gradient(circle at 16% 14%, rgba(200,164,93,.18), transparent 32%), linear-gradient(150deg, #151515 0%, #343431 58%, #c8a45d 125%);
  --dark-grad: linear-gradient(135deg, #050505 0%, #232321 54%, #090909 100%);
  --card-grad: linear-gradient(145deg, #ffffff 0%, #f4f4f2 52%, #ddddda 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  background: var(--soft-bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── Typography ─────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--primary);
}
h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}
p { font-size: .93rem; line-height: 1.78; color: var(--muted); }

/* ─── Layout ─────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); }
.section-pad { padding: clamp(5rem,8vw,8rem) 0; }

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 100px;
  transition: background .3s, color .3s, transform .2s, box-shadow .3s;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--dark-grad);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,16,12,.35);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(200,164,93,.12);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ─── LOADING SCREEN ─────────────────────── */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--brand-cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .5s;
}
.loading-logo-img {
  width: 200px; opacity: .95;
  filter: none;
}
.loading-bar-track {
  width: 160px; height: 1px;
  background: rgba(200,164,93,.2);
  position: relative; overflow: hidden;
}
.loading-bar-fill {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0%;
  background: var(--gold); transition: width .08s;
}
.loading-pct { font-size: .68rem; color: rgba(7,7,7,.68); letter-spacing: .1em; }

/* ─── REVEAL OVERLAY ─────────────────────── */
#reveal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--brand-cream);
  clip-path: circle(150% at 50% 50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
#reveal-overlay img {
  width: 200px; opacity: 0;
  filter: none;
}

/* ─── HEADER ─────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: background .4s, padding .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
  background: rgba(246,244,240,.96);
}
#header.scrolled {
  background: rgba(246,244,240,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .85rem 0;
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(27,16,12,.07);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.logo-light {
  height: 88px; width: auto; display: block;
  filter: brightness(0) sepia(1) saturate(4) hue-rotate(5deg) brightness(0.7);
}
.logo-dark  { height: 88px; width: auto; display: none;
  filter: brightness(0) sepia(1) saturate(4) hue-rotate(5deg) brightness(0.7); }
#header.scrolled .logo-light { display: none; }
#header.scrolled .logo-dark  { display: block; filter: none; }

nav.header-nav { display: flex; align-items: center; gap: 1.6rem; }
nav.header-nav a {
  font-size: .74rem; font-weight: 500;
  letter-spacing: .06em;
  color: rgba(7,7,7,.82);
  transition: color .3s;
}
nav.header-nav a:hover { color: var(--gold-light); }
#header .btn-primary { white-space: nowrap; }
#header.scrolled nav.header-nav a { color: rgba(7,7,7,.78); }
#header.scrolled nav.header-nav a:hover { color: var(--gold-light); }
#header.scrolled .btn-primary { background: var(--primary); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.hamburger span { display: block; height: 1.5px; background: var(--primary); transition: all .3s; transform-origin: center; }
#header.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--brand-cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.8rem;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(1.8rem,5vw,2.6rem);
  font-weight: 300; color: var(--primary); transition: color .3s;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .mobile-cta {
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--primary); color: var(--white);
  padding: .85rem 2.2rem; border-radius: 100px; margin-top: 1rem;
  transition: background .3s;
}
.mobile-nav .mobile-cta:hover { background: var(--dark-grad); }

/* ─── HERO ───────────────────────────────── */
.hero-sequence { position: relative; height: 250vh; }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-mobile-editorial { display: none; }

@media (max-width: 767px) {
  .hero-sequence { height: 360vh; height: 360svh; }

  .hero-mobile-editorial { display: none !important; }
}

.hero-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 34%, rgba(0,0,0,.20) 62%, rgba(0,0,0,.04) 100%),
    linear-gradient(to top, rgba(0,0,0,.68) 0%, rgba(0,0,0,.24) 46%, rgba(0,0,0,.06) 100%);
}

.hero-content {
  position: absolute;
  bottom: clamp(5rem, 10vh, 9rem);
  left: clamp(1.8rem, 5vw, 5rem);
  max-width: min(42vw, 540px);
  z-index: 10;
}

.hero-label {
  display: flex; align-items: center; gap: .6rem;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.4rem;
}
.hero-label::before {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: 0;
  color: var(--white); margin-bottom: 1rem;
  text-shadow: 0 3px 24px rgba(0,0,0,.82), 0 1px 8px rgba(0,0,0,.72);
}
.hero-h1 em { font-style: italic; display: block; color: var(--gold-light); }

.hero-label { text-shadow: 0 1px 8px rgba(0,0,0,.5); }

.hero-sub {
  font-size: .9rem; line-height: 1.75;
  color: rgba(255,255,255,.94); margin-bottom: 1.8rem;
  max-width: 380px;
  text-shadow: 0 2px 12px rgba(0,0,0,.74);
}

.hero-actions {
  display: flex; align-items: center;
  gap: .75rem; flex-wrap: nowrap;
}
.hero-actions .btn {
  padding: .72rem 1.5rem;
  font-size: .7rem; letter-spacing: .1em;
  white-space: nowrap;
}

.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.35); font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; z-index: 10;
}
.scroll-line { width: 1px; height: 36px; background: rgba(200,164,93,.22); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:100%} }

/* ─── QUEM SOMOS ─────────────────────────── */
.quem-section { background: var(--white); }
.sobre-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(200,164,93,.24), transparent 28%),
    radial-gradient(circle at 82% 42%, rgba(255,255,255,.10), transparent 30%),
    radial-gradient(circle at 50% 110%, rgba(200,164,93,.16), transparent 34%),
    linear-gradient(135deg, #050505 0%, #161614 42%, #2c2b27 70%, #0a0a09 100%);
  position: relative; overflow: hidden;
}
.sobre-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(200,164,93,.10), transparent 34%, rgba(255,255,255,.04) 68%, rgba(200,164,93,.08)),
    repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px);
  opacity: .55;
  pointer-events: none;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.proc-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(200,164,93,.34);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,244,242,.94));
  box-shadow: 0 18px 48px rgba(7,7,7,.10), 0 0 0 1px rgba(200,164,93,.10);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.proc-card:hover { transform: translateY(-5px); border-color: rgba(200,164,93,.78); box-shadow: 0 24px 58px rgba(7,7,7,.14), 0 0 0 1px rgba(200,164,93,.22); }
.proc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(200,164,93,.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.proc-card h3 { margin-bottom: .1rem; color: var(--primary); }
.proc-card p  { font-size: .83rem; flex: 1; color: rgba(27,16,12,.72); }


/* ─── MARQUEE ───────────────────────────── */
.marquee-section {
  background:
    linear-gradient(135deg, #f1d99a 0%, #c8a45d 42%, #9c772f 100%);
  padding: 1.2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(7,7,7,.16);
  border-bottom: 1px solid rgba(7,7,7,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), inset 0 -1px 0 rgba(0,0,0,.18);
}
.marquee-outer { display: flex; overflow: hidden; }
.marquee-content {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem; flex-shrink: 0;
  animation: marqueeScroll 50s linear infinite; white-space: nowrap;
}
.marquee-content.rev { animation-name: marqueeScrollRev; }
.marquee-content span {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #070707;
}
.marquee-content .dot { color: #070707; font-size: .45rem; opacity: .72; }
@keyframes marqueeScroll    { 0%{transform:translateX(0)}    100%{transform:translateX(-50%)} }
@keyframes marqueeScrollRev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}    }
/* ─── PROJETOS ───────────────────────────── */
.projetos-section {
  background:
    var(--warm-grad);
  position: relative;
  overflow: hidden;
}
.projetos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: .12;
  pointer-events: none;
}
.projetos-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,93,.5), transparent);
}
.projetos-section > .container {
  position: relative;
  z-index: 2;
}
.projetos-dot-grid {
  z-index: 1;
  opacity: .42;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at 48% 54%, rgba(0,0,0,.86) 0%, rgba(0,0,0,.58) 58%, transparent 100%);
  mask-image: radial-gradient(ellipse at 48% 54%, rgba(0,0,0,.86) 0%, rgba(0,0,0,.58) 58%, transparent 100%);
}
.projetos-section .label { color: var(--gold); margin-bottom: 1rem; }
.projetos-section h2 { color: var(--white); max-width: 640px; margin-bottom: 1rem; }
.projetos-intro { color: rgba(255,255,255,.72); max-width: 600px; margin-bottom: 2rem; }

.projetos-filter-bar {
  display: flex;
  align-items: center;
  gap: .3rem;
  width: min(100%, 880px);
  min-height: 54px;
  padding: .32rem;
  margin-bottom: 2.6rem;
  border: 1px solid rgba(200,164,93,.28);
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 52px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow-x: auto;
  scrollbar-width: none;
}
.projetos-filter-bar::-webkit-scrollbar { display: none; }

.project-filter {
  position: relative;
  flex: 1 0 auto;
  min-height: 42px;
  padding: .72rem 1rem;
  border-radius: 100px;
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .25s, background .25s, box-shadow .25s, transform .25s;
  isolation: isolate;
}
.project-filter::before,
.project-filter::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200,164,93,.95);
  box-shadow: 0 0 8px rgba(200,164,93,.9), 0 0 16px rgba(244,236,231,.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s, transform .36s;
}
.project-filter::before { top: 12px; right: 22%; }
.project-filter::after  { left: 18%; bottom: 10px; transform: scale(.7); }
.project-filter:hover,
.project-filter.is-active {
  color: var(--white);
  background: rgba(27,16,12,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.project-filter:hover { transform: translateY(-1px); }
.project-filter:hover::before,
.project-filter:hover::after,
.project-filter.is-active::before,
.project-filter.is-active::after {
  opacity: .9;
}
.project-filter:hover::before { transform: translate(8px, -8px); }
.project-filter:hover::after  { transform: translate(-8px, 7px) scale(1); }

.carousel-nav-bar {
  display: flex;
  justify-content: flex-end;
  gap: .6rem;
  margin-bottom: 1.2rem;
}
.carousel-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .15s;
}
.carousel-arrow:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.08); }
.carousel-arrow:disabled { opacity: .3; cursor: default; transform: none; }

.espaco-grid.project-carousel {
  display: block;
  width: calc(100vw - 12px);
  margin: 0 calc(50% - 50vw + 6px) 3rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.espaco-grid.project-carousel::-webkit-scrollbar { display: none; }
.espaco-grid.project-carousel.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.espaco-grid.project-carousel.is-auto-playing { scroll-snap-type: none; scroll-behavior: auto; }

.project-track {
  display: flex;
  gap: clamp(1.1rem, 2vw, 1.5rem);
  padding: 0 clamp(1.1rem, 2vw, 1.5rem) 1.15rem;
  width: max-content;
}

.espaco-card {
  position: relative;
  flex: 0 0 clamp(270px, 28vw, 420px);
  height: clamp(420px, 48vw, 580px);
  scroll-snap-align: start;
  border: 3px solid #c8a45d;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: auto;
  background: var(--card-grad);
  cursor: default;
  box-shadow: 0 24px 70px rgba(0,0,0,.32), 0 0 0 5px rgba(200,164,93,.26);
  transform: translateZ(0);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s, border-color .45s, opacity .3s;
}
.espaco-card:hover {
  transform: translateY(-8px) scale(1.025);
  border-color: #f1d99a;
  box-shadow: 0 32px 88px rgba(0,0,0,.36), 0 0 0 6px rgba(200,164,93,.34);
}
.espaco-card.is-filtered-out {
  display: none;
}

.espaco-img {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.espaco-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(58,37,24,.18) 0%, rgba(58,37,24,.08) 28%, rgba(47,33,24,.92) 100%),
    radial-gradient(circle at 50% 38%, transparent 0%, rgba(0,0,0,.14) 78%);
  pointer-events: none;
}
.espaco-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .45s;
}
.espaco-card:hover .espaco-img img {
  transform: scale(1.12);
  filter: saturate(1.04) contrast(1.03);
}

.espaco-img .img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform .9s cubic-bezier(.2,.8,.2,1), filter .45s;
}
.espaco-card:hover .img-hover {
  opacity: 1;
  transform: scale(1.12);
  filter: saturate(1.04) contrast(1.03);
}

.espaco-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 2rem 1.45rem 1.6rem;
  background: linear-gradient(to top, rgba(47,33,24,.97) 0%, rgba(47,33,24,.58) 60%, transparent 100%);
  transition: background .35s;
}
.espaco-card:hover .espaco-overlay {
  background: linear-gradient(to top, rgba(47,33,24,.99) 0%, rgba(47,33,24,.65) 68%, transparent 100%);
}
.project-category {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .55rem;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.project-category::before {
  content: '';
  width: 18px;
  height: 1px;
  background: rgba(200,164,93,.65);
}
.espaco-overlay h3 {
  max-width: 92%;
  font-family: var(--sans);
  font-size: clamp(.92rem, 1.35vw, 1.12rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: .45rem;
}

/* ─── Project text + button ───────────────── */
.tour-price {
  font-size: .74rem;
  color: rgba(255,255,255,.8);
  font-weight: 400;
  margin-bottom: .7rem;
  line-height: 1.4;
}
.tour-price strong {
  color: var(--gold-light);
  font-weight: 700;
}
.tour-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.15rem;
  background: var(--primary);
  color: #fff;
  border-radius: 100px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background .25s, transform .2s, box-shadow .25s;
  pointer-events: all;
  cursor: pointer;
}
.tour-btn:hover {
  background: var(--dark-grad);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,16,12,.45);
  color: #fff;
}

.projetos-cta { text-align: center; }


@media(max-width:768px){
  .projetos-filter-bar {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 2rem;
  }
  .project-filter {
    flex: 0 0 auto;
    padding: .66rem .95rem;
    font-size: .7rem;
  }
  .espaco-grid.project-carousel {
    width: calc(100vw - 2rem);
    margin-inline: calc(50% - 50vw + 1rem);
  }
  .espaco-card {
    flex-basis: min(78vw, 330px);
    height: min(128vw, 480px);
    border-radius: 22px;
  }
}

/* ─── COMO FUNCIONA ──────────────────────── */
.processo-section {
  background: var(--card-grad);
  position: relative;
}
.processo-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.processo-section .label { margin-bottom: 1rem; }
.processo-section h2 { max-width: 600px; margin-bottom: 1rem; }
.processo-intro { max-width: 560px; margin-bottom: 3rem; }

.passos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.passo-card {
  background: var(--card-grad);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.passo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,164,93,.5);
  box-shadow: 0 12px 36px rgba(0,0,0,.2);
}

.passo-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(27,16,12,.16);
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
}
.passo-body h3 { color: var(--primary); font-size: .95rem; margin-bottom: .3rem; }
.passo-body p  { font-size: .82rem; color: rgba(27,16,12,.72); }

/* ─── SOBRE (dark section) ───────────────── */
.sobre-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(200,164,93,.24), transparent 28%),
    radial-gradient(circle at 82% 42%, rgba(255,255,255,.10), transparent 30%),
    radial-gradient(circle at 50% 110%, rgba(200,164,93,.16), transparent 34%),
    linear-gradient(135deg, #050505 0%, #161614 42%, #2c2b27 70%, #0a0a09 100%);
  position: relative; overflow: hidden;
}
.sobre-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(200,164,93,.10), transparent 34%, rgba(255,255,255,.04) 68%, rgba(200,164,93,.08)),
    repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px);
  opacity: .55;
  pointer-events: none;
}
.sobre-section > .container {
  position: relative;
  z-index: 2;
}
.sobre-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,93,.35), transparent);
}

.quem-dot-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .56;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.55) 52%, rgba(0,0,0,.18) 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.55) 52%, rgba(0,0,0,.18) 100%);
}
.quem-dot-grid__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-text .label { color: var(--gold); margin-bottom: 1rem; }
.sobre-text h2 { color: var(--white); max-width: 420px; margin-bottom: 1.5rem; }
.sobre-text p { color: rgba(255,255,255,.78); max-width: 420px; margin-bottom: 1.2rem; }
.sobre-text p:last-of-type { margin-bottom: 2rem; }

.sobre-frase {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-style: italic;
  color: var(--gold-light);
  display: block;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.sobre-photo {
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-photo > img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 22px 70px rgba(0,0,0,.58), 0 0 0 1px rgba(200,164,93,.26);
  filter: none;
  opacity: 1;
}
.sobre-photo-deco {
  position: absolute;
  bottom: -1.8rem;
  right: -1.8rem;
  width: 90px;
  opacity: .22;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.4));
  pointer-events: none;
}

/* ─── CTA FINAL ──────────────────────────── */
/* ─ seção externa: fundo escuro, espaço ao redor do card ─ */
.cta-final {
  background: #fff;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 3rem) clamp(4rem, 7vw, 6rem);
  text-align: center;
}
.cta-final > .container { max-width: 1200px; }

/* ─ card com foto, bordas arredondadas ─ */
.cta-final-inner {
  position: relative; overflow: hidden;
  border-radius: 28px;
  background-color: var(--gold);
  background-image: var(--warm-grad);
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  padding: clamp(3.5rem, 6vw, 5rem) 2rem;
  border: 1px solid rgba(255,255,255,.08);
}
.cta-final-inner::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to right,  rgba(47,33,24,.80) 0%, rgba(27,16,12,.48) 50%, rgba(47,33,24,.80) 100%),
    linear-gradient(to bottom, rgba(47,33,24,.60)  0%, rgba(27,16,12,.35) 52%, rgba(47,33,24,.70)  100%);
}
.cta-final-inner > * { position: relative; z-index: 1; }
.cta-final .label { color: var(--gold); margin-bottom: 1rem; }
.cta-final h2 { color: var(--white); max-width: 620px; margin: 0 auto 1.4rem; }
.cta-final-inner > p { color: rgba(255,255,255,.84); max-width: 480px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-contact-info {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
}
.cta-contact-line {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.72);
}
.cta-contact-line svg { color: var(--gold); flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--brand-cream);
  border-top: 1px solid rgba(200,164,93,.28);
  padding: 4rem 0 2rem;
  color: rgba(7,7,7,.82);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-img {
  height: 90px; width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(89%) sepia(25%) saturate(746%) hue-rotate(355deg) brightness(104%) contrast(89%);
  opacity: .95;
}
.footer-tagline { font-size: .8rem; color: rgba(7,7,7,.72); max-width: 240px; line-height: 1.75; margin-bottom: 1.2rem; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: #070707;
  padding: .6rem 1.3rem; border-radius: 100px; font-size: .75rem; font-weight: 600;
  transition: background .3s;
}
.footer-wa:hover { background: var(--gold-light); color: #070707; }
.footer-col h4 {
  font-size: .65rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-col a, .footer-col address, .footer-col p {
  font-size: .8rem; color: rgba(7,7,7,.72);
  display: block; line-height: 1.85; font-style: normal;
  transition: color .25s;
}
.footer-col a:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.footer-col .footer-contact-line {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8rem; color: rgba(7,7,7,.72);
  line-height: 1.6; margin-bottom: .4rem;
}
.footer-col .footer-contact-line svg { flex-shrink: 0; margin-top: .15rem; color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,164,93,.18);
  font-size: .7rem; color: rgba(7,7,7,.62); flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(7,7,7,.72); transition: color .25s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── BOTÃO FLUTUANTE BOT ────────────────── */
#float-bot {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: transparent;
  border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
#float-bot.vis  { opacity: 1; transform: translateY(0); pointer-events: all; }
#float-bot:hover { transform: translateY(-3px) !important; }
.bot-avatar {
  width: 56px; height: 56px; min-width: 56px; min-height: 56px;
  border-radius: 50%; object-fit: cover; object-position: center 18%;
  display: block; pointer-events: none; position: relative; z-index: 2;
  border: 2px solid rgba(200,164,93,.6);
  box-shadow: 0 4px 20px rgba(27,16,12,.35);
}
#float-bot::before, #float-bot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: sim-radar 2.6s ease-out infinite; pointer-events: none; z-index: 1;
}
#float-bot::after { animation-delay: 1.3s; }
@keyframes sim-radar { 0%{transform:scale(1);opacity:.45} 100%{transform:scale(2.4);opacity:0} }
@media(max-width:768px){
  #float-bot { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
  .bot-avatar { width: 50px; height: 50px; min-width: 50px; min-height: 50px; }
}

/* ══════════════════════════════════════════════════════
   SIM BOT — Chat widget (paleta Simoni Lobato Design)
══════════════════════════════════════════════════════ */
#fenix-chat {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: min(370px, calc(100vw - 2rem));
  max-height: 530px;
  background: #faf8f5;
  border: 1px solid rgba(200,164,93,.28);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(27,16,12,.22), 0 0 0 1px rgba(200,164,93,.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease;
}
#fenix-chat.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Header */
#fenix-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem .9rem 1.1rem;
  background: linear-gradient(135deg, #070707 0%, #1d1d1b 100%);
  border-bottom: 1px solid rgba(200,164,93,.25);
  flex-shrink: 0;
}
#fenix-chat-identity { display: flex; align-items: center; gap: .75rem; }
#fenix-chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid rgba(200,164,93,.45);
  flex-shrink: 0;
}
#fenix-chat-name {
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
  font-family: var(--sans);
}
#fenix-chat-status {
  font-size: .66rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .1rem;
  font-family: var(--sans);
}
#fenix-chat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  box-shadow: 0 0 6px #4ade80;
}
#fenix-chat-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.75);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: .75rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
  font-family: var(--sans);
}
#fenix-chat-close:hover { background: rgba(255,255,255,.22); color: #fff; }

/* Messages */
#fenix-chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  background: #faf8f5;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,164,93,.3) transparent;
}
#fenix-chat-msgs::-webkit-scrollbar { width: 4px; }
#fenix-chat-msgs::-webkit-scrollbar-thumb { background: rgba(200,164,93,.3); border-radius: 4px; }

.fcm-row {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  gap: .4rem;
}
.fcm-bot  { align-self: flex-start; }
.fcm-user { align-self: flex-end; }

.fcm-bubble {
  padding: .65rem .85rem;
  border-radius: 14px;
  font-size: .82rem;
  line-height: 1.65;
  word-break: break-word;
  font-family: var(--sans);
}
.fcm-bot .fcm-bubble {
  background: #f0ebe4;
  color: #070707;
  border-radius: 4px 14px 14px 14px;
  border: 1px solid rgba(200,164,93,.18);
}
.fcm-user .fcm-bubble {
  background: linear-gradient(135deg, #c8a45d, #9a7860);
  color: #fff;
  border-radius: 14px 4px 14px 14px;
}

/* Typing indicator */
.fcm-typing-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: .7rem .9rem !important;
}
.fcm-typing-bubble span {
  width: 7px; height: 7px;
  background: rgba(200,164,93,.7);
  border-radius: 50%;
  animation: fcm-bounce .9s infinite;
}
.fcm-typing-bubble span:nth-child(2) { animation-delay: .15s; }
.fcm-typing-bubble span:nth-child(3) { animation-delay: .3s; }
@keyframes fcm-bounce {
  0%,60%,100% { transform: translateY(0); }
  30%          { transform: translateY(-6px); }
}

/* CTA link inside chat */
.fcm-cta {
  display: inline-block;
  background: rgba(200,164,93,.1);
  border: 1px solid rgba(200,164,93,.45);
  color: #7a5c40;
  font-size: .74rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  align-self: flex-start;
  letter-spacing: .01em;
  font-family: var(--sans);
  text-decoration: none;
}
.fcm-cta:hover { background: rgba(200,164,93,.22); color: #070707; border-color: rgba(200,164,93,.7); }

/* Input area */
#fenix-chat-form {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .9rem;
  border-top: 1px solid rgba(200,164,93,.18);
  background: #f5f0eb;
  flex-shrink: 0;
}
#fenix-chat-input {
  flex: 1;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(200,164,93,.3);
  border-radius: 10px;
  padding: .55rem .8rem;
  font-size: .82rem;
  color: #070707;
  outline: none;
  font-family: var(--sans);
  transition: border-color .2s, box-shadow .2s;
}
#fenix-chat-input::placeholder { color: rgba(27,16,12,.38); }
#fenix-chat-input:focus { border-color: rgba(200,164,93,.7); box-shadow: 0 0 0 3px rgba(200,164,93,.12); }
#fenix-chat-send {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary);
  border: none;
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
#fenix-chat-send:hover { background: #1d1d1b; transform: scale(1.05); }
#fenix-chat-send:active { transform: scale(.95); }

/* Mobile overlay backdrop */
#fenix-chat-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,16,12,.45);
  z-index: 598;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#fenix-chat-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

@media(max-width:600px) {
  #fenix-chat {
    position: fixed;
    left: 0; right: 0;
    bottom: 0; top: auto;
    width: 100%;
    height: 88vh; max-height: 88vh;
    border-radius: 20px 20px 0 0;
    border: none;
    border-top: 1px solid rgba(200,164,93,.28);
    box-shadow: 0 -8px 40px rgba(27,16,12,.3);
    transform: translateY(100%);
    opacity: 1;
    transition: transform .35s cubic-bezier(.32,1,.23,1);
    z-index: 599;
  }
  #fenix-chat.open { transform: translateY(0); opacity: 1; }
  #fenix-chat::before {
    content: '';
    display: block;
    width: 40px; height: 4px;
    background: rgba(200,164,93,.35);
    border-radius: 2px;
    margin: .65rem auto .1rem;
    flex-shrink: 0;
  }
  #fenix-chat-header { padding: .65rem 1rem .75rem; }
  #fenix-chat-avatar { width: 36px; height: 36px; min-width: 36px; }
  #fenix-chat-name { font-size: .84rem; }
  #fenix-chat-msgs { padding: .85rem 1rem; gap: .55rem; }
  .fcm-bubble { font-size: .84rem; padding: .6rem .8rem; }
  #fenix-chat-form {
    padding: .65rem .9rem;
    padding-bottom: max(.65rem, env(safe-area-inset-bottom));
  }
  #fenix-chat-input { font-size: 16px; padding: .6rem .75rem; }
  #fenix-chat-send { width: 42px; height: 42px; flex-shrink: 0; }
  .fcm-row { max-width: 90%; }
  #fenix-chat-backdrop { display: block; }
}

/* ─── MAGIC BENTO ─────────────────────────── */
.proc-card, .espaco-card, .passo-card {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 400px;
  position: relative;
  overflow: hidden;
}

.mb-border-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2.5px;
  pointer-events: none;
  z-index: 10;
  background: var(--card-grad);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.mb-particle {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(178, 144, 119, 1);
  box-shadow:
    0 0 3px  rgba(178, 144, 119, 1),
    0 0 8px  rgba(178, 144, 119, 0.7),
    0 0 15px rgba(178, 144, 119, 0.35);
  pointer-events: none; z-index: 6; will-change: transform, opacity;
}

.mb-spotlight {
  position: fixed; width: 800px; height: 800px; border-radius: 50%;
  pointer-events: none; z-index: 9500; opacity: 0;
  top: 0; left: 0; transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  background: radial-gradient(circle,
    rgba(178, 144, 119, 0.18) 0%,
    rgba(178, 144, 119, 0.11) 12%,
    rgba(178, 144, 119, 0.06) 24%,
    rgba(244, 236, 231, 0.03) 40%,
    transparent 65%
  );
  will-change: transform, opacity; transition: opacity 0.3s;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1200px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .sobre-inner { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-text h2 { max-width: none; }
  .sobre-text p  { max-width: none; }
  .quem-inner { grid-template-columns: 1fr; gap: 2rem; }
  .quem-symbol { display: none; }
}

@media(max-width:1024px){
  nav.header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: min(58vw, 520px); }
  .espaco-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:768px){
  #header { padding: .75rem 0; }
  #header.scrolled { padding: .65rem 0; }
  .header-inner { gap: .65rem; padding: 0 1rem; }
  .header-inner > a:first-child { flex: 0 0 90px; }
  .logo-light, .logo-dark { width: 130px; height: auto; max-height: 80px; object-fit: contain; }
  #header .btn-primary { padding: .62rem 1rem; font-size: .62rem; letter-spacing: .08em; flex: 0 1 auto; }
  .hamburger { width: 24px; flex-shrink: 0; }

  .hero-sequence { height: 360vh; height: 360svh; }
  .hero-sticky { height: 100svh; min-height: 100vh; }
  .hero-content { bottom: clamp(4.5rem, 8vh, 7rem); left: 1.5rem; right: 1.5rem; max-width: 100%; }
  .hero-label { font-size: .58rem; letter-spacing: .2em; margin-bottom: .8rem; }
  .hero-h1 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); margin-bottom: .8rem; line-height: 1.14; }
  .hero-sub { display: none; }
  .hero-actions { flex-wrap: nowrap; gap: .5rem; }
  .hero-actions .btn { padding: .62rem .95rem; font-size: .62rem; letter-spacing: .07em; }
}

/* ─── Fireflies ──────────────────────────── */
footer { position: relative; overflow: hidden; }
.firefly-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: .75;
}
footer > .container { position: relative; z-index: 1; }

/* ─── DEPOIMENTOS GOOGLE ────────────────── */
.dep-section {
  background: var(--card-grad);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  margin-bottom: 3rem;
  position: relative;
}

/* Quantity picker */
.qty-overlay {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.qty-overlay.open { opacity: 1; pointer-events: all; }

.qty-picker {
  position: fixed; z-index: 1501;
  bottom: 0; left: 50%; transform: translateX(-50%) translateY(108%);
  width: min(480px, 100vw);
  background: var(--warm-grad);
  border-radius: 24px 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.07);
  border-right: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 -16px 60px rgba(0,0,0,.55);
  padding: .6rem 1.8rem 2.4rem;
  opacity: 0; pointer-events: none;
  transition: transform .4s cubic-bezier(.22,.88,.22,1), opacity .3s;
}
.qty-picker.open {
  transform: translateX(-50%) translateY(0);
  opacity: 1; pointer-events: all;
}

.qty-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.18);
  margin: 0 auto 1.2rem;
}

.qty-picker-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: .25rem; gap: 1rem;
}
.qty-picker-top h4 { color: #fff; font-size: 1rem; font-weight: 600; line-height: 1.3; flex: 1; }
.qty-close {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  border: none; cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s; font-family: inherit;
}
.qty-close:hover { background: rgba(255,255,255,.2); }

.qty-price-ref { color: rgba(200,164,93,.85); font-size: .76rem; margin-bottom: 1.1rem; }

.qty-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.qty-label span { color: rgba(7,7,7,.82); font-size: .88rem; font-weight: 500; display: block; }
.qty-label small { color: rgba(255,255,255,.4); font-size: .7rem; }

.qty-counter { display: flex; align-items: center; gap: .9rem; }
.qty-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s; font-family: inherit; line-height: 1;
}
.qty-btn:hover { background: rgba(27,16,12,.35); border-color: rgba(27,16,12,.6); }
.qty-count { color: #fff; font-size: 1.05rem; font-weight: 600; min-width: 22px; text-align: center; }

.qty-free-note { color: rgba(255,255,255,.3); font-size: .68rem; margin: .8rem 0 0; line-height: 1.6; }

.qty-date-row { border-bottom: none !important; margin-top: .4rem; }
.qty-date-input {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  color: #fff;
  padding: .45rem .7rem;
  font-size: .82rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  width: 160px;
  transition: border-color .2s, box-shadow .2s;
  color-scheme: dark;
}
.qty-date-input:focus { border-color: rgba(27,16,12,.7); box-shadow: 0 0 0 3px rgba(27,16,12,.15); }
.qty-date-input.qty-date-error { border-color: #ff4444; box-shadow: 0 0 0 3px rgba(255,68,68,.18); animation: dateShake .3s ease; }
@keyframes dateShake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}



.qty-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .8rem 0 1.2rem; border-top: 1px solid rgba(255,255,255,.07);
}
.qty-total-row span { color: rgba(255,255,255,.5); font-size: .8rem; }
.qty-total-row strong { color: rgba(200,164,93,.9); font-size: 1.1rem; }

.wa-picker-btn {
  width: 100%; padding: .95rem;
  background: #25D366; color: #fff;
  border-radius: 100px; font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--sans);
  margin-top: .55rem;
  transition: background .3s, transform .2s, box-shadow .3s;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  box-shadow: 0 4px 18px rgba(37,211,102,.25);
}
.wa-picker-btn:hover { background: #1fb355; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(37,211,102,.35); }
.co-back {
  background: none; border: none; color: rgba(255,255,255,.38);
  font-size: .74rem; cursor: pointer; font-family: var(--sans);
  margin-top: .75rem; width: 100%; text-align: center; padding: .4rem;
  transition: color .2s; display: block;
}
.co-back:hover { color: rgba(255,255,255,.75); }

.co-processing { text-align: center; padding: 3rem 1rem; }
.co-spinner {
  width: 50px; height: 50px; border-radius: 50%;
  border: 3px solid rgba(27,16,12,.2);
  border-top-color: var(--primary);
  animation: coSpin .8s linear infinite;
  margin: 0 auto 1.4rem;
}
@keyframes coSpin { to { transform: rotate(360deg); } }

.co-success { text-align: center; padding: 2.5rem 1rem; }
.co-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(37,211,102,.12); border: 2px solid #25D366;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; color: #25D366;
  animation: coPopIn .5s cubic-bezier(.2,1.5,.4,1) both;
}
@keyframes coPopIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.co-success h3 { color: var(--white); font-family: var(--serif); font-size: 1.5rem; font-weight: 300; margin-bottom: .8rem; }
.co-success p  { color: rgba(255,255,255,.7); font-size: .86rem; max-width: 320px; margin: 0 auto 2rem; line-height: 1.75; }

/* ─── Reduced motion ─────────────────────── */
@media(prefers-reduced-motion:reduce){
  .marquee-content { animation: none; }
  .scroll-line::after { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ─── QUEM SOMOS | GREPPA ───────────────── */
.quem-section.section-pad {
  padding: clamp(3rem, 5vw, 4.75rem) 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.10), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(12,17,7,.28), transparent 38%),
    linear-gradient(135deg, #46502d 0%, #373e24 48%, #2b321b 100%);
}
.quem-section::before {
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.035) 49%, transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 1px, transparent 1px 13px);
  opacity: 1;
}
.quem-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.12), transparent 24% 76%, rgba(0,0,0,.12));
}
.quem-section .quem-dot-grid { display: none; }
.quem-section > .container { position: relative; z-index: 2; max-width: 1080px; }
.quem-section .sobre-inner {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .75fr);
  gap: clamp(1.75rem, 3.5vw, 3.5rem);
  min-height: 430px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(246,244,240,.97));
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 30px 80px rgba(12,17,7,.28), 0 2px 8px rgba(12,17,7,.14);
  overflow: hidden;
}
.quem-section .sobre-text .label { color: #59613e; margin-bottom: .65rem; }
.quem-section .sobre-text h2 {
  color: var(--primary); max-width: 560px; margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 1.08;
}
.quem-section .sobre-text p {
  color: rgba(18,18,18,.72); max-width: 590px; margin-bottom: .7rem;
  font-size: .84rem; line-height: 1.68;
}
.quem-section .sobre-text p:last-of-type { margin-bottom: 1rem; }
.quem-section .sobre-frase { color: #59613e; font-size: 1rem; margin-bottom: 1rem; }
.quem-section .sobre-text .btn { padding: .7rem 1.35rem; font-size: .68rem; }
.quem-section .sobre-photo { width: 100%; height: 100%; min-height: 340px; }
.quem-section .sobre-photo > img {
  width: 100%; height: 100%; max-height: 430px; object-fit: cover; object-position: center;
  border-radius: 0; box-shadow: none;
}
.quem-section .sobre-photo-deco { display: none; }
@media (max-width: 768px) {
  .quem-section.section-pad { padding: 2.25rem 0; }
  .quem-section > .container { padding: 0 1rem; }
  .quem-section .sobre-inner { grid-template-columns: 1fr; gap: 1.35rem; min-height: 0; padding: 1.35rem; }
  .quem-section .sobre-photo { min-height: 0; height: clamp(260px, 80vw, 380px); }
  .quem-section .sobre-photo > img { max-height: none; }
}/* ─── MATERIAIS COMPOSITION | GREPPA ────── */
.sr-only { position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.language-selector { flex: 0 0 auto; }
.language-selector select {
  appearance: none; -webkit-appearance: none; min-width: 76px;
  padding: .62rem 1.75rem .62rem .72rem; border: 1px solid rgba(7,7,7,.16);
  border-radius: 100px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='m1 1 4 4 4-4' fill='none' stroke='%23373e24' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right .65rem center;
  color: #373e24; font: 600 .68rem var(--sans); letter-spacing: .04em; cursor: pointer;
}
.essencia-section { background: #fff; position: relative; overflow: hidden; }
.essencia-section.section-pad { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.materials-heading { max-width: 700px; margin-bottom: 2rem; position: relative; z-index: 4; }
.materials-heading .label { color: #59613e; margin-bottom: .7rem; }
.materials-heading h2 { max-width: 660px; margin-bottom: .8rem; }
.materials-heading .essencia-intro { max-width: 590px; }
.materials-composition { position: relative; min-height: 660px; margin-top: .5rem; }
.materials-plan {
  position: absolute; z-index: 1; left: -5%; top: 1rem; width: 66%; height: 560px;
  object-fit: contain; object-position: left center; opacity: .68; mix-blend-mode: multiply;
}
.materials-project {
  position: absolute; z-index: 2; right: 0; top: 0; width: 70%; height: 440px;
  object-fit: cover; object-position: center; box-shadow: 0 24px 60px rgba(25,28,16,.14);
}
.materials-cards.proc-grid {
  position: absolute; z-index: 4; left: 10%; right: 2.5%; bottom: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .8rem; margin: 0;
}
.materials-cards .proc-card {
  min-height: 220px; padding: 1.25rem; border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(246,244,240,.97));
  border-color: rgba(55,62,36,.18); box-shadow: 0 20px 45px rgba(25,28,16,.16);
}
.materials-cards .proc-icon { width: 38px; height: 38px; border-radius: 50%; color: #373e24; background: rgba(55,62,36,.11); margin-bottom: .85rem; }
.materials-cards .proc-card h3 { font-size: .88rem; line-height: 1.35; margin-bottom: .55rem; }
.materials-cards .proc-card p { font-size: .76rem; line-height: 1.62; }
@media (max-width: 1024px) {
  .header-inner { gap: .85rem; }
  .language-selector { margin-left: auto; }
  .materials-composition { min-height: 820px; }
  .materials-project { width: 76%; height: 400px; }
  .materials-plan { width: 68%; height: 500px; left: -7%; }
  .materials-cards.proc-grid { left: 5%; right: 0; grid-template-columns: repeat(2,1fr); }
  .materials-cards .proc-card { min-height: 190px; }
}
@media (max-width: 768px) {
  .language-selector select { min-width: 70px; padding: .55rem 1.55rem .55rem .6rem; }
  .essencia-section.section-pad { padding: 3.5rem 0; }
  .materials-heading { margin-bottom: 1.5rem; }
  .materials-composition { min-height: 0; display: grid; gap: 1rem; }
  .materials-plan { position: absolute; width: 112%; height: 310px; left: -24%; top: -1rem; opacity: .42; }
  .materials-project { position: relative; width: 92%; height: 270px; margin-left: auto; }
  .materials-cards.proc-grid { position: relative; left: auto; right: auto; bottom: auto; grid-template-columns: 1fr; margin-top: -2.5rem; padding: 0 .75rem; }
  .materials-cards .proc-card { min-height: 0; padding: 1.15rem; }
}
/* ─── GALERIA: FONDO CURVO + OVERLAP ────── */
.projetos-section { background: #fff; position: relative; overflow: hidden; }
.projetos-section.section-pad { padding-top: clamp(3rem, 5vw, 4.5rem); padding-bottom: clamp(4rem, 7vw, 6rem); }
.projetos-section::before {
  content: ''; position: absolute; z-index: 0; top: 0; left: 0; right: 0;
  height: clamp(620px, 58vw, 720px);
  opacity: 1;
  background: linear-gradient(rgba(55,62,36,.88), rgba(55,62,36,.94)), url('../galeria6.png') center / cover no-repeat, #373e24;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 92% 98%, 84% 95%, 76% 91%, 68% 87%, 60% 83%, 54% 81%, 50% 80%, 46% 81%, 40% 83%, 32% 87%, 24% 91%, 16% 95%, 8% 98%, 0 100%);
  pointer-events: none;
}
.projetos-section::after { display: none; }
.projetos-section > .container { position: relative; z-index: 2; }
.projetos-section .label { color: rgba(255,255,255,.82); margin-bottom: .45rem; }
.projetos-section h2 { color: #fff; max-width: 560px; margin-bottom: .55rem; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.06; }
.projetos-section .projetos-intro { color: rgba(255,255,255,.86); max-width: 530px; margin-bottom: .9rem; font-size: .8rem; line-height: 1.55; }
.projetos-section .projetos-filter-bar { min-height: 46px; margin-bottom: .75rem; background: rgba(255,255,255,.94); border-color: rgba(255,255,255,.75); }
.projetos-section .project-filter { min-height: 36px; padding: .5rem .85rem; color: rgba(55,62,36,.72); font-size: .68rem; }
.projetos-section .project-filter.is-active { background: #373e24; color: #fff; }
.projetos-section .carousel-nav-bar { margin-bottom: .5rem; }
.projetos-section .project-carousel {
  position: relative; z-index: 3; width: min(1180px, calc(100vw - 3rem));
  margin-top: .75rem; margin-right: auto !important; margin-bottom: clamp(4rem, 8vw, 7rem); margin-left: auto !important;
  transform: none;
}
@media (max-width: 768px) {
  .projetos-section.section-pad { padding-top: 2.75rem; padding-bottom: 3.5rem; }
  .projetos-section::before { height: 570px; clip-path: polygon(0 0, 100% 0, 100% 100%, 85% 96%, 70% 90%, 58% 85%, 50% 84%, 42% 85%, 30% 90%, 15% 96%, 0 100%); }
  .projetos-section h2 { font-size: clamp(1.75rem, 8vw, 2.35rem); }
  .projetos-section .projetos-intro { font-size: .76rem; }
  .projetos-section .project-carousel { width: calc(100vw - 2rem); margin-top: .5rem; margin-bottom: 3rem; }
}/* ─── COMO FUNCIONA | GREPPA ────────────── */
.processo-section {
  background: #fff;
  text-align: center;
}
.processo-section::before { display: none; }
.processo-section > .container { max-width: 1280px; }
.processo-section .label {
  color: #59613e;
  margin-bottom: .65rem;
}
.processo-section h2 {
  max-width: 820px;
  margin: 0 auto 2.25rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 300;
  letter-spacing: .08em;
  line-height: 1.12;
  text-transform: uppercase;
  position: relative;
}
.processo-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1.15rem;
  width: 84px;
  border-bottom: 2px dotted #373e24;
  transform: translateX(-50%);
}
.processo-section .processo-intro {
  max-width: 820px;
  margin: 0 auto clamp(2.75rem, 5vw, 4.5rem);
  color: rgba(18,18,18,.78);
  font-size: clamp(.9rem, 1.2vw, 1.02rem);
  line-height: 1.85;
}
.processo-section .passos-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  box-shadow: 0 4px 24px rgba(18,18,18,.16);
}
.processo-section .passo-card {
  min-height: 290px;
  padding: 2.25rem 1.6rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 0;
  border-right: 1px solid rgba(55,62,36,.13);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  text-align: center;
}
.processo-section .passo-card:last-child { border-right: 0; }
.processo-section .passo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(55,62,36,.25);
  box-shadow: 0 18px 38px rgba(55,62,36,.12);
}
.processo-section .passo-num {
  margin: 0 0 .35rem;
  color: #373e24;
  font-size: clamp(3.3rem, 5vw, 4.7rem);
  font-weight: 400;
  line-height: .9;
}
.processo-section .passo-body h3 {
  max-width: 230px;
  margin: 0 auto .75rem;
  color: #171713;
  font-size: .82rem;
  line-height: 1.45;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.processo-section .passo-body p {
  max-width: 230px;
  margin: 0 auto;
  color: rgba(18,18,18,.68);
  font-size: .78rem;
  line-height: 1.75;
}
@media (max-width: 1024px) {
  .processo-section .passos-grid { grid-template-columns: repeat(2, 1fr); }
  .processo-section .passo-card:nth-child(2) { border-right: 0; }
  .processo-section .passo-card:nth-child(-n+2) { border-bottom: 1px solid rgba(55,62,36,.13); }
}
@media (max-width: 600px) {
  .processo-section h2 { letter-spacing: .04em; }
  .processo-section .passos-grid { grid-template-columns: 1fr; }
  .processo-section .passo-card { min-height: 235px; border-right: 0; border-bottom: 1px solid rgba(55,62,36,.13); }
  .processo-section .passo-card:last-child { border-bottom: 0; }
}/* ─── PALETA VERDE FINAL | GREPPA ───────── */
:root {
  --primary: #373e24;
  --text: #252a1b;
  --dark-grad: linear-gradient(135deg, #59613e 0%, #373e24 56%, #2b321b 100%);
  --warm-grad: linear-gradient(145deg, #59613e 0%, #373e24 52%, #2b321b 100%);
  --warm-soft-grad: radial-gradient(circle at 18% 16%, rgba(246,244,240,.13), transparent 32%), linear-gradient(150deg, #59613e 0%, #373e24 58%, #2b321b 100%);
}
.btn-primary,
.mobile-nav .mobile-cta,
.tour-btn,
#fenix-chat-send,
.fcm-cta {
  background: #59613e;
  color: #fff;
}
.btn-primary:hover,
.mobile-nav .mobile-cta:hover,
.tour-btn:hover,
#fenix-chat-send:hover,
.fcm-cta:hover {
  background: #373e24;
  color: #fff;
}
#header.scrolled .btn-primary { background: #59613e; color: #fff; }
.hero-gradient {
  background:
    linear-gradient(to right, rgba(36,43,22,.90) 0%, rgba(55,62,36,.68) 36%, rgba(55,62,36,.28) 65%, rgba(55,62,36,.08) 100%),
    linear-gradient(to top, rgba(31,38,18,.78) 0%, rgba(55,62,36,.30) 48%, rgba(55,62,36,.08) 100%);
}
.hero-actions .btn-primary { background: #f6f4f0; color: #373e24; }
.hero-actions .btn-primary:hover { background: #fff; color: #2b321b; }
.espaco-img::after {
  background: linear-gradient(to bottom, rgba(55,62,36,.08) 0%, rgba(55,62,36,.12) 28%, rgba(43,50,27,.92) 100%);
}
.espaco-overlay {
  background: linear-gradient(to top, rgba(43,50,27,.98) 0%, rgba(55,62,36,.62) 60%, transparent 100%);
}
.espaco-card:hover .espaco-overlay {
  background: linear-gradient(to top, rgba(43,50,27,.99) 0%, rgba(55,62,36,.68) 68%, transparent 100%);
}
.cta-final { background: #f6f4f0; }
.cta-final-inner { background-image: var(--warm-grad); }
.cta-final-inner::before {
  background:
    linear-gradient(to right, rgba(43,50,27,.90) 0%, rgba(55,62,36,.64) 50%, rgba(43,50,27,.90) 100%),
    linear-gradient(to bottom, rgba(55,62,36,.64) 0%, rgba(43,50,27,.48) 52%, rgba(43,50,27,.82) 100%);
}
.cta-final .label { color: #e4d5a8; }
.cta-final h2 { color: #fff; }
.cta-final-inner > p { color: rgba(255,255,255,.88); }
.cta-final .btn-primary { background: #f6f4f0; color: #373e24; }
.cta-final .btn-primary:hover { background: #fff; color: #2b321b; }
.footer-wa { background: #59613e; color: #fff; }
.footer-wa:hover { background: #373e24; color: #fff; }
.processo-section h2,
.essencia-section h2,
.quem-section .sobre-text h2 { color: #252a1b; }
.projetos-section h2,
.cta-final h2 { color: #fff; }
/* ─── TIPOGRAFIA DE SECCIONES ───────────── */
main section:not(.hero-sequence) h2 {
  font-family: 'Josefin Sans', 'Futura', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .08em;
}
main section:not(.hero-sequence) p:not(.label) {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
main section:not(.hero-sequence) p:not(.label) strong,
main section:not(.hero-sequence) p:not(.label) b {
  font-weight: 700;
}
@media (max-width: 768px) {
  main section:not(.hero-sequence) h2 { font-size: clamp(1.5rem, 7vw, 2rem); letter-spacing: .055em; }
}/* ─── AJUSTE MOVIL ESTRECHO ─────────────── */
@media (max-width: 480px) {
  #header .header-inner > .btn-primary { display: none; }
  .header-inner > a:first-child { flex-basis: 82px; }
  .logo-light, .logo-dark { width: 82px; }
  .language-selector { margin-left: auto; }
  .language-selector select { min-width: 68px; }
}/* ─── CREDITO KORENEXTUS ────────────────── */
.footer-credit {
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 400;
  color: rgba(55,62,36,.58);
}
.footer-credit a {
  color: #373e24;
  font-weight: 600;
  transition: color .25s, opacity .25s;
}
.footer-credit a:hover { color: #59613e; opacity: .78; }

/* ─── IDENTIDADE BECKER | ROXO, DOURADO E BRANCO ─── */
:root {
  --primary: #3b2948; --secondary: #f8f6fa; --accent: #c8a45d; --gold: #c8a45d;
  --gold-dark: #8c6a2f; --gold-light: #f1d99a; --soft-bg: #f8f6fa;
  --text: #2b2032; --muted: #6d6472; --brand-cream: #ffffff;
  --border: rgba(59,41,72,.14); --shadow: 0 2px 12px rgba(59,41,72,.08);
  --shadow-md: 0 8px 32px rgba(59,41,72,.14);
  --dark-grad: linear-gradient(135deg, #533b62 0%, #3b2948 56%, #271c30 100%);
  --warm-grad: linear-gradient(145deg, #533b62 0%, #3b2948 52%, #271c30 100%);
  --warm-soft-grad: radial-gradient(circle at 18% 16%, rgba(200,164,93,.18), transparent 32%), linear-gradient(150deg, #533b62 0%, #3b2948 58%, #271c30 100%);
}
.btn-primary,.mobile-nav .mobile-cta,.tour-btn,#fenix-chat-send,.fcm-cta,#header.scrolled .btn-primary,.footer-wa { background:#3b2948; color:#fff; }
.btn-primary:hover,.mobile-nav .mobile-cta:hover,.tour-btn:hover,#fenix-chat-send:hover,.fcm-cta:hover,.footer-wa:hover { background:#c8a45d; color:#fff; }
.hero-gradient { background:linear-gradient(to right,rgba(43,27,53,.92) 0%,rgba(59,41,72,.70) 38%,rgba(59,41,72,.28) 66%,rgba(59,41,72,.08) 100%),linear-gradient(to top,rgba(39,28,48,.82) 0%,rgba(59,41,72,.32) 48%,rgba(59,41,72,.08) 100%); }
.quem-section.section-pad { background:linear-gradient(135deg,#533b62 0%,#3b2948 52%,#271c30 100%); }
.quem-section .sobre-text .label,.quem-section .sobre-frase,.materials-heading .label { color:#9a7431; }
.quem-section .sobre-text h2,.processo-section h2,.essencia-section h2 { color:#2b2032; }
.projetos-section::before { background:linear-gradient(rgba(59,41,72,.88),rgba(59,41,72,.95)),url('../galeria6.png') center/cover no-repeat,#3b2948; }
.projetos-section .project-filter { color:rgba(59,41,72,.75); }
.projetos-section .project-filter.is-active { background:#3b2948; color:#fff; }
.espaco-img::after { background:linear-gradient(to bottom,rgba(59,41,72,.08) 0%,rgba(59,41,72,.12) 28%,rgba(39,28,48,.92) 100%); }
.espaco-overlay,.espaco-card:hover .espaco-overlay { background:linear-gradient(to top,rgba(39,28,48,.98) 0%,rgba(59,41,72,.66) 64%,transparent 100%); }
.cta-final { background:#f8f6fa; }
.cta-final-inner::before { background:linear-gradient(to right,rgba(39,28,48,.92) 0%,rgba(59,41,72,.66) 50%,rgba(39,28,48,.92) 100%),linear-gradient(to bottom,rgba(59,41,72,.66) 0%,rgba(39,28,48,.50) 52%,rgba(39,28,48,.84) 100%); }
.cta-final .label { color:#f1d99a; }
.cta-final .btn-primary,.hero-actions .btn-primary { background:#fff; color:#3b2948; }
.cta-final .btn-primary:hover,.hero-actions .btn-primary:hover { background:#f1d99a; color:#3b2948; }
.footer-grid { grid-template-columns:1.1fr .75fr 1fr .75fr 1.6fr; }
.footer-map h4 { margin-bottom:.85rem; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:#3b2948; }
.footer-map iframe { width:100%; min-height:180px; border:0; border-radius:14px; box-shadow:0 10px 28px rgba(59,41,72,.13); }
.footer-map a { display:inline-block; margin-top:.65rem; font-size:.75rem; color:#3b2948; text-decoration:underline; text-underline-offset:3px; }
.footer-credit { color:rgba(59,41,72,.58); }.footer-credit a { color:#3b2948; }.footer-credit a:hover { color:#c8a45d; }
@media(max-width:1100px){.footer-grid{grid-template-columns:1fr 1fr}.footer-map{grid-column:1/-1}}
@media(max-width:600px){.footer-grid{grid-template-columns:1fr}.footer-map{grid-column:auto}}

/* ─── CAMPANHA ESPECIAL | PAINEL EDITORIAL ─── */
.campanha-section {
  overflow:hidden;
  padding:3.5rem 0;
  background:
    radial-gradient(circle at 72% 35%,rgba(200,164,93,.10),transparent 28%),
    linear-gradient(135deg,rgba(16,12,19,.98),rgba(32,22,38,.96));
}
.campanha-showcase {
  position:relative;
  min-height:540px;
}
.campanha-heading {
  position:relative;
  z-index:4;
  width:48%;
  padding-top:.25rem;
}
.campanha-heading .label {
  margin-bottom:.6rem;
  color:#c8a45d;
}
.campanha-heading h2 {
  max-width:470px;
  color:#fff;
  font-family:'Josefin Sans','Futura','Century Gothic',sans-serif;
  font-size:clamp(1.8rem,3.2vw,3rem);
  font-weight:500;
  line-height:1.05;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.campanha-photo {
  position:absolute;
  z-index:1;
  top:55px;
  right:4%;
  width:390px;
  height:470px;
  overflow:hidden;
  border-radius:0 165px 0 165px;
  background:#c8a45d;
}
.campanha-photo img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.campanha-panel {
  position:absolute;
  z-index:3;
  left:0;
  top:145px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.8rem 3.25rem;
  width:min(73%,820px);
  padding:2.5rem 3.25rem 2.25rem;
  background:linear-gradient(135deg,rgba(36,35,39,.97),rgba(25,24,28,.96));
  box-shadow:0 18px 54px rgba(0,0,0,.34);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.campanha-beneficio {
  min-width:0;
}
.campanha-beneficio h3 {
  padding-bottom:.75rem;
  border-bottom:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-family:'Josefin Sans','Futura','Century Gothic',sans-serif;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.campanha-beneficio p {
  padding-top:.75rem;
  color:rgba(255,255,255,.68);
  font-size:.72rem;
  line-height:1.55;
}
.campanha-btn {
  grid-column:1/-1;
  justify-self:start;
  margin-top:-.2rem;
  padding:.68rem 1.3rem;
  background:#c8a45d;
  color:#fff;
}
.campanha-btn:hover {
  background:#f1d99a;
  color:#2b2032;
}
@media(max-width:900px) {
  .campanha-showcase { min-height:580px; }
  .campanha-photo { right:1rem; width:350px; height:465px; }
  .campanha-panel { width:72%; padding:2.1rem 2.25rem; gap:1.5rem 2rem; }
}
@media(max-width:700px) {
  .campanha-section { padding:2.75rem 0; }
  .campanha-showcase { display:flex; flex-direction:column; min-height:0; }
  .campanha-heading { width:100%; margin-bottom:1.5rem; }
  .campanha-heading h2 { max-width:100%; }
  .campanha-photo {
    position:relative;
    top:auto;
    right:auto;
    width:min(88%,360px);
    height:auto;
    aspect-ratio:3/4;
    margin-left:auto;
    border-radius:0 110px 0 110px;
  }
  .campanha-panel {
    position:relative;
    left:auto;
    top:auto;
    grid-template-columns:1fr;
    gap:1.25rem;
    width:calc(100% - 1rem);
    margin:-3.5rem 0 0;
    padding:1.75rem 1.5rem;
  }
  .campanha-btn { grid-column:auto; }
}/* ─── SUPERFÍCIES ROXAS TRANSLÚCIDAS ─── */
#loading-screen,#reveal-overlay{background:rgba(59,41,72,.92);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
.loading-pct{color:rgba(255,255,255,.78)}.loading-bar-track{background:rgba(255,255,255,.22)}
#header,#header.scrolled{background:rgba(59,41,72,.78);border-color:rgba(241,217,154,.20);box-shadow:0 4px 24px rgba(24,13,30,.14);backdrop-filter:blur(16px) saturate(120%);-webkit-backdrop-filter:blur(16px) saturate(120%)}
nav.header-nav a,#header.scrolled nav.header-nav a{color:rgba(255,255,255,.88)}nav.header-nav a:hover,#header.scrolled nav.header-nav a:hover{color:#f1d99a}.hamburger span,#header.scrolled .hamburger span{background:#fff}
.language-selector select{color:#fff;border-color:rgba(255,255,255,.28);background-color:rgba(255,255,255,.10)}
.mobile-nav{background:rgba(59,41,72,.94);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}.mobile-nav a{color:#fff}
footer{background:linear-gradient(135deg,rgba(59,41,72,.91),rgba(43,28,53,.88));border-top-color:rgba(241,217,154,.28);color:rgba(255,255,255,.88);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px)}
.footer-tagline,.footer-col a,.footer-col address,.footer-col p,.footer-col .footer-contact-line,.footer-bottom,.footer-bottom a,.footer-credit,.footer-credit a{color:rgba(255,255,255,.76)}
.footer-col h4,.footer-map h4,.footer-map a{color:#f1d99a}.footer-bottom{border-top-color:rgba(241,217,154,.22)}.footer-map iframe{opacity:.88}


/* Ajuste solicitado: painel branco sobre a foto */
.campanha-panel {
  left:2%;
  width:min(78%,900px);
  background:rgba(255,255,255,.97);
  box-shadow:0 18px 54px rgba(0,0,0,.26);
}
.campanha-beneficio h3 {
  color:#2b2032;
  border-bottom-color:rgba(59,41,72,.16);
}
.campanha-beneficio p { color:#6d6472; }
@media(max-width:900px) {
  .campanha-panel { width:78%; }
}
@media(max-width:700px) {
  .campanha-panel {
    left:auto;
    width:calc(100% - 1rem);
  }
}


/* Separação entre título e painel da campanha */
.campanha-showcase { min-height:680px; }
.campanha-heading { width:52%; }
.campanha-heading h2 {
  max-width:520px;
  font-size:clamp(1.7rem,2.75vw,2.65rem);
}
.campanha-panel { top:255px; }
@media(max-width:900px) {
  .campanha-showcase { min-height:720px; }
  .campanha-panel { top:275px; }
}
@media(max-width:700px) {
  .campanha-showcase { min-height:0; }
  .campanha-heading { width:100%; margin-bottom:1.75rem; }
  .campanha-panel { top:auto; }
}


/* Foto Quem somos completa no celular */
@media(max-width:768px){
  .quem-section .sobre-photo{
    width:100%;
    height:auto;
    min-height:0;
    aspect-ratio:844 / 1264;
    overflow:visible;
  }
  .quem-section .sobre-photo > img{
    width:100%;
    height:auto;
    max-height:none;
    aspect-ratio:auto;
    object-fit:contain;
    object-position:center;
  }
}


/* ─── HEADER DESKTOP: idioma na quina direita ─── */
@media (min-width: 1025px) {
  .header-inner { gap: 1.25rem; }
  /* empurra o grupo da direita (CTA + idioma) para a borda */
  #header .header-inner > .btn-primary { margin-left: auto; }
  /* idioma fica por último, encostado na quina direita */
  .language-selector { order: 5; margin-left: 0; }
}
