/* =====================================================
   KUBONET — Tecnologia · Edição 2026
   v4 · "Loud Editorial" · agência premium com personalidade
   ===================================================== */

:root {
  /* Papel + tinta */
  --bg:       #ece6d6;          /* papel cru editorial */
  --bg-2:     #e0d8c2;
  --paper:    #f3eedd;
  --surface:  #ffffff;
  --surface-2:#f6f1e1;

  --line:     rgba(15, 18, 20, 0.12);
  --line-2:   rgba(15, 18, 20, 0.22);
  --line-3:   rgba(15, 18, 20, 0.40);

  --ink:     #0b0d0e;
  --ink-2:   #1d2124;
  --text:    #0b0d0e;
  --text-2:  #3a4045;
  --muted:   #6d747a;
  --muted-2: #a0a6ab;

  /* Brand — agora protagonista */
  --brand:      #36a9c6;        /* cor original do usuário, hero */
  --brand-2:    #1f7d96;
  --brand-3:    #aef0ff;
  --brand-deep: #0f3a47;
  --brand-soft: #d4eef5;
  --brand-glow: rgba(54, 169, 198, .35);

  /* Acentos secundários — explosão editorial */
  --accent:     #ff5b2e;        /* laranja brasa para destaques */
  --accent-2:   #fff1a8;        /* amarelo highlighter */

  --night:   #0b0d0e;
  --night-2: #131618;

  --ok:   #1f9d5f;

  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --container: 1400px;

  --t-fast: 180ms cubic-bezier(.2,.8,.2,1);
  --t:      380ms cubic-bezier(.2,.8,.2,1);
  --t-slow: 800ms cubic-bezier(.2,.8,.2,1);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ========== RESET / BASE ========== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.005em;
}

::selection { background: var(--brand); color: var(--ink); }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.muted { color: var(--muted); }

/* Highlighter style underline */
.u {
  background-image: linear-gradient(180deg, transparent 62%, var(--brand) 62%, var(--brand) 92%, transparent 92%);
  padding: 0 .08em;
}
.u--accent {
  background-image: linear-gradient(180deg, transparent 62%, var(--accent-2) 62%, var(--accent-2) 92%, transparent 92%);
  padding: 0 .08em;
}

/* Stroke / outline display */
.outline {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}

/* ========== CURSOR ========== */
.cursor {
  position: fixed; top: 0; left: 0; width: 0; height: 0;
  z-index: 9999; pointer-events: none; mix-blend-mode: difference;
}
.cursor__ring {
  position: absolute; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.9);
  transition: width .3s, height .3s, opacity .3s;
}
.cursor__dot {
  position: absolute; transform: translate(-50%, -50%);
  width: 5px; height: 5px; border-radius: 50%; background: #fff;
}
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; background: rgba(54,169,198,.25); border-color: var(--brand-3); }
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ========== PROGRESS BAR ========== */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: transparent;
  z-index: 200;
}
.progress span {
  display: block; height: 100%; width: 0%;
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand-glow);
}

/* ========== UTILITY BAR ========== */
.util {
  background: var(--ink);
  color: #d8d4c8;
  font-family: var(--font-mono);
  font-size: .72rem;
}
.util__inner {
  display: flex; align-items: center; gap: 22px;
  padding: 10px 0;
}
.util__loc { display: inline-flex; align-items: center; gap: 8px; }
.util__pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 0 0 rgba(174,240,255,.6);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot { 70% { box-shadow: 0 0 0 8px rgba(174,240,255,0); } 100% { box-shadow: 0 0 0 0 rgba(174,240,255,0); } }
.util__time {
  margin-left: auto;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.util__link {
  color: var(--brand-3);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.util__link:hover { color: #fff; }
@media (max-width: 640px) { .util__time { display: none; } }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(236, 230, 214, .82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: border-color var(--t), background var(--t);
}
.nav.is-scrolled {
  background: rgba(243, 238, 221, .96);
  border-color: var(--line-2);
}
.nav__inner {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0;
}

.logo {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: var(--font-display);
  font-weight: 500; letter-spacing: -.025em;
  font-size: 1.55rem;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.logo__mark {
  color: var(--ink);
  display: inline-grid; place-items: center; align-self: center;
  background: var(--brand);
  border-radius: 50%;
  padding: 2px;
  width: 32px; height: 32px;
}
.logo__mark svg circle:first-child { stroke: var(--ink); opacity: 0; }
.logo__mark svg circle:nth-child(2) { fill: var(--ink); r: 6; }
.logo__mark svg path { display: none; }
.logo__word { font-feature-settings: "ss01"; }
.logo__since {
  font-family: var(--font-mono);
  font-size: .62rem; color: var(--muted);
  letter-spacing: .14em; text-transform: uppercase;
  margin-left: 4px;
}

.nav__links {
  display: flex; gap: 20px;
  margin-left: 32px;
  font-size: .84rem;
  color: var(--ink);
}
.nav__links a {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 2px 0;
  position: relative;
  font-weight: 500;
  transition: color var(--t-fast);
}
.nav__links a span {
  font-family: var(--font-mono);
  font-size: .58rem; color: var(--muted);
  letter-spacing: .14em;
  font-weight: 400;
}
.nav__links a span:empty {
  display: none;
}
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: -3px; height: 8px;
  background: var(--brand);
  opacity: .85;
  transition: right var(--t);
  z-index: -1;
}
.nav__links a:hover::after { right: 0; }

.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  position: relative;
}
.burger span {
  position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--ink);
  transition: transform var(--t-fast);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { bottom: 16px; }
.burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { bottom: 20px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav__links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--paper);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--line-2);
    transform: translateY(-110%);
    transition: transform var(--t);
    margin: 0;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a::after { display: none; }
  .burger { display: inline-block; }
  .nav__actions .btn--solid { display: none; }
}

/* ========== BOTÕES ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .94rem; font-weight: 600;
  border: 1.5px solid transparent;
  transition: transform var(--t-fast), background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
  white-space: nowrap;
  letter-spacing: -.005em;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 11px 18px; font-size: .82rem; }
.btn--lg { padding: 20px 32px; font-size: 1rem; }

.btn--solid {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 4px 4px 0 0 var(--brand);
}
.btn--solid:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--brand);
  background: var(--ink);
}

.btn--line {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--line:hover { background: var(--ink); color: var(--paper); }

/* ========== TAGS / KICKER ========== */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 600;
}
.tag--ghost { background: transparent; }
.tag--brand {
  background: var(--brand);
  border-color: var(--ink);
  color: var(--ink);
}
.tag--live {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--brand-3);
}
.tag--live::before {
  content: "●"; font-size: .55rem;
  color: var(--brand-3); margin-right: 2px;
  animation: pulseDot 1.6s infinite;
}
.tag__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 10px rgba(31,157,95,.6);
}

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
}
.kicker i {
  width: 28px; height: 2px; background: var(--brand);
  display: inline-block;
}
.kicker--light { color: var(--brand-3); }
.kicker--light i { background: var(--brand-3); }

/* ========== SECTION HEAD ========== */
.section__head {
  display: grid; gap: 24px;
  margin-bottom: 88px;
  max-width: 1000px;
}
.section__head--row {
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  max-width: none;
  align-items: end;
}
@media (max-width: 900px) { .section__head--row { grid-template-columns: 1fr; gap: 28px; } }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.035em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.section__lead {
  color: var(--text-2);
  font-size: 1.15rem;
  max-width: 56ch;
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   HERO — declaração editorial brutal
   ============================================================ */
.hero {
  position: relative;
  padding: 70px 0 120px;
  overflow: hidden;
}

/* Stamp/sticker rotativo no canto */
.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1.5px solid var(--ink);
}
.hero__index {
  font-family: var(--font-mono);
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.hero__index sup { font-size: .55rem; vertical-align: super; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 11vw, 11.5rem);
  line-height: .9;
  letter-spacing: -.045em;
  margin: 64px 0 72px;
  text-wrap: balance;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.hero__line { display: block; }
.hero__line:nth-child(2) { padding-left: 8vw; }
.hero__line:nth-child(4) { padding-left: 4vw; }
.hero__line em { font-weight: 400; font-style: italic; color: var(--brand-2); }
.hero__line .muted { color: var(--muted); font-weight: 300; }

.hero__grid {
  display: grid;
  grid-template-columns: 1px 1.4fr 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 40px;
  border-top: 1px solid var(--line-2);
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__rule { display: none; }
  .hero__line:nth-child(2),
  .hero__line:nth-child(4) { padding-left: 0; }
}
.hero__rule {
  width: 1px; height: 100%;
  background: linear-gradient(180deg, var(--ink), transparent);
}
.hero__sub {
  font-size: 1.2rem;
  color: var(--text-2);
  max-width: 50ch;
  margin: 0;
  line-height: 1.55;
}
.hero__sub strong { color: var(--ink); font-weight: 700; background: var(--accent-2); padding: 0 4px; }
.hero__cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.hero__meta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 36px 0 0;
  border-top: 1.5px solid var(--ink);
}
@media (max-width: 720px) { .hero__meta { grid-template-columns: repeat(2, 1fr); } }
.hero__meta div {
  display: flex; flex-direction: column; gap: 8px;
  padding: 0 24px 0 0;
  border-right: 1px solid var(--line-2);
}
.hero__meta div:last-child { border-right: 0; }
.hero__meta b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  letter-spacing: -.035em;
  color: var(--ink);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.hero__meta div:nth-child(1) b { color: var(--brand-2); }
.hero__meta div:nth-child(3) b { font-style: italic; }
.hero__meta span {
  font-family: var(--font-mono);
  font-size: .7rem; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase;
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 20px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: .65rem; color: var(--muted);
  letter-spacing: .2em; text-transform: uppercase;
}
.hero__scroll span {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, transparent, var(--ink), transparent);
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%,100% { opacity: .3; transform: scaleY(.6); }
  50%     { opacity: 1; transform: scaleY(1); }
}
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* ============================================================
   MARQUEE — bloco cyan brutal
   ============================================================ */
.marquee {
  background: var(--brand);
  color: var(--ink);
  padding: 32px 0;
  overflow: hidden;
  border-block: 2px solid var(--ink);
}
.marquee__track {
  display: flex; gap: 56px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee__row {
  display: flex; align-items: center; gap: 56px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 144;
  white-space: nowrap;
}
.marquee__row span:nth-child(odd) { font-style: italic; }
.marquee__row i {
  color: var(--ink);
  font-style: normal;
  font-size: 1.2rem;
  opacity: .6;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: 160px 0;
  background: var(--bg);
  position: relative;
}
.manifesto__grid {
  display: grid;
  grid-template-columns: .85fr 1.4fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 900px) { .manifesto__grid { grid-template-columns: 1fr; gap: 48px; } }

.manifesto__side { position: sticky; top: 120px; }
.manifesto__caption {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  line-height: .96; letter-spacing: -.035em;
  margin: 28px 0 40px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.manifesto__caption em { color: var(--brand-2); }
.manifesto__years {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
  border-top: 1.5px solid var(--ink);
  padding-top: 22px;
}
.manifesto__years li {
  display: grid; grid-template-columns: 72px 1fr;
  align-items: baseline; gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line-2);
}
.manifesto__years b {
  font-family: var(--font-mono);
  font-size: .88rem; color: var(--ink);
  letter-spacing: .04em;
  font-weight: 600;
}
.manifesto__years span { color: var(--text-2); font-size: .94rem; }

.manifesto__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.14;
  letter-spacing: -.025em;
  margin: 0 0 36px;
  text-wrap: pretty;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.manifesto__lead em { color: var(--brand-2); }
.manifesto__body > p {
  color: var(--text-2);
  font-size: 1.12rem;
  margin: 0 0 22px;
  max-width: 58ch;
  line-height: 1.65;
}
.manifesto__body em { color: var(--ink); font-weight: 500; }

.manifesto__sign {
  display: flex; align-items: center; gap: 16px;
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}
.manifesto__line {
  flex: 0 0 80px; height: 2px;
  background: var(--ink);
}

/* ============================================================
   ÁREAS — grid bold com card cyan + card preto
   ============================================================ */
.areas {
  padding: 160px 0;
  background: var(--paper);
  border-block: 2px solid var(--ink);
}
.areas .section__head {
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  max-width: none;
  align-items: end;
}
@media (max-width: 900px) { .areas .section__head { grid-template-columns: 1fr; gap: 28px; } }
.areas .section__title em { color: var(--brand-2); }

.areas__grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1100px) { .areas__grid { grid-template-columns: 1fr; gap: 20px; } }

.clients {
  padding: 160px 0;
  background: var(--bg);
  border-block: 2px solid var(--ink);
}
.clients .section__head {
  grid-template-columns: 1.25fr .75fr;
  gap: 58px;
  max-width: none;
  align-items: end;
}
@media (max-width: 900px) { .clients .section__head { grid-template-columns: 1fr; gap: 28px; } }
.clients .section__title em { color: var(--brand-2); }

.clients__tools {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-top: 36px;
  margin-bottom: 34px;
}
@media (max-width: 900px) {
  .clients__tools { flex-direction: column; align-items: stretch; }
}
.clients__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.clients__filter {
  appearance: none;
  border: 1px solid rgba(11,13,14,.14);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.clients__filter:hover,
.clients__filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(11,13,14,.08);
}
.clients__search {
  width: min(460px, 100%);
}
.clients__search span {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .12em;
}
.clients__search input {
  width: 100%;
  border: 1px solid rgba(11,13,14,.30);
  border-radius: 18px;
  background: #fbf7ef;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 18px 20px;
  box-shadow: inset 0 0 0 1px rgba(11,13,14,.03), 0 12px 30px rgba(11,13,14,.08);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.clients__search input::placeholder {
  color: rgba(11,13,14,.65);
}
.clients__search input:focus {
  outline: none;
  border-color: var(--brand-2);
  box-shadow: 0 0 0 6px rgba(54,169,198,.14);
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.client-card[hidden] {
  display: none !important;
}
@media (max-width: 1100px) { .clients__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .clients__grid { grid-template-columns: 1fr; } }

.client-card {
  background: var(--surface);
  border: 1px solid rgba(11,13,14,.08);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  box-shadow: 0 10px 30px rgba(11,13,14,.06);
}
.client-card[data-album] {
  cursor: zoom-in;
}
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(11,13,14,.12);
  border-color: rgba(11,13,14,.16);
}
.client-card--accent {
  background: var(--brand);
  color: var(--paper);
  border-color: rgba(255,255,255,.14);
}
.client-card--accent .client-card__label,
.client-card--accent .client-card__content p { color: rgba(255,255,255,.82); }
.client-card--accent .client-card__content h3 { color: var(--paper); }

.client-card__cover {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #0b1014;
}
.client-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.client-card:hover .client-card__cover img {
  transform: scale(1.05);
}
.client-card__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(11,13,14,.76);
  color: var(--paper);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 1;
}
.client-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.client-card__label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brand-3);
}
.client-card__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--ink);
}
.client-card__content p {
  margin: 0;
  color: var(--text-2);
  line-height: 1.75;
}

.clients__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 980px) { .clients__stats { grid-template-columns: 1fr; } }

.clients__stats div {
  background: var(--surface);
  border: 1px solid rgba(11,13,14,.08);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 26px rgba(11,13,14,.05);
}
.clients__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
}
.clients__stats p {
  margin: 10px 0 0;
  color: var(--text-2);
  line-height: 1.6;
}

.area {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 32px;
  transition: transform var(--t), box-shadow var(--t);
  overflow: hidden;
  box-shadow: 8px 8px 0 0 var(--ink);
}
.area:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 0 var(--ink);
}
.area:nth-child(1) {
  background: var(--brand);
  box-shadow: 8px 8px 0 0 var(--ink);
}
.area:nth-child(1):hover { box-shadow: 14px 14px 0 0 var(--ink); }
.area--accent {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 0 var(--brand);
}
.area--accent:hover { box-shadow: 14px 14px 0 0 var(--brand); }
.area--accent .area__intro,
.area--accent .area__list p { color: rgba(255,255,255,.72); }
.area--accent .area__title { color: var(--paper); }
.area--accent .area__num { color: var(--brand-3); }
.area--accent .area__bullet { color: var(--brand-3); }
.area--accent .area__list h4 { color: var(--paper); }
.area--accent .area__list li { border-top-color: rgba(255,255,255,.12); }
.area--accent .area__art { border-color: rgba(255,255,255,.1); }

.area__head { display: flex; flex-direction: column; gap: 12px; padding-bottom: 4px; }
.area__num {
  font-family: var(--font-mono);
  font-size: .74rem; color: var(--ink);
  letter-spacing: .16em;
  font-weight: 600;
}
.area__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.area__intro {
  margin: 6px 0 0;
  color: var(--ink-2);
  font-size: 1rem;
  max-width: 42ch;
  line-height: 1.55;
  opacity: .85;
}

.area__art {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  border: 1.5px solid var(--ink);
}

.area__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 4px;
}
.area__list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(15,18,20,.18);
}
.area:nth-child(1) .area__list li { border-top-color: rgba(15,18,20,.25); }
.area__list li:last-child { padding-bottom: 0; }
.area__bullet {
  font-family: var(--font-mono);
  font-size: .7rem; color: var(--ink);
  letter-spacing: .1em;
  padding-top: 3px;
  font-weight: 600;
}
.area__list h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.area__list p {
  margin: 0;
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.55;
}

/* ====== ART DEV ====== */
.art-dev {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #0d2730, #061218);
  display: grid; place-items: center;
  padding: 22px;
}
.art-dev__window {
  width: 100%;
  background: #0a1419;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 40px -20px rgba(0,0,0,.6);
}
.art-dev__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px;
  background: #060e12;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.art-dev__bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.2); }
.art-dev__bar span:nth-child(1) { background: #ff5f57; }
.art-dev__bar span:nth-child(2) { background: #febc2e; }
.art-dev__bar span:nth-child(3) { background: #28c840; }
.art-dev__bar small {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: .68rem; color: rgba(255,255,255,.4);
}
.art-dev__code {
  margin: 0; padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: .82rem; line-height: 1.7;
  color: #d6e0e6;
  white-space: pre;
  overflow: hidden;
}
.c-c { color: rgba(255,255,255,.4); font-style: italic; }
.c-k { color: #c89cf5; }
.c-f { color: var(--brand-3); }
.c-p { color: #ffb37a; }
.c-s { color: #8be9b0; }

/* ====== ART DESIGN ====== */
.art-design {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 80%, rgba(174,240,255,.18), transparent 60%),
    linear-gradient(180deg, #1a2226, #0c1114);
  padding: 28px;
}
.art-design__card {
  position: absolute;
  background: var(--paper);
  color: var(--ink);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 18px 30px -14px rgba(0,0,0,.6), 0 0 0 1.5px rgba(0,0,0,.2);
  display: flex;
  transition: transform var(--t);
}
.area:hover .art-design__card { transform: translateY(-3px) rotate(0deg) !important; }

.art-design__card--1 {
  top: 12%; left: 8%;
  width: 40%; aspect-ratio: 1;
  background: linear-gradient(180deg, var(--paper), #ebe4d6);
  flex-direction: column; justify-content: space-between;
  transform: rotate(-8deg);
}
.art-design__logo {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 500;
  color: var(--brand-2);
  letter-spacing: -.05em;
  line-height: 1;
}
.art-design__card--1 small {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--muted-2);
  letter-spacing: .14em; text-transform: uppercase;
}

.art-design__card--2 {
  top: 18%; right: 10%;
  width: 38%; aspect-ratio: 4/5;
  background: var(--brand);
  color: var(--ink);
  transform: rotate(7deg);
  padding: 16px;
}
.art-design__post {
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%; width: 100%;
}
.art-design__post span {
  font-family: var(--font-mono);
  font-size: .58rem; letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
}
.art-design__post b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -.02em;
}
.art-design__post small {
  font-family: var(--font-mono);
  font-size: .62rem;
  opacity: .75;
}

.art-design__card--3 {
  bottom: 10%; left: 30%;
  width: 38%; aspect-ratio: 16/10;
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-4deg);
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.1);
  align-items: flex-end; justify-content: space-between;
}
.art-design__biz small {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.art-design__biz b {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 400;
  color: var(--brand-3); line-height: 1;
}

/* ====== ART SOCIAL ====== */
.art-social {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(54,169,198,.18), transparent 60%),
    linear-gradient(180deg, #fbf8f1, #ede7d8);
  display: grid; place-items: center;
  padding: 16px;
}
.art-social__phone {
  width: 75%; max-width: 232px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 6px 6px 0 0 var(--ink);
  display: flex; flex-direction: column; gap: 10px;
}
.art-social__head { display: flex; align-items: center; gap: 10px; }
.art-social__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  border: 1.5px solid var(--ink);
}
.art-social__head div { display: flex; flex-direction: column; line-height: 1.2; }
.art-social__head b { font-size: .86rem; color: var(--ink); }
.art-social__head small { font-family: var(--font-mono); font-size: .58rem; color: var(--muted); }

.art-social__feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.art-social__feed span {
  display: block; aspect-ratio: 1;
  border-radius: 4px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  animation: feedIn .6s ease both;
  animation-delay: calc(var(--d) * 90ms);
}
.art-social__feed span::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
}
.art-social__feed span:nth-child(2)::before { background: linear-gradient(135deg, var(--ink), #2a3239); }
.art-social__feed span:nth-child(3)::before { background: linear-gradient(135deg, var(--accent), #ffb37a); }
.art-social__feed span:nth-child(5)::before { background: linear-gradient(135deg, var(--brand), var(--brand-3)); }
.art-social__feed span:nth-child(6)::before { background: linear-gradient(135deg, var(--accent-2), var(--brand)); }
@keyframes feedIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }

.art-social__metrics {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .62rem; color: var(--muted);
  padding-top: 6px; border-top: 1px solid var(--line);
}
.art-social__metrics i { font-style: normal; }

/* ============================================================
   WORK — grid bold, cards com sombra dura
   ============================================================ */
.work { padding: 160px 0; background: var(--bg); }
.work .section__title em { color: var(--brand-2); }

.work__grid {
  display: grid; gap: 26px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) { .work__grid { grid-template-columns: 1fr; } }

.proj {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 8px 8px 0 0 var(--ink);
}
.proj:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 0 var(--ink);
}
.proj__num {
  position: absolute; top: 18px; left: 18px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .16em;
  color: var(--ink);
  background: var(--brand);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  font-weight: 700;
}

.proj__media {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: #06101a;
  border-bottom: 2px solid var(--ink);
}

/* — Film 1 NoFace — */
.film {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, #0a1a22 0%, #04090d 100%);
  display: grid; place-items: center;
  color: var(--brand-3);
}
.film--noface .film__mask {
  filter: drop-shadow(0 0 28px var(--brand-glow));
  animation: glitch 6s ease-in-out infinite;
}
@keyframes glitch {
  0%,90%,100% { transform: translate(0,0); }
  92%         { transform: translate(-2px, 1px); }
  94%         { transform: translate(2px,-1px); }
  96%         { transform: translate(-1px, 0); }
}
.film__scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(127,222,244,.06) 0 1px, transparent 1px 4px);
  pointer-events: none;
}

/* — Film 2 Cowboy — */
.film--cowboy {
  background: linear-gradient(180deg, #1a0f08 0%, #3a1d0a 50%, #6b3410 75%, #2a1a12 100%);
}
.film__sun {
  position: absolute; left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb347 0%, #ff7e1a 50%, transparent 70%);
  filter: blur(2px);
  box-shadow: 0 0 80px #ff8a3a;
}
.film__horizon {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 35%;
  background: linear-gradient(180deg, #2a1a12 0%, #0d0805 100%);
  border-top: 1px solid rgba(255,180,90,.3);
}
.film__silhouette {
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  height: 65%; width: auto;
  filter: drop-shadow(0 -4px 12px rgba(255,140,60,.4));
}

/* — Studio — */
.studio {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, #0a2330 0%, #050d12 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: center;
  gap: 18px; padding: 22px;
}
.studio__eq {
  width: 80%; height: 60%;
  display: flex; align-items: flex-end; gap: 4%;
}
.studio__eq span {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, var(--brand-3), var(--brand), var(--brand-2));
  border-radius: 2px 2px 0 0;
  animation: bounce 1.4s ease-in-out infinite alternate;
  box-shadow: 0 0 12px var(--brand-glow);
}
.studio__eq span:nth-child(2)  { animation-delay: .1s; }
.studio__eq span:nth-child(3)  { animation-delay: .2s; }
.studio__eq span:nth-child(4)  { animation-delay: .3s; }
.studio__eq span:nth-child(5)  { animation-delay: .4s; }
.studio__eq span:nth-child(6)  { animation-delay: .5s; }
.studio__eq span:nth-child(7)  { animation-delay: .6s; }
.studio__eq span:nth-child(8)  { animation-delay: .7s; }
.studio__eq span:nth-child(9)  { animation-delay: .8s; }
.studio__eq span:nth-child(10) { animation-delay: .9s; }
.studio__eq span:nth-child(11) { animation-delay: 1s; }
.studio__eq span:nth-child(12) { animation-delay: 1.1s; }
@keyframes bounce { to { transform: scaleY(.4); } }
.studio__knobs { display: flex; gap: 18px; }
.studio__knobs span {
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a3a44, #0e1418);
  border: 1px solid rgba(255,255,255,.2);
  position: relative;
  box-shadow: 0 0 10px var(--brand-glow);
}
.studio__knobs span::after {
  content: ""; position: absolute;
  top: 4px; left: 50%; width: 2px; height: 8px;
  background: var(--brand-3);
  transform: translateX(-50%);
  border-radius: 1px;
}
.studio__knobs span:nth-child(2)::after { transform: translateX(-50%) rotate(120deg); transform-origin: bottom; }
.studio__knobs span:nth-child(3)::after { transform: translateX(-50%) rotate(-60deg); transform-origin: bottom; }
.studio__knobs span:nth-child(4)::after { transform: translateX(-50%) rotate(45deg); transform-origin: bottom; }

/* — Vinyl — */
.vinyl {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom right, #1a0e2a 0%, #050208 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.vinyl__disc {
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 0%, #050505 100%);
  position: relative;
  animation: spinV 12s linear infinite;
  box-shadow: 0 12px 40px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.05);
}
@keyframes spinV { to { transform: rotate(360deg); } }
.vinyl__grooves {
  position: absolute; inset: 6%; border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 2px, rgba(255,255,255,.04) 2px 3px);
}
.vinyl__label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34%; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.4rem;
  color: var(--ink);
  box-shadow: inset 0 0 0 4px rgba(0,0,0,.2);
}
.vinyl__shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  pointer-events: none;
}

/* — Project body — */
.proj__body {
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.proj__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.proj__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.1rem;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.proj__desc { color: var(--text-2); margin: 0; font-size: 1rem; line-height: 1.6; }
.proj__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 4px 0 0;
  padding-top: 22px;
  border-top: 1.5px solid var(--ink);
}
.proj__meta div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.proj__meta dt {
  font-family: var(--font-mono);
  font-size: .62rem; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase;
}
.proj__meta dd { margin: 0; font-size: .92rem; color: var(--ink); font-weight: 600; }

/* ============================================================
   NUMBERS — faixa preta dramática com tipo gigante
   ============================================================ */
.numbers {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
  border-block: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: "KUBONET · TECNOLOGIA · KUBONET · TECNOLOGIA · KUBONET · TECNOLOGIA ·";
  position: absolute;
  top: 24px; left: 0; right: 0;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .3em;
  color: rgba(255,255,255,.15);
  white-space: nowrap;
  overflow: hidden;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
}
@media (max-width: 900px) { .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

.number {
  display: flex; flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid rgba(255,255,255,.15);
  padding: 0 28px;
}
.number:nth-child(1) { border-left: 0; padding-left: 0; }
.number b {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--paper);
  font-variation-settings: "opsz" 144;
}
.number:nth-child(2) b { color: var(--brand-3); font-style: italic; }
.number:nth-child(4) b {
  -webkit-text-stroke: 1.5px var(--paper);
  color: transparent;
}
.number sup {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-3);
  margin-left: 8px;
  vertical-align: super;
  font-weight: 600;
}
.number small {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: .74rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============================================================
   PROCESS — passos com sombra dura
   ============================================================ */
.process { padding: 160px 0; background: var(--bg); }
.process .section__title em { color: var(--brand-2); }

.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 36px 30px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.step:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 0 var(--ink);
}
.step:nth-child(2) { background: var(--brand); }
.step:nth-child(4) { background: var(--ink); color: var(--paper); box-shadow: 6px 6px 0 0 var(--brand); }
.step:nth-child(4):hover { box-shadow: 12px 12px 0 0 var(--brand); }
.step:nth-child(4) h3 { color: var(--paper); }
.step:nth-child(4) p { color: rgba(255,255,255,.7); }
.step:nth-child(4) .step__num { color: var(--brand-3); }

.step__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.step h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 8px 0 0;
  color: var(--ink);
}
.step p { margin: 0; color: var(--text-2); font-size: .94rem; line-height: 1.6; }

/* ============================================================
   CTA — bloco preto premium com glow cyan
   ============================================================ */
.cta { padding: 100px 0 160px; background: var(--bg); }
.cta__card {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  padding: 88px 76px;
  overflow: hidden;
  box-shadow: 14px 14px 0 0 var(--brand);
}
@media (max-width: 720px) { .cta__card { padding: 56px 28px; box-shadow: 8px 8px 0 0 var(--brand); } }

.cta__card::before {
  content: ""; position: absolute;
  top: -30%; right: -10%; width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--brand-glow), transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}
.cta__card::after {
  content: "★";
  position: absolute;
  bottom: 32px; right: 48px;
  font-size: 12rem;
  color: rgba(54,169,198,.08);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-display);
}

.cta__head { margin-bottom: 48px; position: relative; z-index: 1; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  line-height: .96;
  letter-spacing: -.035em;
  margin: 18px 0 18px;
  max-width: 22ch;
  text-wrap: balance;
  color: var(--paper);
  font-variation-settings: "opsz" 144;
}
.cta__title em { color: var(--brand-3); }
.cta__lead {
  color: rgba(255,255,255,.72);
  max-width: 56ch;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.6;
}

.cta__form {
  display: grid; gap: 20px;
  grid-template-columns: 1fr 1fr;
  position: relative; z-index: 1;
}
@media (max-width: 640px) { .cta__form { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > span {
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 12px;
  color: var(--paper);
  font: inherit;
  font-size: .96rem;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.32); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-3);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 4px rgba(174,240,255,.14);
}

label.clients__search.field > span {
  color: var(--ink);
}
label.clients__search.field input {
  background: #fbf7ef;
  color: var(--ink);
  border-color: rgba(11,13,14,.32);
}
label.clients__search.field input::placeholder {
  color: rgba(11,13,14,.65);
}
label.clients__search.field input:focus {
  border-color: var(--brand-2);
  background: #fff;
  box-shadow: 0 0 0 6px rgba(54,169,198,.14);
}

.chips__row input { position: absolute; opacity: 0; pointer-events: none; }
.chips__row label:has(input:checked) {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--ink);
  font-weight: 700;
}

.cta__send {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.cta__send .btn--solid {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 4px 4px 0 0 var(--paper);
}
.cta__send .btn--solid:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--paper);
  background: var(--brand-3);
}
.cta__send small { color: rgba(255,255,255,.6); font-size: .88rem; }
.cta__send small a { color: var(--brand-3); border-bottom: 1px solid rgba(255,255,255,.25); }

.cta__ok {
  grid-column: 1 / -1;
  margin: 0; padding: 14px 18px;
  background: rgba(31,157,95,.18);
  border: 1px solid rgba(31,157,95,.4);
  border-radius: 12px;
  color: #b8f5d2;
  font-size: .92rem;
}

/* ============================================================
   FOOTER — manifesto tipográfico
   ============================================================ */
.foot {
  border-top: 2px solid var(--ink);
  background: var(--paper);
  padding: 100px 0 36px;
  overflow: hidden;
}
.foot__big {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(5rem, 22vw, 20rem);
  line-height: .85;
  letter-spacing: -.06em;
  color: var(--ink);
  margin: 0 0 72px;
  user-select: none;
  font-variation-settings: "opsz" 144;
  position: relative;
}
.foot__big span {
  color: var(--brand);
  font-style: italic;
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1.5px solid var(--ink);
}
@media (max-width: 900px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot__grid { grid-template-columns: 1fr; } }

.foot__col { display: flex; flex-direction: column; gap: 12px; }
.foot__col--brand p {
  color: var(--text-2); margin: 0;
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.6;
}
.foot__col h5 {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 8px;
}
.foot__col a {
  color: var(--text-2);
  font-size: .98rem;
  transition: color var(--t-fast);
  width: max-content;
  max-width: 100%;
  position: relative;
}
.foot__col a:hover { color: var(--ink); background: var(--accent-2); }

.foot__bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding-top: 32px;
  color: var(--muted); font-size: .8rem;
  font-family: var(--font-mono);
}

/* ============================================================
   SOBRE — Quem somos + Missão/Visão/Valores + Equipe
   ============================================================ */
.studio-about {
  padding: 160px 0;
  background: var(--paper);
  border-block: 2px solid var(--ink);
}
.studio-about .section__title em { color: var(--brand-2); }

/* --- ABOUT (sobre) --- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 120px;
}
@media (max-width: 980px) { .about { grid-template-columns: 1fr; gap: 56px; } }

.about__media {
  position: relative;
  display: grid;
  gap: 24px;
}
.about__photo {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 10px 10px 0 0 var(--ink);
  transition: transform var(--t), box-shadow var(--t);
}
.about__photo:hover { transform: translate(-3px, -3px); box-shadow: 16px 16px 0 0 var(--ink); }
.about__photo svg { width: 100%; height: 100%; display: block; }
.about__photo--1 { aspect-ratio: 4/5; }
.about__photo--2 {
  aspect-ratio: 16/10;
  width: 70%;
  margin-left: 30%;
  margin-top: -60px;
  z-index: 2;
  background: var(--paper);
}
@media (max-width: 980px) { .about__photo--2 { width: 80%; margin-left: 20%; margin-top: -40px; } }
.about__cap {
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
}
.about__photo--2 .about__cap { color: var(--ink); background: var(--brand); }

.about__body { padding-top: 8px; }
.about__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -.025em;
  margin: 0 0 28px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.about__lead em { color: var(--brand-2); }
.about__body p {
  color: var(--text-2);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 56ch;
}
.about__body em { color: var(--ink); font-weight: 500; }

.about__facts {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px solid var(--ink);
  padding-top: 28px;
  gap: 12px;
}
@media (max-width: 640px) { .about__facts { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
.about__facts li { display: flex; flex-direction: column; gap: 4px; }
.about__facts b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.about__facts li:nth-child(2) b { color: var(--brand-2); font-style: italic; }
.about__facts span {
  font-family: var(--font-mono);
  font-size: .68rem; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase;
}

/* --- MVV (missão / visão / valores) --- */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 120px;
}
@media (max-width: 980px) { .mvv { grid-template-columns: 1fr; } }

.mvv__card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 8px 8px 0 0 var(--ink);
  transition: transform var(--t), box-shadow var(--t);
}
.mvv__card:hover { transform: translate(-4px, -4px); box-shadow: 14px 14px 0 0 var(--ink); }
.mvv__card--brand { background: var(--brand); }
.mvv__card--dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 0 var(--brand);
}
.mvv__card--dark:hover { box-shadow: 14px 14px 0 0 var(--brand); }
.mvv__card--dark .mvv__title { color: var(--paper); }
.mvv__card--dark .mvv__num { color: var(--brand-3); }

.mvv__num {
  font-family: var(--font-mono);
  font-size: .74rem; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink); font-weight: 600;
}
.mvv__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  letter-spacing: -.03em;
  margin: 4px 0 6px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.mvv__text {
  margin: 0;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
}
.mvv__card--dark .mvv__text { color: rgba(255,255,255,.78); }
.mvv__text em { color: var(--ink); font-weight: 500; font-style: italic; }
.mvv__card--dark .mvv__text em { color: var(--brand-3); }

.mvv__list { list-style: none; padding: 0; margin: 4px 0 0; display: grid; gap: 12px; }
.mvv__list li {
  display: grid; grid-template-columns: 30px 1fr;
  gap: 8px; align-items: baseline;
  font-size: .96rem; line-height: 1.5;
  color: rgba(255,255,255,.82);
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,.18);
}
.mvv__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.mvv__list b {
  font-family: var(--font-mono);
  font-size: .72rem; color: var(--brand-3);
  letter-spacing: .1em; font-weight: 700;
}

/* --- TEAM (equipe) --- */
.team__head { margin-bottom: 48px; }
.team__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: -.03em;
  margin: 14px 0 0;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.team__title em { color: var(--brand-2); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .team__grid { grid-template-columns: 1fr; } }

.member {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 6px 6px 0 0 var(--ink);
  transition: transform var(--t), box-shadow var(--t);
}
.member:hover { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 0 var(--ink); }

.member__avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.member__avatar--brand { background: var(--brand); }
.member__avatar--dark { background: var(--ink); color: var(--brand-3); }
.member__avatar--alt { background: var(--accent-2); }

.member__body h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem; font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}
.member__body p {
  margin: 0 0 12px;
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.55;
}
.member__role {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
  width: max-content;
  font-weight: 600;
}

/* ============================================================
   GALERIA — Fotos + Vídeos
   ============================================================ */
.gallery {
  padding: 160px 0;
  background: var(--paper);
  border-block: 2px solid var(--ink);
}
.gallery .section__title em { color: var(--brand-2); }

.gallery__tabhead {
  display: flex; align-items: baseline; gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1.5px solid var(--ink);
}
.gallery__tabhead--video { margin-top: 100px; }
.gallery__tag {
  font-family: var(--font-mono);
  font-size: .76rem; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink); font-weight: 700;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
}
.gallery__tag--brand { background: var(--brand); }
.gallery__count {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* --- Fotos: bento masonry maior --- */
.gallery__bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}
@media (max-width: 1100px) { .gallery__bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; } }
@media (max-width: 720px)  { .gallery__bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 14px; } }

.shot {
  position: relative;
  margin: 0;
  grid-column: span 2;
  grid-row: span 1;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #06101a;
  box-shadow: 8px 8px 0 0 var(--ink);
  transition: transform var(--t), box-shadow var(--t);
}
.shot:hover { transform: translate(-4px, -4px); box-shadow: 14px 14px 0 0 var(--brand); }

/* Bento spans */
.shot--hero { grid-column: span 4; grid-row: span 2; }
.shot--v    { grid-column: span 2; grid-row: span 2; }
.shot--wide { grid-column: span 4; }

@media (max-width: 1100px) {
  .shot--hero { grid-column: span 4; grid-row: span 2; }
  .shot--v    { grid-column: span 2; grid-row: span 2; }
  .shot--wide { grid-column: span 4; }
}
@media (max-width: 720px) {
  .shot, .shot--hero, .shot--v, .shot--wide { grid-column: span 2; grid-row: span 1; }
}

.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow), filter var(--t);
  filter: saturate(1.05);
}
.shot:hover img { transform: scale(1.06); filter: saturate(1.15); }

.shot figcaption {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  background: rgba(11,13,14,.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--paper);
  padding: 12px 14px;
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(255,255,255,.12);
  transform: translateY(4px);
  opacity: .92;
  transition: transform var(--t), opacity var(--t);
}
.shot:hover figcaption { transform: translateY(0); opacity: 1; }
.shot__num {
  font-weight: 700;
  color: var(--ink);
  background: var(--brand-3);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: .62rem;
  letter-spacing: .14em;
}
.shot__name {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-sans);
  font-size: .82rem;
  color: rgba(255,255,255,.78);
}
.shot__name b {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  font-style: italic;
  margin-right: 6px;
}
.shot__year {
  color: var(--brand-3);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .14em;
}

/* ============================================================
   VIDEOS — seção dedicada, fundo escuro cinematográfico
   ============================================================ */
.videos-section {
  padding: 160px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(54,169,198,.18), transparent 22%),
    radial-gradient(circle at 92% 45%, rgba(255,91,46,.12), transparent 24%),
    linear-gradient(180deg, #020507 0%, #070d12 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.videos-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 18%),
    radial-gradient(circle at 5% 80%, rgba(54,169,198,.05), transparent 18%);
  pointer-events: none;
}
.videos-section > .container { position: relative; z-index: 1; }

.section__title--light { color: var(--paper); }
.section__title--light em { color: var(--brand-3); font-style: italic; }
.section__lead--light {
  color: rgba(255,255,255,.76);
  max-width: 58ch;
}

.videos-section__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 34px;
}
.videos-section__tag {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--brand-3);
  border: 2px solid var(--brand-3);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
}
.videos-section__count {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.videos-section__body {
  display: block;
}
.videos {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1580px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .videos { max-width: 1240px; }
}
@media (max-width: 1200px) {
  .videos { grid-template-columns: repeat(3, minmax(240px, 1fr)); max-width: 980px; }
}
@media (max-width: 860px) {
  .videos { grid-template-columns: repeat(2, minmax(220px, 1fr)); max-width: 700px; }
}
@media (max-width: 640px) {
  .videos { grid-template-columns: 1fr; max-width: 100%; }
}
.videos-section__stats {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.02);
}
.videos-section__stat {
  display: grid;
  gap: 6px;
}
.videos-section__stat strong {
  font-size: 3.75rem;
  line-height: 0.95;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -.04em;
}
.videos-section__stat strong span {
  font-size: 1.2rem;
  line-height: 1;
  vertical-align: super;
  margin-left: 4px;
  color: var(--brand-3);
}
.videos-section__stat p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: .87rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
}
@media (max-width: 680px) {
  .videos-section__stat strong { font-size: 3rem; }
}

.videos-section__hint {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}
.videos-section__hint span { color: var(--brand); margin-right: 8px; }
.videos-section__hint a {
  color: var(--brand-3);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}
.videos-section__hint a:hover { color: var(--paper); }

/* Make video cards work as buttons (facade) */
.video {
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
}
.video:focus-visible {
  outline: 3px solid var(--brand-3);
  outline-offset: 4px;
}

/* When iframe is injected, fill the card */
.video.is-playing .video__poster,
.video.is-playing .video__overlay { display: none; }
.video iframe {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --- Vídeos --- */
.videos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1200px) { .videos { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 860px) { .videos { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .videos { grid-template-columns: 1fr; } }

.videos .video[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.video {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7,10,14,.95), rgba(11,16,23,.98));
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
  color: var(--paper);
}
.video__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.35) 100%);
}
.video__play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.6);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.video:hover .video__play {
  transform: scale(1.06);
  background: var(--brand);
  color: var(--ink);
}
.video:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 100px rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.14);
}
.video--feature {
  grid-row: span 1;
}

.video__poster {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px;
  gap: 18px;
}
.video__poster--reel {
  background:
    radial-gradient(circle at 22% 22%, rgba(54,169,198,.28), transparent 28%),
    linear-gradient(140deg, #07101f 0%, #161b25 48%, #0b131c 100%);
}
.video__poster--studio {
  background:
    radial-gradient(circle at 50% 0%, rgba(174,240,255,.14), transparent 18%),
    linear-gradient(180deg, #02070d 0%, #081118 100%);
}
.video__poster--noface {
  background:
    radial-gradient(circle at 50% 40%, rgba(174,240,255,.08), transparent 18%),
    linear-gradient(180deg, #02050b 0%, #05101a 100%);
}
.video__noise {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 8px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.video__title-vis {
  text-align: left;
  font-family: var(--font-display);
  color: var(--paper);
  font-variation-settings: "opsz" 144;
}
.video__title-vis span {
  display: block;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .4em;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: .78;
}
.video__title-vis b {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -.05em;
  line-height: 1;
  font-style: italic;
}

.video__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 56%;
  width: 72%;
}
.video__bars span {
  flex: 1;
  background: linear-gradient(180deg, rgba(174,240,255,.95), rgba(54,169,198,.5));
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 22px rgba(54,169,198,.18);
  animation: bounce 1.4s ease-in-out infinite alternate;
}
.video__bars span:nth-child(1) { height: 44%; animation-delay: .1s; }
.video__bars span:nth-child(2) { height: 72%; animation-delay: .15s; }
.video__bars span:nth-child(3) { height: 52%; animation-delay: .2s; }
.video__bars span:nth-child(4) { height: 88%; animation-delay: .25s; }
.video__bars span:nth-child(5) { height: 62%; animation-delay: .3s; }
.video__bars span:nth-child(6) { height: 78%; animation-delay: .35s; }

.video__poster--noface svg {
  width: 48%;
  height: auto;
  filter: drop-shadow(0 0 34px rgba(174,240,255,.45));
}

.video__overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(11,13,14,.08) 15%, rgba(11,13,14,.94) 100%);
  z-index: 2;
}
.video__play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.65);
  color: var(--ink);
  display: grid;
  place-items: center;
  align-self: flex-end;
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.video:hover .video__play {
  transform: scale(1.08);
  background: var(--brand);
  color: var(--ink);
}
.video--feature .video__play { width: 70px; height: 70px; }

.video__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.video__meta .tag {
  background: rgba(255,255,255,.08);
  color: var(--paper);
  border-color: rgba(255,255,255,.18);
}
.video__meta .tag.tag--brand {
  background: rgba(174,240,255,.12);
  color: #dff9ff;
  border-color: rgba(174,240,255,.35);
}
.video__meta .tag.tag--live {
  background: rgba(255,91,46,.14);
  border-color: rgba(255,91,46,.28);
  color: #ffcab4;
}
.video__meta h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0;
  color: var(--paper);
  font-variation-settings: "opsz" 144;
}
.video--feature .video__meta h4 { font-size: clamp(1.45rem, 2vw, 2.1rem); }
.video__meta h4 em { color: var(--brand-3); }
.video__meta small {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: rgba(255,255,255,.62);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   REFINAMENTO CLÁSSICO — overrides v20260518g
   Bordas finas, sombras suaves, hover elegante.
   ============================================================ */
:root {
  --line: rgba(11,13,14,.10);
  --line-strong: rgba(11,13,14,.18);
  --line-dark: rgba(255,255,255,.10);
  --shadow-sm: 0 1px 2px rgba(11,13,14,.04), 0 2px 6px rgba(11,13,14,.04);
  --shadow-md: 0 2px 8px rgba(11,13,14,.05), 0 12px 28px -14px rgba(11,13,14,.16);
  --shadow-lg: 0 4px 14px rgba(11,13,14,.06), 0 28px 60px -24px rgba(11,13,14,.22);
}

/* — Áreas — */
.area,
.area--accent,
.area:nth-child(1) {
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
}
.area:hover,
.area--accent:hover,
.area:nth-child(1):hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--line-strong) !important;
}

/* — Projetos — */
.proj {
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease !important;
}
.proj:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--line-strong) !important;
}
.proj__media { border-bottom: 1px solid var(--line) !important; }
.proj__num { border: 1px solid var(--line-strong) !important; box-shadow: none !important; }

/* — Steps / Processo — */
.step {
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
}
.step:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-md) !important;
  border-color: var(--line-strong) !important;
}
.step:nth-child(4):hover { box-shadow: var(--shadow-lg) !important; }

/* — MVV / Equipe / Sobre — */
.mvv__card,
.member,
.about__photo {
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
}
.mvv__card:hover,
.member:hover,
.about__photo:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-md) !important;
  border-color: var(--line-strong) !important;
}
.mvv__card--dark { border-color: rgba(255,255,255,.08) !important; }
.member__avatar { border-width: 1px !important; }

/* — CTA card — */
.cta__card {
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 30px 80px -30px rgba(54,169,198,.45), 0 0 0 1px rgba(255,255,255,.04) inset !important;
}

/* — Tags / pills — uniformizar — */
.tag,
.gallery__tag,
.videos-section__tag,
.kicker,
.proj__num {
  border-width: 1px !important;
  border-color: var(--line-strong) !important;
}

/* ============================================================
   GALERIA — 4 cards por linha, clean clássico
   ============================================================ */
.gallery {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 140px 0;
}
.gallery__tabhead {
  border-bottom: 1px solid var(--line) !important;
  padding-bottom: 18px;
  margin-bottom: 36px;
}

.gallery__bento {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-auto-rows: auto !important;
  gap: 22px !important;
}
@media (max-width: 980px) { .gallery__bento { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 680px) { .gallery__bento { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; } }

.shot,
.shot--hero,
.shot--v,
.shot--wide {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  aspect-ratio: 4 / 5;
  background: #0f1418;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm) !important;
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease !important;
}
.shot:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-md) !important;
  border-color: var(--line-strong) !important;
}
.shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
  opacity: .9;
  transition: opacity .35s ease;
}
.shot:hover::after { opacity: 1; }
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease, filter .45s ease;
  filter: saturate(1.02);
}
.shot:hover img { transform: scale(1.05); filter: saturate(1.1); }

/* Caption clássica — serif + monoespaçado */
.shot figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  transform: none !important;
  opacity: 1 !important;
  z-index: 2;
}
.shot__num {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.65);
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-weight: 500;
}
.shot__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -.01em;
  flex: 1;
  line-height: 1.2;
}
.shot__name b {
  font-style: normal;
  font-weight: 500;
  margin-right: 4px;
  color: #fff;
}
.shot__year {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--brand-3);
  font-weight: 500;
}

/* ============================================================
   LIGHTBOX — Visualizador editorial
   Backdrop com blur, moldura com bordas finas e ouro frio,
   navegação com tipografia clássica.
   ============================================================ */
.lbx {
  position: fixed; inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  padding: 6vh 6vw 4vh;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s linear .35s;
}
.lbx.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .35s ease, visibility 0s linear 0s;
}

/* trava o scroll do body */
body.lbx-lock { overflow: hidden; }

.lbx__backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(54,169,198,.10), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,91,46,.06), transparent 60%),
    rgba(8,10,12,.88);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  cursor: zoom-out;
}
.lbx__backdrop::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 4px);
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Botões de controle */
.lbx__btn {
  position: absolute;
  z-index: 3;
  display: grid; place-items: center;
  width: 52px; height: 52px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.lbx__btn:hover {
  background: rgba(174,240,255,.95);
  color: var(--ink);
  border-color: var(--brand-3);
  transform: scale(1.06);
}
.lbx__btn:focus-visible {
  outline: 2px solid var(--brand-3);
  outline-offset: 4px;
}
.lbx__btn--close { top: 24px; right: 28px; }
.lbx__btn--prev  { left: max(16px, 3vw); top: 50%; transform: translateY(-50%); }
.lbx__btn--next  { right: max(16px, 3vw); top: 50%; transform: translateY(-50%); }
.lbx__btn--prev:hover, .lbx__btn--next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 720px) {
  .lbx__btn { width: 44px; height: 44px; }
  .lbx__btn--close { top: 14px; right: 14px; }
}

/* Palco principal */
.lbx__stage {
  position: relative;
  z-index: 2;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 22px;
  max-width: min(1200px, 88vw);
  max-height: 84vh;
  width: 100%;
  align-content: center;
  justify-items: center;
  transform: scale(.96);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
}
.lbx.is-open .lbx__stage { transform: scale(1); opacity: 1; }

.lbx__frame {
  position: relative;
  max-width: 100%;
  max-height: 72vh;
  display: grid; place-items: center;
  /* moldura editorial: fundo cru fininho + linha + sombra de salão */
  background: var(--paper);
  padding: 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(174,240,255,.18),
    0 30px 80px -20px rgba(0,0,0,.7),
    0 60px 140px -40px rgba(54,169,198,.25);
  overflow: hidden;
}
.lbx__frame.is-video {
  padding: 0;
  background: #000;
  aspect-ratio: 16/9;
  width: min(1100px, 86vw);
  max-height: 72vh;
}
.lbx__frame img {
  display: block;
  max-width: 100%;
  max-height: calc(72vh - 28px);
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 2px;
  animation: lbxIn .55s cubic-bezier(.2,.7,.2,1) both;
}
.lbx__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
@keyframes lbxIn {
  from { opacity: 0; transform: scale(.98); filter: blur(6px); }
  to   { opacity: 1; transform: scale(1);   filter: blur(0); }
}

/* Legenda editorial */
.lbx__caption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 22px;
  width: min(1200px, 88vw);
  padding: 0 4px;
  color: rgba(255,255,255,.78);
}
.lbx__count {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--brand-3);
  font-weight: 500;
}
.lbx__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-align: center;
}
.lbx__title b {
  font-style: normal;
  font-weight: 500;
  margin-right: 6px;
}
.lbx__meta {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .lbx__caption {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
  }
  .lbx__title { text-align: center; }
}

/* Dica de teclas */
.lbx__hint {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  padding: 18px 0 4px;
}
.lbx__hint kbd {
  display: inline-block;
  padding: 3px 8px;
  margin: 0 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  font: inherit;
  color: var(--brand-3);
}
@media (max-width: 720px) { .lbx__hint { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .lbx, .lbx__stage, .lbx__frame img { transition: none !important; animation: none !important; }
}

/* ============================================================
   KUBINHO — IA de atendimento
   ============================================================ */
.kubinho {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9000;
  font-family: var(--font-sans);
  color: var(--ink);
}

/* Botão flutuante */
.kubinho__fab {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  background: linear-gradient(135deg, #ffffff 0%, #f3eedd 100%);
  border: 1px solid rgba(11,13,14,.18);
  border-radius: 999px;
  box-shadow:
    0 18px 40px rgba(11,13,14,.18),
    0 4px 12px rgba(54,169,198,.18),
    0 0 0 4px rgba(255,255,255,.5);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.kubinho__fab:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 50px rgba(11,13,14,.22),
    0 6px 18px rgba(54,169,198,.32),
    0 0 0 4px rgba(255,255,255,.6);
}
.kubinho__fab-label {
  display: grid;
  text-align: left;
  line-height: 1;
  gap: 4px;
}
.kubinho__fab-label b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.kubinho__fab-label small {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kubinho__avatar {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #aef0ff, #36a9c6 70%, #0b3b48 110%);
  flex-shrink: 0;
  box-shadow: inset 0 -4px 12px rgba(0,0,0,.25), 0 2px 8px rgba(54,169,198,.4);
  overflow: hidden;
}
.kubinho__avatar--sm { width: 36px; height: 36px; }
.kubinho__pulse {
  position: absolute;
  top: 6px; left: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #36c66a;
  box-shadow: 0 0 0 4px rgba(54,198,106,.25);
  animation: kubpulse 1.8s ease-in-out infinite;
}
@keyframes kubpulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(54,198,106,.25); }
  50% { box-shadow: 0 0 0 8px rgba(54,198,106,.05); }
}
.kubinho.is-open .kubinho__fab { display: none; }

/* Painel */
.kubinho__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(380px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 60px));
  background: linear-gradient(180deg, #ffffff 0%, #f7f1de 100%);
  border: 1px solid rgba(11,13,14,.14);
  border-radius: 24px;
  box-shadow:
    0 40px 100px rgba(11,13,14,.28),
    0 0 0 6px rgba(255,255,255,.4);
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  overflow: hidden;
  transform-origin: bottom right;
  animation: kubin .35s cubic-bezier(.2,.8,.2,1);
}

.kubinho:not(.is-open) .kubinho__panel {
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.kubinho.is-open .kubinho__panel {
  display: grid;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@keyframes kubin {
  from { opacity: 0; transform: scale(.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.kubinho__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(11,13,14,.95) 0%, rgba(20,28,36,.97) 100%);
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.kubinho__head-id {
  display: flex;
  align-items: center;
  gap: 12px;
}
.kubinho__head-id strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.kubinho__head-id small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: .62rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kubinho__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #36c66a;
  box-shadow: 0 0 8px rgba(54,198,106,.7);
  display: inline-block;
}
.kubinho__head-actions { display: flex; gap: 6px; }
.kubinho__icon-btn {
  width: 30px; height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--paper);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s ease;
}
.kubinho__icon-btn:hover { background: rgba(255,255,255,.16); }

/* Log */
.kubinho__log {
  padding: 18px 16px 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.kubinho__log::-webkit-scrollbar { width: 6px; }
.kubinho__log::-webkit-scrollbar-thumb { background: rgba(11,13,14,.18); border-radius: 3px; }

.kub-msg {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: .92rem;
  line-height: 1.45;
  animation: kubmsg .3s ease;
  word-wrap: break-word;
}
@keyframes kubmsg {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.kub-msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid rgba(11,13,14,.1);
  border-bottom-left-radius: 6px;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(11,13,14,.04);
}
.kub-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, #36a9c6 0%, #0b3b48 100%);
  color: #fff;
  border-bottom-right-radius: 6px;
  box-shadow: 0 4px 14px rgba(54,169,198,.32);
}
.kub-msg strong { font-weight: 600; }
.kub-msg a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.kub-msg ul {
  margin: 6px 0 0;
  padding-left: 18px;
}
.kub-msg ul li { margin: 2px 0; }
.kub-msg--typing {
  display: inline-flex;
  gap: 4px;
  padding: 14px 16px;
}
.kub-msg--typing span {
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: kubdot 1.2s ease-in-out infinite;
}
.kub-msg--typing span:nth-child(2) { animation-delay: .15s; }
.kub-msg--typing span:nth-child(3) { animation-delay: .3s; }
@keyframes kubdot {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* Quick replies */
.kubinho__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 10px;
}
.kubinho__quick button {
  background: rgba(54,169,198,.1);
  border: 1px solid rgba(54,169,198,.3);
  color: #0b3b48;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.kubinho__quick button:hover {
  background: rgba(54,169,198,.22);
  transform: translateY(-1px);
}

/* Form */
.kubinho__form {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(11,13,14,.1);
  background: #fff;
}
.kubinho__input {
  flex: 1;
  border: 1px solid rgba(11,13,14,.18);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: .92rem;
  background: #faf6e9;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.kubinho__input:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(54,169,198,.18);
}
.kubinho__send {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #36a9c6 0%, #0b3b48 100%);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(54,169,198,.4);
}
.kubinho__send:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(54,169,198,.5); }
.kubinho__send svg { transform: translateX(-1px); }

.kubinho__foot {
  padding: 8px 14px 12px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fff;
}

@media (max-width: 520px) {
  .kubinho { right: 12px; bottom: 12px; }
  .kubinho__fab-label { display: none; }
  .kubinho__fab { padding: 6px; }
  .kubinho__panel { width: calc(100vw - 24px); height: calc(100vh - 90px); }
}

/* ============================================================
   KUBINHO — Catálogo de produtos e cards expandidos
   Estilos para a demonstração visual de produtos
   ============================================================ */

/* Catálogo grid */
.kub-catalog {
  margin: 8px 0;
  display: grid;
  gap: 14px;
}

.kub-catalog-header {
  text-align: center;
  padding: 12px 0;
  border-bottom: 2px solid rgba(11,13,14,.1);
  margin-bottom: 8px;
}

.kub-catalog-header h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
}

.kub-catalog-header p {
  margin: 0;
  font-size: .85rem;
  color: var(--text-2);
}

/* Card de produto no catálogo */
.kub-product-card {
  background: #fff;
  border: 1px solid rgba(11,13,14,.1);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(11,13,14,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.kub-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11,13,14,.08);
}

.kub-product-card-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.kub-product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.kub-product-info h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
}

.kub-product-info p {
  margin: 0;
  font-size: .78rem;
  color: var(--text-2);
  line-height: 1.3;
}

.kub-product-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
  white-space: nowrap;
}

.kub-product-card-body {
  display: grid;
  gap: 10px;
}

.kub-product-meta {
  display: flex;
  gap: 12px;
  font-size: .72rem;
  color: var(--text-2);
}

.kub-product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.kub-product-btn {
  width: 100%;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.kub-product-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}

/* Card de produto detalhado (resposta do bot) */
.kub-product-detail {
  margin: 8px 0;
  background: #fff;
  border: 1px solid rgba(11,13,14,.12);
  border-radius: 14px;
  overflow: hidden;
}

.kub-product-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(54,169,198,.05) 0%, rgba(54,169,198,.02) 100%);
  border-bottom: 1px solid rgba(11,13,14,.08);
}

.kub-product-detail .kub-product-icon {
  width: 52px;
  height: 52px;
  font-size: 1.7rem;
}

.kub-product-header h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
}

.kub-product-header p {
  margin: 0;
  font-size: .82rem;
  color: var(--text-2);
}

.kub-product-header .kub-product-price {
  font-size: 1.4rem;
  color: var(--brand-2);
}

.kub-product-body {
  padding: 16px;
  color: var(--text);
  line-height: 1.6;
}

.kub-product-body strong {
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
  color: var(--ink);
}

.kub-product-body ul {
  margin: 8px 0 12px;
  padding-left: 20px;
}

.kub-product-body ul li {
  margin: 4px 0;
  font-size: .88rem;
}

.kub-product-body br + strong {
  margin-top: 16px;
}

/* Responsivo para mobile */
@media (max-width: 420px) {
  .kub-product-card-header {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  
  .kub-product-price {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
  }
  
  .kub-product-header {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  
  .kub-product-header .kub-product-price {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 6px;
  }
}

