/* ═══════════════════════════════════════════════
   Oficina Nova Fortaleza — Estilos Públicos
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amarelo: #FFD600;
  --amarelo-deep: #E6BF00;
  --vermelho: #C0000A;
  --vermelho-vivo: #D9000B;
  --preto: #111110;
  --preto-meio: #1A1A18;
  --cinza-escuro: #242420;
  --branco: #F9F7F2;
  --verde-wpp: #25D366;
  --verde-wpp-dark: #1DA851;
  --radius: 4px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--preto);
  color: var(--branco);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── BOTÕES ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.2s ease,
              background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-wpp  { background: var(--verde-wpp); color: #fff; }
.btn-wpp:hover { background: var(--verde-wpp-dark); box-shadow: 0 8px 24px rgba(37,211,102,.35); }

.btn-amarelo { background: var(--amarelo); color: var(--preto); }
.btn-amarelo:hover { background: var(--amarelo-deep); box-shadow: 0 8px 24px rgba(255,214,0,.25); }

.btn-vermelho { background: var(--vermelho); color: #fff; }
.btn-vermelho:hover { background: var(--vermelho-vivo); }

.btn-outline {
  background: transparent; color: var(--branco);
  border: 2px solid rgba(255,255,255,.28);
}
.btn-outline:hover { border-color: var(--amarelo); color: var(--amarelo); }

.btn-sm { font-size: 0.82rem; padding: 0.6rem 1.2rem; }
.btn-lg { font-size: 1.15rem; padding: 1.1rem 2.5rem; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  background: rgba(17,17,16,.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,214,0,.35);
  transition: background .4s ease, box-shadow .3s ease, border-color .4s ease;
}
#nav.scrolled {
  background: rgba(17,17,16,.7);
  border-bottom-color: rgba(255,214,0,.6);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; mix-blend-mode: screen; filter: brightness(1.1); }

.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(249,247,242,.65); text-decoration: none;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--amarelo); }
.nav-links .nav-cta-wpp {
  display: flex; align-items: center; gap: 7px;
  background: var(--verde-wpp); color: #fff !important;
  padding: .45rem 1.1rem; border-radius: var(--radius);
  font-weight: 700 !important; transition: background .2s ease !important;
}
.nav-links .nav-cta-wpp:hover { background: var(--verde-wpp-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--branco); transition: .3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 199;
  background: rgba(17,17,16,.55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(255,214,0,.3);
  padding: 1.5rem 2rem; flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.3rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--branco); text-decoration: none;
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .15s ease;
}
.mobile-menu a:hover { color: var(--amarelo); }
.mobile-menu a:last-child { border-bottom: none; margin-top: .5rem; }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--amarelo); overflow: hidden;
  height: 44px; display: flex; align-items: center;
}
.ticker-track {
  display: flex; white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--preto); padding: 0 1.5rem;
}
.ticker-sep { color: var(--vermelho); font-size: 1rem; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,17,16,.25) 0%,
    rgba(17,17,16,.05) 35%,
    rgba(17,17,16,.65) 65%,
    rgba(17,17,16,.97) 100%
  );
}

.hero-content {
  position: relative; z-index: 1; width: 100%;
  padding: 0 clamp(1.5rem,5vw,5rem) clamp(3rem,6vw,5rem);
  display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: end;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--vermelho); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 2px; margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(3rem,7vw,6.5rem);
  line-height: .9; letter-spacing: -.01em;
  text-transform: uppercase; color: #fff; margin-bottom: 1.2rem;
}
.hero h1 .destaque { color: var(--amarelo); display: block; }

.hero-cats { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.hero-cat {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--branco); font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .4rem .9rem; border-radius: 2px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 6px; padding: 1.5rem 1.8rem;
}

/* Título dentro do card — só mobile */
.hero-card-h1-mobile {
  display: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 11vw, 3.8rem);
  line-height: .88; letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-card-h1-mobile span { display: block; color: #fff; }
.hero-card-h1-mobile span.amarelo { color: var(--amarelo); }
.hero-card-wpp {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; width: 100%; margin-top: 1rem;
  padding: .85rem 1rem; font-size: .95rem; font-weight: 700;
}
.hero-card-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amarelo); margin-bottom: .35rem;
}
.hero-card-number {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 2rem; color: #fff; letter-spacing: .02em; line-height: 1.1;
}
.hero-card-addr { font-size: .82rem; color: rgba(249,247,242,.6); margin-top: .5rem; line-height: 1.5; }
.hero-social { display: flex; gap: .6rem; margin-top: 1rem; }
.hero-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.22); color: var(--branco);
  text-decoration: none; transition: .2s ease;
}
.hero-social a:hover { border-color: var(--amarelo); color: var(--amarelo); }

/* ── SEÇÕES BASE ── */
.section { padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,5rem); }
.section-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: .7rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(2.4rem,4.5vw,4rem); line-height: .93;
  letter-spacing: -.01em; text-transform: uppercase;
}
.section-header { margin-bottom: clamp(2.5rem,5vw,4rem); }

/* ── SOBRE ── */
.sobre { background: var(--preto-meio); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.sobre .section-label { color: var(--amarelo); }
.sobre .section-title { color: var(--branco); margin-bottom: 1.4rem; }
.sobre-desc { font-size: 1rem; color: rgba(249,247,242,.68); line-height: 1.7; margin-bottom: 2rem; max-width: 50ch; }
.pilares { display: flex; flex-direction: column; }
.pilar {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.3rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.pilar:last-child { border-bottom: none; }
.pilar-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--radius);
  background: var(--vermelho); display: flex; align-items: center;
  justify-content: center; font-size: 1.35rem;
}
.pilar-titulo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.05rem; color: var(--branco); margin-bottom: .2rem;
}
.pilar-desc { font-size: .84rem; color: rgba(249,247,242,.55); line-height: 1.5; }

.sobre-fotos { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.foto-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.foto-item.tall { grid-row: span 2; aspect-ratio: auto; }
.foto-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.foto-item:hover img { transform: scale(1.05); }

/* ── SERVIÇOS ── */
.servicos { background: var(--preto); }
.servicos .section-label { color: var(--vermelho); }
.servicos .section-title { color: var(--branco); }
.servicos-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: clamp(2.5rem,5vw,4rem); }
.servicos-sub { font-size: .9rem; color: rgba(249,247,242,.55); max-width: 38ch; line-height: 1.6; }

.categorias-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem;
}
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; display: block; text-decoration: none;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,16,.95) 0%, rgba(17,17,16,.35) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem; transition: background .3s ease;
}
.cat-card:hover .cat-overlay { background: linear-gradient(to top,rgba(17,17,16,.98) 0%,rgba(17,17,16,.55) 65%,transparent 100%); }
.cat-icon { font-size: 1.6rem; margin-bottom: .4rem; }
.cat-nome { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; color: #fff; line-height: 1.1; margin-bottom: .25rem; }
.cat-sub { font-size: .78rem; color: rgba(249,247,242,.65); line-height: 1.4; }
.cat-cta {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--verde-wpp); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .74rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 2px; margin-top: .6rem;
  width: fit-content; opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.cat-card:hover .cat-cta { opacity: 1; transform: translateY(0); }

.servicos-lista-titulo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(249,247,242,.38); margin-bottom: 1.2rem;
}

/* Grid de chips 2 colunas */
.servicos-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}
.s-chip {
  display: flex; align-items: center; gap: .75rem;
  background: var(--preto-meio);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
  cursor: pointer;
}
.s-chip:hover {
  background: rgba(30,30,28,1);
  border-color: rgba(255,214,0,.25);
  transform: translateY(-1px);
}
.s-chip-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: rgba(192,0,10,.15);
}
.s-chip-nome {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .92rem; color: var(--branco); line-height: 1.2;
}
.s-chip-sub { font-size: .72rem; color: rgba(249,247,242,.42); margin-top: 1px; line-height: 1.3; }

@media (max-width: 480px) {
  .servicos-chips { grid-template-columns: 1fr; }
}

.servicos-bar {
  margin-top: 3rem; background: var(--vermelho); border-radius: var(--radius);
  padding: 2rem 2.5rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.servicos-bar-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(1.3rem,3vw,1.9rem); color: #fff; text-transform: uppercase; line-height: 1.1; }
.servicos-bar-text span { color: var(--amarelo); }

/* ── GALERIA ── */
.galeria { background: var(--cinza-escuro); padding: clamp(3rem,6vw,5rem) 0; }
.galeria-header { padding: 0 clamp(1.5rem,5vw,5rem); margin-bottom: 2rem; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.galeria .section-label { color: #e85d26; }
.galeria .section-title { color: var(--branco); }
.insta-link {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .84rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--branco); border-bottom: 2px solid rgba(255,255,255,.18); padding-bottom: 2px;
  transition: .2s ease;
}
.insta-link:hover { color: var(--amarelo); border-color: var(--amarelo); }

.galeria-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 4px; padding: 0 4px; }
.g-item { aspect-ratio: 1; overflow: hidden; position: relative; }
.g-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.88); transition: transform .5s cubic-bezier(.16,1,.3,1), filter .3s ease; }
.g-item:hover img { transform: scale(1.08); filter: brightness(1.05); }
.g-overlay { position: absolute; inset: 0; background: rgba(17,17,16,0); display: flex; align-items: center; justify-content: center; transition: background .3s ease; }
.g-item:hover .g-overlay { background: rgba(17,17,16,.4); }
.g-overlay svg { opacity: 0; transform: scale(.8); transition: .3s ease; }
.g-item:hover .g-overlay svg { opacity: 1; transform: scale(1); }

/* ── CTA CENTRAL ── */
.cta-mid { background: var(--vermelho); padding: clamp(4rem,7vw,6rem) clamp(1.5rem,5vw,5rem); text-align: center; }
.cta-mid-tag {
  display: inline-block; background: rgba(255,255,255,.15);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amarelo); padding: .35rem 1rem; border-radius: 2px; margin-bottom: 1.5rem;
}
.cta-mid h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(2.8rem,6vw,5rem); line-height: .9;
  text-transform: uppercase; color: #fff; margin-bottom: 1.2rem;
}
.cta-mid h2 .am { color: var(--amarelo); }
.cta-mid p { font-size: 1rem; color: rgba(255,230,225,.8); margin-bottom: 2.5rem; max-width: 40ch; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-mid-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── LOCALIZAÇÃO ── */
.localizacao { background: var(--preto-meio); }
.localizacao .section-label { color: var(--amarelo); }
.localizacao .section-title { color: var(--branco); }
.local-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.infos-lista { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--vermelho); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.info-label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(249,247,242,.45); margin-bottom: .2rem; }
.info-val { font-size: .97rem; font-weight: 600; color: var(--branco); line-height: 1.45; }
.local-btns { display: flex; flex-wrap: wrap; gap: .8rem; }
.mapa-wrap { border-radius: 6px; overflow: hidden; height: 400px; border: 2px solid rgba(255,255,255,.1); }
.mapa-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FOOTER ── */
footer { background: #0a0a09; border-top: 3px solid var(--amarelo); padding: 4rem clamp(1.5rem,5vw,5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { height: 58px; width: auto; object-fit: contain; mix-blend-mode: screen; filter: brightness(1.05); margin-bottom: 1rem; }
.footer-desc { font-size: .86rem; color: rgba(249,247,242,.45); line-height: 1.7; max-width: 38ch; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: rgba(249,247,242,.55); text-decoration: none; transition: .2s ease; }
.footer-social a:hover { border-color: var(--amarelo); color: var(--amarelo); }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(249,247,242,.38); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .86rem; color: rgba(249,247,242,.55); text-decoration: none; transition: color .15s ease; }
.footer-links a:hover { color: var(--amarelo); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .78rem; color: rgba(249,247,242,.3); }
.footer-copy a { color: var(--amarelo); text-decoration: none; }

/* ── WPP FLOAT ── */
.wpp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  display: flex; align-items: center; gap: 10px;
  background: var(--verde-wpp); color: #fff; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: .88rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .9rem 1.4rem; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
}
.wpp-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 36px rgba(37,211,102,.5); }
.wpp-pulse { width: 9px; height: 9px; border-radius: 50%; background: #a8ffbc; flex-shrink: 0; animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1;}55%{transform:scale(1.6);opacity:.4;} }

/* ── REVEAL ── */
[data-r] { opacity: 0; transform: translateY(18px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
[data-r].on { opacity: 1; transform: translateY(0); }
[data-r][data-d="1"] { transition-delay: .1s; }
[data-r][data-d="2"] { transition-delay: .2s; }
[data-r][data-d="3"] { transition-delay: .3s; }
[data-r][data-d="4"] { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-fotos { display: none; }
  .categorias-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: repeat(3,1fr); }
  .local-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Hero mobile: só o essencial */
  .hero-cats { display: none; }
  .btn-outline { display: none; }
  .btn-amarelo { display: none; }
  .wpp-float { display: none; }
  .hero h1 { display: none; }
  .hero-eyebrow { display: none; }
  .hero-card-h1-mobile { display: block; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: clamp(2.8rem,13vw,4rem); }
  .categorias-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .wpp-float span { display: none; }
  .wpp-float { border-radius: 50%; width: 58px; height: 58px; padding: 0; justify-content: center; }
  .wpp-pulse { display: none; }
  .servicos-bar { flex-direction: column; text-align: center; }
}
