﻿:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: #111111;
  --panel-2: #171717;
  --line: rgba(255,255,255,.12);
  --text: #f1f1f1;
  --muted: #b0b0b0;
  --accent: #ff5a1f;
  --accent-2: #ff2d20;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0,0,0,.45);
  --shadow-sm: 0 8px 32px rgba(0,0,0,.35);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .8s ease;
  /* Ritmo vertical unificado */
  --section-pad: clamp(64px, 8vw, 112px);
  --section-pad-sm: clamp(48px, 6vw, 80px);
  --divider-gap: clamp(32px, 4vw, 56px);
  --container-gap: clamp(16px, 3vw, 32px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: transparent;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

/* fundo base escuro — fica atrás de tudo incluindo aurora */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

body { animation: pageFadeIn .5s ease forwards; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 38px 38px, 38px 38px, 9px 9px;
  z-index: 2;
}

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,90,31,.16), transparent 65%);
  filter: blur(12px);
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: left .08s ease, top .08s ease;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 3vw, 48px);
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(5,5,5,.88);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}

/* ── BRAND ── */
.brand { display: flex; align-items: center; gap: 14px; font-family: 'Syne', sans-serif; }
.brand-tag {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,90,31,.5);
  background: linear-gradient(180deg, rgba(255,90,31,.18), rgba(255,45,32,.06));
  font-weight: 800;
  transition: background var(--transition), border-color var(--transition);
}
.brand:hover .brand-tag {
  background: linear-gradient(180deg, rgba(255,90,31,.35), rgba(255,45,32,.15));
  border-color: var(--accent);
}
.brand-text { letter-spacing: .18em; font-size: .9rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: .12em;
}
.site-nav a { position: relative; color: var(--muted); transition: color var(--transition); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .3s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--white); }
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

main, .site-footer { position: relative; z-index: 5; }

/* aurora e grid ficam visíveis atrás do conteúdo */
.aurora-bg { z-index: 1 !important; }
.animated-grid { z-index: 2 !important; }
.noise { z-index: 6 !important; }
.cursor-glow { z-index: 5 !important; }
.site-header { z-index: 200 !important; }

.hero, .statement, .featured-work, .process, .cta-band,
.inner-page, .site-footer {
  width: min(1280px, calc(100% - clamp(40px, 6vw, 100px)));
  margin-inline: auto;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(100px, 12vh, 140px) 0 clamp(80px, 10vh, 120px);
  position: relative;
}

.hero-grid {
  position: absolute;
  inset: 40px 0 0;
  border: 1px solid rgba(255,255,255,.08);
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.95), transparent 92%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.95), transparent 92%);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-family: 'Syne', sans-serif;
  font-size: clamp(.72rem, 1vw, .85rem);
  margin-bottom: 24px;
}

.hero h1, .page-hero h1 {
  margin: 0;
  line-height: .92;
  display: grid;
  gap: 6px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero h1 span, .page-hero h1 span {
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-family: 'Bebas Neue', cursive;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: .9;
}
.headline-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.92);
  font-family: 'Bebas Neue', cursive !important;
  font-weight: 400;
  letter-spacing: .06em;
}

/* GLITCH */
.glitch { position: relative; display: inline-block; }
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.glitch::before {
  color: rgba(255,90,31,.95);
  transform: translate(2px, -2px);
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 42%);
}
.glitch::after {
  color: rgba(255,255,255,.8);
  transform: translate(-2px, 2px);
  clip-path: polygon(0 62%, 100% 58%, 100% 100%, 0 100%);
}
.glitch.animate::before { animation: glitchTop 2.5s infinite steps(1); }
.glitch.animate::after  { animation: glitchBot 2.5s infinite steps(1); }
@keyframes glitchTop {
  0%,90%,100% { transform: translate(2px,-2px); clip-path: polygon(0 0,100% 0,100% 38%,0 42%); }
  92% { transform: translate(-3px,-2px) skewX(-4deg); clip-path: polygon(0 0,100% 0,100% 28%,0 32%); }
  94% { transform: translate(3px,0); clip-path: polygon(0 5%,100% 5%,100% 45%,0 50%); }
  96% { transform: translate(-2px,-3px); clip-path: polygon(0 0,100% 0,100% 38%,0 42%); }
}
@keyframes glitchBot {
  0%,90%,100% { transform: translate(-2px,2px); clip-path: polygon(0 62%,100% 58%,100% 100%,0 100%); }
  92% { transform: translate(3px,2px) skewX(4deg); clip-path: polygon(0 70%,100% 65%,100% 100%,0 100%); }
  94% { transform: translate(-3px,0); clip-path: polygon(0 55%,100% 60%,100% 100%,0 100%); }
  96% { transform: translate(2px,3px); clip-path: polygon(0 62%,100% 58%,100% 100%,0 100%); }
}

.typing-cursor::after { content: '|'; color: var(--accent); animation: blink .7s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-text, .page-hero p {
  width: min(620px, 100%);
  color: #d0d0d0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.85;
  margin: 36px 0 0;
}

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-family: 'Syne', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(255,90,31,.22);
}
.btn-primary:hover { box-shadow: 0 20px 50px rgba(255,90,31,.38); }
.btn-ghost {
  background: rgba(255,255,255,.03);
  color: var(--white);
}
.btn-ghost:hover { border-color: rgba(255,90,31,.5); color: var(--accent); background: rgba(255,90,31,.06); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}
.hero-meta div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015));
  transition: border-color var(--transition), background var(--transition);
}
.hero-meta div:hover {
  border-color: rgba(255,90,31,.3);
  background: linear-gradient(180deg, rgba(255,90,31,.06), rgba(255,255,255,.015));
}
.hero-meta strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .84rem;
}
.hero-meta span { color: var(--muted); }

.hero-visual { position: relative; min-height: 680px; }
.hero-frame {
  position: absolute;
  inset: 0 0 60px 80px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0b0b0b;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: soft-light;
  z-index: 2;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.06);
  transition: transform .6s ease, filter .6s ease;
}
.hero-frame:hover img { transform: scale(1.04); filter: saturate(1.1) contrast(1.1); }
.frame-lines {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,90,31,.38);
  z-index: 3;
  transition: inset var(--transition), border-color var(--transition);
}
.hero-frame:hover .frame-lines { inset: 10px; border-color: rgba(255,90,31,.7); }
.frame-stamp {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 14px 18px;
  background: rgba(0,0,0,.72);
  border-top: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.12);
  font-family: 'Syne', sans-serif;
  letter-spacing: .16em;
  font-size: .75rem;
  z-index: 3;
}

.floating-card {
  position: absolute;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,5,5,.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-family: 'Syne', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .76rem;
  animation: floatCard 4s ease-in-out infinite;
}
.card-a { left: 0; top: 120px; animation-delay: 0s; }
.card-b { right: 12px; top: 34px; animation-delay: 1.3s; }
.card-c { right: 40px; bottom: 0; animation-delay: 2.6s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── SECTIONS ── */
.statement,
.featured-work,
.process,
.cta-band,
.page-hero,
.bio-grid,
.quote-panel,
.data-grid,
.works-grid,
.contact-layout {
  padding: var(--section-pad) 0;
}
.statement,
.featured-work,
.process {
  background: transparent;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.section-heading.split {
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.section-heading h2,
.bio-card h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  line-height: .95;
  font-family: 'Bebas Neue', cursive;
  text-transform: uppercase;
  letter-spacing: .04em;
  word-break: break-word;
  overflow-wrap: break-word;
}
.text-link {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.text-link::after { content: ' →'; transition: letter-spacing var(--transition); }
.text-link:hover::after { letter-spacing: .3em; }

.statement-grid,
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.statement-grid article,
.data-grid article,
.bio-card,
.contact-panel,
.process-track article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: clamp(24px, 3vw, 36px);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.statement-grid article:hover,
.data-grid article:hover,
.process-track article:hover {
  border-color: rgba(255,90,31,.4);
  background: linear-gradient(180deg, rgba(255,90,31,.08), rgba(255,255,255,.02));
  transform: translateY(-4px);
}
.statement-grid h3,
.data-grid h3,
.process-track h3,
.work-info h2,
.work-info h3 {
  margin: 20px 0 14px;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.statement-grid p,
.data-grid p,
.process-track p,
.work-info p,
.text-card p,
.contact-list span {
  color: var(--muted);
  line-height: 1.8;
  font-size: clamp(.9rem, 1.2vw, 1rem);
}
.number {
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  letter-spacing: .14em;
  font-size: .85rem;
}
.data-grid .number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}

/* ── FEATURED WORK ── */
.feature-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 28px;
}
.feature-card,
.work-card,
.contact-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c0c;
  cursor: pointer;
}
.feature-card img,
.work-card img,
.contact-visual img {
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1), filter .6s ease;
}
.feature-card:hover img,
.work-card:hover img { transform: scale(1.06); filter: brightness(1.1) saturate(1.1); }
.feature-main { min-height: clamp(420px, 50vh, 620px); }
.feature-stack { display: grid; gap: 20px; }
.feature-stack .feature-card { min-height: clamp(196px, 24vh, 296px); }
.feature-overlay,
.work-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.92));
  transition: padding var(--transition);
}
.feature-card:hover .feature-overlay,
.work-card:hover .work-info { padding-bottom: 36px; }
.feature-overlay h3,
.work-info h2,
.work-info h3 { margin-bottom: 0; }
.feature-overlay.compact { padding: 22px; }

.work-card::after,
.feature-card::after {
  content: '⊕';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(.8);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 4;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.work-card:hover::after,
.feature-card:hover::after { opacity: 1; transform: scale(1); }

/* ── PROCESS ── */
.process-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.process-track span {
  color: var(--accent);
  font-family: 'Bebas Neue', 'Syne', cursive;
  font-size: 2rem;
}

/* ── CTA BAND ── */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgba(255,90,31,.22);
  background: linear-gradient(90deg, rgba(255,90,31,.12), rgba(255,255,255,.02));
  padding: clamp(32px, 4vw, 52px) clamp(32px, 4vw, 52px);
  margin-bottom: clamp(48px, 6vw, 96px);
  transition: border-color var(--transition), background var(--transition);
}
.cta-band:hover {
  border-color: rgba(255,90,31,.4);
  background: linear-gradient(90deg, rgba(255,90,31,.18), rgba(255,255,255,.03));
}
.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  line-height: .95;
  font-family: 'Bebas Neue', cursive;
  text-transform: uppercase;
  letter-spacing: .04em;
  word-break: break-word;
}

/* ── INNER PAGES ── */
.inner-page { min-height: calc(100vh - 180px); padding-top: clamp(88px, 11vh, 120px); }
.page-hero { padding-top: clamp(40px, 6vh, 72px); }

.bio-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}
.visual-card, .contact-visual { min-height: clamp(340px, 45vh, 560px); }
.visual-card img, .contact-visual img { height: 100%; object-fit: cover; }

.quote-panel {
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,90,31,.14), rgba(255,255,255,.02));
  padding: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(80px, 100px) 1fr;
  align-items: center;
  gap: 28px;
}
.quote-mark {
  font-family: 'Bebas Neue', 'Syne', cursive;
  font-size: 3rem;
  color: var(--accent);
}
blockquote {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 3.5rem);
  line-height: 1.05;
  font-family: 'Bebas Neue', cursive;
  text-transform: uppercase;
  letter-spacing: .04em;
  word-break: break-word;
}

/* ── WORKS GRID ── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.work-card { min-height: 460px; }
.work-card.large { grid-column: span 2; min-height: 720px; }

/* ── CONTACT ── */
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
.contact-list a {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.contact-list a:hover {
  border-color: rgba(255,90,31,.4);
  background: rgba(255,90,31,.06);
  transform: translateX(6px);
}
.contact-list strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  word-break: break-word;
}

/* ── CONTACT FORM ── */
.contact-form { display: grid; gap: 22px; margin-top: 36px; }
.form-group { display: grid; gap: 10px; }
.form-group label {
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  padding: 18px 20px;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(255,90,31,.06);
  box-shadow: 0 0 0 3px rgba(255,90,31,.12);
}
.form-group input.error,
.form-group textarea.error { border-color: #ff4444; }
.form-group .field-error { font-size: .8rem; color: #ff6666; font-family: 'Syne', sans-serif; letter-spacing: .08em; }
.form-group textarea { min-height: 130px; }
.form-group select option { background: #111; }
.form-success {
  display: none;
  padding: 22px;
  border: 1px solid rgba(80,200,120,.4);
  background: rgba(80,200,120,.08);
  color: #80e0a0;
  font-family: 'Syne', sans-serif;
  letter-spacing: .1em;
  text-align: center;
}
.form-success.visible { display: block; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.12);
}
.lightbox-caption {
  font-family: 'Syne', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color var(--transition), background var(--transition);
}
.lightbox-close:hover { border-color: var(--accent); background: rgba(255,90,31,.1); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color var(--transition), background var(--transition);
}
.lightbox-nav:hover { border-color: var(--accent); background: rgba(255,90,31,.15); }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }

/* ── BACK TO TOP — progress ring ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  background: none;
  border: none;
  padding: 0;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.btt-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.btt-track {
  fill: none;
  stroke: rgba(255,255,255,.08);
  stroke-width: 2;
}
.btt-progress {
  fill: none;
  stroke: url(#bttGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 138.23; /* 2π × 22 */
  stroke-dashoffset: 138.23;
  transition: stroke-dashoffset .1s linear;
}
.btt-inner {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10,10,10,.92);
  border: 1px solid rgba(255,90,31,.35);
  display: grid;
  place-items: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.back-to-top:hover .btt-inner {
  background: rgba(255,90,31,.15);
  border-color: var(--accent);
  transform: scale(1.08);
}
.btt-arrow {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,.85);
  transition: transform .3s ease, color .3s ease;
}
.back-to-top:hover .btt-arrow {
  transform: translateY(-2px);
  color: #fff;
}
@media (max-width: 760px) {
  .back-to-top { bottom: 20px; right: 16px; }
}

/* ── FOOTER ── */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: clamp(48px, 6vw, 80px) 0 clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.site-footer strong {
  display: block;
  margin-top: 22px;
  font-family: 'Syne', sans-serif;
  letter-spacing: .12em;
}
.site-footer p { color: var(--muted); }
.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 20px;
  color: var(--muted);
}
.site-footer div:last-child a { transition: color var(--transition); }
.site-footer div:last-child a:hover { color: var(--accent); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HERO SHADER SECTION ── */
.hero-shader-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#shaderCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: block;
  z-index: 0;
}

.hero-shader-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.72) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.1) 50%, rgba(5,5,5,0.7) 100%);
  z-index: 1;
}

.hero-shader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-shader-eyebrow {
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: clamp(.7rem, 1.2vw, .88rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  margin: 0 0 32px;
  opacity: .9;
}

.hero-shader-headline {
  margin: 0;
  line-height: .88;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-shader-name {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(5rem, 18vw, 16rem);
  text-transform: uppercase;
  display: block;
  font-weight: 400;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #ffffff 0%, #555555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(255,90,31,.35));
  word-break: break-word;
  line-height: .9;
}

.hero-shader-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.85);
  font-family: 'Bebas Neue', cursive !important;
  font-weight: 400;
  letter-spacing: .08em;
  text-shadow: none;
}

.hero-shader-tagline {
  margin: 36px 0 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(.9rem, 1.8vw, 1.2rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  font-weight: 400;
  word-break: break-word;
}

.hero-shader-actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-shader-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  letter-spacing: .22em;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, rgba(255,90,31,.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── GRADIENT HEADLINES ── */
.section-heading h2,
.statement-grid h3,
.process-track h3,
.data-grid h3,
.cta-band h2,
.bio-card h2,
.contact-panel h2,
.feature-overlay h3,
.work-info h2,
.work-info h3,
blockquote {
  background: linear-gradient(180deg, #ffffff 0%, #555555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.page-hero h1,
.hero h1 {
  background: linear-gradient(180deg, #ffffff 0%, #444444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero h1 .glitch,
.hero h1 .glitch,
.hero-shader-name.glitch {
  background: linear-gradient(180deg, #ffffff 0%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero h1 .headline-outline,
.hero h1 .headline-outline,
.hero-shader-outline {
  background: none;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.85);
}

/* ── VIDEO SCROLL EXPAND ── */
.vid-expand-section {
  position: relative;
  height: 450vh;
  margin-top: clamp(40px, 6vw, 80px);
  margin-bottom: clamp(80px, 10vw, 160px);
}
.vid-expand-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vid-expand-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vid-expand-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.35) saturate(.6);
}
.vid-expand-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.85) 100%);
}

/* ── PERGUNTA TOPO ── */
.vid-q-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(20px, 5vw, 80px) clamp(16px, 3vh, 28px);
  /* altura = metade da tela menos metade da foto */
  height: calc(50vh - var(--media-half, 105px));
  pointer-events: none;
  text-align: center;
  will-change: transform, opacity;
}
.vid-q-eyebrow {
  margin: 0 0 12px !important;
  font-size: clamp(.62rem, 1vw, .78rem) !important;
  letter-spacing: .28em;
}
.vid-q-line {
  margin: 0;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,.95)) drop-shadow(0 0 6px rgba(0,0,0,1));
}
.vid-q-em {
  background: none !important;
  -webkit-text-fill-color: var(--accent) !important;
  filter: drop-shadow(0 0 20px rgba(255,90,31,.7)) !important;
}

/* ── PERGUNTA BAIXO ── */
.vid-q-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(16px, 3vh, 28px) clamp(20px, 5vw, 80px) 0;
  height: calc(50vh - var(--media-half, 105px));
  pointer-events: none;
  text-align: center;
  will-change: transform, opacity;
}
.vid-expand-hint {
  font-size: clamp(.75rem, 1.2vw, .9rem);
  color: rgba(255,255,255,.5);
  letter-spacing: .2em;
  -webkit-text-fill-color: rgba(255,255,255,.5);
  background: none;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.9));
  margin-top: 12px;
}

/* ── MEDIA WRAP ── */
.vid-expand-media-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
.vid-expand-media {
  position: relative;
  overflow: hidden;
  will-change: width, height, border-radius;
  pointer-events: all;
}
.vid-expand-media iframe,
.vid-expand-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.vid-expand-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
  pointer-events: none;
  transition: opacity .1s linear;
}

/* ── RESPOSTA INLINE (dentro da foto pequena) ── */
.vid-answer-inline {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
  padding: 8px;
}
.vid-answer-inline.visible {
  opacity: 1;
  transform: scale(1);
}
.vid-answer-inline .vid-answer-label {
  font-size: clamp(.55rem, 1.5vw, .75rem) !important;
  margin-bottom: 4px !important;
}
.vid-answer-inline .vid-answer-word {
  font-size: clamp(1.8rem, 8vw, 5rem);
  margin: 0;
  filter: drop-shadow(0 0 20px rgba(255,90,31,.7));
  animation: none;
}

/* ── RESPOSTA FULLSCREEN ── */
.vid-expand-content {
  position: absolute;
  inset: 0;
  z-index: 6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.vid-expand-content.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ── NESTED SQUARES ── */
.nested-sq-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#nestedSqCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.nested-sq-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 80px);
  pointer-events: none;
}
.nested-sq-headline {
  margin: 0 0 24px;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 8vw, 8rem);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: .04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: linear-gradient(180deg, #ffffff 0%, #555555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  word-break: break-word;
}
.nested-sq-sub {
  color: rgba(255,255,255,.55);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  max-width: 520px;
  margin: 0 auto;
}

/* NSQ PANEL */
.nsq-panel {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(255,255,255,.05);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  white-space: nowrap;
}
.nsq-btn {
  padding: 10px 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: white;
  font-size: .85rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.nsq-btn:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }
.nsq-divider { width: 1px; height: 24px; background: rgba(255,255,255,.2); }
.nsq-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nsq-ctrl label {
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nsq-ctrl input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}
.nsq-ctrl input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 8px rgba(255,255,255,.3);
  transition: transform .15s ease;
}
.nsq-ctrl input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.25); }
.nsq-ctrl span {
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-family: 'Syne', sans-serif;
  min-width: 32px;
}

/* ── CONTACT PAGE ── */
.contact-panel { display: flex; flex-direction: column; }
.contact-panel .contact-form { flex: 1; }
.contact-layout .contact-panel:first-child { overflow-y: auto; max-height: 900px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero,
  .bio-grid,
  .contact-layout,
  .feature-layout,
  .section-heading.split,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero-visual { min-height: 520px; }
  .hero-frame { inset: 0 0 40px 0; }
  .floating-card { display: none; }
  .statement-grid,
  .data-grid,
  .process-track,
  .works-grid { grid-template-columns: 1fr 1fr; }
  .work-card.large { grid-column: span 2; }
  .quote-panel { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .site-footer div:last-child { justify-content: flex-start; }
  .lightbox-prev { left: -52px; }
  .lightbox-next { right: -52px; }
}

@media (max-width: 900px) {
  .feature-layout { grid-template-columns: 1fr; }
  .feature-main { min-height: 500px; }
  .feature-stack .feature-card { min-height: 280px; }
  .bio-grid, .contact-layout { grid-template-columns: 1fr; }
  .visual-card, .contact-visual { min-height: 380px; }
  .nsq-panel { gap: 10px; padding: 12px 16px; }
  .nsq-ctrl input[type="range"] { width: 70px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  /* nav mobile — regras base sobrescritas pelo bloco glassmorphism abaixo */
  .site-nav {
    display: none;
  }
  .site-nav.open { display: flex; }
  .hero,
  .statement,
  .featured-work,
  .process,
  .cta-band,
  .page-hero,
  .bio-grid,
  .quote-panel,
  .data-grid,
  .works-grid,
  .contact-layout,
  .site-footer {
    width: min(1280px, calc(100% - 28px));
  }
  .hero { padding-top: clamp(110px, 16vh, 150px); }
  .hero-grid { background-size: clamp(42px, 8vw, 80px) clamp(42px, 8vw, 80px); }
  .hero-meta,
  .statement-grid,
  .data-grid,
  .process-track,
  .works-grid { grid-template-columns: 1fr; }
  .work-card.large { grid-column: auto; min-height: 380px; }
  .hero-frame,
  .feature-main,
  .feature-stack .feature-card,
  .visual-card,
  .contact-visual,
  .work-card { min-height: 260px; }
  .feature-main { min-height: 320px; }
  .feature-card img,
  .work-card img {
    height: 100%;
    min-height: 260px;
  }
  .site-header { padding-inline: 18px; }
  .btn { min-width: 140px; }
  .cta-band { padding: clamp(24px, 5vw, 40px); flex-direction: column; align-items: flex-start; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-inner img { max-height: 70vh; }
  .back-to-top { bottom: 16px; right: 16px; }
  blockquote { font-size: clamp(1.2rem, 5vw, 2rem); }
  .nsq-panel {
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100vw - 32px);
    max-width: 360px;
    bottom: 16px;
  }
  .nsq-divider { display: none; }
  .hero-shader-name { font-size: clamp(3rem, 18vw, 6rem); }
  .hero-shader-tagline { font-size: .85rem; letter-spacing: .1em; }
}

/* ══════════════════════════════════════════════
   EFEITOS VISUAIS AVANÇADOS — NÍVEL 21ST.DEV
   ══════════════════════════════════════════════ */

/* ── AURORA BACKGROUND GLOBAL ── */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: auroraPulse var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  mix-blend-mode: screen;
}
.aurora-blob-1 {
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(255,90,31,.55) 0%, transparent 65%);
  top: -15%; left: -15%;
  --dur: 10s; --delay: 0s;
}
.aurora-blob-2 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(255,45,32,.45) 0%, transparent 65%);
  top: 40%; right: -10%;
  --dur: 13s; --delay: -4s;
}
.aurora-blob-3 {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(168,85,247,.35) 0%, transparent 65%);
  bottom: 5%; left: 15%;
  --dur: 11s; --delay: -7s;
}
@keyframes auroraPulse {
  0%, 100% { opacity: .5; transform: scale(1) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.2) translate(4%, 3%); }
}

/* ── ANIMATED GRID BACKGROUND ── */
.animated-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,90,31,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,90,31,.09) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* ── SECTION DIVIDER — linha com brilho ── */
.section-divider {
  width: min(1280px, calc(100% - clamp(40px, 6vw, 100px)));
  margin-inline: auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,90,31,.6) 30%, rgba(255,90,31,1) 50%, rgba(255,90,31,.6) 70%, transparent);
  position: relative;
  overflow: visible;
  margin-top: var(--divider-gap);
  margin-bottom: var(--divider-gap);
}
.section-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg, transparent, rgba(255,90,31,.5) 30%, rgba(255,90,31,.9) 50%, rgba(255,90,31,.5) 70%, transparent);
  filter: blur(6px);
  animation: beamSweep 3s ease-in-out infinite;
}
@keyframes beamSweep {
  0% { opacity: 0; clip-path: inset(0 100% 0 0); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; clip-path: inset(0 0 0 100%); }
}

/* ── CANVAS PARTÍCULAS (statement section) ── */
#particlesCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .8;
}
.statement {
  position: relative;
  /* garante altura mínima para o canvas ter dimensão */
  min-height: 400px;
}
.statement .section-heading,
.statement .statement-grid {
  position: relative;
  z-index: 2;
}

/* ── GLOW BORDER ANIMADO (cards hover) ── */
.statement-grid article,
.data-grid article,
.process-track article {
  position: relative;
}
.statement-grid article::before,
.data-grid article::before,
.process-track article::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    rgba(255,90,31,.7) 60deg,
    rgba(255,45,32,.5) 120deg,
    transparent 180deg
  );
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
  animation: rotateBorder 4s linear infinite paused;
}
.statement-grid article:hover::before,
.data-grid article:hover::before,
.process-track article:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateBorder {
  to { --angle: 360deg; }
}

/* ── SPOTLIGHT EFFECT (featured work) ── */
.feature-card .spotlight,
.work-card .spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 250px at var(--mx, 50%) var(--my, 50%),
    rgba(255,90,31,.15) 0%,
    transparent 70%
  );
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.feature-card:hover .spotlight,
.work-card:hover .spotlight { opacity: 1; }

/* ── CTA BAND — borda animada ── */
.cta-band {
  position: relative;
  isolation: isolate;
}
/* borda giratória */
.cta-band::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: conic-gradient(
    from var(--angle, 0deg) at 50% 50%,
    rgba(255,90,31,0) 0deg,
    rgba(255,90,31,.8) 90deg,
    rgba(255,45,32,.6) 180deg,
    rgba(255,90,31,0) 270deg
  );
  z-index: -1;
  animation: rotateBorder 5s linear infinite;
}
/* fundo interno que cobre o conic-gradient */
.cta-band > * { position: relative; z-index: 1; }

/* ── HERO SECTION — scanlines overlay ── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,.04) 3px,
    rgba(0,0,0,.04) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* ── FLOATING ORBS (decorativos) ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,90,31,.12) 0%, transparent 70%);
  filter: blur(60px);
  top: 5%; right: 0%;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(168,85,247,.1) 0%, transparent 70%);
  filter: blur(50px);
  bottom: 10%; left: 5%;
  animation: orbFloat 11s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -35px) scale(1.1); }
  66% { transform: translate(-20px, 25px) scale(.9); }
}

/* ── TEXTO COM SHIMMER (eyebrow) ── */
.eyebrow {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.eyebrow::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0% { left: -100%; }
  60%, 100% { left: 200%; }
}

/* ── COUNTER CARDS — glow no número ── */
.data-grid .number {
  filter: drop-shadow(0 0 12px rgba(255,90,31,.6));
  animation: numberGlow 3s ease-in-out infinite;
}
@keyframes numberGlow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(255,90,31,.6)); }
  50% { filter: drop-shadow(0 0 24px rgba(255,90,31,1)) drop-shadow(0 0 40px rgba(255,45,32,.4)); }
}

/* ── HERO SHADER — vignette melhorada ── */
.hero-shader-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(0,0,0,.45) 100%),
    linear-gradient(180deg, rgba(5,5,5,.35) 0%, rgba(5,5,5,0) 35%, rgba(5,5,5,0) 65%, rgba(5,5,5,.75) 100%);
}

/* ── PROCESS TRACK — linha conectora ── */
.process-track {
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,90,31,.4) 20%, rgba(255,90,31,.4) 80%, transparent);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 760px) {
  .process-track::before { display: none; }
}

/* ── FOOTER — glow no brand ── */
.site-footer strong {
  background: linear-gradient(90deg, #ffffff, rgba(255,90,31,.9), #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 5s linear infinite;
}
@keyframes textShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── REVEAL — stagger ── */
.reveal { transition-delay: var(--delay, 0s); }

/* ── WORK CARD — border glow on hover ── */
.work-card,
.feature-card {
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.work-card:hover,
.feature-card:hover {
  border-color: rgba(255,90,31,.5);
  box-shadow: 0 0 0 1px rgba(255,90,31,.25), 0 20px 60px rgba(0,0,0,.5), 0 0 50px rgba(255,90,31,.1);
}

/* ── HERO META CARDS ── */
.hero-meta strong {
  background: linear-gradient(180deg, #ffffff 0%, #aaaaaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BRAND TAG — pulse ring ── */
.brand-tag { position: relative; }
.brand-tag::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255,90,31,.4);
  animation: brandPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes brandPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ── HERO (segunda) — mais altura ── */
.hero {
  min-height: 100vh;
}

/* ── ESPAÇAMENTO ENTRE SEÇÕES — aumentado ── */
.statement,
.featured-work,
.process,
.page-hero,
.bio-grid,
.quote-panel,
.data-grid,
.works-grid,
.contact-layout {
  padding: clamp(60px, 7vw, 120px) 0 clamp(60px, 7vw, 120px);
}
.cta-band {
  /* margin-bottom consolidado na definição principal */
}

/* ══════════════════════════════════════════════
   NAV PILL — FLOATING INDICATOR (21st.dev style)
   ══════════════════════════════════════════════ */

/* Remove estilos antigos do site-nav e substitui */
.site-nav {
  display: flex;
  align-items: center;
}

.nav-pill-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.nav-pill-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  transition: left .3s cubic-bezier(.4,0,.2,1), width .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* quando scrolled, indicator fica mais visível */
.site-header.scrolled .nav-pill-track {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.nav-link {
  position: relative;
  z-index: 1;
  padding: 8px 18px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover { color: rgba(255,255,255,.85); }
.nav-link.active { color: #ffffff; }

/* remove o ::after antigo dos links */
.site-nav a::after { display: none; }

/* mobile — pill vira lista vertical */
@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    z-index: 50;
  }
  .site-nav.open { display: flex; }
  .nav-pill-track {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding: 8px;
    gap: 2px;
  }
  .nav-pill-indicator { display: none; }
  .nav-link {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: .9rem;
  }
  .nav-link.active {
    background: rgba(255,90,31,.15);
    color: var(--accent);
  }
}

/* ══════════════════════════════════════════════
   PAINT BUCKET SECTION
   ══════════════════════════════════════════════ */

.paint-section {
  position: relative;
  height: 300vh;
  padding-bottom: clamp(100px, 14vw, 220px);
}

.paint-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 120px);
  overflow: hidden;
  width: min(1280px, calc(100% - clamp(40px, 6vw, 100px)));
  margin-inline: auto;
}

.paint-copy {
  flex: 1;
  max-width: 480px;
  z-index: 2;
}

.paint-headline {
  margin: 0 0 24px;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.5rem, 9vw, 9rem);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: .04em;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(180deg, #ffffff 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  word-break: break-word;
}

.paint-accent {
  background: linear-gradient(90deg, #ff5a1f, #e040fb, #2196f3, #ffeb3b);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: paintShine 4s linear infinite;
}
@keyframes paintShine {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.paint-sub {
  color: rgba(255,255,255,.55);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  margin: 0;
}

.paint-bucket-wrap {
  position: relative;
  flex-shrink: 0;
  width: clamp(260px, 35vw, 480px);
  height: clamp(260px, 35vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.paint-bucket-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(255,90,31,.3)) drop-shadow(0 0 40px rgba(168,85,247,.2));
  will-change: transform;
  transition: filter .3s ease;
}

/* rings de splatter */
.paint-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0;
  pointer-events: none;
}
.paint-ring-1 {
  width: 110%; height: 110%;
  border-color: rgba(255,90,31,.4);
  animation: ringPulse 3s ease-out infinite;
}
.paint-ring-2 {
  width: 130%; height: 130%;
  border-color: rgba(168,85,247,.3);
  animation: ringPulse 3s ease-out infinite .8s;
}
.paint-ring-3 {
  width: 155%; height: 155%;
  border-color: rgba(33,150,243,.2);
  animation: ringPulse 3s ease-out infinite 1.6s;
}
@keyframes ringPulse {
  0% { opacity: .8; transform: scale(.7); }
  100% { opacity: 0; transform: scale(1.1); }
}

/* scroll-driven: lata entra de baixo e gira */
.paint-bucket-wrap.in-view .paint-bucket-img {
  filter: drop-shadow(0 30px 80px rgba(255,90,31,.5)) drop-shadow(0 0 60px rgba(168,85,247,.35));
}

@media (max-width: 760px) {
  .paint-sticky {
    flex-direction: column;
    gap: 24px;
    padding-top: 60px;
    padding-bottom: 40px;
    width: calc(100% - 28px);
    height: 100vh;
    justify-content: center;
  }
  .paint-copy { max-width: 100%; text-align: center; }
  .paint-bucket-wrap {
    width: clamp(180px, 55vw, 280px);
    height: clamp(180px, 55vw, 280px);
    flex-shrink: 0;
  }
  .paint-bucket-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* ══════════════════════════════════════════════
   FONTE PIXAÇÃO + BIO + MANIFESTO + MENU GLASS
   ══════════════════════════════════════════════ */

/* ── FONTE PIXAÇÃO — Permanent Marker como base ── */
.pix-font {
  font-family: 'Permanent Marker', 'Bebas Neue', 'Syne', cursive;
  letter-spacing: .04em;
}
.pix-accent {
  background: linear-gradient(90deg, var(--accent), #e040fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* headline da bio com pegada de pixação */
.bio-headline-pix {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2rem, 4vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 28px;
  line-height: 1.05;
  background: linear-gradient(180deg, #ffffff 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 3px 0 rgba(255,90,31,.35));
  word-break: break-word;
}

/* ── BIO VISUAL TAG ── */
.bio-visual-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

/* ── BIO LEAD ── */
.bio-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 20px;
  font-style: normal;
}
.bio-lead em {
  font-style: italic;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

/* ── BIO STATS ── */
.bio-stats {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 8px;
}
.bio-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bio-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bio-stats span {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: 'Syne', sans-serif;
}

/* ── MANIFESTO SECTION ── */
.manifesto-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: clamp(48px, 6vw, 96px) 0;
}
.manifesto-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.manifesto-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.25) saturate(.5);
}
.manifesto-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,.6) 0%, transparent 30%, transparent 70%, rgba(5,5,5,.6) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(5,5,5,.7) 100%);
}
.manifesto-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 80px);
  max-width: 900px;
  margin-inline: auto;
}
.manifesto-headline {
  margin: 20px 0 28px;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 8vw, 8rem);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: .04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  word-break: break-word;
}
.manifesto-headline span {
  background: linear-gradient(180deg, #ffffff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.manifesto-headline .pix-font {
  font-size: 1.15em;
  filter: drop-shadow(0 0 20px rgba(255,90,31,.5));
}
.manifesto-body {
  color: rgba(255,255,255,.65);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.9;
  margin: 0;
}

/* ── MENU MOBILE — GLASSMORPHISM ── */
@media (max-width: 760px) {
  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 190;
    align-items: center;
    justify-content: center;
    background: rgba(5,5,5,.92);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    backdrop-filter: blur(24px) saturate(1.4);
  }
  .site-nav.open {
    display: flex;
    animation: mobileNavIn .25s cubic-bezier(.4,0,.2,1) forwards;
  }
  @keyframes mobileNavIn {
    from { opacity: 0; transform: scale(.97); }
    to   { opacity: 1; transform: scale(1); }
  }
  /* toggle fica acima do overlay quando menu aberto */
  .menu-toggle {
    position: relative;
    z-index: 210;
  }
  .nav-pill-track {
    position: relative;
    z-index: 195;
    width: calc(100vw - 48px);
    max-width: 340px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    padding: 12px;
    gap: 4px;
    background: rgba(18,18,18,.98);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 24px 80px rgba(0,0,0,.8), 0 0 0 1px rgba(255,90,31,.1);
  }
  .nav-pill-indicator { display: none; }
  .nav-link {
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 1rem;
    letter-spacing: .18em;
    color: rgba(255,255,255,.75);
    transition: background var(--transition), color var(--transition);
  }
  .nav-link:hover,
  .nav-link.active {
    background: rgba(255,90,31,.18);
    color: #ffffff;
    border-left: 2px solid var(--accent);
  }
}

/* ── BIO CARD helpers ── */
.bio-visual-wrap { position: relative; overflow: hidden; }
.bio-tag-eyebrow { margin: 0 !important; font-size: .7rem !important; }
.bio-tag-strong  { font-family: 'Syne', sans-serif; letter-spacing: .1em; font-size: .9rem; }
.bio-body-text   { color: var(--muted); line-height: 1.85; margin: 20px 0; }
.bio-body-last   { margin: 0 0 32px; }
.bio-actions     { margin-top: 32px; }


/* ══════════════════════════════════════════════
   VID EXPAND — RESPOSTA (ARTE.)
   ══════════════════════════════════════════════ */

/* Container da resposta — centralizado sobre a foto expandida */
.vid-answer-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  padding: clamp(20px, 5vw, 80px);
  pointer-events: none;
}
.vid-expand-content.visible .vid-answer-wrap {
  pointer-events: all;
}

/* Eyebrow "A RESPOSTA É" */
.vid-answer-label {
  font-family: 'Syne', sans-serif;
  font-size: clamp(.65rem, 1.2vw, .82rem);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
  opacity: .9;
  -webkit-text-fill-color: var(--accent);
  background: none;
}

/* A palavra enorme — "ARTE." */
.vid-answer-word {
  margin: 0 0 24px;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(255,90,31,.55)) drop-shadow(0 0 80px rgba(255,90,31,.25));
  animation: artePulse 3s ease-in-out infinite;
}
@keyframes artePulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(255,90,31,.55)) drop-shadow(0 0 80px rgba(255,90,31,.25)); }
  50%       { filter: drop-shadow(0 0 60px rgba(255,90,31,.9)) drop-shadow(0 0 120px rgba(255,90,31,.45)); }
}

/* Subtexto explicativo */
.vid-answer-sub {
  color: rgba(255,255,255,.7);
  font-size: clamp(.9rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 520px;
  font-family: 'Inter', sans-serif;
}

/* Botão CTA */
.vid-answer-btn {
  pointer-events: all;
}

/* ── Responsividade mobile vid-expand ── */
@media (max-width: 760px) {
  .vid-answer-word {
    font-size: clamp(4rem, 22vw, 7rem);
    margin-bottom: 16px;
  }
  .vid-answer-sub {
    font-size: .88rem;
    margin-bottom: 24px;
  }
  .vid-q-line {
    font-size: clamp(1.4rem, 7vw, 2.4rem);
  }
  .vid-answer-wrap {
    padding: 20px;
  }
  .vid-answer-inline .vid-answer-word {
    font-size: clamp(1.2rem, 9vw, 2.8rem);
  }
}


/* ══════════════════════════════════════════════
   BENTO GALLERY — ultra moderna
   ══════════════════════════════════════════════ */

/* Filter bar */
.gallery-filter-bar {
  width: min(1280px, calc(100% - clamp(40px, 6vw, 100px)));
  margin-inline: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gfb-btn {
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.55);
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.gfb-btn:hover {
  border-color: rgba(255,90,31,.4);
  color: rgba(255,255,255,.85);
  background: rgba(255,90,31,.08);
}
.gfb-btn.active {
  border-color: var(--accent);
  background: rgba(255,90,31,.15);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,90,31,.25);
}

/* Bento grid */
.bento-gallery {
  width: min(1280px, calc(100% - clamp(40px, 6vw, 100px)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(200px, 20vw, 280px);
  gap: 14px;
  margin-bottom: clamp(48px, 6vw, 96px);
}

/* Card base */
.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #0c0c0c;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.bento-card:hover {
  border-color: rgba(255,90,31,.45);
  box-shadow: 0 0 0 1px rgba(255,90,31,.2), 0 24px 60px rgba(0,0,0,.6), 0 0 60px rgba(255,90,31,.08);
  z-index: 2;
}

/* Span variants */
.bento-hero  { grid-column: span 2; grid-row: span 2; }
.bento-tall  { grid-row: span 2; }
.bento-wide  { grid-column: span 2; }

/* Image */
.bento-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1), filter .7s ease;
  filter: saturate(.9) brightness(.85);
}
.bento-card:hover .bento-img-wrap img {
  transform: scale(1.07);
  filter: saturate(1.1) brightness(1);
}

/* Shimmer on load */
.bento-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: bentoShimmer 1.8s ease infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.bento-card:not(.loaded) .bento-shimmer { opacity: 1; }
@keyframes bentoShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Overlay */
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s ease;
}
.bento-card:hover .bento-overlay { opacity: 1; }

/* Always show overlay on hero card */
.bento-hero .bento-overlay {
  opacity: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.88) 100%);
}

.bento-meta { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; }
.bento-tag {
  font-family: 'Syne', sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.bento-title {
  margin: 0;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bento-hero .bento-title { font-size: clamp(1.6rem, 2.8vw, 2.6rem); }
.bento-desc {
  margin: 0;
  font-size: clamp(.78rem, 1vw, .88rem);
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Expand button */
.bento-expand-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.6);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s ease, transform .3s ease, background .3s ease, border-color .3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.bento-card:hover .bento-expand-btn {
  opacity: 1;
  transform: scale(1);
}
.bento-expand-btn:hover {
  background: rgba(255,90,31,.3);
  border-color: var(--accent);
}

/* Number badge */
.bento-number {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.25);
  transition: color .3s ease;
  pointer-events: none;
}
.bento-card:hover .bento-number { color: rgba(255,90,31,.6); }

/* Hidden cards (filter) */
.bento-card.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(.95);
  transition: opacity .35s ease, transform .35s ease;
}

/* ── BENTO LIGHTBOX ── */
.bento-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.bento-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.blb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.blb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: min(92vw, 1100px);
  width: 100%;
  padding: 0 clamp(16px, 4vw, 60px);
}
.blb-media {
  position: relative;
  width: 100%;
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
  background: #0a0a0a;
  overflow: hidden;
  border-radius: 4px;
}
.blb-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  transition: opacity .3s ease;
}
.blb-img.loading { opacity: 0; }
.blb-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blb-loader::after {
  content: '';
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: blbSpin .7s linear infinite;
}
@keyframes blbSpin { to { transform: rotate(360deg); } }
.blb-img.loaded + .blb-loader { display: none; }

.blb-close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.blb-close:hover { background: rgba(255,90,31,.2); border-color: var(--accent); transform: rotate(90deg); }

.blb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.7);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.blb-prev { left: -24px; }
.blb-next { right: -24px; }
.blb-nav:hover { background: rgba(255,90,31,.2); border-color: var(--accent); }
.blb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.blb-next:hover { transform: translateY(-50%) translateX(3px); }

.blb-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blb-tag {
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.blb-title {
  margin: 0;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blb-desc {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}
.blb-counter {
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.35);
}

/* Responsive bento */
@media (max-width: 1000px) {
  .bento-gallery { grid-template-columns: repeat(2, 1fr); }
  .bento-hero { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento-gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .bento-hero, .bento-tall, .bento-wide { grid-column: auto; grid-row: auto; }
  .bento-overlay { opacity: 1; }
  .bento-expand-btn { opacity: 1; transform: scale(1); }
  .blb-prev { left: 8px; }
  .blb-next { right: 8px; }
}

/* ══════════════════════════════════════════════
   CONTACT V2 — glassmorphism form + cards
   ══════════════════════════════════════════════ */

.contact-layout-v2 {
  width: min(1280px, calc(100% - clamp(40px, 6vw, 100px)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  padding-bottom: clamp(64px, 8vw, 120px);
}

/* ── Quick contact cards ── */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.contact-card-v2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
}
.contact-card-v2:hover {
  border-color: rgba(255,90,31,.4);
  background: rgba(255,90,31,.06);
  transform: translateY(-3px);
}
.ccv2-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,90,31,.3);
  background: rgba(255,90,31,.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: background .3s, border-color .3s;
}
.contact-card-v2:hover .ccv2-icon {
  background: rgba(255,90,31,.2);
  border-color: var(--accent);
}
.ccv2-body { flex: 1; min-width: 0; }
.ccv2-label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 3px;
}
.ccv2-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ccv2-arrow {
  color: rgba(255,90,31,.5);
  font-size: 1rem;
  transition: transform .3s ease, color .3s ease;
  flex-shrink: 0;
}
.contact-card-v2:hover .ccv2-arrow { transform: translateX(4px); color: var(--accent); }
.ccv2-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,90,31,.12), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.contact-card-v2:hover .ccv2-glow { opacity: 1; }

/* ── Form glass wrap ── */
.form-glass-wrap {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.form-glass-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,90,31,.5) 40%, rgba(255,255,255,.3) 50%, rgba(255,90,31,.5) 60%, transparent);
}
.fgw-header { margin-bottom: 32px; }
.fgw-title {
  margin: 8px 0 0;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #fff 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Floating label fields ── */
.form-glass { display: flex; flex-direction: column; gap: 24px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg-field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.fg-field-full { grid-column: 1 / -1; }
.fg-input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  padding: 22px 16px 8px;
  outline: none;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
  width: 100%;
  resize: none;
}
.fg-textarea { min-height: 120px; resize: vertical; }
.fg-input:focus {
  border-color: rgba(255,90,31,.6);
  background: rgba(255,90,31,.04);
  box-shadow: 0 0 0 3px rgba(255,90,31,.1);
}
.fg-input.error { border-color: rgba(255,80,80,.6); }

/* Floating label */
.fg-label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: rgba(255,255,255,.35);
  pointer-events: none;
  transition: top .2s ease, font-size .2s ease, color .2s ease;
  transform-origin: left top;
}
.fg-input:focus ~ .fg-label,
.fg-input:not(:placeholder-shown) ~ .fg-label {
  top: 7px;
  font-size: .68rem;
  color: var(--accent);
  letter-spacing: .08em;
}

/* Animated bottom line */
.fg-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 0 0 8px 8px;
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.fg-input:focus ~ .fg-label ~ .fg-line,
.fg-input:focus ~ .fg-line { transform: scaleX(1); }

.fg-error {
  font-size: .75rem;
  color: rgba(255,100,100,.9);
  font-family: 'Syne', sans-serif;
  letter-spacing: .06em;
  margin-top: 4px;
  min-height: 16px;
}

/* Subject pills */
.fg-subject-wrap { display: flex; flex-direction: column; gap: 10px; }
.fg-subject-label { margin: 0 !important; }
.fg-subject-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fg-pill {
  cursor: pointer;
}
.fg-pill input { display: none; }
.fg-pill span {
  display: block;
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: all .25s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.fg-pill:hover span {
  border-color: rgba(255,90,31,.4);
  color: rgba(255,255,255,.85);
  background: rgba(255,90,31,.06);
}
.fg-pill input:checked ~ span {
  border-color: var(--accent);
  background: rgba(255,90,31,.18);
  color: #fff;
  box-shadow: 0 0 16px rgba(255,90,31,.2);
}

/* ── Submit button v2 ── */
.btn-submit-v2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 32px rgba(255,90,31,.25);
}
.btn-submit-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255,90,31,.4);
}
.btn-submit-v2:active { transform: translateY(0); }
.bsv2-text { position: relative; z-index: 1; }
.bsv2-icon { position: relative; z-index: 1; display: flex; align-items: center; }
.bsv2-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.25), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.btn-submit-v2:hover .bsv2-glow { opacity: 1; }

/* Success state */
.form-success-v2 {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(80,200,120,.35);
  background: rgba(80,200,120,.07);
  border-radius: 10px;
  color: #80e0a0;
  font-family: 'Syne', sans-serif;
  letter-spacing: .08em;
  font-size: .9rem;
}
.form-success-v2.visible { display: flex; }

/* ── Contact right visual ── */
.contact-right { position: relative; }
.contact-visual-v2 {
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  min-height: clamp(360px, 55vh, 640px);
}
.contact-visual-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: clamp(360px, 55vh, 640px);
  transition: transform .6s ease;
}
.contact-visual-v2:hover img { transform: scale(1.04); }
.cvv2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.6) 100%);
}
.cvv2-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.cvv2-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,.8);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(74,222,128,.8); }
  50% { box-shadow: 0 0 16px rgba(74,222,128,1), 0 0 24px rgba(74,222,128,.4); }
}
.cvv2-stat {
  position: absolute;
  bottom: 24px;
  right: 24px;
  text-align: right;
}
.cvv2-stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cvv2-stat span {
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── MAGNETIC BUTTON ── */
.magnetic-btn { transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease; }

/* Responsive contact v2 */
@media (max-width: 900px) {
  .contact-layout-v2 { grid-template-columns: 1fr; }
  .contact-right { display: none; }
  .contact-cards-row { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-glass-wrap { padding: 24px 20px; border-radius: 12px; }
  .contact-cards-row { gap: 8px; }
}


/* ══════════════════════════════════════════════
   SISTEMA TIPOGRÁFICO — HEADLINES RESPONSIVAS
   Escala fluida coerente em todos os dispositivos
   ══════════════════════════════════════════════ */

/* ── Regras base globais de heading ── */
h1, h2, h3, h4 {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Bebas Neue é condensada — nunca deve hifenizar */
.section-heading h2,
.cta-band h2,
.paint-headline,
.nested-sq-headline,
.manifesto-headline,
.hero-shader-name,
.vid-q-line,
.vid-answer-word,
.fgw-title,
.bento-title,
.blb-title,
.ps-body h3,
.presence-name,
.bio-headline-pix,
.hero h1 span,
.page-hero h1 span,
blockquote {
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

/* ── page-hero: padding e max-width para não estourar ── */
.page-hero {
  max-width: min(900px, 100%);
  padding-top: clamp(48px, 7vh, 90px);
}
.page-hero h1 {
  line-height: .92;
  gap: 4px;
}

/* ── section h2 — escala fluida limpa ── */
.section-heading h2 {
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

/* ── statement h3 / process h3 / data h3 ── */
.statement-grid h3,
.data-grid h3,
.process-track h3 {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.2;
}

/* ── featured work h3 ── */
.feature-overlay h3,
.work-info h2,
.work-info h3 {
  font-size: clamp(.95rem, 1.3vw, 1.2rem);
  line-height: 1.2;
  margin-bottom: 0;
}

/* ── hero (segunda seção) h1 ── */
.hero h1 {
  line-height: .92;
}

/* ── Tablet 768–1100px ── */
@media (max-width: 1100px) and (min-width: 761px) {
  .hero h1 span,
  .page-hero h1 span {
    font-size: clamp(2.2rem, 6vw, 5rem);
  }
  .section-heading h2 {
    font-size: clamp(1.5rem, 3vw, 2.8rem);
  }
  .cta-band h2 {
    font-size: clamp(1.2rem, 2.2vw, 2.2rem);
  }
  .nested-sq-headline {
    font-size: clamp(1.8rem, 5vw, 5rem);
  }
  .paint-headline {
    font-size: clamp(2rem, 5vw, 4.5rem);
  }
  .manifesto-headline {
    font-size: clamp(1.8rem, 4.5vw, 4rem);
  }
  .bio-headline-pix {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  }
  blockquote {
    font-size: clamp(1.1rem, 2.2vw, 2rem);
  }
}

/* ── Mobile <760px ── */
@media (max-width: 760px) {
  .hero h1 span,
  .page-hero h1 span {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
  .page-hero h1 {
    line-height: 1;
    gap: 2px;
  }
  .section-heading h2 {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    line-height: 1.1;
  }
  .cta-band h2 {
    font-size: clamp(1.1rem, 5vw, 1.8rem);
    line-height: 1.15;
  }
  .nested-sq-headline {
    font-size: clamp(1.6rem, 8vw, 3rem);
  }
  .paint-headline {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }
  .manifesto-headline {
    font-size: clamp(1.6rem, 7vw, 2.8rem);
  }
  .bio-headline-pix {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  blockquote {
    font-size: clamp(1rem, 4.5vw, 1.6rem);
  }
  .hero-shader-headline {
    gap: 0;
  }
  .fgw-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }
  .vid-q-line {
    font-size: clamp(1.4rem, 6.5vw, 2.4rem);
  }
  .vid-answer-word {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }
  /* page-hero paragraph */
  .page-hero p {
    font-size: clamp(.88rem, 3.5vw, 1rem);
    margin-top: 20px;
  }
  /* eyebrow menor no mobile */
  .eyebrow {
    font-size: clamp(.62rem, 2.5vw, .78rem);
    letter-spacing: .18em;
    margin-bottom: 16px;
  }
}

/* ── Small mobile <400px ── */
@media (max-width: 400px) {
  .hero h1 span,
  .page-hero h1 span {
    font-size: clamp(1.7rem, 11vw, 2.6rem);
  }
  .section-heading h2 {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }
  .cta-band h2 {
    font-size: clamp(1rem, 6vw, 1.5rem);
  }
  .hero-shader-name {
    font-size: clamp(2.4rem, 16vw, 4rem);
  }
  .nested-sq-headline {
    font-size: clamp(1.4rem, 9vw, 2.4rem);
  }
  .paint-headline {
    font-size: clamp(1.5rem, 10vw, 2.4rem);
  }
}


/* ══════════════════════════════════════════════
   MARQUEE STRIP
   ══════════════════════════════════════════════ */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,90,31,.2);
  border-bottom: 1px solid rgba(255,90,31,.2);
  background: rgba(255,90,31,.04);
  padding: 12px 0;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.marquee-dot {
  color: var(--accent) !important;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ══════════════════════════════════════════════
   STATS SECTION
   ══════════════════════════════════════════════ */
.stats-section {
  width: min(1280px, calc(100% - clamp(40px, 6vw, 100px)));
  margin-inline: auto;
  padding: var(--section-pad-sm) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.08);
}
.stat-item {
  background: var(--bg);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,90,31,.08), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}
.stat-item:hover::before { opacity: 1; }
.stat-item:hover { background: rgba(255,90,31,.04); }
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.stat-suffix {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  vertical-align: super;
  margin-left: 2px;
}
.stat-label {
  font-family: 'Syne', sans-serif;
  font-size: clamp(.65rem, 1vw, .78rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 8px 0 0;
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: clamp(1.8rem, 10vw, 3rem); }
}

/* ══════════════════════════════════════════════
   PROCESS SECTION (index)
   ══════════════════════════════════════════════ */
.process-section {
  width: min(1280px, calc(100% - clamp(40px, 6vw, 100px)));
  margin-inline: auto;
  padding: var(--section-pad-sm) 0;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.ps-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.ps-step:last-child { border-bottom: none; }
.ps-step:hover { background: rgba(255,90,31,.03); }
.ps-num {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
  line-height: 1;
  opacity: .7;
  transition: opacity var(--transition);
  letter-spacing: .04em;
}
.ps-step:hover .ps-num { opacity: 1; }
.ps-body h3 {
  margin: 0 0 12px;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ps-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: clamp(.9rem, 1.3vw, 1rem);
  max-width: 600px;
}
.ps-connector {
  display: none; /* não usado neste layout */
}
@media (max-width: 600px) {
  .ps-step { grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; }
  .ps-num { font-size: 1.6rem; }
}


/* ══════════════════════════════════════════════
   UX IMPROVEMENTS — micro-interactions & polish
   ══════════════════════════════════════════════ */

/* ── Skip to content (acessibilidade) ── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: top .2s ease;
  border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .05s linear;
  box-shadow: 0 0 8px rgba(255,90,31,.6);
}

/* ── Page hero — melhor espaçamento ── */
.page-hero {
  padding-bottom: clamp(28px, 4vw, 48px);
}
.page-hero p {
  max-width: 640px;
}

/* ── Inner page — padding top ajustado ── */
.inner-page {
  padding-top: clamp(88px, 11vh, 120px);
}

/* ── Inner page — mobile ── */
@media (max-width: 760px) {
  .inner-page {
    padding-top: clamp(72px, 10vh, 96px);
  }
}

/* ── Feature card — melhor overlay ── */
.feature-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.5) 40%, rgba(0,0,0,.95) 100%);
}

/* ── Botões — focus visible para acessibilidade ── */
.btn:focus-visible,
.nav-link:focus-visible,
.btn-submit-v2:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── CTA band — melhor layout mobile ── */
@media (max-width: 760px) {
  .cta-band {
    gap: 24px;
    padding: clamp(20px, 4vw, 28px);
  }
  .cta-band h2 {
    max-width: 100%;
  }
  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn {
    flex: 1;
    min-width: 0;
    text-align: center;
  }
}

/* ── Statement grid — melhor padding mobile ── */
@media (max-width: 760px) {
  .page-hero {
    padding-top: clamp(28px, 4vh, 48px);
  }
  .statement-grid article,
  .data-grid article {
    padding: 18px 16px;
  }
}

/* ── Bento gallery — melhor mobile ── */
@media (max-width: 760px) {
  .gallery-filter-bar {
    width: calc(100% - 28px);
    gap: 8px;
  }
  .gfb-btn {
    padding: 8px 16px;
    font-size: .72rem;
  }
  .bento-gallery {
    width: calc(100% - 28px);
  }
}

/* ── Contact layout v2 — mobile ── */
@media (max-width: 760px) {
  .contact-layout-v2 {
    width: calc(100% - 28px);
  }
}

/* ── Process section — mobile ── */
@media (max-width: 760px) {
  .process-section {
    width: calc(100% - 28px);
  }
  .stats-section {
    width: calc(100% - 28px);
  }
  .ps-step {
    padding: 24px 0;
  }
  .presence-grid {
    margin-top: 32px;
  }
  .stat-item {
    padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 28px);
  }
}

/* ── Manifesto section — melhor mobile ── */
@media (max-width: 760px) {
  .manifesto-section {
    min-height: 55vh;
    margin: clamp(32px, 5vw, 64px) 0;
  }
  .manifesto-content {
    padding: clamp(32px, 7vw, 52px) clamp(20px, 5vw, 36px);
  }
}

/* ── Bio grid — melhor mobile ── */
@media (max-width: 760px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
  .bio-visual-wrap {
    min-height: 320px;
  }
  .bio-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
}

/* ── Quote panel — melhor mobile ── */
@media (max-width: 760px) {
  .quote-panel {
    padding: clamp(24px, 5vw, 40px);
  }
  .quote-mark {
    font-size: 2rem;
  }
}

/* ── Footer — melhor mobile ── */
@media (max-width: 760px) {
  .site-footer {
    flex-direction: column;
    gap: 16px;
    padding-top: clamp(32px, 5vw, 48px);
  }
  .site-footer div:last-child {
    justify-content: flex-start;
    gap: 14px;
  }
}

/* ── Nested squares section — melhor mobile ── */
@media (max-width: 760px) {
  .nested-sq-content {
    padding: 0 20px;
  }
  .nested-sq-sub {
    font-size: .85rem;
  }
}

/* ── Paint section — melhor mobile ── */
@media (max-width: 760px) {
  .paint-sub {
    font-size: .9rem;
  }
}

/* ── Hover state para links do footer ── */
.site-footer a {
  position: relative;
}
.site-footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s ease;
}
.site-footer a:hover::after { width: 100%; }

/* ── Smooth image loading ── */
img {
  transition: opacity .3s ease;
}
img[loading="lazy"] {
  opacity: 0;
}
img.loaded,
img:not([loading]) {
  opacity: 1;
}


/* ══════════════════════════════════════════════
   PRESENCE SECTION
   ══════════════════════════════════════════════ */
.presence-section {
  width: min(1280px, calc(100% - clamp(40px, 6vw, 100px)));
  margin-inline: auto;
  padding: var(--section-pad-sm) 0;
}
.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.07);
  margin-top: 36px;
}
.presence-item {
  background: var(--bg);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.presence-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .4s ease;
}
.presence-item:hover { background: rgba(255,90,31,.04); }
.presence-item:hover::after { width: 100%; }
.presence-name {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.presence-type {
  font-family: 'Syne', sans-serif;
  font-size: clamp(.65rem, 1vw, .78rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
@media (max-width: 760px) {
  .presence-section { width: calc(100% - 28px); }
  .presence-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .presence-grid { grid-template-columns: 1fr; }
}

.btn-paint-cta { margin-top: 32px; display: inline-flex; }


/* ══════════════════════════════════════════════
   MOBILE STICKY HEADLINE — aparece ao scrollar
   ══════════════════════════════════════════════ */
.mobile-sticky-title {
  display: none;
}

@media (max-width: 760px) {
  .mobile-sticky-title {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    padding: 0 16px;
    height: 0;
    overflow: hidden;
    background: rgba(5,5,5,.96);
    border-bottom: 1px solid transparent;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: height .35s cubic-bezier(.4,0,.2,1),
                border-color .35s ease,
                box-shadow .35s ease;
    pointer-events: none;
  }
  .mobile-sticky-title.visible {
    height: 44px;
    border-bottom-color: rgba(255,90,31,.25);
    box-shadow: 0 4px 24px rgba(0,0,0,.6);
    pointer-events: all;
  }
  .mst-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255,90,31,.8);
    animation: dotPulse 2s ease-in-out infinite;
  }
  .mst-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.05rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, rgba(255,90,31,.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }
  .mst-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
  }
  .mst-sub {
    font-family: 'Syne', sans-serif;
    font-size: .6rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* empurra o header para baixo do sticky title quando visível */
  .site-header {
    transition: top .35s cubic-bezier(.4,0,.2,1),
                padding var(--transition),
                background var(--transition),
                box-shadow var(--transition),
                border-color var(--transition);
  }
}

/* ── Ajuste tipográfico responsivo com Bebas Neue ── */
@media (max-width: 1100px) and (min-width: 761px) {
  .hero h1 span,
  .page-hero h1 span {
    font-size: clamp(3rem, 8vw, 7rem);
  }
  .section-heading h2 {
    font-size: clamp(2rem, 4vw, 4rem);
  }
  .cta-band h2 {
    font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  }
  .nested-sq-headline {
    font-size: clamp(2.5rem, 7vw, 6rem);
  }
  .paint-headline {
    font-size: clamp(3rem, 7vw, 7rem);
  }
  .manifesto-headline {
    font-size: clamp(2.5rem, 6vw, 6rem);
  }
  blockquote {
    font-size: clamp(1.5rem, 3vw, 3rem);
  }
}

@media (max-width: 760px) {
  .hero h1 span,
  .page-hero h1 span {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }
  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 3.5rem);
    line-height: .95;
  }
  .cta-band h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
    hyphens: none;
    word-break: normal;
  }
  .nested-sq-headline {
    font-size: clamp(2.2rem, 11vw, 4rem);
  }
  .paint-headline {
    font-size: clamp(2.5rem, 13vw, 5rem);
  }
  .manifesto-headline {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }
  blockquote {
    font-size: clamp(1.4rem, 7vw, 2.5rem);
  }
  .vid-q-line {
    font-size: clamp(2rem, 10vw, 4rem);
  }
  .vid-answer-word {
    font-size: clamp(4rem, 22vw, 8rem);
  }
  .fgw-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
  .hero-shader-name {
    font-size: clamp(3.5rem, 20vw, 7rem);
  }
  .ps-body h3 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
}

@media (max-width: 400px) {
  .hero h1 span,
  .page-hero h1 span {
    font-size: clamp(2.4rem, 16vw, 4rem);
  }
  .section-heading h2 {
    font-size: clamp(1.8rem, 11vw, 3rem);
  }
  .hero-shader-name {
    font-size: clamp(3rem, 22vw, 5.5rem);
  }
}


/* ══════════════════════════════════════════════
   STATEMENT VIDEO LINK
   ══════════════════════════════════════════════ */
.statement-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid rgba(255,90,31,.3);
  background: rgba(255,90,31,.06);
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: border-color .3s ease, background .3s ease, color .3s ease, transform .3s ease;
  text-decoration: none;
  width: fit-content;
}
.statement-video-link:hover {
  border-color: var(--accent);
  background: rgba(255,90,31,.14);
  color: #fff;
  transform: translateX(4px);
}
.svl-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,90,31,.2);
  border: 1px solid rgba(255,90,31,.4);
  display: grid;
  place-items: center;
  font-size: .7rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: background .3s ease;
}
.statement-video-link:hover .svl-icon {
  background: rgba(255,90,31,.35);
}
.svl-arrow {
  color: var(--accent);
  transition: transform .3s ease;
}
.statement-video-link:hover .svl-arrow { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   UX IMPROVEMENTS — GLOBAL
   ══════════════════════════════════════════════ */

/* Section divider melhorado — removido (versão sem glow sobrescrevia a boa) */

/* Aurora blobs */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: .55;
}
.aurora-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,90,31,.35), transparent 70%);
  top: -10%; right: -5%;
  animation: blobFloat 12s ease-in-out infinite;
}
.aurora-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,.25), transparent 70%);
  bottom: 20%; left: -8%;
  animation: blobFloat 16s ease-in-out infinite reverse;
}
.aurora-blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,45,32,.2), transparent 70%);
  top: 40%; left: 30%;
  animation: blobFloat 20s ease-in-out infinite 4s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -50px) scale(1.08); }
  66% { transform: translate(-30px, 30px) scale(.94); }
}

/* Animated grid */
.animated-grid {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,90,31,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,90,31,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 30s linear infinite;
  opacity: .6;
}
@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

/* Feature cards — imagem não cortada no mobile */
@media (max-width: 760px) {
  .feature-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-main {
    aspect-ratio: 4/3;
    min-height: unset;
  }
  .feature-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .feature-stack .feature-card {
    aspect-ratio: 3/4;
    min-height: unset;
  }
  .feature-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feature-main,
  .feature-stack .feature-card {
    position: relative;
    overflow: hidden;
  }
}

/* Work cards mobile */
@media (max-width: 760px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .work-card {
    aspect-ratio: 4/3;
    min-height: unset;
  }
  .work-card.large {
    aspect-ratio: 16/9;
    grid-column: auto;
  }
  .work-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Smooth scroll para âncoras */
html { scroll-behavior: smooth; }

/* Focus visible global */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Selection color */
::selection {
  background: rgba(255,90,31,.35);
  color: #fff;
}


/* ══════════════════════════════════════════════
   REAL WORKS SECTION — imagens do blog
   ══════════════════════════════════════════════ */
.real-works-section {
  width: min(1280px, calc(100% - clamp(40px, 6vw, 100px)));
  margin-inline: auto;
  padding: var(--section-pad-sm) 0;
}
.real-works-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.rw-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #0c0c0c;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color .4s ease, box-shadow .4s ease;
  min-height: 240px;
}
.rw-large {
  grid-row: span 2;
  min-height: 500px;
}
.rw-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1), filter .7s ease;
  filter: saturate(.85) brightness(.8);
}
.rw-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) brightness(.95);
}
.rw-card:hover {
  border-color: rgba(255,90,31,.4);
  box-shadow: 0 0 0 1px rgba(255,90,31,.15), 0 20px 60px rgba(0,0,0,.5);
}
.rw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: padding .3s ease;
}
.rw-card:hover .rw-overlay { padding-bottom: 32px; }
.rw-tag {
  margin-bottom: 8px !important;
  font-size: .68rem !important;
}
.rw-overlay h3 {
  margin: 0 0 8px;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  hyphens: none;
  word-break: normal;
}
.rw-overlay p {
  margin: 0;
  font-size: clamp(.78rem, 1vw, .88rem);
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .real-works-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rw-large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }
}
@media (max-width: 600px) {
  .real-works-section { width: calc(100% - 28px); }
  .real-works-grid {
    grid-template-columns: 1fr;
  }
  .rw-large { grid-column: auto; min-height: 260px; }
  .rw-card { min-height: 220px; }
}


/* ══════════════════════════════════════════════
   RITMO VISUAL & POLISH FINAL
   ══════════════════════════════════════════════ */

/* ── RITMO VERTICAL GLOBAL ── */
.section-divider + .stats-section,
.section-divider + .process-section,
.section-divider + .presence-section,
.section-divider + .real-works-section {
  padding-top: clamp(32px, 4vw, 56px);
}

/* ── FEATURED WORK — melhor proporção ── */
.feature-layout {
  grid-template-columns: 1.2fr .8fr;
}

/* ── PAGE HERO — linha de separação sutil ── */
.page-hero {
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: clamp(24px, 4vw, 48px);
}

/* ── BENTO HERO card — overlay sempre visível ── */
.bento-hero .bento-overlay {
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.9) 100%);
}

/* ── VIDEO CARDS — melhor proporção ── */
.video-card .video-info {
  padding: 16px 18px 18px;
}

/* ── CONTACT CARDS ROW — mobile stack ── */
@media (max-width: 600px) {
  .contact-cards-row {
    grid-template-columns: 1fr;
  }
}

/* ── QUOTE PANEL — melhor mobile ── */
@media (max-width: 600px) {
  .quote-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .quote-mark { font-size: 2.5rem; }
}

/* ── MANIFESTO — melhor contraste ── */
.manifesto-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,.45);
}

/* ── STATS NUM — melhor legibilidade ── */
.stat-item {
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat-item:last-child { border-right: none; }

/* ── PROCESS STEPS — hover mais suave ── */
.ps-step:hover {
  padding-left: 12px;
  transition: padding-left .3s ease, background .3s ease;
}

/* ── RW CARD — melhor overlay ── */
.rw-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.85) 100%);
}

/* ── FOOTER — melhor separação ── */
.site-footer {
  margin-top: clamp(32px, 4vw, 56px);
}
