/* ═══════════════════════════════════════════════════════
   HENDLER AUDIOVISUAL — site
   black & white · cinematic · em movimento
   ═══════════════════════════════════════════════════════ */

:root {
  --bg:        #0a0a0a;
  --bg-2:      #131313;
  --bg-3:      #1a1a1a;
  --fg:        #f1ede3;        /* warm off-white */
  --fg-dim:    #8a857a;
  --fg-mute:   #4a4742;
  --line:      #232220;
  --accent:    #f1ede3;        /* same — preto/branco only */

  --gutter:    clamp(20px, 4vw, 64px);
  --maxw:      1680px;

  --t-display: 'Anton', 'Helvetica Neue', Arial, sans-serif;
  --t-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --t-mono:    'JetBrains Mono', ui-monospace, monospace;

  --ease:      cubic-bezier(.7, 0, .2, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--fg); color: var(--bg); }

html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--t-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

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

/* ─────────  GRAIN  ───────── */
.grain {
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 200;
  opacity: .055; mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 13% 47%, rgba(255,255,255,.7) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 77% 23%, rgba(255,255,255,.5) 0 1px, transparent 1px 4px);
  animation: grain 1.4s steps(6) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-5%, 3%); }
  40%  { transform: translate(4%, -2%); }
  60%  { transform: translate(-3%, -4%); }
  80%  { transform: translate(2%, 4%); }
  100% { transform: translate(0,0); }
}

/* ─────────  CURSOR  ───────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--fg);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out),
              height .35s var(--ease-out),
              background .2s ease;
}
.cursor.is-hot {
  width: 70px; height: 70px;
  background: var(--fg);
}
.cursor__label {
  font: 500 10px/1 var(--t-mono);
  color: var(--bg);
  letter-spacing: .1em;
  opacity: 0;
  transition: opacity .2s ease;
}
.cursor.is-hot .cursor__label { opacity: 1; }
@media (hover: none) { .cursor { display: none; } }

/* ─────────  SCROLL PROGRESS  ───────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 1px; width: 0;
  background: var(--fg);
  z-index: 90;
  transition: width .08s linear;
}

/* ─────────  NAV  ───────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  color: var(--fg);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241,237,227,.06);
}
.nav::before {
  content: none;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font: 600 13px/1 var(--t-body);
  letter-spacing: .12em;
}
.nav__brand img {
  width: 32px; height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(241,237,227,.15));
}
.nav__brand sup { font-size: 8px; vertical-align: super; opacity: .6; }
.nav__brand-text { color: var(--fg); }

.nav__links {
  display: flex; gap: 28px;
  font: 500 12px/1 var(--t-mono);
  letter-spacing: .06em;
}
.nav__links a {
  display: inline-flex; align-items: baseline; gap: 6px;
  position: relative;
  padding: 4px 0;
}
.nav__links a span {
  font-size: 9px; opacity: .55;
}
.nav__links a::after {
  content: ''; position: absolute;
  left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--fg);
  transition: width .4s var(--ease-out);
}
.nav__links a:hover::after { width: 100%; }
@media (max-width: 820px) { .nav__links { display: none; } }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--fg);
  border-radius: 999px;
  font: 500 11px/1 var(--t-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease;
}
.nav__cta:hover { background: var(--fg); color: var(--bg); }
.nav__cta-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--fg);
  animation: pulse 1.6s ease-in-out infinite;
}
.nav__cta:hover .nav__cta-dot { background: var(--bg); }
@keyframes pulse { 50% { opacity: .25; } }

/* ─────────  HERO  ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--gutter) 60px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
  overflow: hidden;
}

.hero__meta {
  position: absolute;
  top: 80px;
  font: 500 10px/1.3 var(--t-mono);
  letter-spacing: .08em;
  color: var(--fg-dim);
  display: flex; gap: 16px;
  z-index: 2;
}
.hero__meta--tl { left: var(--gutter); }
.hero__meta--tr { right: var(--gutter); }
.tag { display: inline-flex; align-items: center; gap: 6px; }
.rec-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--fg);
  animation: pulse 1.1s ease-in-out infinite;
}

.hero__title {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(72px, 12vw, 200px);
  line-height: 1.02;
  letter-spacing: -.02em;
  text-transform: uppercase;
  align-self: center;
  margin: 0;
  max-width: 10ch;
}

.hero__subhead {
  font-family: var(--t-body);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--fg);
  max-width: 22ch;
  margin-top: -20px;
}
.hero__subhead em {
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
}
.section__title .reveal { display: block; padding-bottom: .04em; }
.manifesto__lead .reveal { display: block; padding-bottom: .04em; }
.cta__title .reveal { display: block; padding-bottom: .04em; }
.briefing__title .reveal { display: block; padding-bottom: .04em; }
.hero__title .reveal { display: block; padding-bottom: .04em; }
.hero__title .line { display: block; }
.hero__title em {
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -.025em;
  font-size: .92em;
  line-height: inherit;
}

/* reveal — fade-in only (no Y translate to avoid layout overlap in screenshots) */
.reveal {
  display: inline-block;
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: revealIn 1.0s var(--ease-out) both;
    animation-delay: var(--rd, 0ms);
  }
  section .reveal { animation-play-state: paused; }
  section.is-in .reveal { animation-play-state: running; }
}
@keyframes revealIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* HERO REEL */
.hero__reel {
  position: absolute;
  top: 130px;
  right: var(--gutter);
  width: clamp(220px, 22vw, 340px);
  aspect-ratio: 16 / 9;
  z-index: 3;
}
.hero__reel-frame {
  position: relative;
  width: 100%; height: 100%;
  background: var(--bg-3);
  overflow: hidden;
  border: 1px solid var(--line);
}
.reel-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    115deg,
    #1c1c1c 0 22px,
    #232323 22px 44px,
    #161616 44px 88px,
    #1f1f1f 88px 132px
  );
  animation: stripes 9s linear infinite;
}
.reel-stripes--2 {
  background: repeating-linear-gradient(
    -75deg,
    transparent 0 70px,
    rgba(241,237,227,.04) 70px 71px
  );
  animation-duration: 14s;
  animation-direction: reverse;
}
.reel-stripes--3 {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(241,237,227,.08), transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(241,237,227,.05), transparent 60%);
  animation: float 8s ease-in-out infinite alternate;
}
@keyframes stripes { to { background-position: 400px 0; } }
@keyframes float {
  to { transform: scale(1.05) translate(-2%, 2%); }
}

.hero__reel-overlay {
  position: absolute; top: 12px; left: 12px; right: 12px;
  display: flex; justify-content: space-between;
  font: 500 9px/1 var(--t-mono);
  letter-spacing: .1em;
  color: var(--fg);
  text-transform: uppercase;
}
.tc { background: rgba(0,0,0,.5); padding: 4px 6px; }

.hero__reel-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  color: var(--fg);
  display: inline-flex; flex-direction: column;
  align-items: center; gap: 8px;
  cursor: none;
  font: 500 10px/1 var(--t-mono);
  letter-spacing: .2em;
  transition: transform .4s var(--ease-out);
}
.hero__reel-play svg { width: 28px; height: 28px; }
.hero__reel:hover .hero__reel-play { transform: translate(-50%, -50%) scale(1.15); }

.hero__reel-corners span {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--fg);
}
.hero__reel-corners span:nth-child(1) { top: 6px;  left: 6px;  border-right: 0; border-bottom: 0; }
.hero__reel-corners span:nth-child(2) { top: 6px;  right: 6px; border-left: 0;  border-bottom: 0; }
.hero__reel-corners span:nth-child(3) { bottom: 6px; left: 6px;  border-right: 0; border-top: 0; }
.hero__reel-corners span:nth-child(4) { bottom: 6px; right: 6px; border-left: 0;  border-top: 0; }

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.hero__intro {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--fg);
}
.kicker {
  display: block;
  font: 500 11px/1.4 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero__scroll {
  display: inline-flex; align-items: center; gap: 14px;
  font: 500 11px/1 var(--t-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__scroll .dot {
  width: 6px; height: 6px;
  background: var(--fg); border-radius: 999px;
}
.hero__scroll svg {
  width: 16px; height: 16px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  50% { transform: translateY(6px); }
}

@media (max-width: 900px) {
  .hero { padding-top: 100px; min-height: auto; }
  .hero__title { font-size: clamp(56px, 17vw, 130px); }
  .hero__reel {
    position: relative;
    top: auto; right: auto; transform: none;
    width: 100%;
    margin-top: 20px;
  }
  .hero__bottom { grid-template-columns: 1fr; gap: 28px; }
  .hero__meta { position: static; }
  .hero__meta--tr { justify-content: flex-end; }
}

/* ─────────  MARQUEE  ───────── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 76px);
  text-transform: uppercase;
  letter-spacing: -.01em;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee__track .dot-sep {
  font-size: .35em;
  color: var(--fg-dim);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─────────  SECTION HEAD  ───────── */
.section__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 120px var(--gutter) 60px;
  border-bottom: 1px solid var(--line);
  row-gap: 16px;
}
.section__num {
  font: 500 11px/1 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  align-self: start;
  padding-top: 8px;
}
.section__num--inline {
  display: block;
  padding: 60px var(--gutter) 24px;
}
.section__title {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 144px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.section__title em {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -.04em;
}
.section__title-sub { display: block; }
.section__title .reveal { display: block; }
.section__meta {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
  font: 500 10px/1.4 var(--t-mono);
  color: var(--fg-dim);
  letter-spacing: .08em;
}
@media (max-width: 720px) {
  .section__head { grid-template-columns: 1fr; gap: 20px; padding-top: 80px; }
  .section__meta { align-items: flex-start; flex-direction: row; gap: 16px; }
}

/* ─────────  WORK  ───────── */
.work__list { padding: 0 var(--gutter); }
.work__item {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.work__item a {
  display: grid;
  grid-template-columns: 60px 1fr 240px 200px 80px;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  position: relative;
  transition: padding .5s var(--ease-out), color .5s ease;
}
.work__item:hover a {
  padding-left: 28px;
  color: var(--fg);
}
.work__idx {
  font: 500 11px/1 var(--t-mono);
  color: var(--fg-dim);
  letter-spacing: .1em;
}
.work__title {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.01em;
  transition: transform .5s var(--ease-out);
}
.work__title em {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--fg-dim);
  padding: 0 8px;
}
.work__cli {
  font: 500 11px/1.4 var(--t-mono);
  letter-spacing: .08em;
  color: var(--fg-dim);
}
.work__tags {
  font: 400 12px/1.4 var(--t-body);
  color: var(--fg-dim);
}
.work__year {
  font: 500 11px/1 var(--t-mono);
  color: var(--fg-dim);
  text-align: right;
}

/* arrow indicator */
.work__item a::before {
  content: '→';
  position: absolute;
  left: -28px; top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .3s ease;
  font-size: 18px;
}
.work__item:hover a::before { opacity: 1; transform: translateY(-50%) translateX(0); }

/* preview that follows cursor */
.work__preview {
  position: fixed;
  top: 0; left: 0;
  width: 340px; aspect-ratio: 4 / 5;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.92);
  transition: opacity .4s ease, transform .55s var(--ease-out);
  z-index: 60;
  mix-blend-mode: normal;
}
.work__item.is-hot .work__preview {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.work__preview .ph {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .25s ease;
}
.work__preview .ph.is-visible { opacity: 1; }

@media (max-width: 980px) {
  .work__item a {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 8px;
  }
  .work__title { grid-column: 1 / -1; }
  .work__cli, .work__tags, .work__year {
    grid-column: 2 / -1;
    text-align: left;
  }
  .work__preview { display: none; }
}

.work__all {
  display: flex; align-items: center; justify-content: space-between;
  padding: 36px var(--gutter);
  font: 500 12px/1 var(--t-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  transition: color .3s ease, padding .4s var(--ease-out);
}
.work__all:hover { padding-left: calc(var(--gutter) + 12px); }
.work__all svg { width: 22px; height: 22px; }

/* ─────────  PLACEHOLDERS  ───────── */
.ph {
  position: relative;
  background: var(--bg-3);
  overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(241,237,227,.04) 0 1px, transparent 1px 12px),
    radial-gradient(ellipse at 50% 50%, rgba(241,237,227,.06), transparent 70%);
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px; left: 12px;
  font: 500 9px/1 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

/* tonal variations to differentiate preview images */
.ph--1  { background: linear-gradient(135deg, #2a2826 0%, #14130f 100%); }
.ph--2  { background: linear-gradient(160deg, #1a1a1a 0%, #2b2828 100%); }
.ph--3  { background: linear-gradient(195deg, #232120 0%, #0f0e0d 100%); }
.ph--4  { background: linear-gradient(45deg,  #1b1b1b 0%, #303030 100%); }
.ph--5  { background: linear-gradient(120deg, #0f0f0f 0%, #2e2c29 100%); }
.ph--6  { background: linear-gradient(220deg, #2c2924 0%, #0a0a0a 100%); }
.ph--7  { background: linear-gradient(70deg,  #1a1816 0%, #28241f 100%); }
.ph--8  { background: linear-gradient(140deg, #322e29 0%, #14110c 100%); }
.ph--9  { background: linear-gradient(20deg,  #0e0d0c 0%, #2a2724 100%); }
.ph--10 { background: linear-gradient(110deg, #232323 0%, #0f0f0f 100%); }
.ph--11 { background: linear-gradient(200deg, #1f1d1a 0%, #36322c 100%); }
.ph--12 { background: linear-gradient(35deg,  #11100e 0%, #2c2925 100%); }
.ph--13 { background: linear-gradient(160deg, #2a2723 0%, #0c0c0c 100%); }
.ph--14 { background: linear-gradient(55deg,  #0d0d0d 0%, #2f2c27 100%); }
.ph--15 { background: linear-gradient(245deg, #1c1b18 0%, #34302a 100%); }
.ph--16 { background: linear-gradient(125deg, #2e2a25 0%, #100f0d 100%); }
.ph--17 { background: linear-gradient(40deg,  #181715 0%, #2a2825 100%); }
.ph--18 { background: linear-gradient(190deg, #312d28 0%, #0e0d0c 100%); }
.ph--studio { background: linear-gradient(150deg, #1f1d1a 0%, #2c2823 60%, #0e0d0c 100%); aspect-ratio: 4/5; }

.ph::before {
  pointer-events: none;
}

/* ─────────  MANIFESTO  ───────── */
.manifesto {
  padding: 160px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.manifesto__lead {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 104px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -.02em;
  max-width: 1200px;
}
.manifesto__lead .reveal { display: block; }
.manifesto__lead em {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -.04em;
}
.manifesto__small {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: italic;
  text-transform: lowercase;
  font-size: .35em;
  color: var(--fg-dim);
  margin-top: 30px;
  letter-spacing: -.02em;
}

/* ─────────  SERVICES  ───────── */
.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.srv {
  position: relative;
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 360px;
  display: flex; flex-direction: column;
  transition: background .4s ease;
  overflow: hidden;
}
.srv:hover { background: var(--bg-2); }
.srv:nth-child(3n) { border-right: 0; }
.srv__num {
  font: 500 11px/1 var(--t-mono);
  color: var(--fg-dim);
  letter-spacing: .1em;
  margin-bottom: auto;
}
.srv__name {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.srv__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 320px;
  margin-bottom: 20px;
}
.srv__plus {
  position: absolute;
  top: 40px; right: 40px;
  font-family: var(--t-display);
  font-size: 28px;
  transition: transform .5s var(--ease-out);
}
.srv:hover .srv__plus { transform: rotate(45deg); }
.srv__sub {
  font: 500 11px/1.6 var(--t-mono);
  color: var(--fg-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s var(--ease-out);
}
.srv:hover .srv__sub { opacity: 1; transform: translateY(0); }
@media (max-width: 960px) {
  .services__list { grid-template-columns: repeat(2, 1fr); }
  .srv:nth-child(3n) { border-right: 1px solid var(--line); }
  .srv:nth-child(2n) { border-right: 0; }
}
@media (max-width: 640px) {
  .services__list { grid-template-columns: 1fr; }
  .srv { border-right: 0 !important; min-height: 280px; padding: 28px; }
  .srv__plus { top: 28px; right: 28px; }
}

/* ─────────  STUDIO  ───────── */
.studio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px var(--gutter) 120px;
  align-items: start;
}
.studio__img {
  position: relative;
}
.studio__img .ph {
  width: 100%;
  aspect-ratio: 4/5;
}
.studio__caption {
  display: block;
  margin-top: 14px;
  font: 500 11px/1 var(--t-mono);
  letter-spacing: .08em;
  color: var(--fg-dim);
}
.studio__copy { max-width: 540px; }
.studio__copy p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.studio__copy strong { font-weight: 600; color: var(--fg); }

.studio__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.studio__stats div { display: flex; flex-direction: column; gap: 6px; }
.studio__stats dt {
  font-family: var(--t-display);
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 1;
}
.studio__stats dd {
  font: 500 11px/1.4 var(--t-mono);
  color: var(--fg-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .studio__grid { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
}

/* ─────────  CLIENTS  ───────── */
.clients {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.clients__list {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--t-display);
  font-weight: 400;
}
.clients__list li {
  flex: 1 0 auto;
  padding: 36px 28px;
  font-size: clamp(24px, 3vw, 44px);
  text-transform: uppercase;
  letter-spacing: .02em;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  transition: background .3s ease, color .3s ease;
  white-space: nowrap;
}
.clients__list li:hover { background: var(--fg); color: var(--bg); }
.clients__list li span {
  font-size: .55em;
  vertical-align: super;
  margin-left: 4px;
  opacity: .6;
}

/* ─────────  CTA  ───────── */
.cta {
  padding: 120px var(--gutter);
  position: relative;
  text-align: left;
}
.cta .section__num { margin-bottom: 40px; }
.cta__title {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 180px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 60px;
}
.cta__title .reveal { display: block; }
.cta__title em {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -.04em;
}
.cta__mail {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--t-display);
  font-size: clamp(28px, 4.6vw, 76px);
  line-height: 1;
  border: 1px solid var(--line);
  padding: 22px 36px;
  border-radius: 999px;
  text-transform: lowercase;
  transition: background .4s ease, color .4s ease, padding .4s var(--ease-out);
  margin-bottom: 80px;
}
.cta__mail:hover { background: var(--fg); color: var(--bg); padding-right: 52px; }
.cta__mail svg { width: 28px; height: 28px; }

.cta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.cta__grid p {
  font-size: 15px;
  line-height: 1.6;
}
.cta__grid a:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 720px) {
  .cta__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ─────────  BIG LOGO  ───────── */
.biglogo {
  overflow: hidden;
  padding: 40px 0 20px;
  border-top: 1px solid var(--line);
}
.biglogo__inner {
  text-align: center;
  position: relative;
}
.biglogo__txt {
  display: block;
  font-family: var(--t-display);
  font-size: clamp(96px, 22vw, 400px);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.biglogo__sub {
  display: block;
  font: 500 12px/1 var(--t-mono);
  letter-spacing: .3em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ─────────  FOOTER  ───────── */
.footer {
  padding: 60px var(--gutter) 28px;
  border-top: 1px solid var(--line);
}
.footer__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer__col { display: flex; flex-direction: column; gap: 8px; font-size: 13px; line-height: 1.5; }
.footer__col p { color: var(--fg-dim); }
.footer__col em { font-style: italic; }
.footer__col a { color: var(--fg-dim); transition: color .2s ease; }
.footer__col a:hover { color: var(--fg); }
.footer__col .kicker { margin-bottom: 8px; }
.footer__icon { width: 32px; height: 32px; margin-bottom: 14px; }

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 500 10px/1 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__base a:hover { color: var(--fg); }
@media (max-width: 720px) {
  .footer__row { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   SHARED COMPONENTS — buttons / chips / links
   ═══════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  font: 500 12px/1 var(--t-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .3s ease, color .3s ease, border-color .3s ease,
              transform .3s var(--ease-out), padding .35s var(--ease-out);
  border: 1px solid var(--fg);
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--solid { background: var(--fg); color: var(--bg); }
.btn--solid:hover { background: transparent; color: var(--fg); padding-right: 28px; }
.btn--ghost  { background: transparent; color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); padding-right: 28px; }
.btn--lg { padding: 18px 28px; font-size: 13px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 500 12px/1 var(--t-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--fg-mute);
  transition: border-color .3s ease, gap .3s var(--ease-out);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .35s var(--ease-out); }
.link-arrow:hover { border-color: var(--fg); gap: 18px; }
.link-arrow:hover svg { transform: translateX(2px); }
.link-arrow--big {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 38px var(--gutter);
  font-size: clamp(20px, 2.5vw, 32px);
  font-family: var(--t-display);
  letter-spacing: 0;
  text-transform: none;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.link-arrow--big svg { width: 28px; height: 28px; }
.link-arrow--big:hover { background: var(--fg); color: var(--bg); }

.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg-dim);
  padding: 9px 16px;
  border-radius: 999px;
  font: 500 11px/1 var(--t-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.chip:hover { color: var(--fg); border-color: var(--fg-dim); }
.chip.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ═══════════════════════════════════════════════════════
   HERO — additional CTAs
   ═══════════════════════════════════════════════════════ */

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: end;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__intro em { font-style: italic; font-weight: 400; }

@media (max-width: 900px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══════════════════════════════════════════════════════
   SOBRE
   ═══════════════════════════════════════════════════════ */

.sobre__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  padding: 80px var(--gutter) 120px;
  align-items: start;
}
.sobre__copy { max-width: 580px; display: flex; flex-direction: column; gap: 22px; }
.sobre__lead {
  font-family: var(--t-body);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.32;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.sobre__copy p { font-size: 16px; line-height: 1.55; color: var(--fg); }
.sobre__copy p:not(.sobre__lead) { color: var(--fg-dim); }
.sobre__copy strong { color: var(--fg); font-weight: 600; }
.sobre__copy em { font-style: italic; color: var(--fg); }
.sobre__copy .link-arrow { margin-top: 16px; align-self: flex-start; }

.sobre__visual { position: relative; }
.sobre__ph { width: 100%; aspect-ratio: 4 / 5; position: relative; }
.sobre__ph-caption {
  position: absolute; bottom: 14px; left: 14px;
  font: 500 10px/1 var(--t-mono);
  letter-spacing: .1em; color: var(--fg-dim);
}
.sobre__pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.sobre__pills span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 500 11px/1 var(--t-mono);
  letter-spacing: .08em;
  color: var(--fg-dim);
  text-transform: uppercase;
  transition: color .25s, border-color .25s;
}
.sobre__pills span:hover { color: var(--fg); border-color: var(--fg-dim); }

@media (max-width: 900px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 40px; padding: 40px var(--gutter) 80px; }
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════════ */

.portfolio__intro {
  max-width: 720px;
  padding: 40px var(--gutter) 0;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--fg-dim);
}

.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 36px var(--gutter) 28px;
}

.masonry {
  --gap: 14px;
  column-count: 3;
  column-gap: var(--gap);
  padding: 0 var(--gutter) 60px;
}
@media (max-width: 980px) { .masonry { column-count: 2; } }
@media (max-width: 600px) { .masonry { column-count: 1; } }

.card {
  display: block;
  break-inside: avoid;
  margin-bottom: var(--gap);
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  transition: transform .5s var(--ease-out);
}
.card.is-hidden { display: none; }
.card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.card--tall .card__media { aspect-ratio: 3 / 4; }
.card--wide .card__media { aspect-ratio: 16 / 9; }
.card__media::before { content: ''; }
.card:hover { transform: translateY(-4px); }
.card__play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,.0);
  transition: background .3s ease, opacity .3s ease;
  color: var(--fg);
  opacity: 0;
}
.card:hover .card__play { background: rgba(10,10,10,.45); opacity: 1; }
.card__play svg {
  width: 48px; height: 48px;
  transform: scale(.85);
  transition: transform .4s var(--ease-out);
}
.card:hover .card__play svg { transform: scale(1); }

.card__meta {
  display: flex; justify-content: space-between;
  padding: 14px 14px 4px;
  font: 500 10px/1 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.card__title {
  padding: 0 14px;
  font-family: var(--t-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .005em;
}
.card__cli {
  padding: 6px 14px 16px;
  font-size: 12px;
  color: var(--fg-dim);
}

/* ═══════════════════════════════════════════════════════
   DIFERENCIAIS
   ═══════════════════════════════════════════════════════ */

.dif__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.dif__item {
  padding: 48px 32px 56px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 320px;
  display: flex; flex-direction: column;
  transition: background .35s ease;
}
.dif__item:hover { background: var(--bg-2); }
.dif__item:nth-child(4n) { border-right: 0; }
.dif__num {
  font: 500 11px/1 var(--t-mono);
  color: var(--fg-dim);
  letter-spacing: .12em;
  margin-bottom: 60px;
}
.dif__name {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.dif__desc { font-size: 14px; line-height: 1.5; color: var(--fg-dim); }

@media (max-width: 1100px) {
  .dif__list { grid-template-columns: repeat(2, 1fr); }
  .dif__item:nth-child(2n) { border-right: 0; }
  .dif__item:nth-child(2n+1) { border-right: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .dif__list { grid-template-columns: 1fr; }
  .dif__item { border-right: 0 !important; min-height: 240px; }
}

/* ═══════════════════════════════════════════════════════
   PROCESSO
   ═══════════════════════════════════════════════════════ */

.proc__list {
  list-style: none;
  padding: 20px var(--gutter) 120px;
  display: flex; flex-direction: column; gap: 0;
}
.proc__step {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  transition: padding .4s var(--ease-out);
}
.proc__step:last-child { border-bottom: 1px solid var(--line); }
.proc__step:hover { padding-left: 20px; }
.proc__num {
  font-family: var(--t-display);
  font-size: clamp(48px, 5vw, 88px);
  line-height: 1.0;
  color: var(--fg-dim);
  transition: color .4s ease;
}
.proc__step:hover .proc__num { color: var(--fg); }
.proc__body h3 {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.proc__body p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 560px;
}
.proc__bar { display: none; }

@media (max-width: 720px) {
  .proc__step { grid-template-columns: 80px 1fr; gap: 20px; padding: 28px 0; }
}

/* ═══════════════════════════════════════════════════════
   DEPOIMENTOS
   ═══════════════════════════════════════════════════════ */

.depo__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.depo__card {
  position: relative;
  padding: 48px 36px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column;
  min-height: 380px;
}
.depo__card:nth-child(3n) { border-right: 0; }
.depo__quote-mark {
  font-family: var(--t-display);
  font-size: 100px;
  line-height: .5;
  color: var(--fg-dim);
  margin-bottom: 16px;
  display: block;
}
.depo__quote {
  font-family: var(--t-body);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.4;
  letter-spacing: -.005em;
  flex: 1;
}
.depo__quote em { font-style: italic; color: var(--fg); font-weight: 500; }
.depo__who {
  display: flex; align-items: center; gap: 14px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.depo__avatar {
  width: 44px; height: 44px; border-radius: 999px;
  flex: none;
}
.depo__name { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.depo__role {
  font: 500 10px/1.3 var(--t-mono);
  letter-spacing: .1em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .depo__list { grid-template-columns: 1fr; }
  .depo__card { border-right: 0 !important; min-height: auto; }
}

/* ═══════════════════════════════════════════════════════
   NÚMEROS
   ═══════════════════════════════════════════════════════ */

.section__head--mini { padding: 80px var(--gutter) 20px; border-bottom: 0; }
.section__title--mini { font-size: clamp(36px, 5vw, 72px); }

.nums__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.nums__list li {
  padding: 60px 32px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.nums__list li:last-child { border-right: 0; }
.nums__big {
  display: block;
  font-family: var(--t-display);
  font-size: clamp(64px, 9vw, 144px);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.nums__lbl {
  display: block;
  font: 500 11px/1.4 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  text-transform: uppercase;
  max-width: 200px;
}

@media (max-width: 900px) {
  .nums__list { grid-template-columns: repeat(2, 1fr); }
  .nums__list li { border-right: 0; }
  .nums__list li:nth-child(odd) { border-right: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .nums__list { grid-template-columns: 1fr; }
  .nums__list li { border-right: 0 !important; padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════════════
   CTA FINAL extras
   ═══════════════════════════════════════════════════════ */

.cta__sub {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--fg-dim);
  max-width: 580px;
  margin-bottom: 40px;
}
.cta__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }

/* ═══════════════════════════════════════════════════════
   FOOTER extras
   ═══════════════════════════════════════════════════════ */

.footer__fine { margin-top: 12px; font-size: 11px; color: var(--fg-dim); }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOATING
   ═══════════════════════════════════════════════════════ */

.wpp {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 70;
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  transition: transform .35s var(--ease-out), background .3s ease;
}
.wpp svg { width: 26px; height: 26px; position: relative; z-index: 2; }
.wpp:hover { transform: scale(1.08); }
.wpp__pulse {
  position: absolute; inset: 0;
  border-radius: 999px;
  border: 1px solid var(--fg);
  animation: wppPulse 1.8s ease-out infinite;
}
@keyframes wppPulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 640px) {
  .wpp { right: 16px; bottom: 16px; width: 50px; height: 50px; }
}

/* ═══════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════ */

.anbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 85;
  background: var(--fg);
  color: var(--bg);
}
.anbar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  padding: 9px var(--gutter);
  font: 500 11px/1 var(--t-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.anbar__inner strong { font-weight: 700; }
.anbar__dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--bg);
  animation: pulse 1.4s ease-in-out infinite;
}
.anbar__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding-left: 14px;
  border-left: 1px solid rgba(10,10,10,.3);
  margin-left: 4px;
  transition: gap .3s var(--ease-out);
}
.anbar__cta:hover { gap: 12px; }
@media (max-width: 720px) {
  .anbar__inner {
    font-size: 10px;
    padding: 8px 14px;
    flex-wrap: wrap;
    gap: 8px;
  }
}

.nav--with-bar { top: 36px; }
@media (max-width: 720px) { .nav--with-bar { top: 60px; } }

.hero { padding-top: 160px; }
@media (max-width: 720px) { .hero { padding-top: 180px; } }

/* ═══════════════════════════════════════════════════════
   HERO additions — trust strip
   ═══════════════════════════════════════════════════════ */

.hero__trust {
  display: flex; flex-wrap: wrap;
  gap: 24px;
  align-self: end;
  font: 500 11px/1.4 var(--t-mono);
  letter-spacing: .08em;
  color: var(--fg-dim);
  text-transform: uppercase;
  list-style: none;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust-stars {
  color: var(--fg);
  letter-spacing: 2px;
}
.hero__trust-dot {
  width: 5px; height: 5px;
  background: var(--fg);
  border-radius: 999px;
  display: inline-block;
}

.hero__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 20px; }
}

/* ═══════════════════════════════════════════════════════
   HERO rotator word
   ═══════════════════════════════════════════════════════ */

.hero__rotator {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero__rotator-word {
  display: inline-block;
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -.025em;
  font-size: .92em;
  transition: transform .32s var(--ease-out), opacity .32s ease;
  border-bottom: 4px solid var(--fg);
  padding: 0 .15em .02em;
  line-height: 1;
}
.hero__rotator-word.is-out {
  transform: translateY(-110%);
  opacity: 0;
}

/* ═══════════════════════════════════════════════════════
   PLANS — tabs
   ═══════════════════════════════════════════════════════ */

.plans__tabs {
  display: flex;
  gap: 0;
  padding: 0 var(--gutter);
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.plan-tab {
  background: transparent;
  border: 0;
  color: var(--fg-dim);
  padding: 18px 0;
  margin-right: 36px;
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.005em;
  cursor: none;
  position: relative;
  transition: color .3s ease;
}
.plan-tab:last-child { margin-right: 0; }
.plan-tab::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--fg);
  transition: width .4s var(--ease-out);
}
.plan-tab:hover { color: var(--fg); }
.plan-tab.is-active { color: var(--fg); }
.plan-tab.is-active::after { width: 100%; }

.plans__list.is-hidden { display: none; }

/* fix plans border because tabs row sits on top */
.plans__list { border-top: 1px solid var(--line); }

@media (max-width: 720px) {
  .plans__tabs { gap: 0; }
  .plan-tab { margin-right: 24px; font-size: 18px; padding: 14px 0; }
}

/* ═══════════════════════════════════════════════════════
   FOUNDER — Geovana Hendler
   ═══════════════════════════════════════════════════════ */

.founder__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.2fr;
  gap: 80px;
  padding: 80px var(--gutter) 120px;
  align-items: start;
}
.founder__portrait { position: relative; }
.founder__ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  background: #131313;
  overflow: hidden;
}
.founder__ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: grayscale(1) contrast(1.05) brightness(.95);
  transition: filter .8s var(--ease-out), transform .8s var(--ease-out);
}
.founder__ph:hover img {
  filter: grayscale(.4) contrast(1.05) brightness(1);
  transform: scale(1.02);
}
.founder__ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,237,200,.18), transparent 55%),
    linear-gradient(to bottom, transparent 55%, rgba(10,10,10,.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.founder__ph::after { content: none; }
.founder__ph-tc,
.founder__ph-frame {
  position: absolute;
  font: 500 9px/1 var(--t-mono);
  letter-spacing: .14em;
  color: var(--fg);
  background: rgba(0,0,0,.55);
  padding: 5px 8px;
  z-index: 2;
  backdrop-filter: blur(2px);
}
.founder__ph-tc    { top: 14px; left: 14px; }
.founder__ph-frame { bottom: 14px; right: 14px; }
.founder__portrait figcaption {
  display: block;
  margin-top: 14px;
  font: 500 11px/1.4 var(--t-mono);
  letter-spacing: .1em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

.founder__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
}

.founder__hi {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -.015em;
}
.founder__hi .kicker {
  margin-bottom: 14px;
  font-family: var(--t-mono);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: .12em;
}

.founder__lead {
  font-family: var(--t-body);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  letter-spacing: -.01em;
}
.founder__lead em { font-style: italic; color: var(--fg); font-weight: 500; }

.founder__copy {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-dim);
  max-width: 580px;
}

.founder__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
.founder__facts li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  padding-right: 16px;
}
.founder__facts li:nth-child(2n) { padding-left: 24px; border-left: 1px solid var(--line); }
.founder__fact-tag {
  font: 500 10px/1 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.founder__fact-val {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -.005em;
}

.founder__quote {
  position: relative;
  padding: 24px 0 24px 36px;
  border-left: 2px solid var(--fg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 4px;
}
.founder__quote > span[aria-hidden] {
  position: absolute;
  top: 0; left: 22px;
  font-family: var(--t-display);
  font-size: 56px;
  line-height: .5;
  color: var(--fg-dim);
  pointer-events: none;
}
.founder__quote p {
  font-family: var(--t-body);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  letter-spacing: -.005em;
  margin-top: 32px;
}
.founder__quote em { font-style: italic; color: var(--fg); }
.founder__quote footer {
  font: 500 10px/1 var(--t-mono);
  letter-spacing: .14em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

.founder__sign {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.founder__signature {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.02em;
}
.founder__role {
  font: 500 10px/1 var(--t-mono);
  letter-spacing: .14em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-top: 6px;
}

.founder__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .founder__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px var(--gutter) 80px;
  }
  .founder__facts { grid-template-columns: 1fr; }
  .founder__facts li:nth-child(2n) { padding-left: 0; border-left: 0; }
}

/* ═══════════════════════════════════════════════════════
   PARA QUEM — wider grid spacing tweaks (kept)
   ═══════════════════════════════════════════════════════ */

.proof {
  padding: 60px 0 0;
  border-top: 1px solid var(--line);
}
.proof__lead {
  padding: 0 var(--gutter) 24px;
}
.proof__track-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.proof__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--t-display);
  font-size: clamp(28px, 4.6vw, 56px);
  letter-spacing: .005em;
  text-transform: uppercase;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.proof__track .dot-sep {
  font-size: .35em;
  color: var(--fg-dim);
}
.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.proof__stats li {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
}
.proof__stats li:last-child { border-right: 0; }
.proof__big {
  display: block;
  font-family: var(--t-display);
  font-size: clamp(56px, 7.5vw, 120px);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.proof__big--word { letter-spacing: -.04em; }
.proof__lbl {
  display: block;
  font: 500 10px/1.4 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .proof__stats { grid-template-columns: repeat(2, 1fr); }
  .proof__stats li { border-right: 0; }
  .proof__stats li:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ═══════════════════════════════════════════════════════
   CLIPES — showcase grid
   ═══════════════════════════════════════════════════════ */

.clipes__hero {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  padding: 40px var(--gutter) 0;
}
.clipe-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.clipe-hero:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.clipe-hero a { display: block; height: 100%; }
.clipe-hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.clipe-hero:nth-child(1) .clipe-hero__media { aspect-ratio: 4 / 5; height: 100%; }
.clipe-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 60%);
  z-index: 1;
}
.clipe-hero__overlay .tag {
  align-self: flex-start;
  background: var(--fg);
  color: var(--bg);
  padding: 4px 10px;
  margin-bottom: auto;
  font: 600 9px/1 var(--t-mono);
  letter-spacing: .14em;
}
.clipe-hero__cli {
  font: 500 10px/1.4 var(--t-mono);
  letter-spacing: .14em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.clipe-hero__title {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 44px);
  line-height: 1.05;
  letter-spacing: -.005em;
  text-transform: uppercase;
}
.clipe-hero:nth-child(1) .clipe-hero__title {
  font-size: clamp(36px, 4.8vw, 72px);
}
.clipe-hero__year {
  position: absolute;
  top: 24px; right: 24px;
  font: 500 10px/1 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg);
  background: rgba(0,0,0,.5);
  padding: 4px 8px;
  z-index: 2;
}
.clipe-hero:hover .clipe-hero__title { transform: translateY(-4px); }
.clipe-hero__title { transition: transform .4s var(--ease-out); }
.clipe-hero:hover .card__play { opacity: 1; background: rgba(10,10,10,.45); }

@media (max-width: 900px) {
  .clipes__hero {
    grid-template-columns: repeat(2, 1fr);
  }
  .clipe-hero:nth-child(1) { grid-column: 1 / -1; grid-row: auto; }
  .clipe-hero:nth-child(1) .clipe-hero__media { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .clipes__hero { grid-template-columns: 1fr; }
  .clipe-hero:nth-child(1) { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════
   WHY — 3 columns reasons
   ═══════════════════════════════════════════════════════ */

.why__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.why__item {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 460px;
  transition: background .35s ease;
}
.why__item:last-child { border-right: 0; }
.why__item:hover { background: var(--bg-2); }
.why__num {
  font: 500 11px/1 var(--t-mono);
  color: var(--fg-dim);
  letter-spacing: .12em;
  margin-bottom: 50px;
}
.why__name {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.why__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-dim);
}
.why__desc strong { color: var(--fg); font-weight: 600; }
.why__bullets {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  font: 500 11px/1.5 var(--t-mono);
  letter-spacing: .08em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.why__bullets li::before {
  content: '— ';
  color: var(--fg-mute);
  margin-right: 2px;
}
@media (max-width: 980px) {
  .why__list { grid-template-columns: 1fr; }
  .why__item { border-right: 0; min-height: auto; }
}

/* ═══════════════════════════════════════════════════════
   FOR — para quem é
   ═══════════════════════════════════════════════════════ */

.for__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.for__item {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--line);
  min-height: 280px;
  display: flex; flex-direction: column; gap: 14px;
}
.for__item:last-child { border-right: 0; }
.for__icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 12px;
  color: var(--fg);
}
.for__icon svg { width: 22px; height: 22px; }
.for__item h3 {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  text-transform: uppercase;
}
.for__item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-dim);
}
@media (max-width: 980px) {
  .for__list { grid-template-columns: repeat(2, 1fr); }
  .for__item:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .for__list { grid-template-columns: 1fr; }
  .for__item { border-right: 0 !important; min-height: auto; }
}

/* ═══════════════════════════════════════════════════════
   PLANS — 3 packages of videoclip
   ═══════════════════════════════════════════════════════ */

.plans__intro {
  max-width: 720px;
  padding: 0 var(--gutter) 36px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--fg-dim);
}
.plans__intro strong { color: var(--fg); }
.plans__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan {
  position: relative;
  padding: 48px 36px 40px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 24px;
  transition: background .35s ease;
}
.plan:last-child { border-right: 0; }
.plan:hover { background: var(--bg-2); }

.plan--feat {
  background: var(--bg-2);
  position: relative;
}
.plan--feat::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--fg);
  pointer-events: none;
  margin: -1px;
}
.plan__badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--fg);
  color: var(--bg);
  padding: 6px 16px;
  font: 600 10px/1 var(--t-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.plan__head { display: flex; flex-direction: column; gap: 10px; }
.plan__tag {
  font: 500 11px/1 var(--t-mono);
  color: var(--fg-dim);
  letter-spacing: .14em;
}
.plan__name {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.plan__pitch {
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg-dim);
}
.plan__pitch em { font-style: italic; color: var(--fg); }
.plan__price {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan__price-pre,
.plan__price-post {
  font: 500 10px/1.3 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.plan__price-big {
  font-family: var(--t-display);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -.01em;
}
.plan__feat {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg);
}
.plan__feat li {
  position: relative;
  padding-left: 22px;
}
.plan__feat li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 12px; height: 1px;
  background: var(--fg);
}
.plan__cta {
  margin-top: auto;
  align-self: stretch;
  justify-content: space-between;
}
.plans__note {
  text-align: center;
  padding: 28px var(--gutter);
  font: 500 11px/1.5 var(--t-mono);
  letter-spacing: .08em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .plans__list { grid-template-columns: 1fr; }
  .plan { border-right: 0; border-bottom: 1px solid var(--line); }
  .plan:last-child { border-bottom: 0; }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE em (italic style swap)
   ═══════════════════════════════════════════════════════ */

.marquee__track em {
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  text-transform: lowercase;
  font-size: .85em;
  letter-spacing: -.02em;
}

/* ═══════════════════════════════════════════════════════
   PROCESSO — add time chips
   ═══════════════════════════════════════════════════════ */

.proc__time {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 500 10px/1 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */

.faq__list {
  padding: 0 var(--gutter) 80px;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  cursor: none;
  list-style: none;
  transition: padding .35s var(--ease-out);
}
.faq__item details summary::-webkit-details-marker { display: none; }
.faq__item details[open] summary { padding-bottom: 8px; }
.faq__item:hover summary { padding-left: 12px; }
.faq__q {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.faq__plus {
  font-family: var(--t-display);
  font-size: 28px;
  line-height: 1;
  flex: none;
  transition: transform .4s var(--ease-out);
}
.faq__item details[open] .faq__plus { transform: rotate(45deg); }
.faq__a {
  padding: 0 0 28px;
  max-width: 760px;
}
.faq__a p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-dim);
}
.faq__a strong { color: var(--fg); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   BRIEFING — form + aside
   ═══════════════════════════════════════════════════════ */

.briefing {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--line);
}
.briefing .section__num { margin-bottom: 40px; display: block; }
.briefing__title {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 1.0;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.briefing__title .reveal { display: block; }
.briefing__title em {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -.025em;
}
.briefing__sub {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 560px;
  margin-bottom: 60px;
}
.briefing__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.briefing__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font: 500 11px/1 var(--t-mono);
  letter-spacing: .12em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font: 400 17px/1.4 var(--t-body);
  color: var(--fg);
  outline: none;
  transition: border-color .3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--fg);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-mute); }
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--fg) 50%),
    linear-gradient(135deg, var(--fg) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 24px;
}
.field select option {
  background: var(--bg-2);
  color: var(--fg);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.briefing__actions {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 14px;
  margin-top: 12px;
}
.briefing__or {
  font: 500 11px/1 var(--t-mono);
  color: var(--fg-dim);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.briefing__fine {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--fg-mute);
}

.briefing__aside {
  background: var(--bg-2);
  padding: 36px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 24px;
}

/* ── Who chips (form quick-select) ── */
.who-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 6px;
}
.who-chip { position: relative; cursor: none; }
.who-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.who-chip span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 500 11px/1 var(--t-mono);
  letter-spacing: .08em;
  color: var(--fg-dim);
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.who-chip:hover span { color: var(--fg); border-color: var(--fg-dim); }
.who-chip input:checked + span {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.who-chip input:focus-visible + span {
  outline: 2px solid var(--fg);
  outline-offset: 2px;
}
.briefing__hello {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.5;
}
.briefing__hello strong { font-weight: 600; }
.briefing__contact {
  display: flex; flex-direction: column; gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.briefing__contact > * {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
  transition: color .25s ease;
}
.briefing__contact .kicker { margin-bottom: 4px; }
.briefing__contact a:hover { color: var(--fg-dim); }

.briefing__success {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--fg);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.briefing__success.is-show { display: block; }

/* AJAX form result message */
.briefing__msg {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 0;
  border: 1px solid var(--fg);
  background: var(--bg-3);
}
.briefing__msg[hidden] { display: none; }
.briefing__msg-inner {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.briefing__msg-inner strong {
  font-family: var(--t-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1.05;
}
.briefing__msg-inner p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-dim);
}
.briefing__msg-inner .btn {
  align-self: flex-start;
  margin-top: 4px;
}
.briefing__msg.is-fallback { border-color: var(--fg-dim); }

@media (max-width: 980px) {
  .briefing__grid { grid-template-columns: 1fr; gap: 40px; }
  .briefing__form { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   OTHER SERVICES — secondary
   ═══════════════════════════════════════════════════════ */

.other__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.other__list li {
  padding: 36px 32px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 200px;
  transition: background .3s ease;
}
.other__list li:hover { background: var(--bg-2); }
.other__list li:nth-child(3n) { border-right: 0; }
.other__list li:nth-last-child(-n+3) { border-bottom: 0; }
.other__list span {
  font: 500 10px/1 var(--t-mono);
  color: var(--fg-dim);
  letter-spacing: .14em;
}
.other__list h3 {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
  text-transform: uppercase;
}
.other__list p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--fg-dim);
  margin-top: auto;
}
@media (max-width: 900px) {
  .other__list { grid-template-columns: repeat(2, 1fr); }
  .other__list li:nth-child(3n) { border-right: 1px solid var(--line); }
  .other__list li:nth-child(2n) { border-right: 0; }
  .other__list li:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .other__list li:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .other__list { grid-template-columns: 1fr; }
  .other__list li { border-right: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE PASS — MOBILE-FIRST CONVERSION OPTIMIZED
   Strategy: mobile gets bigger touch targets, faster reads,
   sticky bottom CTA, snap-scroll pacotes carousel.
   ═══════════════════════════════════════════════════════════════════ */

/* ───── BURGER (visible ≤980) ───── */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--fg);
  border-radius: 999px;
  padding: 0;
  cursor: none;
  position: relative;
  margin-left: 8px;
  z-index: 92;
}
.nav__burger span {
  position: absolute;
  left: 50%;
  width: 18px; height: 1.5px;
  background: var(--fg);
  transform: translateX(-50%);
  transition: transform .35s var(--ease-out), opacity .25s ease, top .35s var(--ease-out);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 26px; }
html.is-menu-open .nav__burger span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
html.is-menu-open .nav__burger span:nth-child(2) { opacity: 0; }
html.is-menu-open .nav__burger span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

/* ───── MOBILE MENU OVERLAY ───── */
.mmenu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 88;
  padding: 90px 22px 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity .35s ease, transform .5s var(--ease-out);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mmenu__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--fg);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
}
.mmenu__close span {
  position: absolute;
  width: 16px; height: 1.5px;
  background: var(--fg);
  display: block;
}
.mmenu__close span:nth-child(1) { transform: rotate(45deg); }
.mmenu__close span:nth-child(2) { transform: rotate(-45deg); }
.mmenu__close:hover { background: var(--fg); }
.mmenu__close:hover span { background: var(--bg); }
html.is-menu-open { overflow: hidden; }
html.is-menu-open .mmenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mmenu__inner { display: flex; flex-direction: column; gap: 32px; flex: 1; }
.mmenu__links {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.mmenu__links a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--t-display);
  font-size: clamp(30px, 8vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.005em;
  color: var(--fg);
  transition: padding-left .35s var(--ease-out), color .25s ease;
}
.mmenu__links a:hover { padding-left: 8px; }
.mmenu__links a span {
  font: 500 11px/1 var(--t-mono);
  letter-spacing: .14em;
  color: var(--fg-dim);
}
.mmenu__cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.mmenu__cta .btn { justify-content: space-between; padding: 16px 20px; }
.mmenu__meta { font-size: 12px; color: var(--fg-dim); padding-top: 16px; border-top: 1px solid var(--line); }
.mmenu__meta .kicker { margin-bottom: 4px; }

@media (min-width: 821px) {
  .mmenu { display: none; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE STICKY BOTTOM BAR — main conversion driver
   ═══════════════════════════════════════════════════════ */
.sbar { display: none; }

@media (max-width: 820px) {
  .sbar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 75;
    gap: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    transform: translateY(110%);
    transition: transform .45s var(--ease-out);
  }
  .sbar.is-visible { transform: translateY(0); }
  .sbar > a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 999px;
    font: 600 12px/1 var(--t-mono);
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .sbar__primary {
    background: var(--fg);
    color: var(--bg);
    margin-right: 8px;
  }
  .sbar__wpp {
    background: transparent;
    color: var(--fg);
    border: 1px solid var(--fg);
    flex: 0 0 56px;
    padding: 0;
    width: 56px; height: 50px;
  }
  .sbar__wpp svg { width: 22px; height: 22px; }

  /* nudge content above sbar */
  body { padding-bottom: 76px; }
  /* hide floating wpp on mobile — sbar has it */
  .wpp { display: none; }
}

/* ═══════════════════════════════════════════════════════
   TABLET (≤980px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  :root { --gutter: clamp(20px, 4vw, 40px); }

  /* Nav */
  .nav { padding: 14px var(--gutter); }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-block; }

  /* Section heads — single column, less top padding */
  .section__head,
  .section__head--mini {
    grid-template-columns: 1fr;
    padding: 80px var(--gutter) 36px;
    gap: 14px;
  }
  .section__head .section__num { padding-top: 0; }
  .section__meta { flex-direction: row; align-items: flex-start; gap: 12px; }

  /* Footer */
  .footer__row { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
  .footer__base { flex-wrap: wrap; }

  /* Big logo */
  .biglogo__txt { font-size: clamp(80px, 24vw, 200px); }
}

/* ═══════════════════════════════════════════════════════
   PHONE (≤720px)
   Most users are HERE. Maximum care.
   ═══════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  :root { --gutter: 22px; }

  body { -webkit-tap-highlight-color: rgba(241,237,227,.08); }

  /* ─── Announcement bar (slim) ─── */
  .anbar__inner {
    padding: 7px 14px;
    font-size: 9px;
    gap: 8px;
    flex-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .anbar__inner > span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .anbar__cta {
    border-left: 1px solid rgba(10,10,10,.25);
    padding-left: 8px;
    margin-left: 4px;
    flex: none;
  }

  /* ─── Nav ─── */
  .nav {
    padding: 14px var(--gutter);
    background: rgba(10, 10, 10, 0.88);
  }
  .nav__brand img { width: 30px; height: 30px; }
  .nav__brand-text { font-size: 12px; letter-spacing: .14em; }
  .nav--with-bar { top: 32px; }

  /* ─── HERO — mobile flow optimized ─── */
  .hero {
    padding: 130px var(--gutter) 56px;
    min-height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .hero__meta {
    position: static;
    font-size: 9px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .hero__meta--tl { order: 1; }
  .hero__meta--tr { order: 2; justify-content: flex-start; }
  .hero__title {
    font-size: clamp(40px, 12.5vw, 72px);
    line-height: 1.04;
    order: 3;
    margin: 0;
    max-width: none;
  }
  .hero__rotator-word {
    padding: 0 .12em .04em;
    border-bottom-width: 3px;
  }
  .hero__reel {
    position: static;
    width: 100%;
    aspect-ratio: 16/9;
    transform: none;
    order: 4;
  }
  .hero__subhead {
    order: 5;
    font-size: 17px;
    line-height: 1.4;
    margin: 0;
    max-width: none;
  }
  .hero__bottom {
    order: 6;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: space-between;
    padding: 16px 22px;
    font-size: 12px;
  }
  .hero__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 18px var(--gutter) 0;
    border-top: 1px solid var(--line);
    font-size: 10px;
    width: 100%;
  }
  .hero__trust li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    line-height: 1.4;
  }
  .hero__trust-stars {
    font-size: 14px;
    letter-spacing: 3px;
  }
  .hero__trust-dot { display: none; }
  .hero__scroll { display: none; }

  /* ─── PROOF ─── */
  .proof { padding-top: 40px; }
  .proof__lead { padding: 0 var(--gutter) 20px; }
  .proof__track-wrap { padding: 22px 0; }
  .proof__track {
    font-size: clamp(26px, 7.5vw, 42px);
    gap: 22px;
    animation-duration: 28s;
  }
  .proof__stats {
    grid-template-columns: 1fr 1fr;
  }
  .proof__stats li {
    padding: 28px 16px;
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line);
  }
  .proof__stats li:nth-child(2n) { border-right: 0 !important; }
  .proof__stats li:nth-last-child(-n+2) { border-bottom: 0; }
  .proof__big { font-size: clamp(40px, 13vw, 64px); margin-bottom: 6px; }
  .proof__big--word { font-size: clamp(40px, 13vw, 64px); }
  .proof__lbl { font-size: 9px; line-height: 1.3; max-width: none; }

  /* ─── Section heads tighter ─── */
  .section__head, .section__head--mini {
    padding: 60px var(--gutter) 28px;
  }
  .section__title {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 1.04;
  }
  .section__title--mini { font-size: clamp(32px, 10vw, 48px); }
  .section__meta { font-size: 9px; flex-wrap: wrap; gap: 8px; }

  /* ─── TRABALHOS showcase ─── */
  .clipes__hero {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 24px var(--gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .clipes__hero::-webkit-scrollbar { display: none; }
  .clipe-hero {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
  .clipe-hero:nth-child(1) { grid-column: auto; grid-row: auto; }
  .clipe-hero:nth-child(1) .clipe-hero__media { aspect-ratio: 4/5; height: auto; }
  .clipe-hero__media { aspect-ratio: 4/5; }
  .clipe-hero__overlay { padding: 18px; }
  .clipe-hero__title { font-size: clamp(22px, 6.5vw, 30px); }
  .clipe-hero:nth-child(1) .clipe-hero__title { font-size: clamp(26px, 7.5vw, 34px); }
  .clipe-hero__year { top: 16px; right: 16px; font-size: 9px; }

  /* hint of swipe on .clipes__hero */
  .clipes__hero::after {
    content: '';
    flex: 0 0 var(--gutter);
  }

  /* ─── WHY ─── */
  .why__list { grid-template-columns: 1fr; border-top: 1px solid var(--line); }
  .why__item {
    border-right: 0;
    padding: 36px 24px 32px;
    min-height: auto;
    gap: 14px;
  }
  .why__num { margin-bottom: 32px; }
  .why__name { font-size: clamp(24px, 7vw, 32px); }
  .why__desc { font-size: 14.5px; line-height: 1.55; }
  .why__bullets { font-size: 10px; padding-top: 14px; }

  /* ─── FOUNDER ─── */
  .founder__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px var(--gutter) 64px;
  }
  .founder__ph {
    aspect-ratio: 4/5;
    max-width: 360px;
    margin: 0 auto;
  }
  .founder__portrait figcaption {
    text-align: center;
    font-size: 10px;
  }
  .founder__body { gap: 22px; max-width: none; }
  .founder__hi {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.06;
  }
  .founder__lead {
    font-size: clamp(17px, 5vw, 20px);
    line-height: 1.4;
  }
  .founder__copy { font-size: 15px; line-height: 1.55; }
  .founder__facts {
    grid-template-columns: 1fr 1fr;
  }
  .founder__facts li {
    padding: 14px 12px 14px 0;
  }
  .founder__facts li:nth-child(2n) {
    padding-left: 14px;
    border-left: 1px solid var(--line);
  }
  .founder__fact-tag { font-size: 9px; }
  .founder__fact-val { font-size: clamp(13px, 3.6vw, 16px); }
  .founder__quote { padding: 18px 0 18px 20px; }
  .founder__quote > span[aria-hidden] { left: 12px; }
  .founder__quote p { font-size: clamp(16px, 4.6vw, 20px); margin-top: 24px; }
  .founder__signature { font-size: clamp(28px, 8vw, 40px); }
  .founder__ctas { flex-direction: column; gap: 10px; }
  .founder__ctas .btn { width: 100%; justify-content: space-between; padding: 14px 20px; }

  /* ─── PARA QUEM ─── */
  .for__list { grid-template-columns: 1fr; }
  .for__item {
    border-right: 0 !important;
    padding: 24px var(--gutter) 28px;
    min-height: auto;
    gap: 8px;
  }
  .for__icon { width: 40px; height: 40px; margin-bottom: 4px; }
  .for__icon svg { width: 20px; height: 20px; }
  .for__item h3 { font-size: clamp(20px, 5.6vw, 26px); }
  .for__item p { font-size: 14px; line-height: 1.5; }

  /* ─── PACOTES — snap carousel cards ─── */
  .plans__intro {
    padding: 0 var(--gutter) 20px;
    font-size: 14.5px;
    line-height: 1.5;
  }
  .plans__tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--gutter);
    gap: 20px;
    border-top: 1px solid var(--line);
  }
  .plans__tabs::-webkit-scrollbar { display: none; }
  .plan-tab {
    white-space: nowrap;
    flex: none;
    margin-right: 0;
    font-size: 15px;
    padding: 14px 0;
  }

  .plans__list {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 20px var(--gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none;
    border-top: 0;
    border-bottom: 0;
  }
  .plans__list::-webkit-scrollbar { display: none; }
  .plans__list::after {
    content: '';
    flex: 0 0 var(--gutter);
  }
  .plan {
    flex: 0 0 86%;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 28px 22px;
    background: var(--bg-2);
    min-height: 560px;
  }
  .plan--feat {
    border: 2px solid var(--fg);
    background: var(--bg-3);
  }
  .plan--feat::before { display: none; }
  .plan:last-child { border-right: 1px solid var(--line); }
  .plan--feat:last-child { border-right: 2px solid var(--fg); }
  .plan__head { gap: 8px; }
  .plan__name { font-size: clamp(30px, 8vw, 42px); }
  .plan__price-big { font-size: clamp(34px, 9.5vw, 50px); }
  .plan__feat { font-size: 13.5px; gap: 9px; }
  .plan__cta {
    width: 100%;
    justify-content: space-between;
    padding: 14px 18px;
  }
  .plans__note { padding: 16px var(--gutter); font-size: 10px; }

  .plans__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px var(--gutter) 0;
    font: 500 10px/1 var(--t-mono);
    letter-spacing: .12em;
    color: var(--fg-dim);
    text-transform: uppercase;
  }

  /* ─── MARQUEE ─── */
  .marquee { padding: 18px 0; }
  .marquee__track {
    font-size: clamp(28px, 8vw, 44px);
    gap: 20px;
    animation-duration: 30s;
  }

  /* ─── PROCESSO ─── */
  .proc__list { padding: 0 var(--gutter) 64px; }
  .proc__step {
    grid-template-columns: 60px 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .proc__step:hover { padding-left: 0; }
  .proc__num { font-size: 44px; }
  .proc__body h3 { font-size: clamp(22px, 6vw, 30px); margin-bottom: 8px; }
  .proc__body p { font-size: 14.5px; line-height: 1.5; }
  .proc__time { margin-top: 12px; }

  /* ─── DEPOIMENTOS — horizontal scroll ─── */
  .depo__list {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 var(--gutter) 32px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none;
    border-top: 0;
  }
  .depo__list::-webkit-scrollbar { display: none; }
  .depo__list::after { content: ''; flex: 0 0 var(--gutter); }
  .depo__card {
    flex: 0 0 86%;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    padding: 28px 22px 22px;
    min-height: auto;
  }
  .depo__quote-mark { font-size: 64px; margin-bottom: 4px; }
  .depo__quote { font-size: clamp(16px, 4.6vw, 19px); line-height: 1.4; }
  .depo__who { margin-top: 20px; padding-top: 18px; }

  /* ─── FAQ ─── */
  .faq__list { padding: 0 var(--gutter) 48px; }
  .faq__item:hover summary { padding-left: 0; }
  .faq__item details summary { padding: 22px 0; gap: 16px; }
  .faq__q {
    font-size: clamp(16px, 4.4vw, 22px);
    line-height: 1.25;
    flex: 1;
  }
  .faq__plus { font-size: 24px; }
  .faq__a { padding-bottom: 22px; }
  .faq__a p { font-size: 14.5px; line-height: 1.55; }

  /* ─── BRIEFING — mobile form ─── */
  .briefing {
    padding: 56px var(--gutter) 80px;
    border-top: 1px solid var(--line);
  }
  .briefing .section__num { margin-bottom: 18px; font-size: 10px; }
  .briefing__title {
    font-size: clamp(38px, 11.5vw, 60px);
    line-height: 1.05;
    margin-bottom: 14px;
    text-align: left;
  }
  .briefing__sub {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: none;
    color: var(--fg-dim);
  }
  .briefing__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Form layout — vertical, breathing space */
  .briefing__form {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 20px 22px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 6px;
  }
  .who-chips {
    gap: 6px;
    padding-top: 4px;
  }
  .who-chip span {
    padding: 10px 14px;
    font-size: 10.5px;
    letter-spacing: .06em;
    line-height: 1;
  }
  .field {
    gap: 8px;
  }
  .field label {
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--fg-dim);
  }
  .field input,
  .field select,
  .field textarea {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.3;
    border-bottom-color: var(--fg-mute);
  }
  .field textarea { min-height: 100px; }

  .briefing__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }
  .briefing__actions .btn {
    width: 100%;
    padding: 17px 20px;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: .14em;
  }
  .briefing__or {
    align-self: center;
    padding: 2px 0;
    color: var(--fg-mute);
    font-size: 10px;
  }
  .briefing__fine {
    font-size: 11px;
    line-height: 1.45;
    margin-top: 4px;
    text-align: center;
    color: var(--fg-mute);
  }

  /* AJAX message — visible after submit */
  .briefing__msg {
    margin-top: 8px;
    border-width: 1px;
    border-radius: 6px;
  }
  .briefing__msg-inner {
    padding: 22px 20px;
    gap: 12px;
  }
  .briefing__msg-inner strong {
    font-size: clamp(22px, 6.5vw, 28px);
    line-height: 1.1;
  }
  .briefing__msg-inner p {
    font-size: 14.5px;
    line-height: 1.5;
  }
  .briefing__msg-inner .btn {
    width: 100%;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 11.5px;
  }

  /* ─── Resposta direta aside — distinct card ─── */
  .briefing__aside {
    padding: 26px 20px;
    gap: 20px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid var(--line);
  }
  .briefing__aside .kicker {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .briefing__hello {
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--fg);
  }
  .briefing__hello strong {
    color: var(--fg);
    font-weight: 600;
  }
  .briefing__hello em {
    font-style: italic;
    color: var(--fg);
  }
  .briefing__contact {
    padding-top: 18px;
    gap: 16px;
    border-top: 1px solid var(--line);
  }
  .briefing__contact > * {
    font-size: 14.5px;
    line-height: 1.45;
    color: var(--fg);
    text-decoration: none;
  }
  .briefing__contact a {
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
    word-break: break-word;
  }
  .briefing__contact a:hover {
    border-bottom-color: var(--fg-mute);
  }
  .briefing__contact .kicker {
    font-size: 9.5px;
    margin-bottom: 4px;
    color: var(--fg-dim);
    letter-spacing: .14em;
  }
  .briefing__contact > div p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fg-dim);
  }

  /* ─── OUTROS SERVIÇOS ─── */
  .other__list { grid-template-columns: 1fr; }
  .other__list li {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    padding: 24px var(--gutter);
    min-height: auto;
  }
  .other__list li:last-child { border-bottom: 0 !important; }
  .other__list h3 { font-size: clamp(20px, 5.4vw, 26px); }
  .other__list p { font-size: 13.5px; line-height: 1.5; }

  /* ─── MANIFESTO ─── */
  .manifesto { padding: 60px var(--gutter); }
  .manifesto__lead {
    font-size: clamp(28px, 9vw, 48px);
    line-height: 1.08;
  }
  .manifesto__small { font-size: .42em; margin-top: 18px; }

  /* ─── BIG LOGO ─── */
  .biglogo { padding: 28px 0 16px; }
  .biglogo__txt { font-size: clamp(64px, 30vw, 150px); line-height: .9; }
  .biglogo__sub { font-size: 10px; letter-spacing: .24em; }

  /* ─── FOOTER ─── */
  .footer { padding: 40px var(--gutter) 24px; }
  .footer__row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .footer__base {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 9px;
  }

  /* ─── CARD play affordance always visible on touch ─── */
  .card__play {
    background: rgba(10,10,10,.18);
    opacity: 1;
  }
  .card__play svg { transform: scale(.7); }

  /* ─── MOBILE MENU ─── */
  .mmenu { padding: 90px var(--gutter) 32px; }
  .mmenu__links a { font-size: clamp(28px, 9vw, 40px); padding: 16px 0; }
}

/* ═══════════════════════════════════════════════════════
   SMALL PHONE (≤420px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 420px) {
  :root { --gutter: 18px; }

  .hero { padding-top: 120px; gap: 18px; }
  .hero__title { font-size: clamp(36px, 13vw, 60px); }
  .hero__subhead { font-size: 15.5px; line-height: 1.45; }

  .section__title { font-size: clamp(38px, 13vw, 56px); }
  .briefing__title { font-size: clamp(36px, 12vw, 52px); }

  .clipe-hero { flex: 0 0 82%; }
  .plan { flex: 0 0 90%; padding: 24px 20px; min-height: 540px; }
  .depo__card { flex: 0 0 90%; padding: 24px 20px 20px; }

  .proc__step { grid-template-columns: 50px 1fr; gap: 12px; padding: 24px 0; }
  .proc__num { font-size: 36px; }

  .founder__hi { font-size: clamp(30px, 10vw, 40px); }
  .founder__quote p { font-size: 16px; }
  .founder__signature { font-size: 28px; }

  /* sbar tighter */
  .sbar > a { font-size: 11px; padding: 13px 8px; }
  .sbar__primary { padding-right: 12px; }

  .anbar__inner { font-size: 8.5px; padding: 6px 12px; }
}

/* ═══════════════════════════════════════════════════════
   TINY (≤360px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .hero__title { font-size: 36px; }
  .section__title { font-size: 36px; }
  .briefing__title { font-size: 34px; }
  .nav__brand-text { font-size: 10px; }
}

/* ═══════════════════════════════════════════════════════
   TOUCH device tweaks
   ═══════════════════════════════════════════════════════ */
@media (hover: none) {
  .cursor, .grain { display: none; }
  body { cursor: auto; }
  .nav__burger, .chip, .plan-tab, .faq__item details summary,
  .who-chip, .btn, .sbar > a, a { cursor: pointer; }
  .card__play { opacity: 1; background: rgba(10,10,10,.25); }
  .card__play svg { transform: scale(.85); }
  .work__item:hover a { padding-left: 0; }
  .faq__item:hover summary { padding-left: 0; }
}

/* ═══════════════════════════════════════════════════════
   LANDSCAPE PHONE — short viewport
   ═══════════════════════════════════════════════════════ */
@media (max-width: 920px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; padding-top: 90px; padding-bottom: 32px; }
  .hero__reel { max-width: 60%; }
  .mmenu { padding-top: 80px; }
  .mmenu__links a { font-size: clamp(20px, 5vw, 28px); padding: 10px 0; }
}
