/* ============================================================
   Dudu Leal — Produções | Vídeos e Fotos
   Sistema visual: mídia protagonista, UI discreta, acento único.
   ============================================================ */

:root {
  --orange: #ff6600;
  --orange-deep: #e25400;
  --orange-soft: #ff8534;
  --ink: #0c0b0a;
  --ink-2: #16140f;
  --ink-soft: #211e19;
  --paper: #f5f1ea;
  --paper-2: #ece6db;
  --line: rgba(12,11,10,.12);
  --line-on-dark: rgba(255,255,255,.14);
  --muted: #6f675c;
  --muted-on-dark: rgba(245,241,234,.62);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius: 4px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--orange); color: #fff; }

/* ---------- shared layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--orange);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: .98; letter-spacing: -.02em; }

.display {
  font-size: clamp(44px, 8vw, 116px);
  line-height: .92;
  letter-spacing: -.03em;
}

.section-title {
  font-size: clamp(34px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
  max-width: 46ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--wa { background: var(--orange); color: #fff; }
.btn--wa:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn--ghost { border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn--ghost-light { border-color: var(--line-on-dark); color: var(--paper); }
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }

/* WhatsApp flutuante — substitui o pill da nav em telas ≤860px */
.wa-fab {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(226,84,0,.45);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.wa-fab:hover { background: var(--orange-deep); transform: translateY(-2px); }
.wa-fab svg { width: 26px; height: 26px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { width: 40px; height: 40px; }
.nav__brand b { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -.01em; line-height: 1; }
.nav__brand span { display: block; font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--paper); opacity: .82; transition: opacity .3s; }
.nav__links a:hover { opacity: 1; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav.is-scrolled { background: rgba(12,11,10,.78); backdrop-filter: blur(16px) saturate(1.4); padding-block: 12px; box-shadow: 0 1px 0 var(--line-on-dark); }
.nav .btn--wa { padding: 11px 20px; font-size: 14px; }
.nav__burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
}
.nav__burger span { width: 24px; height: 2px; background: var(--paper); transition: transform .35s var(--ease); }
.nav.is-open .nav__burger span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav__burger span:last-child { transform: translateY(-4px) rotate(-45deg); }
.nav.is-open { background: rgba(12,11,10,.96); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg image-slot { width: 100%; height: 100%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,11,10,.55) 0%, rgba(12,11,10,.15) 35%, rgba(12,11,10,.55) 70%, rgba(12,11,10,.95) 100%),
    linear-gradient(90deg, rgba(12,11,10,.85) 0%, rgba(12,11,10,.2) 60%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: end; }
.hero h1 { margin: 22px 0 0; max-width: 16ch; }
.hero h1 .accent { color: var(--orange); }
.hero__lead { color: var(--muted-on-dark); margin-top: 26px; max-width: 50ch; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 64px);
  margin-top: 54px; padding-top: 30px;
  border-top: 1px solid var(--line-on-dark);
}
.hero__meta .stat b { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4vw, 46px); display: block; line-height: 1; }
.hero__meta .stat b .u { color: var(--orange); }
.hero__meta .stat span { font-size: 13px; color: var(--muted-on-dark); margin-top: 8px; display: block; letter-spacing: .02em; }
.hero__scroll { position: absolute; right: var(--gutter); bottom: clamp(40px,6vw,80px); z-index: 3; writing-mode: vertical-rl; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-on-dark); display: flex; align-items: center; gap: 12px; }
.hero__scroll::after { content:""; width:1px; height:48px; background: linear-gradient(var(--orange), transparent); animation: scrolln 2.2s var(--ease) infinite; }
@keyframes scrolln { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ============================================================
   MARQUEE — empresas que confiam
   ============================================================ */
.clients { background: var(--ink-2); color: var(--paper); padding: 30px 0; border-top: 1px solid var(--line-on-dark); }
.clients__label { text-align: center; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 22px; padding-inline: var(--gutter); }
.marquee { display: flex; overflow: hidden; mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 64px; padding-right: 64px; animation: slide 38s linear infinite; flex-shrink: 0; }
.clients:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.4vw, 30px); white-space: nowrap; opacity: .55; transition: opacity .3s, color .3s; letter-spacing: -.01em; }
.marquee__track span:hover { opacity: 1; color: var(--orange); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   SOBRE
   ============================================================ */
/* padding-block para não anular o padding-inline do .wrap (mesmo elemento) */
.sobre { padding-block: clamp(80px, 11vw, 150px); }
.sobre__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.sobre__media { position: relative; }
.sobre__media image-slot { display: block; width: 100%; height: auto; aspect-ratio: 4/5; }
.sobre__media .tag {
  position: absolute; left: -16px; bottom: 28px;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-weight: 800;
  padding: 16px 22px; line-height: .9;
  box-shadow: 0 18px 40px rgba(226,84,0,.35);
}
.sobre__media .tag b { font-size: 40px; display: block; }
.sobre__media .tag span { font-size: 12px; font-weight: 600; font-family: var(--font-body); letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.sobre__copy h2 { margin: 20px 0 24px; }
.sobre__copy p { color: var(--muted); line-height: 1.7; font-size: 17px; margin-bottom: 18px; max-width: 52ch; }
.sobre__copy p strong { color: var(--ink); font-weight: 600; }
.sobre__sign { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.sobre__sign .nm { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.sobre__sign .rl { font-size: 13px; color: var(--muted); }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.serv { padding: clamp(70px, 9vw, 130px) 0; background: var(--ink); color: var(--paper); }
.serv__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 54px; flex-wrap: wrap; }
.serv__head .lead { color: var(--muted-on-dark); }
.serv__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line-on-dark); border: 1px solid var(--line-on-dark); }
.serv__cell {
  background: var(--ink); padding: 34px 30px 30px; position: relative;
  min-height: 260px; display: flex; flex-direction: column; justify-content: space-between;
  transition: background .4s var(--ease);
  overflow: hidden;
}
.serv__cell:hover { background: var(--ink-soft); }
.serv__cell .no { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--orange); }
.serv__cell h3 { font-size: 27px; margin: 18px 0 12px; line-height: 1.02; }
.serv__cell p { font-size: 14.5px; color: var(--muted-on-dark); line-height: 1.6; max-width: 32ch; }
.serv__cell .ico { position: absolute; right: 24px; top: 30px; width: 26px; height: 26px; color: var(--paper); opacity: .35; transition: opacity .4s, transform .4s var(--ease); }
.serv__cell:hover .ico { opacity: 1; color: var(--orange); transform: translate(2px,-2px); }

/* ============================================================
   PORTFÓLIO
   ============================================================ */
.port { padding-block: clamp(70px, 9vw, 130px); }
.port__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.port__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.port__grid image-slot { width: 100%; height: 100%; }
.port__item { position: relative; overflow: hidden; }
.port__item .cap { position: absolute; left: 0; bottom: 0; z-index: 3; padding: 16px 18px; color: #fff; pointer-events: none; font-weight: 600; font-size: 14px; text-shadow: 0 2px 12px rgba(0,0,0,.6); display: flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.port__item .cap::before { content:""; width:7px; height:7px; background: var(--orange); border-radius: 50%; }
.port__item:hover .cap { opacity: 1; transform: translateY(0); }
.port__item .scrim { position:absolute; inset:0; z-index:2; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55)); opacity:0; transition: opacity .4s; pointer-events:none; }
.port__item:hover .scrim { opacity: 1; }
/* touch não tem hover: legenda e scrim ficam sempre visíveis */
@media (hover: none) {
  .port__item .cap { opacity: 1; transform: none; }
  .port__item .scrim { opacity: 1; }
}
.it-wide { grid-column: span 2; }
.it-tall { grid-row: span 2; }

/* ============================================================
   PODCAST
   ============================================================ */
.pod { background: var(--ink); color: var(--paper); padding: clamp(70px, 9vw, 130px) 0; overflow: hidden; }
.pod__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.pod__media { display: flex; justify-content: center; }
.pod__frame { position: relative; width: min(320px, 80vw); aspect-ratio: 480/848; background: #000; border: 1px solid var(--line-on-dark); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.pod__frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pod__sound { position: absolute; right: 12px; bottom: 12px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(12,11,10,.55); backdrop-filter: blur(8px); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .3s, border-color .3s; }
.pod__sound:hover { background: var(--orange); border-color: var(--orange); }
.pod__sound svg { width: 20px; height: 20px; }
.pod__sound .i-on { display: none; }
.pod__sound.is-on .i-on { display: block; }
.pod__sound.is-on .i-off { display: none; }
.pod__copy .section-title { margin: 20px 0 22px; }
.pod__lead { color: var(--muted-on-dark); line-height: 1.65; font-size: 17px; max-width: 52ch; }
.pod__list { list-style: none; margin: 26px 0 34px; display: flex; flex-direction: column; gap: 12px; }
.pod__list li { display: flex; align-items: baseline; gap: 12px; font-size: 15.5px; color: var(--paper); }
.pod__list li::before { content: ""; width: 8px; height: 8px; background: var(--orange); flex-shrink: 0; transform: translateY(-1px); }

/* ============================================================
   STATS BAND
   ============================================================ */
.band { background: var(--orange); color: #fff; padding: clamp(56px, 7vw, 92px) 0; }
.band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.band__item b { font-family: var(--font-display); font-weight: 800; font-size: clamp(44px, 5.5vw, 76px); line-height: .9; display: block; }
.band__item span { display: block; margin-top: 12px; font-size: 14px; font-weight: 500; opacity: .92; max-width: 22ch; }
.band--values .band__item b { font-size: clamp(26px, 3vw, 40px); letter-spacing: -.02em; }
.band--values .band__item span { margin-top: 10px; }
.band__item + .band__item { border-left: 1px solid rgba(255,255,255,.28); padding-left: 30px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo { padding: clamp(70px, 9vw, 130px) 0; background: var(--paper-2); }
.depo__head { margin-bottom: 50px; max-width: 60ch; }
.depo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.depo__card { background: var(--paper); border: 1px solid var(--line); padding: 32px 30px; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.depo__card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(12,11,10,.1); }
.depo__card .q { font-size: 17px; line-height: 1.6; color: var(--ink); flex: 1; }
.depo__card .q::before { content: "“"; font-family: var(--font-display); color: var(--orange); font-size: 56px; line-height: .5; display: block; margin-bottom: 10px; }
.depo__who { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.depo__who image-slot, .depo__who .ph { width: 46px; height: 46px; flex-shrink: 0; }
.depo__who .ph { border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.depo__who .nm { font-weight: 600; font-size: 15px; }
.depo__who .rl { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; }

/* ============================================================
   CONTATO
   ============================================================ */
.cta { background: var(--ink); color: var(--paper); padding: clamp(80px, 11vw, 150px) 0; position: relative; overflow: hidden; }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.cta h2 { margin: 22px 0 24px; }
.cta__lead { color: var(--muted-on-dark); line-height: 1.6; font-size: 18px; max-width: 42ch; }
.cta__direct { margin-top: 40px; display: flex; flex-direction: column; gap: 4px; }
.cta__direct a, .cta__direct .contact-loc { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line-on-dark); transition: padding .35s var(--ease); }
.cta__direct .contact-loc:last-child { border-bottom: 1px solid var(--line-on-dark); }
.cta__direct a:hover { padding-left: 10px; }
.cta__direct .ic { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-on-dark); display: grid; place-items: center; color: var(--orange); flex-shrink: 0; transition: background .35s, color .35s; }
.cta__direct .tx b { display: block; font-size: 16px; font-weight: 600; }
.cta__direct a:hover .ic { background: var(--orange); color: #fff; }
.cta__direct .tx span { font-size: 13px; color: var(--muted-on-dark); }

.form { background: var(--ink-2); border: 1px solid var(--line-on-dark); padding: clamp(28px, 4vw, 40px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 8px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line-on-dark); color: var(--paper);
  font-family: var(--font-body); font-size: 15px; padding: 14px 16px; border-radius: var(--radius);
  transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 110px; }
.form .btn--wa { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: 12.5px; color: var(--muted-on-dark); text-align: center; margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: #060605; color: var(--muted-on-dark); padding: 60px 0 36px; }
.foot__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; padding-bottom: 40px; border-bottom: 1px solid var(--line-on-dark); }
.foot__brand img { width: 64px; height: 64px; }
.foot__brand p { margin-top: 16px; max-width: 32ch; font-size: 14px; line-height: 1.6; }
.foot__cols { display: flex; gap: clamp(40px, 6vw, 90px); flex-wrap: wrap; }
.foot__col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--paper); margin-bottom: 16px; }
.foot__col a { display: block; font-size: 14px; padding: 6px 0; transition: color .3s; }
.foot__col a:hover { color: var(--orange); }
.foot__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 13px; }
.foot__bottom .made b { color: var(--orange); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll::after { animation: none; }
  /* sem animação o letreiro vira grade centrada (app.js também não duplica) */
  .marquee { mask: none; }
  /* flex-shrink/width anulam o max-content do track para o wrap atuar */
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; row-gap: 12px; padding-right: 0; flex-shrink: 1; width: 100%; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .nav__links { gap: 20px; }
  .nav__links a { font-size: 13px; }
  .nav__cta .btn--ghost-light { display: none; }
}
/* FAB do WhatsApp: telas ≤1180px OU qualquer dispositivo touch
   (cobre tablets em paisagem, que passam de 1180px de largura) */
@media (max-width: 1180px), (hover: none) and (pointer: coarse) {
  .nav__cta .btn--wa { display: none; }
  .wa-fab { display: inline-flex; }
}
@media (max-width: 1024px) {
  .port__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .serv__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1180px) and (min-width: 1025px) {
  .serv__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav__burger { display: inline-flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(12,11,10,.96);
    backdrop-filter: blur(16px) saturate(1.4);
    padding: 6px var(--gutter) 18px;
    border-bottom: 1px solid var(--line-on-dark);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
  }
  .nav.is-open .nav__links {
    opacity: 1; visibility: visible; transform: none;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }
  .nav__links a { font-size: 15px; padding: 14px 0; border-top: 1px solid var(--line-on-dark); }
  .nav__links a:first-child { border-top: 0; }
  .hero__scroll { display: none; }
  .sobre__grid, .cta__grid { grid-template-columns: 1fr; }
  .pod__grid { grid-template-columns: 1fr; gap: 44px; }
  /* width explícita: com margin auto o grid item encolheria e o image-slot (100%) colapsaria */
  .sobre__media { width: min(460px, 100%); margin-inline: auto; }
  .depo__grid { grid-template-columns: 1fr; }
  .band__grid { grid-template-columns: repeat(2, 1fr); }
  .band__item:nth-child(3) { border-left: none; padding-left: 0; }
  .band__item { padding-top: 20px; }
  .cta__grid { gap: 50px; }
}
@media (max-width: 560px) {
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(12,11,10,.6) 0%, rgba(12,11,10,.4) 40%, rgba(12,11,10,.78) 72%, rgba(12,11,10,.97) 100%),
      linear-gradient(90deg, rgba(12,11,10,.5) 0%, rgba(12,11,10,.15) 60%);
  }
  .section-title br { display: none; }
  .serv__grid { grid-template-columns: 1fr; }
  .serv__cell { min-height: 0; padding: 26px 22px 28px; }
  .sobre__media .tag { left: 0; }
  .port__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .it-wide { grid-column: auto; }
  .it-wide.it-tall { grid-row: auto; }
  .band__grid { grid-template-columns: 1fr; }
  .band__item + .band__item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.28); padding-top: 22px; }
  .form__row { grid-template-columns: 1fr; }
}
