/* ============================================================
   EDITORIAL LAYER · dark monocromático com 1 acento vermelho
   Camada que sobrescreve o rainbow, alinha com o perfil do artista.
   Tom: galeria de arte urbana sem pirotecnia, com pop pontual.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Fraunces:ital,wght@1,400;1,500&display=swap');

:root {
  --red:      #d72638;
  --red-dark: #a01d2a;
  --grain-op: .055;
}

/* ===== Ruído fino global ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: var(--grain-op);
  mix-blend-mode: overlay;
}

/* ===== Nav pill flutuante ===== */
.nav {
  top: 18px;
  padding: 0 24px;
  background: transparent !important;
  backdrop-filter: none !important;
  border: 0 !important;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.nav.is-scrolled { top: 12px; padding: 0 24px; }
.nav__brand,
.nav__links,
.nav__right {
  background: rgba(15,15,15,.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 0 18px;
  height: 56px;
  display: flex;
  align-items: center;
  box-shadow: 0 18px 48px -18px rgba(0,0,0,.6);
}
.nav__links { padding: 6px; gap: 4px; }
.nav__links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .14em;
}
.nav__links a:hover { background: rgba(255,255,255,.06); color: var(--ink); }
.nav__links a.is-active { background: var(--red); color: #fff; }
.nav__links a::after { display: none; }
.nav__brand-mark em { color: var(--red); transition: color .3s; }
.nav__brand:hover .nav__brand-mark em { color: #fff; }

@media (max-width: 900px) {
  .nav { grid-template-columns: auto auto; }
  .nav__links {
    padding: 80px 32px; height: auto; border-radius: 0;
    background: var(--bg); border-left: 1px solid var(--line);
  }
}

/* ===== Hero editorial ===== */
.hero { background: #060606; }
.hero__img { filter: grayscale(.85) contrast(1.12) brightness(.42); }
.hero__vignette { background: radial-gradient(ellipse at 50% 60%, transparent 28%, #060606 95%); }

/* Substitui os 3 blobs coloridos por UM orbe vermelho atrás do título */
.hero__paint .blob { display: none; }
.hero__paint::after {
  content: '';
  position: absolute;
  top: 28%; left: 6%;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red), transparent 65%);
  filter: blur(90px);
  opacity: .32;
  mix-blend-mode: screen;
  animation: orbeDrift 18s ease-in-out infinite alternate;
}
@keyframes orbeDrift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(80px,-40px) scale(1.12); }
}

/* Hero typography: Anton (display) + Fraunces italic */
.hero__title {
  font-family: 'Anton', 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: .92;
  text-transform: uppercase;
}
.hero__title .word.stroke {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: .88em;
  text-transform: none;
  -webkit-text-stroke: 0;
  background: none;
  -webkit-text-fill-color: var(--ink);
  color: var(--ink);
  animation: none;
  position: relative;
  padding: 0 .14em;
  z-index: 1;
}
.hero__title .word.stroke::before {
  content: '';
  position: absolute;
  inset: auto -.08em -.05em -.08em;
  height: 16px;
  background: var(--red);
  z-index: -1;
  transform: skewX(-8deg);
}

/* remove as 5 formas geométricas coloridas */
.hero > .deco { display: none; }

/* signature: vermelho */
.hero__signature path {
  stroke: var(--red);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 18px rgba(215,38,56,.55));
}

/* badge "est. 1996" */
.hero__badge {
  position: absolute;
  bottom: 110px;
  right: var(--gutter);
  left: auto;
  z-index: 4;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
}
.hero__badge i {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(215,38,56,.7);
  animation: pulseDot 2.4s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(215,38,56,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(215,38,56,0); }
  100% { box-shadow: 0 0 0 0 rgba(215,38,56,0); }
}

/* drip do hero some o multicolor */
.hero__drip svg path { fill: #060606; }

/* ===== Eyebrows restritos ===== */
.eyebrow { background: rgba(255,255,255,.03); }
.eyebrow::before {
  background: var(--red); width: 10px; height: 10px; filter: blur(5px); opacity: .9;
}

/* ===== Section title sem rainbow ===== */
.section__title.big {
  font-family: 'Anton', 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: -.005em;
  text-transform: uppercase;
}
.section__title.big::after {
  width: 80px; height: 4px;
  background: var(--red);
  filter: none;
  border-radius: 2px;
}

/* ===== Buttons restritos ===== */
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--red); color: #fff; box-shadow: 0 12px 32px rgba(215,38,56,.35); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.contact__form .btn { background: var(--red); color: #fff; }
.contact__form .btn:hover { background: var(--ink); color: var(--bg); box-shadow: 0 12px 32px rgba(255,255,255,.18); }

/* ===== Cards: sem splat colorido, só glow vermelho sutil ===== */
.card::before { display: none; }
.card { border: 1px solid rgba(255,255,255,.06); }
.card:hover {
  box-shadow: 0 40px 90px -30px rgba(215,38,56,.28), 0 30px 60px rgba(0,0,0,.6);
  border-color: rgba(215,38,56,.3);
}
.card:hover .card__title {
  background: none;
  -webkit-text-fill-color: var(--ink);
  color: var(--ink);
}
.card__tag { background: rgba(215,38,56,.92); border-color: transparent; color: #fff; }
.card__count { background: rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.08); }
.card.tilt {
  transform: perspective(1200px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) translateY(-4px) translateZ(0);
}

/* ===== Stats monocromáticas com traço vermelho ===== */
.stat:nth-child(n) .stat__num {
  background: none;
  -webkit-text-fill-color: var(--ink);
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.stat:nth-child(n) .stat__num::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -10px;
  transform: translateX(-50%);
  width: 28px; height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.stat__label { margin-top: 22px; }

/* ===== Marquee editorial: sans + serif italic vermelho alternado ===== */
.marquee { background: var(--bg); }
.marquee__track { gap: 32px; align-items: center; }
.marquee__item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -.005em;
  text-transform: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 32px;
}
.marquee__item:nth-child(even) {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}
.marquee__item::after { content: '·'; color: var(--red); font-size: 24px; line-height: 1; }

/* ===== Filtros restritos ===== */
.filter-chip { background: rgba(255,255,255,.03); }
.filter-chip.is-active {
  background: var(--red); color: #fff; border-color: var(--red);
  box-shadow: 0 8px 24px rgba(215,38,56,.35);
}

/* ===== Drip dividers só em dark ===== */
.drip-divider path { fill: var(--bg); }
.drip-divider.invert path { fill: var(--bg-2); }

/* ===== Watermarks de seção, dark + um toque vermelho ===== */
.gallery::before, .gallery--alt::before,
.clients::before, .contact::before, .about::before {
  background: var(--red);
  opacity: .08;
}

/* ===== Luzes ambientes (mesma vibe do cursor spotlight) ===== */
.about, .gallery, .gallery--alt, .clients, .contact, .stats { position: relative; overflow: hidden; }
.about::after,
.gallery::after,
.gallery--alt::after,
.clients::after,
.contact::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(215,38,56,.22), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
  animation: lightDrift 22s ease-in-out infinite alternate;
}
/* posições alternadas em cada seção */
.about::after        { top: -200px; right: -260px; }
.gallery::after {
  top: 50%; left: -220px;
  margin-top: -450px;
  bottom: auto;
  animation-duration: 26s;
}
.gallery--alt::after { display: none; }
.clients::after      { top: 30%; left: 60%; animation-duration: 24s; width: 700px; height: 700px; }
.contact::after      { bottom: -240px; left: 30%; animation-duration: 28s; }

/* segunda luz, branca/quente discreta, em um par de seções */
.about::before, .clients::before { width: 700px; height: 700px; filter: blur(90px); }
.gallery--alt::before { width: 700px; height: 700px; opacity: .06; }

@keyframes lightDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -40px) scale(1.12); }
}

/* mantém o conteúdo acima das luzes */
.section > .container { position: relative; z-index: 2; }

@media (max-width: 720px) {
  .about::after, .gallery::after, .gallery--alt::after,
  .clients::after, .contact::after {
    width: 500px; height: 500px; filter: blur(80px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about::after, .gallery::after, .gallery--alt::after,
  .clients::after, .contact::after { animation: none !important; }
}

/* ===== Testimonial editorial ===== */
.testimonial::before {
  font-family: 'Fraunces', serif;
  color: var(--red);
  font-size: 240px;
  opacity: .12;
  top: -60px;
}
.testimonial p {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
}

/* ===== Footer ===== */
.footer::before {
  background: var(--red);
  height: 3px;
  opacity: 1;
}
.footer__brand em { color: var(--red); }

/* Logo do rodapé */
.footer__brand { display: inline-flex; }
.footer__logo {
  height: 56px;
  width: auto;
  display: block;
  transition: transform var(--t-fast), opacity var(--t-fast);
  opacity: .92;
}
.footer__brand:hover .footer__logo { transform: scale(1.04); opacity: 1; }

/* Crédito Air Midia Digital — versão compacta */
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-dim);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color var(--t-fast);
}
.footer__credit span { line-height: 1; }
.footer__credit img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .55;
  transition: opacity var(--t-fast);
}
.footer__credit:hover { color: var(--ink-soft); }
.footer__credit:hover img { opacity: .9; }

/* ===== Lightbox ===== */
.lightbox__title { background: none; -webkit-text-fill-color: var(--ink); color: var(--ink); }
.lightbox__close:hover, .lightbox__arrow:hover {
  background: var(--red); border-color: var(--red); color: #fff;
}
.lightbox__thumbs button.is-active { border-color: var(--red); }

/* ===== Spray trail desligado, cursor spotlight discreto ===== */
.spray-trail { display: none; }
.spotlight {
  display: block;
  width: 360px; height: 360px;
  background: radial-gradient(circle at center, rgba(215,38,56,.14), transparent 65%);
  mix-blend-mode: screen;
}
@media (hover: none) { .spotlight { display: none; } }

/* ===== Floating WhatsApp + Back-to-top empilhados ===== */
.float-wpp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 4px 12px rgba(0,0,0,.3);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.float-wpp svg { width: 26px; height: 26px; }
.float-wpp::before,
.float-wpp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  opacity: .55;
  animation: wppPulse 2.4s cubic-bezier(.22,1,.36,1) infinite;
}
.float-wpp::after { animation-delay: 1.2s; }
.float-wpp:hover {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 16px 36px rgba(37,211,102,.55), 0 6px 16px rgba(0,0,0,.4);
}
@keyframes wppPulse {
  0%   { transform: scale(1);   opacity: .55; }
  80%  { transform: scale(1.7); opacity: 0;   }
  100% { transform: scale(1.7); opacity: 0;   }
}

/* Sobrescreve a posição do totop: 56 (wpp) + 24 (bottom) + 12 (gap) = 92 */
.totop {
  right: 28px !important;
  bottom: 96px !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(255,255,255,.08) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  backdrop-filter: blur(10px);
  z-index: 89;
}
.totop:hover { background: var(--red) !important; border-color: var(--red) !important; color: #fff !important; }
.totop svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .float-wpp { width: 50px; height: 50px; right: 18px; bottom: 18px; }
  .float-wpp svg { width: 22px; height: 22px; }
  .totop { right: 21px !important; bottom: 78px !important; width: 38px !important; height: 38px !important; }
}

/* ===== Contato (versão WhatsApp-first, sem formulário) ===== */
.contact__center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__center .section__sub { margin-bottom: 36px; }

.btn-wpp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 36px;
  height: auto;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 16px 40px -10px rgba(37,211,102,.5), 0 4px 12px rgba(0,0,0,.25);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  will-change: transform;
  margin-bottom: 36px;
}
.btn-wpp svg { width: 26px; height: 26px; }
.btn-wpp:hover {
  background: #1fb558;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 50px -10px rgba(37,211,102,.65), 0 8px 18px rgba(0,0,0,.3);
}

.contact__alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 560px;
}
.contact__alt a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink-soft);
  transition: color var(--t-fast);
}
.contact__alt a:hover { color: var(--red); }
.contact__alt .contact__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact__alt .contact__value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.contact__alt .contact__sep { color: var(--ink-dim); opacity: .5; }

@media (max-width: 600px) {
  .btn-wpp { padding: 16px 26px; font-size: 13px; gap: 10px; width: 100%; }
  .btn-wpp svg { width: 22px; height: 22px; }
  .contact__alt { flex-direction: column; gap: 12px; }
  .contact__alt .contact__sep { display: none; }
}

/* ===== Loader, scroll progress, form ===== */
.loader__logo {
  height: 60px;
  width: auto;
  display: block;
  animation: loaderPulse 1.6s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: .75; transform: scale(.98); }
  50%      { opacity: 1;   transform: scale(1.02); }
}
.loader__bar i { background: var(--red); }
.scroll-progress { background: var(--red); }
.field input:focus, .field textarea:focus { border-color: var(--red); }
.field.has-error input, .field.has-error textarea { border-color: var(--red); }

/* ===== About: foto media stack mais editorial ===== */
.about__media::before {
  background: radial-gradient(circle at center, var(--red), transparent 70%);
  opacity: .18;
}
.about__photo { border-radius: 4px; }
.about__photo--sm { border-color: var(--bg-2); border-radius: 4px; }

/* tag rotacionada (sticker) sobre a foto principal */
.about__sticker {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  background: var(--red);
  padding: 6px 12px;
  border-radius: 2px;
  transform: rotate(-4deg);
  letter-spacing: .02em;
}

/* ===== Section titles podem ter palavra em italic Fraunces ===== */
.section__title .it,
.section__title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--ink-soft);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .hero__paint::after, .hero__badge i { animation: none !important; }
}

@media (max-width: 720px) {
  .hero__paint::after { width: 320px; height: 320px; filter: blur(60px); opacity: .25; }
  .hero__badge { display: none; }
  .testimonial::before { font-size: 140px; top: -30px; }
  .marquee__item { font-size: 18px; }
}

/* ============================================================
   MOBILE FIXES · filters horizontais, contato sem overflow,
   clientes compacto + logos clicável
   ============================================================ */
@media (max-width: 760px) {
  /* Filtros viram carrossel horizontal */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-chip {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Contact methods: cards inteiros sem vazar */
  .contact__methods { width: 100%; }
  .contact__method {
    grid-template-columns: minmax(0, 88px) minmax(0, 1fr) !important;
    gap: 12px;
    padding: 16px 18px;
    min-width: 0;
  }
  .contact__method:hover { transform: none; }
  .contact__value {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }

  /* Form sem overflow horizontal */
  .contact__form { padding: 22px 18px; }
  .field input,
  .field textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .clients__sponsor { margin-bottom: 32px; }
  .clients__marquee { margin-bottom: 32px; }
}

.clients .section__head { margin-bottom: clamp(28px, 4vw, 48px) !important; }


/* ============================================================
   FINAL TUNING · nav centralizada compacta, hero menor,
   drips removidos, social icons modernos
   ============================================================ */

/* === NAV: pill única branca centralizada =========================== */
.nav {
  display: flex !important;
  justify-content: center !important;
  grid-template-columns: none !important;
  padding: 18px var(--gutter) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* a pílula em si: container flex com brand + links + right */
.nav__pill {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 64px;
  padding: 6px 10px 6px 22px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.06);
  transition: height var(--t-med);
  max-width: calc(100% - 24px);
}
.nav.is-scrolled .nav__pill { height: 60px; }

/* zera estilos antigos dos 3 grupos */
.nav__brand,
.nav__links,
.nav__right {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
  height: auto;
}

/* brand: logo png */
.nav__brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav__logo {
  height: 36px;
  width: auto;
  display: block;
  transition: transform var(--t-fast);
}
.nav__brand:hover .nav__logo { transform: scale(1.04); }

/* divider entre brand e links */
.nav__pill::before {
  content: '';
  display: block;
  width: 1px; height: 22px;
  background: rgba(0,0,0,.1);
  margin: 0 14px 0 18px;
  order: 1;
}

/* links: dark text on white */
.nav__links {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 2px;
  order: 2;
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #2a2a2a;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__links a:hover { background: rgba(0,0,0,.06); color: #000; }
.nav__links a.is-active { background: var(--red); color: #fff; }
.nav__links a::after { display: none !important; }

/* right: divider + lang + burger */
.nav__right {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 3;
  padding-left: 8px;
  position: relative;
}
.nav__right::before {
  content: '';
  width: 1px; height: 22px;
  background: rgba(0,0,0,.1);
  margin-right: 4px;
}

.lang {
  background: transparent !important;
  border: 1px solid rgba(0,0,0,.1) !important;
  color: #555 !important;
  height: 38px;
  padding: 0 14px !important;
  border-radius: 999px;
}
.lang:hover { border-color: rgba(0,0,0,.25) !important; }
.lang [data-lang].is-on { color: var(--red) !important; }
.lang .lang__sep { color: rgba(0,0,0,.25) !important; }

.burger { background: rgba(0,0,0,.04); border-radius: 50%; }
.burger span { background: #111 !important; }

@media (max-width: 1000px) {
  .nav__pill { padding-left: 18px; padding-right: 6px; height: 58px; gap: 0; }
  .nav__logo { height: 32px; }
  .nav__pill::before { display: none; }
  .nav__links {
    position: fixed !important;
    top: 0; right: 0;
    width: min(82vw, 360px) !important;
    height: 100vh !important;
    padding: 88px 28px !important;
    background: #fff !important;          /* fundo branco real (sobrescreve !important do desktop) */
    border-left: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 0 !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    z-index: 110 !important;
    transform: translateX(100%);
    transition: transform var(--t-med);
    flex: none;
  }
  .nav__links.is-open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,.3); }
  .nav__links a { font-size: 14px; padding: 12px 18px; width: 100%; color: #2a2a2a !important; }
  .nav__right::before { display: none; }
  /* burger acima do drawer pra continuar clicável quando aberto */
  .burger { position: relative; z-index: 120; }
  .nav { z-index: 100; }
}
@media (min-width: 1001px) {
  .burger { display: none; }
}

/* === HERO: padding generoso, imagem nova === */
.hero {
  min-height: 88vh;
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}
.hero__img {
  filter: grayscale(.25) contrast(1.05) brightness(.55);
  object-position: center 30%;
  transform: scale(1.15); /* base maior pra absorver parallax sem buraco preto */
}
.hero__vignette {
  background:
    linear-gradient(180deg, rgba(6,6,6,.45) 0%, rgba(6,6,6,.15) 30%, rgba(6,6,6,.6) 80%, #060606 100%);
}
.hero__paint::after {
  opacity: .22;
  width: 420px; height: 420px;
}

/* título mais clean, duas linhas */
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .05em;
  font-size: clamp(56px, 9vw, 130px);
  line-height: .95;
}
.hero__title .line,
.hero__title .word {
  display: inline-block;
  overflow: hidden;
}
.hero__title .line.reveal,
.hero__title .word.reveal {
  transform: translateY(115%);
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
  opacity: 1;
}
.hero__title .line.reveal.is-in,
.hero__title .word.reveal.is-in { transform: translateY(0); }

.hero__title .stroke {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: .9em;
  text-transform: none;
  background: none;
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: var(--ink);
  color: var(--ink);
  animation: none;
  position: relative;
  padding: 0 .14em;
  z-index: 1;
}
.hero__title .stroke::before {
  content: '';
  position: absolute;
  inset: auto -.06em .05em -.06em;
  height: 16px;
  background: var(--red);
  z-index: -1;
  transform: skewX(-8deg);
}

/* hero badge sobe um pouco e ajusta */
.hero__badge { bottom: 88px; }

/* signature menor pra não competir com o título */
.hero__signature { width: 180px; height: 60px; opacity: .7; }

/* hero scroll mais discreto */
.hero__scroll { bottom: 24px; }

/* === REMOVE drips por completo (mesmo se ainda ficar algum vestígio) === */
.drip-divider, .hero__drip { display: none !important; }
.hero { padding-bottom: 80px; }

/* === Section padding mais respirável === */
.section { padding: clamp(80px, 10vw, 130px) 0; }

/* === Fundo uniforme: todas as seções pretas exceto Stats (logo abaixo
       da hero), Contato (cinza pra destacar o formulário) e Footer. === */
.gallery--alt,
.clients,
.about,
.gallery { background: var(--bg) !important; }
.contact { background: var(--bg-2) !important; }

/* === Stats reduzido === */
.stats { padding-top: 60px; }
.stats__inner { padding-bottom: 60px; }
.stat__num { font-size: clamp(44px, 5.5vw, 76px); }

/* === Socials no contato: ícones SVG com pill === */
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.socials__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  width: 100%;
  margin-bottom: 6px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--ink-soft);
  background: rgba(255,255,255,.03);
  font-size: 0;
  transition: all var(--t-fast);
  position: relative;
}
.socials a svg {
  width: 20px; height: 20px;
  stroke-width: 1.8;
  transition: transform var(--t-fast);
}
.socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(215,38,56,.35);
}
.socials a:hover svg { transform: scale(1.1); }

/* tooltip-like label on hover */
.socials a::after {
  content: attr(aria-label);
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
}
.socials a:hover::after { opacity: 1; }

/* === Footer também ganha row de social icons === */
.footer__social {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 18px 0 8px;
}
.footer__social a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  color: var(--ink-soft);
  transition: all var(--t-fast);
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }

