/* ═══════════════════════════════════════════════════════════
   AGÊNCIA FLORESTA — style.css
   Tema claro: branco / cinza-claro / grafite + vermelho→laranja da marca
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-2: #f8f6f5;
  --bg-3: #f1edeb;
  --ink: #1c1720;
  --ink-2: #3b3441;
  --grey: #6f6975;
  --grey-2: #a29da6;
  --line: rgba(28, 23, 32, 0.08);
  --line-strong: rgba(28, 23, 32, 0.16);
  --accent: #e6242a;
  --accent-2: #ff7a2e;
  --accent-soft: rgba(230, 36, 42, 0.08);
  --grad: linear-gradient(135deg, #ff2f2f 0%, #ff7a2e 100%);
  --dark: #1c1720;
  --dark-2: #2a2230;
  --shadow: 0 24px 60px -28px rgba(28, 23, 32, 0.28);
  --shadow-sm: 0 10px 30px -14px rgba(28, 23, 32, 0.22);
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 20px;
  --radius-sm: 12px;
  --nav-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
::selection { background: var(--accent); color: #fff; }
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
em { font-style: normal; }

.container { width: min(1200px, 90vw); margin-inline: auto; }
.section { padding: clamp(80px, 9vw, 130px) 0; position: relative; }
.muted { color: var(--grey-2); }
.accent { color: var(--accent); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #d9d4d8; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ═══════════ TIPOGRAFIA ═══════════ */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
.display em { color: var(--accent); }
.display--xl { font-size: clamp(2.3rem, 4.8vw, 3.9rem); letter-spacing: -.03em; line-height: 1.06; }
.display--lg { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.display--md { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
.display--sm { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 600; line-height: 1.3; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: .95rem; font-weight: 600;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow--center { display: flex; justify-content: center; text-align: center; }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.eyebrow__dot--az { background: var(--grad); }

.lead { font-size: clamp(1.1rem, 1.4vw, 1.3rem); font-weight: 500; color: var(--ink); }
p { color: var(--grey); }
p + p { margin-top: 1em; }
.section__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 72px); }
.section__head--split { max-width: none; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: end; }
.section__head p:not(.eyebrow) { font-size: 1.05rem; }
.section__head .display + p { margin-top: 18px; }

/* Máscara de linha (revelação por scroll) */
.line { display: block; overflow: hidden; padding: .16em 0 .12em; margin: -.16em 0 -.12em; }
.line > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease-out); }
.in .line > span { transform: translateY(0); }
.in .line:nth-child(2) > span { transition-delay: .07s; }
.in .line:nth-child(3) > span { transition-delay: .14s; }
.in .line:nth-child(4) > span { transition-delay: .21s; }
.line .dot { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .21s; }
.reveal:nth-child(5) { transition-delay: .28s; }
.reveal:nth-child(6) { transition-delay: .35s; }

/* ═══════════ BOTÕES ═══════════ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem; line-height: 1;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .45s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.btn--sm { padding: 11px 18px; font-size: .84rem; }
.btn--lg { padding: 17px 32px; font-size: .98rem; }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 12px 30px -12px rgba(230,36,42,.6); }
.btn--accent:hover { background: #cf1d23; box-shadow: 0 16px 36px -12px rgba(230,36,42,.7); transform: translateY(-2px); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--white:hover { transform: translateY(-2px); }
.btn--azappi { background: var(--ink); color: #fff; }
.btn--azappi:hover { background: #000; transform: translateY(-2px); }

/* ═══════════ FORMAS DECORATIVAS ═══════════ */
.blob { position: absolute; pointer-events: none; z-index: 0; width: 170px; height: 170px; opacity: .95; }
.blob::before, .blob::after { content: ""; position: absolute; background: var(--grad); border-radius: 50%; }
.blob::before { width: 62%; height: 62%; left: 0; top: 8%; }
.blob::after { width: 48%; height: 48%; right: 4%; bottom: 0; }
.blob i { position: absolute; width: 34%; height: 34%; left: 44%; top: 0; background: var(--grad); border-radius: 50%; }
.blob--l { left: -60px; }
.blob--r { right: -50px; }

/* ═══════════ HEADER ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--nav-h);
  background: #fff; border-bottom: 1px solid transparent;
  transition: transform .5s var(--ease), box-shadow .4s, height .4s var(--ease), border-color .4s;
}
.nav.is-scrolled { height: 68px; box-shadow: 0 6px 30px -12px rgba(28,23,32,.18); border-color: var(--line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav--solid { box-shadow: 0 6px 30px -12px rgba(28,23,32,.12); border-color: var(--line); }
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; line-height: 1; }
.logo::before { content: ""; width: 30px; height: 30px; flex: 0 0 30px; background: var(--grad); border-radius: 50% 50% 50% 8px; }
.logo__a { color: var(--ink); }
.logo__b { color: var(--accent); margin-left: -6px; }
.logo--light .logo__a { color: #fff; }

.nav__links { display: flex; gap: 30px; }
.nav__link { position: relative; font-size: .9rem; font-weight: 500; color: var(--ink-2); transition: color .3s; padding: 6px 0; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__link:hover, .nav__link.is-active { color: var(--accent); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 14px; }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 890; background: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 36px; padding: 100px 8vw 48px;
  clip-path: circle(0 at calc(100% - 44px) 40px); transition: clip-path .7s var(--ease); visibility: hidden;
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 44px) 40px); visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__links a {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 7vw, 2.3rem); letter-spacing: -.02em; line-height: 1.3;
  display: flex; align-items: baseline; gap: 14px; color: var(--ink);
  opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-menu__links a i { font-family: var(--font-body); font-style: normal; font-weight: 500; font-size: .75rem; color: var(--accent); }
.mobile-menu.is-open .mobile-menu__links a { opacity: 1; transform: none; transition-delay: calc(.2s + .05s * var(--i, 0)); }
.mobile-menu__foot { color: var(--grey-2); font-size: .85rem; }

/* ═══════════ HERO ═══════════ */
.hero { position: relative; padding: calc(var(--nav-h) + 56px) 0 80px; background: var(--bg-2); overflow: hidden; }
.hero__shape {
  position: absolute; top: 0; right: 0; bottom: 0; width: 34%; background: var(--grad);
  border-bottom-left-radius: 220px; pointer-events: none;
}
.hero__shape::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 45%), radial-gradient(circle at 80% 80%, rgba(255,255,255,.18), transparent 40%); }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero__title { max-width: 14ch; margin-bottom: 22px; }
.hero__sub { max-width: 520px; font-size: clamp(1rem, 1.25vw, 1.15rem); color: var(--ink-2); margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: .82rem; font-weight: 500; color: var(--grey); }
.hero__tags li { position: relative; }
.hero__tags li + li::before { content: ""; position: absolute; left: -14px; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.hero__visual { position: relative; }
.hero__card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--dark);
  box-shadow: 0 40px 90px -36px rgba(28,23,32,.5); aspect-ratio: 16/11; transform: translateX(6%);
}
.hero__video { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 16s var(--ease) infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero__chip {
  position: absolute; background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px; font-size: .82rem; animation: floatY 6s ease-in-out infinite;
}
.hero__chip strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: .86rem; color: var(--ink); }
.hero__chip span { color: var(--grey); font-size: .74rem; }
.hero__chip i { width: 34px; height: 34px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-style: normal; font-weight: 700; }
.hero__chip--a { left: -8%; bottom: 14%; }
.hero__chip--b { right: -4%; top: 8%; animation-delay: -3s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ═══════════ CLIENTES (faixa) ═══════════ */
.clients-strip { padding: 44px 0 20px; background: var(--bg); }
.clients-strip .eyebrow { color: var(--ink); font-size: .9rem; margin-bottom: 8px; }
.logos { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logos__track { display: flex; align-items: center; gap: clamp(48px, 7vw, 100px); width: max-content; animation: marquee 32s linear infinite; padding: 16px 0; }
.logos__track span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.5rem); letter-spacing: -.02em; color: var(--grey-2); white-space: nowrap; transition: color .3s; }
.logos__track span:hover { color: var(--ink); }
.logos__track span.ghost { border: 1.5px dashed var(--line-strong); border-radius: 10px; padding: 8px 18px; font-size: .95rem; font-weight: 500; }
.logos__track img { height: 38px; width: auto; filter: grayscale(1); opacity: .55; transition: opacity .3s, filter .3s; }
.logos__track img:hover { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════ MANIFESTO ═══════════ */
.manifesto { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.manifesto__title { max-width: 18ch; }
.manifesto__text { max-width: 520px; margin-top: 32px; margin-left: auto; font-size: 1.1rem; }

/* ═══════════ SOBRE ═══════════ */
.about { background: var(--bg-2); overflow: hidden; }
.about__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about__head { position: sticky; top: 120px; }
.about__body { padding-top: 40px; }
.about__body p { max-width: 520px; }
.about__body .lead { margin-bottom: 18px; }
.about__note { margin-top: 32px !important; color: var(--ink) !important; font-weight: 600; }
.about__steps { margin-top: 16px; counter-reset: st; max-width: 520px; }
.about__steps li { counter-increment: st; display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; color: var(--ink-2); }
.about__steps li::before { content: counter(st, decimal-leading-zero); font-family: var(--font-display); font-weight: 700; font-size: .78rem; color: var(--accent); padding-top: 5px; flex: 0 0 26px; }
.about__steps em { color: var(--accent); font-weight: 600; }

/* ═══════════ CANAIS ═══════════ */
.channels { background: var(--bg); }
.channels__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.channel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s;
}
.channel:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.channel__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 20px; }
.channel__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.channel h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.channel p { font-size: .94rem; }
.channel__tag { display: inline-block; margin-top: 16px; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }

/* ═══════════ SERVIÇOS ═══════════ */
.services { background: var(--bg-2); }
.service-rows { display: grid; gap: 20px; }
.service-row {
  display: grid; grid-template-columns: 72px 1.1fr 1fr; gap: 32px; background: #fff; border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.service-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--grad); }
.service-row:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-row__index { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 1rem; padding-top: 6px; }
.service-row__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.8rem); letter-spacing: -.02em; line-height: 1.15; margin-bottom: 12px; }
.service-row__desc { max-width: 460px; font-size: 1.02rem; }
.service-row__lines { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; color: var(--ink-2); font-weight: 500; }
.service-row__lines li::before { content: "— "; color: var(--accent); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; align-content: start; }
.chips li {
  font-size: .82rem; font-weight: 500; color: var(--ink-2); background: var(--bg-2);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; transition: color .3s, border-color .3s, background .3s;
}
.chips li:hover { color: var(--accent); border-color: var(--accent); background: #fff; }
.chips--az li { background: #fff; }
.services__impact { margin-top: clamp(64px, 8vw, 100px); text-align: center; }
.services__impact .display { margin-inline: auto; max-width: 22ch; }

/* ═══════════ AUDIOVISUAL ═══════════ */
.film { background: var(--bg); overflow: hidden; }
.film__text p { font-size: 1.05rem; max-width: 480px; }
.showreel {
  position: relative; width: min(1300px, 92vw); margin: 0 auto; aspect-ratio: 16/8; border-radius: var(--radius); overflow: hidden;
  background: var(--dark); box-shadow: var(--shadow);
}
.showreel__video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.2s var(--ease); }
.showreel:hover .showreel__video { transform: scale(1.06); }
.showreel__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(28,23,32,.7)); }
.showreel__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--accent); box-shadow: 0 20px 50px -14px rgba(0,0,0,.5); transition: transform .5s var(--ease), background .3s, color .3s;
}
.showreel__play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--accent); color: #fff; }
.showreel__play svg { margin-left: 4px; }
.showreel__caption { position: absolute; left: 26px; right: 26px; bottom: 22px; display: flex; justify-content: space-between; font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.85); }
.film__foot { margin-top: 40px; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.film__foot .chips { max-width: 760px; }

/* ═══════════ PORTFÓLIO ═══════════ */
.work { background: var(--bg-2); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 20px; }
.work-item { position: relative; border-radius: var(--radius); overflow: hidden; background: #fff; display: block; box-shadow: var(--shadow-sm); transform-style: preserve-3d; transition: box-shadow .5s; }
.work-item:hover { box-shadow: var(--shadow); }
.work-item--wide { grid-column: span 2; }
.work-item__visual { position: absolute; inset: 0; transition: transform 1s var(--ease); background-size: cover; }
.work-item:hover .work-item__visual { transform: scale(1.05); }
.work-item__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(28,23,32,.78)); }
.work-item__info { position: absolute; left: 24px; right: 24px; bottom: 20px; display: flex; flex-direction: column; gap: 3px; color: #fff; }
.work-item__client { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.work-item__meta { font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.75); }
.work-item__badge { position: absolute; top: 18px; left: 20px; z-index: 2; font-size: .7rem; font-weight: 600; background: #fff; color: var(--accent); padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); }

.v-1 { background: radial-gradient(ellipse at 70% 30%, rgba(255,122,46,.75), transparent 55%), linear-gradient(135deg, #ff2f2f, #8a1a1f); }
.v-2 { background: radial-gradient(circle at 30% 70%, rgba(255,255,255,.2), transparent 50%), linear-gradient(160deg, #3b3441, #1c1720); }
.v-3 { background: linear-gradient(135deg, #ffb199 0%, #ff6a3d 60%, #e6242a 100%); }
.v-4 { background: radial-gradient(circle at 80% 80%, rgba(255,122,46,.6), transparent 45%), linear-gradient(120deg, #2a2230, #1c1720); }
.v-5 { background: conic-gradient(from 200deg at 60% 40%, #e6242a, #ff7a2e, #e6242a); }
.v-6 { background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), transparent 45%), linear-gradient(200deg, #6f6975, #3b3441); }

/* ═══════════ FLORESTA LAB ═══════════ */
.lab { background: var(--bg); overflow: hidden; }
.lab__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .7;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 75% 50%, #000, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 75% 50%, #000, transparent 60%);
}
.lab__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lab__text p:not(.eyebrow) { max-width: 460px; font-size: 1.05rem; }
.lab__text .display { margin-bottom: 24px; }
.lab__visual { position: relative; aspect-ratio: 1/.9; transform-style: preserve-3d; }

.ui-card { position: absolute; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.ui-card--main { inset: 8% 6% 12% 4%; padding: 24px; display: flex; flex-direction: column; gap: 22px; }
.ui-card__bar { display: flex; gap: 6px; }
.ui-card__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--bg-3); }
.ui-card__bar i:first-child { background: var(--accent); }
.ui-card__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ui-card__kpis div { background: var(--bg-2); border-radius: 12px; padding: 12px 14px; display: flex; flex-direction: column; gap: 4px; }
.ui-card__kpis span { font-size: .64rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-2); }
.ui-card__kpis strong { font-family: var(--font-display); font-size: clamp(.9rem, 1.4vw, 1.2rem); font-weight: 700; letter-spacing: -.02em; white-space: nowrap; color: var(--ink); }
.ui-card__chart { flex: 1; display: flex; align-items: flex-end; gap: 8px; padding-top: 12px; border-top: 1px solid var(--line); }
.ui-card__chart i { flex: 1; height: var(--h); border-radius: 6px 6px 0 0; background: var(--grad); transform: scaleY(0); transform-origin: bottom; transition: transform 1.2s var(--ease); }
.in .ui-card__chart i { transform: scaleY(1); transition-delay: calc(.08s * var(--n, 1)); }
.ui-card--float { padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-size: .82rem; animation: floatY 6s ease-in-out infinite; }
.ui-card--float strong { display: block; font-weight: 600; font-size: .86rem; color: var(--ink); }
.ui-card--float span { color: var(--grey); font-size: .76rem; }
.ui-card--a { right: -4%; top: 0; }
.ui-card--b { left: -6%; bottom: 0; flex-direction: column; align-items: stretch; gap: 8px; width: 210px; animation-delay: -3s; }
.ui-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
.ui-progress { height: 6px; border-radius: 99px; background: var(--bg-3); overflow: hidden; }
.ui-progress i { display: block; height: 100%; background: var(--grad); border-radius: inherit; }

/* ═══════════ AZAPPI ═══════════ */
.azappi { background: var(--bg-2); overflow: hidden; }
.azappi__bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 90% 10%, rgba(255,122,46,.16), transparent 45%), radial-gradient(ellipse at 5% 95%, rgba(230,36,42,.08), transparent 45%); }
.azappi__hero { position: relative; display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.azappi__brand { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 14px; }
.azappi__brand .line > span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.azappi__tagline { color: var(--ink-2); margin-bottom: 26px; }
.azappi__text p:not(.eyebrow):not(.azappi__tagline) { max-width: 480px; font-size: 1.05rem; }
.azappi__text .btn { margin-top: 12px; }

.azappi__mockup { position: relative; transform-style: preserve-3d; padding: 30px 0 50px; }
.laptop { position: relative; }
.laptop__screen { border-radius: 16px 16px 4px 4px; padding: 10px; background: #2a2230; box-shadow: 0 50px 110px -36px rgba(28,23,32,.55); }
.laptop__base { height: 14px; margin: 0 -4%; border-radius: 0 0 14px 14px; background: linear-gradient(180deg, #4a4150, #2a2230); }
.laptop__base::after { content: ""; display: block; width: 18%; height: 4px; margin: 0 auto; background: #1c1720; border-radius: 0 0 6px 6px; }
.app { display: grid; grid-template-columns: 44px 1fr 1.4fr; height: 360px; border-radius: 8px; overflow: hidden; background: #fff; font-size: .62rem; color: var(--ink); }
.app__side { background: var(--ink); display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 12px 0; }
.app__logo { font-family: var(--font-display); font-weight: 800; font-size: .6rem; color: #fff; margin-bottom: 8px; }
.app__side i { width: 16px; height: 16px; border-radius: 5px; background: rgba(255,255,255,.14); }
.app__side i.on { background: var(--accent); }
.app__list { border-right: 1px solid var(--line); padding: 10px; display: flex; flex-direction: column; gap: 6px; background: var(--bg-2); }
.app__search { height: 22px; border-radius: 6px; background: #fff; border: 1px solid var(--line); margin-bottom: 4px; }
.app__chat { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 7px; }
.app__chat.on { background: #fff; box-shadow: var(--shadow-sm); }
.app__chat b { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-3); flex: 0 0 auto; }
.app__chat div { flex: 1; min-width: 0; }
.app__chat span { display: block; font-weight: 600; }
.app__chat small { display: block; color: var(--grey); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: .56rem; }
.app__chat em { background: var(--accent); color: #fff; border-radius: 99px; font-size: .5rem; padding: 1px 5px; }
.app__conv { display: flex; flex-direction: column; }
.app__conv-head { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.app__conv-head b { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-3); }
.app__conv-head span { display: block; font-weight: 600; }
.app__conv-head small { color: var(--grey); font-size: .56rem; }
.app__msgs { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; background: var(--bg-2); }
.app__msgs p { max-width: 78%; padding: 7px 10px; border-radius: 10px; line-height: 1.4; color: var(--ink); }
.app__msgs .in { background: #fff; align-self: flex-start; box-shadow: var(--shadow-sm); }
.app__msgs .out { background: var(--accent); color: #fff; align-self: flex-end; }
.app__msgs .bot { background: transparent; border: 1px dashed var(--line-strong); color: var(--grey); align-self: center; font-size: .56rem; }
.app__input { height: 30px; margin: 10px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }

.float-card { position: absolute; background: #fff; border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; font-size: .8rem; box-shadow: var(--shadow); animation: floatY 7s ease-in-out infinite; }
.float-card strong { display: block; font-weight: 600; color: var(--ink); }
.float-card span { color: var(--grey); font-size: .74rem; }
.float-card__icon { width: 30px; height: 30px; border-radius: 50%; background: #22c55e; color: #fff; display: grid; place-items: center; font-weight: 700; }
.float-card--a { left: -6%; top: -2%; }
.float-card--b { right: -4%; bottom: 8%; flex-direction: column; align-items: stretch; gap: 8px; animation-delay: -3.5s; }
.float-card__pipe { display: flex; gap: 4px; }
.float-card__pipe i { font-style: normal; font-size: .6rem; padding: 4px 8px; border-radius: 6px; background: var(--bg-3); color: var(--grey); }
.float-card__pipe i.on { background: var(--accent); color: #fff; }

.azappi__features { margin-top: clamp(64px, 8vw, 110px); }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.features li { display: flex; gap: 18px; padding: 22px 24px; background: #fff; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.features svg { flex: 0 0 26px; width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.features strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin-bottom: 4px; color: var(--ink); }
.features p { font-size: .94rem; }

.azappi__saas { margin-top: clamp(64px, 8vw, 110px); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.azappi__saas p:not(.eyebrow) { max-width: 460px; margin: 20px 0 28px; font-size: 1.05rem; }

/* ═══════════ FLUXO ═══════════ */
.flow { background: var(--bg); }
.flow__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.flow__text p:not(.eyebrow) { max-width: 460px; font-size: 1.05rem; }
.flow__text .display { margin-bottom: 24px; }
.flow__lines { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; font-weight: 500; font-size: 1.02rem; color: var(--ink-2); }
.flow__lines li::before { content: "→ "; color: var(--accent); }
.flow__lines em { color: var(--accent); font-weight: 600; }

.pipeline { position: relative; display: flex; flex-direction: column; padding-left: 40px; }
.pipeline::before { content: ""; position: absolute; left: 11px; top: 14px; bottom: 14px; width: 2px; background: var(--bg-3); border-radius: 2px; }
.pipeline::after { content: ""; position: absolute; left: 11px; top: 14px; width: 2px; height: 0; background: var(--grad); border-radius: 2px; transition: height 2.2s var(--ease); }
.pipeline.in::after { height: calc(100% - 28px); }
.pipeline li { position: relative; padding: 12px 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 1.5vw, 1.25rem); color: var(--grey-2); transition: color .5s; }
.pipeline li::before { content: ""; position: absolute; left: -35px; top: 50%; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid var(--bg-3); transform: translateY(-50%); transition: background .4s, border-color .4s, box-shadow .4s; }
.pipeline.in li { color: var(--ink); transition-delay: calc(.25s * var(--n, 0)); }
.pipeline.in li::before { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); transition-delay: calc(.25s * var(--n, 0)); }
.pipeline__az span { color: var(--accent); display: inline-flex; align-items: center; gap: 12px; }
.pipeline__az span::after { content: "Produto próprio"; font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 4px 10px; }

/* ═══════════ TRÁFEGO ═══════════ */
.ads { background: var(--bg-2); }
.ads__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.ads__text p:not(.eyebrow) { max-width: 480px; margin: 24px 0; font-size: 1.05rem; }
.dash { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); }
.dash__head { display: flex; justify-content: space-between; font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: 20px; }
.dash__head i { font-style: normal; color: var(--grey-2); font-weight: 500; }
.dash__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.dash__kpis div { background: var(--bg-2); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.dash__kpis span { font-size: .64rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-2); }
.dash__kpis strong { font-family: var(--font-display); font-weight: 700; font-size: clamp(.95rem, 1.5vw, 1.25rem); letter-spacing: -.02em; color: var(--ink); white-space: nowrap; }
.dash__kpis em { font-size: .72rem; color: #16a34a; font-weight: 600; }
.dash__line { width: 100%; height: 120px; }
.dash__stroke { stroke: var(--accent); stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 2.2s var(--ease) .3s; }
.dash__area { opacity: 0; transition: opacity 1.2s ease 1.2s; }
.in .dash__stroke { stroke-dashoffset: 0; }
.in .dash__area { opacity: 1; }
.dash__creatives { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
.dash__creatives i { aspect-ratio: 4/5; border-radius: 12px; }
.c-1 { background: linear-gradient(160deg, #ff7a2e, #e6242a); }
.c-2 { background: linear-gradient(160deg, #3b3441, #1c1720); }
.c-3 { background: radial-gradient(circle at 40% 40%, #ffb199, #e6242a 70%); }
.c-4 { background: linear-gradient(200deg, #f1edeb, #d9d4d8); }

/* ═══════════ DESIGN ═══════════ */
.brand { background: var(--bg); overflow: hidden; }
.brand .section__head--split .chips { justify-content: flex-end; }
.mosaic { overflow: hidden; margin-top: 8px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.mosaic__track { display: flex; gap: 16px; width: max-content; animation: marquee 48s linear infinite; }
.mosaic:hover .mosaic__track { animation-play-state: paused; }
.mosaic__item { position: relative; width: 300px; border-radius: 16px; overflow: hidden; display: flex; align-items: flex-end; padding: 18px; background: var(--dark); box-shadow: var(--shadow-sm); transition: transform .6s var(--ease), box-shadow .6s; }
.mosaic__item:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.mosaic__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.mosaic__item:hover img { transform: scale(1.06); }
.mosaic__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(28,23,32,.7)); pointer-events: none; }
.mosaic__item span { position: relative; z-index: 1; font-size: .76rem; font-weight: 600; color: #fff; background: rgba(28,23,32,.55); backdrop-filter: blur(6px); padding: 7px 12px; border-radius: 999px; }
.m-1 { height: 380px; }
.m-2 { height: 300px; align-self: flex-end; }
.m-3 { height: 420px; }
.m-4 { height: 260px; align-self: center; }
.m-5 { height: 340px; align-self: flex-end; }
.m-6 { height: 300px; }

/* ═══════════ NÚMEROS (faixa escura arredondada + cards brancos) ═══════════ */
.numbers { padding: clamp(80px, 9vw, 130px) 0; overflow: hidden; }
.numbers__band { position: absolute; left: 0; top: 0; bottom: 0; width: 72%; background: var(--dark); border-radius: 0 320px 320px 0; }
.numbers__band::after { content: ""; position: absolute; right: -10%; top: -20%; width: 60%; height: 140%; background: radial-gradient(circle, rgba(230,36,42,.25), transparent 60%); }
.numbers .container { position: relative; }
.numbers__head { max-width: 480px; margin-bottom: 44px; }
.numbers__head .display { color: #fff; }
.numbers__head p { color: rgba(255,255,255,.7); margin-top: 12px; }
.numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.number { background: #fff; border-radius: 18px; padding: 28px 22px; text-align: center; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.number:nth-child(2) { transform: translateY(24px); }
.number:nth-child(4) { transform: translateY(24px); }
.number.reveal.in:nth-child(2), .number.reveal.in:nth-child(4) { transform: translateY(24px); }
.number__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 6px; }
.number__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.number strong { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 2.8vw, 2.4rem); letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.number > span { font-size: .86rem; font-weight: 500; color: var(--grey); }

/* ═══════════ PROCESSO ═══════════ */
.process { background: var(--bg-2); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: #fff; border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; transition: transform .5s var(--ease), box-shadow .5s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .9rem; margin-bottom: 28px; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 10px; }
.step p { font-size: .96rem; }

/* ═══════════ IMPACTO ═══════════ */
.impact { padding: clamp(100px, 14vw, 200px) 0; background: var(--bg); text-align: center; position: relative; overflow: hidden; }
.impact__title { max-width: 18ch; margin-inline: auto; position: relative; }

/* ═══════════ CTA / CONTATO ═══════════ */
.cta { background: var(--bg-2); overflow: hidden; }
.cta__card { display: grid; grid-template-columns: 1fr 1.1fr; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.cta__image { position: relative; min-height: 420px; background: var(--dark); }
.cta__image img { width: 100%; height: 100%; object-fit: cover; }
.cta__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(230,36,42,.25), transparent 60%); }
.cta__panel { background: var(--grad); color: #fff; padding: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.cta__panel .display { color: #fff; margin-bottom: 18px; }
.cta__panel .display em { color: #fff; }
.cta__panel p { color: rgba(255,255,255,.9); max-width: 460px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.cta__note { margin-top: 24px !important; color: #fff !important; font-weight: 600; }
.cta__contacts { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 32px; margin-top: 36px; font-size: .92rem; color: var(--grey); }
.cta__contacts a { color: var(--ink); font-weight: 500; border-bottom: 1.5px solid var(--line-strong); transition: border-color .3s, color .3s; }
.cta__contacts a:hover { color: var(--accent); border-color: var(--accent); }

/* ═══════════ PÁGINAS LEGAIS ═══════════ */
.legal { padding: calc(var(--nav-h) + 56px) 0 clamp(80px, 10vw, 140px); }
.legal__inner { max-width: 780px; }
.legal__title { margin-bottom: 12px; }
.legal__meta { color: var(--grey-2); font-size: .85rem; font-weight: 500; margin-bottom: 44px; }
.legal__body h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -.02em; margin: 44px 0 14px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin: 26px 0 10px; }
.legal__body p, .legal__body li { color: var(--ink-2); font-size: 1rem; }
.legal__body p + p { margin-top: .9em; }
.legal__body ul { margin: 12px 0; display: flex; flex-direction: column; gap: 8px; }
.legal__body ul li { padding-left: 22px; position: relative; }
.legal__body ul li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 2px; background: var(--accent); border-radius: 2px; }
.legal__body a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .3s; }
.legal__body a:hover { border-color: var(--accent); }
.legal__body strong { color: var(--ink); font-weight: 600; }
.legal__body .callout { border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; background: var(--bg-2); margin: 24px 0; }
.legal__nav { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--dark); color: rgba(255,255,255,.72); padding: 72px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer__brand p { color: rgba(255,255,255,.65); max-width: 340px; margin-top: 18px; font-size: .95rem; }
.footer__company { margin-top: 22px; font-size: .84rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer__company strong { color: #fff; font-weight: 600; }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: .92rem; }
.footer__col a { width: fit-content; transition: color .3s; }
.footer__col a:hover { color: #fff; }
.footer__heading { font-family: var(--font-display); font-size: .82rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; color: rgba(255,255,255,.5); }
.footer__bottom p { color: inherit; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a { transition: color .3s; }
.footer__legal a:hover { color: #fff; }

/* ═══════════ WHATSAPP FLUTUANTE ═══════════ */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 850; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 34px -10px rgba(37,211,102,.7); transition: transform .4s var(--ease); }
.wa-float:hover { transform: scale(1.08); }

/* ═══════════ COOKIES (LGPD) ═══════════ */
.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 940; margin-inline: auto; max-width: 1120px;
  background: #fff; border-radius: 18px; box-shadow: 0 30px 80px -24px rgba(28,23,32,.45); border: 1px solid var(--line);
  padding: 20px 24px; display: flex; align-items: center; gap: 24px;
  transform: translateY(140%); transition: transform .6s var(--ease);
}
.cookie.is-visible { transform: none; }
.cookie__text { flex: 1; font-size: .86rem; color: var(--ink-2); }
.cookie__text a { color: var(--accent); font-weight: 500; }
.cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }
body.cookie-open .wa-float { bottom: 120px; }

/* ═══════════ MODAL SHOWREEL ═══════════ */
.modal { position: fixed; inset: 0; z-index: 950; background: rgba(28,23,32,.94); display: grid; place-items: center; padding: 5vw; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__video { width: min(1200px, 100%); aspect-ratio: 16/9; border-radius: 14px; background: #000; }
.modal__close { position: absolute; top: 20px; right: 24px; font-size: 2.4rem; line-height: 1; color: #fff; width: 56px; height: 56px; }

/* ═══════════ RESPONSIVO ═══════════ */
@media (max-width: 1080px) {
  .about__grid, .lab__inner, .azappi__hero, .azappi__saas, .flow__grid, .ads__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__head { position: static; }
  .about__body { padding-top: 0; }
  .section__head--split { grid-template-columns: 1fr; gap: 24px; }
  .brand .section__head--split .chips { justify-content: flex-start; }
  .channels__grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 56px 1fr; }
  .service-row .chips { grid-column: 2; }
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .numbers__band { width: 100%; border-radius: 0 0 120px 0; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .number:nth-child(2), .number:nth-child(4), .number.reveal.in:nth-child(2), .number.reveal.in:nth-child(4) { transform: none; }
  .film__foot { flex-direction: column; align-items: flex-start; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__shape { width: 100%; top: auto; height: 34%; border-radius: 160px 0 0 0; }
  .hero__card { transform: none; }
  .cta__card { grid-template-columns: 1fr; }
  .cta__image { min-height: 280px; }
}

@media (max-width: 760px) {
  :root { --nav-h: 68px; }
  .nav__links, .nav__cta { display: none; }
  .burger { display: flex; }
  .section { padding: 72px 0; }
  .hero { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 56px; }
  .hero__title { max-width: none; }
  .hero__actions .btn { width: 100%; }
  .hero__tags { display: none; }
  .hero__chip--a { left: 0; bottom: -14px; }
  .hero__chip--b { right: 0; top: -14px; }
  .manifesto__text { margin-left: 0; }
  .channels__grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 18px; padding: 28px 24px; }
  .service-row .chips { grid-column: 1; }
  .showreel { width: 92vw; aspect-ratio: 4/3; }
  .showreel__play { width: 72px; height: 72px; }
  .showreel__caption { display: none; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .work-item--wide { grid-column: span 1; }
  .lab__visual { aspect-ratio: 1/1.05; }
  .ui-card--a { right: 0; top: 0; }
  .ui-card--b { left: 0; }
  .app { grid-template-columns: 34px 1fr; height: 300px; }
  .app__conv { display: none; }
  .float-card--a { left: 0; top: 0; }
  .float-card--b { right: 0; bottom: 10px; }
  .features { grid-template-columns: 1fr; }
  .pipeline { padding-left: 34px; }
  .numbers__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .number { padding: 22px 14px; }
  .steps { grid-template-columns: 1fr; }
  .cta__actions .btn { width: 100%; }
  .cta__contacts { flex-direction: column; align-items: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal { flex-direction: column; gap: 10px; }
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .mosaic__item { width: 220px; }
  .m-1 { height: 280px; } .m-3 { height: 300px; } .m-5 { height: 260px; }
  .cookie { flex-direction: column; align-items: stretch; left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie__actions .btn { flex: 1; }
  body.cookie-open .wa-float { bottom: 200px; }
  .blob { width: 110px; height: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .line > span, .reveal { transform: none; opacity: 1; }
  html { scroll-behavior: auto; }
}
