/* ============================================
   SOTO ELÉTRICA | Serviços Elétricos Residenciais
   Premium One Page | Identidade Preta + Dourada
   ============================================ */
@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:    #111111;
  --accent:     #c9a227;
  --gold:       #c9a227;
  --gold-dark:  #a8841e;
  --gold-light: #e8c84a;
  --white:      #ffffff;
  --soft-bg:    #f7f6f3;
  --soft-bg-2:  #f0ede5;
  --text:       #111111;
  --muted:      #5c5c5c;
  --card:       #ffffff;
  --border:     rgba(201,162,39,.18);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Manrope', system-ui, sans-serif;
  --shadow:     0 2px 12px rgba(0,0,0,.06);
  --shadow-md:  0 6px 28px rgba(0,0,0,.10);
}

*, *::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: -.01em;
  color: var(--text);
}
h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
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: #333333;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.btn-gold {
  background: var(--gold);
  color: var(--primary);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,.35);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(201,162,39,.12);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border: 1px solid rgba(0,0,0,.15);
  color: var(--text);
  background: transparent;
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ─── LOADING SCREEN ─────────────────────── */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background:
    radial-gradient(circle at 50% 18%, rgba(201,162,39,.2), transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(201,162,39,.08), transparent 36%),
    linear-gradient(145deg, #080808 0%, #111111 55%, #1a1a1a 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .5s;
}
.loading-logo-img {
  width: 160px;
  filter: drop-shadow(0 4px 28px rgba(201,162,39,.6));
}
.loading-bar-track {
  width: 160px; height: 1px;
  background: rgba(201,162,39,.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(201,162,39,.75); letter-spacing: .1em; }

/* ─── REVEAL OVERLAY ─────────────────────── */
#reveal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background:
    radial-gradient(circle at 50% 18%, rgba(201,162,39,.2), transparent 42%),
    linear-gradient(145deg, #080808 0%, #111111 55%, #1a1a1a 100%);
  clip-path: circle(150% at 50% 50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
#reveal-overlay img {
  width: 160px; opacity: 0;
  filter: drop-shadow(0 4px 28px rgba(201,162,39,.6));
}

/* ─── 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;
}
#header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .85rem 0;
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.logo-light {
  height: 36px; width: auto; display: block;
}
.logo-dark  { height: 36px; width: auto; display: none; }
#header.scrolled .logo-light { display: none; }
#header.scrolled .logo-dark  { display: block; }

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(255,255,255,.88);
  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: var(--muted); }
#header.scrolled nav.header-nav a:hover { color: var(--primary); }
#header.scrolled .btn-primary { background: var(--primary); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.hamburger span { display: block; height: 1.5px; background: var(--white); transition: all .3s; transform-origin: center; }
#header.scrolled .hamburger span { background: var(--text); }
.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:
    radial-gradient(circle at 50% 20%, rgba(201,162,39,.1), transparent 46%),
    linear-gradient(145deg, #111111 0%, #0a0a0a 100%);
  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(--white); 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: #333; }

/* ─── 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-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(10,10,10,.88) 0%, rgba(10,10,10,.52) 42%, rgba(10,10,10,.12) 68%, transparent 85%),
    linear-gradient(to top,   rgba(10,10,10,.72) 0%, rgba(10,10,10,.18) 45%, transparent 70%);
}

.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: -.01em;
  color: var(--white); margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.55), 0 1px 6px rgba(0,0,0,.4);
}
.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,.84); margin-bottom: 1.8rem;
  max-width: 380px;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}

.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(201,162,39,.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%} }

/* ─── SOBRE (dark section) ───────────────── */
.sobre-section {
  background:
    radial-gradient(circle at 50% 8%, rgba(201,162,39,.12), transparent 32%),
    radial-gradient(circle at 88% 55%, rgba(201,162,39,.06), transparent 28%),
    linear-gradient(150deg, #111111 0%, #141414 50%, #0f0f0f 100%);
  position: relative; overflow: hidden;
}
.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(201,162,39,.3), 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,.75); 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 18px 54px rgba(0,0,0,.45), 0 0 0 1px rgba(201,162,39,.18);
  filter: none;
  opacity: 1;
}
.sobre-photo-deco {
  position: absolute;
  bottom: -1.8rem;
  right: -1.8rem;
  width: 90px;
  opacity: .12;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

/* ─── MARQUEE ────────────────────────────── */
.marquee-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(201,162,39,.12), transparent 30%),
    radial-gradient(circle at 82% 100%, rgba(201,162,39,.06), transparent 30%),
    linear-gradient(135deg, #111111 0%, #0a0a0a 50%, #111111 100%);
  padding: 1.2rem 0; overflow: hidden;
  border-top: 1px solid rgba(201,162,39,.12);
  border-bottom: 1px solid rgba(201,162,39,.08);
}
.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: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.marquee-content .dot { color: var(--gold); font-size: .45rem; }
@keyframes marqueeScroll    { 0%{transform:translateX(0)}    100%{transform:translateX(-50%)} }
@keyframes marqueeScrollRev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}    }

/* ─── O QUE OFERECEMOS ───────────────────── */
.oferecemos-section {
  background: var(--soft-bg) !important;
  text-align: center;
}
.oferecemos-section::before { display: none !important; }
.oferecemos-section .label { margin-bottom: 1rem; }
.oferecemos-section h2 { max-width: 680px; margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
.oferecemos-section > .container > p { max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; color: var(--muted); }

.serv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.1rem;
  margin-bottom: 3rem;
}
.serv-card {
  background: var(--white);
  border: 1px solid rgba(201,162,39,.15);
  border-radius: 18px;
  padding: 2rem 1.2rem 1.8rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s, border-color .32s;
  cursor: default;
}
.serv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,.1);
  border-color: rgba(201,162,39,.5);
}
.serv-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.serv-card:hover .serv-icon {
  background: rgba(201,162,39,.18);
  border-color: rgba(201,162,39,.55);
}
.serv-card h3 {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0; line-height: 1.45;
}
.oferecemos-cta {
  text-align: center;
}

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

.proc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.2rem;
}
.proc-card {
  background: var(--white);
  border: 1px solid rgba(201,162,39,.15);
  border-radius: 16px; padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,.05);
}
.proc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border-color: rgba(201,162,39,.4);
}
.proc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(201,162,39,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.proc-card h3 { margin-bottom: .1rem; color: var(--text); }
.proc-card p  { font-size: .83rem; flex: 1; color: var(--muted); }

/* ─── MASONRY GALERIA ────────────────────── */
.galeria-section {
  background: var(--soft-bg);
  position: relative;
}
.galeria-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.3), transparent);
}
.galeria-section .container { padding-bottom: 2.5rem; }
.masonry-outer {
  width: 100%; max-width: 1440px;
  margin: 0 auto; padding: 0 1.2rem;
}
.masonry-list { position: relative; width: 100%; }
.masonry-item {
  position: absolute; top: 0; left: 0;
  will-change: transform, opacity;
  cursor: pointer;
}
.masonry-item-inner {
  width: 100%; height: 100%;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: box-shadow .35s;
}
.masonry-item:hover .masonry-item-inner {
  box-shadow: 0 10px 40px rgba(0,0,0,.18), 0 0 0 1.5px rgba(201,162,39,.45);
}
.masonry-item img {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.82) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.4rem; border-radius: 14px;
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-wa-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #25d366; color: #fff; text-decoration: none;
  font-family: var(--sans); font-size: .62rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem 1.1rem; border-radius: 100px;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.masonry-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.masonry-wa-btn svg { flex-shrink: 0; }

/* ─── SERVIÇOS ───────────────────────────── */
.projetos-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.projetos-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.4), transparent);
}
.projetos-section > .container {
  position: relative;
  z-index: 2;
}
.projetos-section .label { color: var(--gold); margin-bottom: 1rem; }
.projetos-section h2 { color: var(--text); max-width: 640px; margin-bottom: 1rem; }
.projetos-intro { color: var(--muted); max-width: 600px; margin-bottom: 2rem; }

.projetos-filter-bar {
  display: flex;
  align-items: center;
  gap: .3rem;
  width: min(100%, 680px);
  min-height: 54px;
  padding: .32rem;
  margin-bottom: 2.6rem;
  border: 1px solid rgba(201,162,39,.22);
  border-radius: 100px;
  background: rgba(0,0,0,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 2px 12px rgba(0,0,0,.06);
  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: var(--muted);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .25s, background .25s, box-shadow .25s, transform .25s;
}
.project-filter:hover,
.project-filter.is-active {
  color: var(--text);
  background: rgba(0,0,0,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.project-filter.is-active {
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.project-filter:hover { transform: translateY(-1px); }

.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 rgba(0,0,0,.12);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  transition: background .2s, border-color .2s, transform .15s, color .2s;
}
.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; }

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

.espaco-card {
  position: relative;
  flex: 0 0 clamp(270px, 28vw, 420px);
  height: clamp(420px, 48vw, 580px);
  scroll-snap-align: start;
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: auto;
  background: #1a1a1a;
  cursor: default;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  transform: translateZ(0);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s, border-color .45s;
}
.espaco-card:hover {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(201,162,39,.6);
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.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(10,10,10,.12) 0%, rgba(10,10,10,.05) 25%, rgba(10,10,10,.88) 100%);
  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-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 2rem 1.45rem 1.6rem;
  background: linear-gradient(to top, rgba(10,10,10,.97) 0%, rgba(10,10,10,.55) 60%, transparent 100%);
  transition: background .35s;
}
.espaco-card:hover .espaco-overlay {
  background: linear-gradient(to top, rgba(10,10,10,.99) 0%, rgba(10,10,10,.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(201,162,39,.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: .7rem;
}

/* ─── Service button ──────────────────────── */
.tour-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.15rem;
  background: var(--gold);
  color: var(--primary);
  border-radius: 100px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background .25s, transform .2s, box-shadow .25s;
  pointer-events: all;
  cursor: pointer;
}
.tour-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,162,39,.4);
}

@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(--soft-bg);
  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(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.passo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,162,39,.4);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
}

.passo-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(0,0,0,.06);
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
}
.passo-body h3 { color: var(--text); font-size: .95rem; margin-bottom: .3rem; }
.passo-body p  { font-size: .82rem; color: var(--muted); }

/* ─── CTA FINAL / CONTATO ────────────────── */
.cta-final {
  background: var(--soft-bg-2);
  padding: clamp(4rem,7vw,7rem) 0;
  text-align: center;
}

.cta-contact-card {
  background: var(--white);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 28px;
  padding: clamp(2.5rem,5vw,4rem);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 4px 50px rgba(0,0,0,.07), 0 0 0 1px rgba(201,162,39,.06);
  text-align: left;
}
.cta-contact-card .label { margin-bottom: 1rem; }
.cta-contact-card h2 { color: var(--text); max-width: none; margin-bottom: 1rem; }
.cta-contact-card > p { color: var(--muted); margin-bottom: 2rem; }

/* form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--soft-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c5c5c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 1rem center;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: .9rem 3rem .9rem 1.1rem;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.12);
}
.form-group select.error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,.1);
  animation: selectShake .3s ease;
}
@keyframes selectShake {
  0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)}
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: 1rem 2rem;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  transition: background .3s, transform .2s, box-shadow .3s;
}
.btn-whatsapp:hover {
  background: #1fb355;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.38);
}

.cta-contact-info {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 1.8rem;
  margin-top: .8rem;
}
.cta-contact-line {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--muted);
}
.cta-contact-line svg { color: var(--gold); flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(201,162,39,.08), transparent 30%),
    #0a0a0a;
  border-top: 1px solid rgba(201,162,39,.1);
  padding: 4rem 0 2rem;
  position: relative; overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-img {
  height: 40px; width: auto;
  margin-bottom: 1rem;
}
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.6); max-width: 240px; line-height: 1.75; margin-bottom: 1.2rem; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: var(--white);
  padding: .6rem 1.3rem; border-radius: 100px; font-size: .75rem; font-weight: 600;
  transition: background .3s;
}
.footer-wa:hover { background: #1fb355; }
.footer-col h4 {
  font-size: .65rem; font-weight: 600; 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(255,255,255,.6);
  display: block; line-height: 1.85; font-style: normal;
  transition: color .25s;
}
.footer-col a:hover { color: var(--white); }
.footer-col .footer-contact-line {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.6);
  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(255,255,255,.08);
  font-size: .7rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .25s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── FLOATING CTA ───────────────────────── */
#float-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
#float-cta.vis { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  display: flex; align-items: center; gap: .6rem;
  background: #25D366; color: var(--white);
  padding: .85rem 1.6rem; border-radius: 100px;
  font-size: .76rem; font-weight: 600; letter-spacing: .06em;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: background .3s, transform .2s, box-shadow .3s;
  white-space: nowrap;
}
.float-btn svg { flex-shrink: 0; }
.float-btn:hover { background: #1fb355; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,.48); }

/* ─── 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: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgb(201 162 39 / calc(var(--glow-intensity) * 1.0)) 0%,
    rgb(168 132 30 / calc(var(--glow-intensity) * 0.95)) 18%,
    rgb(232 200 74 / calc(var(--glow-intensity) * 0.55)) 42%,
    transparent 70%
  );
  -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(201, 162, 39, 1);
  box-shadow:
    0 0 3px  rgba(201, 162, 39, 1),
    0 0 8px  rgba(168, 132, 30, 0.7),
    0 0 15px rgba(168, 132, 30, 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(201, 162, 39, 0.14) 0%,
    rgba(168, 132, 30, 0.09) 12%,
    rgba(168, 132, 30, 0.05) 24%,
    rgba(232, 200, 80, 0.02) 40%,
    transparent 65%
  );
  will-change: transform, opacity; transition: opacity 0.3s;
}

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

/* ─── DEPOIMENTOS ────────────────────────── */
.dep-section {
  background: linear-gradient(145deg, #111111 0%, #141414 46%, #0f0f0f 100%);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  margin-bottom: 3rem;
  position: relative;
}
.dep-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(201,162,39,.08), transparent 60%);
  pointer-events: none;
}

.dep-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  position: relative; z-index: 1;
}
.dep-google-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .55rem 1.4rem .55rem 1rem;
  margin-bottom: 1.4rem;
}
.dep-google-logo { height: 20px; width: auto; }
.dep-badge-info { display: flex; flex-direction: column; gap: .1rem; }
.dep-stars-big { color: #fbbc05; font-size: .9rem; letter-spacing: .05em; line-height: 1; }
.dep-score { color: rgba(255,255,255,.6); font-size: .72rem; }

.dep-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; color: var(--white);
  margin-bottom: .6rem; line-height: 1.2;
}
.dep-sub { color: rgba(255,255,255,.5); font-size: clamp(.82rem, 1.5vw, .95rem); }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 520px;
  position: relative;
}
.dep-grid::before,
.dep-grid::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 90px; pointer-events: none; z-index: 2;
}
.dep-grid::before {
  top: 0;
  background: linear-gradient(to bottom, #111111 0%, transparent 100%);
}
.dep-grid::after {
  bottom: 0;
  background: linear-gradient(to top, #0f0f0f 0%, transparent 100%);
}

.dep-col { overflow: hidden; height: 100%; }
.dep-track { display: flex; flex-direction: column; }

@keyframes depScrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes depScrollDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}
.dep-track-up   { animation: depScrollUp   28s linear infinite; }
.dep-track-down { animation: depScrollDown 32s linear infinite; }
.dep-track-offset { animation-delay: -14s; }

.dep-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 1.1rem 1.2rem 1rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: background .25s;
}
.dep-card:hover { background: rgba(255,255,255,.09); }

.dep-card-top {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .75rem;
}
.dep-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: #fff;
  flex-shrink: 0; letter-spacing: .02em;
}
.dep-name { color: rgba(255,255,255,.88); font-size: .82rem; font-weight: 600; }
.dep-gstars { color: #fbbc05; font-size: .65rem; letter-spacing: .05em; margin-top: .1rem; }
.dep-g-icon { width: 14px; height: 14px; margin-left: auto; flex-shrink: 0; opacity: .8; }

.dep-text {
  color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.65;
  margin-bottom: .65rem;
}
.dep-tour-ref {
  display: inline-block;
  font-size: .65rem; color: rgba(201,162,39,.85);
  border: 1px solid rgba(201,162,39,.25);
  border-radius: 20px; padding: .15rem .6rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .dep-grid {
    grid-template-columns: 1fr;
    height: 440px;
    padding: 0 1.5rem;
    max-width: 420px;
  }
  .dep-col-hide-mob { display: none; }
  .dep-section { margin-bottom: 2rem; }
}

/* ─── SERVICE PICKER (modal) ─────────────── */
.qty-overlay {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(0,0,0,.45);
  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(--white);
  border-radius: 24px 24px 0 0;
  border-top: 1px solid rgba(201,162,39,.25);
  border-left: 1px solid rgba(0,0,0,.06);
  border-right: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 -16px 60px rgba(0,0,0,.15);
  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(0,0,0,.12);
  margin: 0 auto 1.4rem;
}

.qty-picker-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: .5rem; gap: 1rem;
}
.qty-picker-top h4 { color: var(--text); font-size: 1rem; font-weight: 600; line-height: 1.3; flex: 1; }
.qty-close {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,.07); color: var(--text);
  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(0,0,0,.14); }

.qty-service-label {
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: 1.8rem;
  line-height: 1.6;
  padding: .9rem 1.1rem;
  background: var(--soft-bg);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
}

.wa-picker-btn {
  width: 100%; padding: .95rem;
  background: #25D366; color: #fff;
  border-radius: 100px; font-size: .82rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--sans);
  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,.3);
}
.wa-picker-btn:hover { background: #1fb355; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(37,211,102,.38); }
.co-back {
  background: none; border: none; color: rgba(0,0,0,.35);
  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(0,0,0,.65); }

/* ─── 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; }
}

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

@media(max-width:600px){
  .oferecemos-grid { grid-template-columns: 1fr !important; }
}

@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: 90px; height: auto; max-height: 54px; 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: 200vh; }
  .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; }

  .proc-grid { grid-template-columns: 1fr 1fr; }
  .passos-grid { grid-template-columns: 1fr; }
  .cta-contact-info { flex-direction: column; gap: 1rem; }
  .cta-contact-card { border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  #float-cta { bottom: 1rem; right: 1rem; }
  .section-pad { padding: clamp(3.5rem,7vw,5rem) 0; }
  h2 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }

  .quem-dot-grid {
    opacity: .68;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.58) 58%, rgba(0,0,0,.22) 100%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.58) 58%, rgba(0,0,0,.22) 100%);
  }
  .sobre-photo { width: min(100%, 300px); }
  .sobre-photo-deco { display: none; }
}

@media(max-width:600px){
  .proc-grid { grid-template-columns: 1fr; }
}

@media(max-width:480px){
  #header .btn-primary { padding: .6rem .9rem; font-size: .58rem; }
  .header-inner > a:first-child { flex-basis: 80px; }
  .logo-light, .logo-dark { width: 80px; }
  .hero-actions .btn { padding: .58rem .72rem; font-size: .58rem; }
  .proc-card { padding: 1.5rem 1.3rem; }
  .cta-contact-card { padding: 1.8rem 1.4rem; }
}

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