/* ==========================================================
   LabutaBR Creative Studio — Landing de captura
   Escala desktop: 1 "px de referência" = var(--r).
   O palco tem 1300 × 680 unidades (proporção da referência)
   e escala para caber na largura E na altura da tela.
   ========================================================== */

@font-face { font-family: "Barlow Condensed"; src: url("/assets/fonts/BarlowCondensed-Bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("/assets/fonts/BarlowCondensed-ExtraBold.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("/assets/fonts/Barlow-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("/assets/fonts/Barlow-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("/assets/fonts/Barlow-SemiBold.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }

:root {
  --pink: #ff006a;
  --pink-hi: #ff3d8f;
  --pink-deep: #b8004d;
  --black: #000;
  --white: #fff;
  --gray-100: #e9e9ea;
  --gray-300: #b9b9bc;
  --gray-500: #8a8a8e;
  --field: #363636;
  --field-hover: #3d3d3f;
  --error: #ff5a5a;

  --display: "Barlow Condensed", "Oswald", "Archivo Narrow", "Arial Narrow", Impact, sans-serif;
  --text: "Barlow", "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --r: min(calc(100vw / 1300), calc(100vh / 680), 1.45px);
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--black); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--text);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button, input, select { font: inherit; color: inherit; }
p { margin: 0; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 50;
  background: var(--pink); color: var(--white); padding: 10px 14px; border-radius: 6px;
  font-weight: 600; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

/* ---------- Página / fundo ---------- */
.page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.backdrop { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.backdrop__tex {
  position: absolute; background-repeat: no-repeat; background-size: cover;
  will-change: transform;
}
.backdrop__tex--right {
  right: 2%; top: 0; width: 40%; height: 78%;
  background-image: url("/assets/bg-texture-2.webp");
  background-position: 50% 12%;
  opacity: .26;
  filter: contrast(1.1);
  -webkit-mask-image: radial-gradient(60% 55% at 50% 38%, #000 20%, transparent 100%);
          mask-image: radial-gradient(60% 55% at 50% 38%, #000 20%, transparent 100%);
}
.backdrop__leak { position: absolute; border-radius: 50%; filter: blur(60px); }
.backdrop__leak--a {
  width: 38vw; height: 22vw; left: -14vw; bottom: 4vh;
  background: radial-gradient(closest-side, rgba(255,0,106,.34), transparent);
  animation: drift 18s ease-in-out infinite alternate;
}
.backdrop__leak--b {
  width: 46vw; height: 46vw; right: 2vw; top: 18vh;
  background: radial-gradient(closest-side, rgba(255,0,106,.20), transparent 70%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}
.backdrop__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0,0,0,.92) 30%, rgba(0,0,0,.35) 52%, rgba(0,0,0,0) 70%),
    linear-gradient(0deg, #000 0%, rgba(0,0,0,0) 22%);
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(3vw, -2vh, 0) scale(1.08); }
}

/* partículas (geradas no script.js) */
.particles { position: absolute; inset: 0; will-change: transform; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--pink);
  opacity: 0;
  animation: float var(--t, 14s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes float {
  0%   { opacity: 0; transform: translate3d(0, 10px, 0); }
  20%  { opacity: var(--o, .7); }
  80%  { opacity: var(--o, .7); }
  100% { opacity: 0; transform: translate3d(var(--x, 12px), -40px, 0); }
}

/* ---------- Palco ---------- */
.stage {
  position: relative;
  width: calc(1300 * var(--r));
  height: calc(680 * var(--r));
}

/* ---------- Topo ---------- */
.topbar {
  position: absolute;
  top: calc(40 * var(--r));
  left: calc(133 * var(--r));
  right: calc(132 * var(--r));
  display: flex; align-items: flex-start; justify-content: space-between;
  z-index: 5;
}
.brand { display: flex; align-items: center; gap: calc(18 * var(--r)); }
.brand__logo { width: calc(92 * var(--r)); height: auto; }
.brand__badge {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--pink);
  border-radius: calc(6 * var(--r));
  padding: calc(6 * var(--r)) calc(14 * var(--r)) calc(7 * var(--r));
  box-shadow: 0 0 0 1px rgba(255,255,255,.18) inset;
}
.brand__badge::before {
  content: ""; position: absolute; left: calc(-10 * var(--r)); top: 8%; bottom: 8%;
  width: calc(3 * var(--r)); background: var(--pink); border-radius: 2px;
}
.brand__badge-top {
  font-size: calc(12.5 * var(--r)); letter-spacing: .08em; font-weight: 500; line-height: 1.2;
  color: rgba(255,255,255,.92);
}
.brand__badge-main {
  display: flex; align-items: center; gap: calc(6 * var(--r));
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: calc(21 * var(--r)); line-height: 1.05; letter-spacing: .01em;
}
.brand__badge-icon { width: calc(19 * var(--r)); height: calc(19 * var(--r)); flex: none; }

/* ---------- Coluna esquerda ---------- */
.hero {
  position: absolute; inset: 0;
  padding: calc(136 * var(--r)) 0 0 calc(133 * var(--r));
  pointer-events: none;
}
.hero > * { pointer-events: auto; }
.hero__copy, .hero__form { position: relative; z-index: 4; width: calc(460 * var(--r)); }

.headline {
  margin: 0;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: calc(55 * var(--r));
  line-height: 1;
  letter-spacing: .005em;
}
.headline__line { display: block; }
.headline__line + .headline__line { margin-top: calc(6 * var(--r)); }
.headline__mark {
  position: relative; display: inline-block;
  padding: calc(2 * var(--r)) calc(10 * var(--r)) 0;
  margin-left: calc(-2 * var(--r));
  background: var(--pink);
  border-radius: calc(6 * var(--r));
  color: var(--white);
  white-space: nowrap;
}
.headline__mark::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  box-shadow: 0 0 calc(26 * var(--r)) rgba(255,0,106,.75);
  opacity: .45;
  animation: glow 3.6s ease-in-out infinite;
}
@keyframes glow { 0%,100% { opacity: .35; } 50% { opacity: .9; } }

.subhead {
  margin-top: calc(14 * var(--r));
  max-width: calc(450 * var(--r));
  font-size: calc(15.5 * var(--r)); line-height: 1.38;
  color: var(--gray-100);
}

.support {
  display: flex; align-items: center; gap: calc(14 * var(--r));
  margin-top: calc(14 * var(--r));
  max-width: calc(450 * var(--r));
}
.support__icon { width: calc(52 * var(--r)); height: auto; flex: none; color: var(--pink); }
.support p { font-size: calc(15 * var(--r)); line-height: 1.36; color: var(--white); }

/* ---------- Formulário ---------- */
.hero__form { margin-top: calc(16 * var(--r)); width: calc(425 * var(--r)); }
.lead { display: flex; flex-direction: column; }
.lead__title {
  font-size: calc(15.5 * var(--r)); letter-spacing: .05em; color: var(--gray-300);
  margin-bottom: calc(7 * var(--r));
}
.field + .field { margin-top: calc(9 * var(--r)); }
.field input, .select select {
  width: 100%;
  height: calc(41 * var(--r));
  min-height: 34px;
  padding: 0 calc(15 * var(--r));
  background: var(--field);
  border: 1px solid rgba(255,0,106,.28);
  border-radius: calc(5 * var(--r));
  color: var(--white);
  font-size: max(calc(15 * var(--r)), 14px);
  outline: none;
  transition: border-color .18s, box-shadow .18s, background-color .18s;
  -webkit-appearance: none; appearance: none;
}
.field input::placeholder { color: #bdbdbd; opacity: 1; }
.field input:hover, .select select:hover { background: var(--field-hover); }
.field input:focus, .select select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,0,106,.18), 0 0 14px rgba(255,0,106,.18);
}
.field.is-invalid input { border-color: var(--error); box-shadow: 0 0 0 3px rgba(255,90,90,.14); }
.field__error {
  font-size: max(calc(12 * var(--r)), 12px); color: #ff8a8a; line-height: 1.3;
  max-height: 0; overflow: hidden; transition: max-height .2s, margin .2s;
}
.field.is-invalid .field__error { max-height: 3em; margin-top: 4px; }

.phone { display: flex; gap: calc(8 * var(--r)); }
.select { position: relative; flex: 0 0 calc(115 * var(--r)); min-width: 104px; }
.select select { padding-right: calc(30 * var(--r)); cursor: pointer; }
.select select option { background: #222; color: #fff; }
.select svg {
  position: absolute; right: calc(12 * var(--r)); top: 50%; transform: translateY(-50%);
  width: 12px; height: 8px; pointer-events: none; color: #e6e6e6;
}
.phone input { flex: 1; min-width: 0; }

.btn-cta {
  margin-top: calc(10 * var(--r));
  height: calc(44 * var(--r));
  min-height: 44px;
  border: 0; border-radius: calc(6 * var(--r));
  background: var(--pink);
  color: var(--white);
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: max(calc(21 * var(--r)), 17px); letter-spacing: .03em;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(255,0,106,.28);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s;
}
.btn-cta:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 8px 28px rgba(255,0,106,.5); }
.btn-cta:active { transform: translateY(0) scale(.985); }
.btn-cta:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.btn-cta[disabled] { cursor: progress; filter: saturate(.8) brightness(.92); transform: none; }
.btn-cta.is-loading .btn-cta__label::after {
  content: ""; display: inline-block; width: .8em; height: .8em; margin-left: .5em; vertical-align: -.05em;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.lead__note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: calc(9 * var(--r));
  font-size: max(calc(11.5 * var(--r)), 11.5px); color: var(--gray-500);
}
.lead__note svg { width: 10px; height: 11px; color: var(--gray-500); }
.lead__status:empty { display: none; }
.lead__status { margin-top: 8px; font-size: 13px; color: #ff8a8a; text-align: center; }

.success {
  display: flex; flex-direction: column; align-items: flex-start; gap: calc(6 * var(--r));
  padding: calc(26 * var(--r)) calc(24 * var(--r));
  border: 1px solid rgba(255,0,106,.45);
  border-radius: calc(8 * var(--r));
  background: linear-gradient(160deg, rgba(255,0,106,.16), rgba(255,0,106,.03) 60%), #121212;
  animation: pop .45s var(--ease) both;
}
.success__icon { width: calc(40 * var(--r)); min-width: 34px; height: auto; color: var(--pink); margin-bottom: 4px; }
.success__title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: max(calc(30 * var(--r)), 26px); line-height: 1.05;
  outline: none;
}
.success__text { font-size: max(calc(15.5 * var(--r)), 15px); color: var(--gray-100); }
.success__wa {
  margin-top: 8px; display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px;
  border-radius: 6px; background: var(--pink); color: #fff; text-decoration: none;
  font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 17px;
}
.success__wa:hover { filter: brightness(1.1); }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }

/* ---------- Imagem principal ---------- */
.hero__visual {
  position: absolute;
  left: calc(585 * var(--r));
  right: 0;
  top: 0;
  /* ancora a imagem no rodapé da janela, mesmo com palco centralizado */
  bottom: min(0px, calc((680 * var(--r) - 100vh) / 2));
  z-index: 2;
}
.visual { position: absolute; inset: 0; }
.visual > * { position: absolute; will-change: transform; margin: 0; }

.visual__beams {
  width: calc(640 * var(--r)); height: calc(640 * var(--r));
  left: calc(150 * var(--r)); top: calc(20 * var(--r));
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255,0,106,.22) 0deg 3deg, transparent 3deg 16deg);
  -webkit-mask-image: radial-gradient(closest-side, #000 10%, transparent 72%);
          mask-image: radial-gradient(closest-side, #000 10%, transparent 72%);
  opacity: .55;
  animation: spinSlow 120s linear infinite;
}
@keyframes spinSlow { to { rotate: 360deg; } }
.visual__glow {
  width: calc(560 * var(--r)); height: calc(560 * var(--r));
  left: calc(190 * var(--r)); top: calc(60 * var(--r));
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,0,106,.42), rgba(255,0,106,.12) 55%, transparent 75%);
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { opacity: .75; } 50% { opacity: 1; } }
.visual__symbol {
  width: calc(350 * var(--r)); height: auto;
  left: calc(285 * var(--r)); top: calc(138 * var(--r));
  filter: drop-shadow(0 0 calc(46 * var(--r)) rgba(255,0,106,.55));
}
.visual__outline {
  width: calc(404 * var(--r)); height: auto;
  left: calc(275 * var(--r)); top: calc(129 * var(--r));
  opacity: .75;
}
.visual__splatter {
  width: calc(600 * var(--r)); height: auto;
  left: calc(170 * var(--r)); top: calc(40 * var(--r));
  opacity: .85;
}

/* cards de formato: mostram o mesmo conteúdo em vários formatos */
.fmt {
  overflow: hidden;
  border-radius: calc(10 * var(--r));
  border: 1px solid rgba(255,255,255,.22);
  background: #111;
  box-shadow: 0 calc(18 * var(--r)) calc(40 * var(--r)) rgba(0,0,0,.65), 0 0 calc(24 * var(--r)) rgba(255,0,106,.25);
  animation: bob 7s ease-in-out infinite;
}
.fmt img, .fmt video { display: block; width: 100%; height: 100%; object-fit: cover; }
.fmt::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,0,106,.16), transparent 45%, rgba(0,0,0,.55));
}
.fmt--reels {
  width: calc(118 * var(--r)); aspect-ratio: 9 / 16;
  left: calc(18 * var(--r)); top: calc(150 * var(--r));
  rotate: -7deg; animation-delay: -2s;
}
.fmt--wide {
  width: calc(200 * var(--r)); aspect-ratio: 16 / 9;
  left: calc(175 * var(--r)); top: calc(52 * var(--r));
  rotate: 4deg;
}
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 calc(-5 * var(--r)); } }
.fmt__tag {
  position: absolute; left: calc(7 * var(--r)); bottom: calc(7 * var(--r)); z-index: 2;
  padding: calc(3 * var(--r)) calc(7 * var(--r));
  border-radius: 999px; background: rgba(0,0,0,.6);
  font-size: max(calc(10.5 * var(--r)), 9px); font-weight: 600; line-height: 1.2; color: #fff;
}
.fmt__play {
  position: absolute; left: 50%; top: 45%; z-index: 2; translate: -50% -50%;
  width: calc(34 * var(--r)); height: calc(34 * var(--r));
  display: grid; place-items: center; border-radius: 50%;
  background: var(--pink); color: #fff; box-shadow: 0 0 calc(18 * var(--r)) rgba(255,0,106,.7);
}
.fmt__play svg { width: 60%; height: 60%; }
.fmt__play { transition: opacity .4s, scale .4s; }
.fmt.is-playing .fmt__play { opacity: 0; scale: .7; }
.fmt.is-playing .fmt__bar i { transition: width .3s linear; }
.fmt__bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: calc(3 * var(--r)); min-height: 2px; z-index: 2;
  background: rgba(255,255,255,.25);
}
.fmt__bar i { display: block; width: 38%; height: 100%; background: var(--pink); }
.fmt__stories {
  position: absolute; left: calc(6 * var(--r)); right: calc(6 * var(--r)); top: calc(6 * var(--r)); z-index: 2;
  display: flex; gap: calc(3 * var(--r));
}
.fmt__stories i { flex: 1; height: 2px; border-radius: 2px; background: rgba(255,255,255,.4); }
.fmt__stories i:first-child { background: linear-gradient(90deg, #fff var(--p, 100%), rgba(255,255,255,.4) 0); }

.person img, .person canvas { display: block; width: 100%; height: 100%; }
.person canvas { position: absolute; inset: 0; opacity: 0; transition: opacity .35s; }
.person.is-live canvas { opacity: 1; }
.person.is-live img { visibility: hidden; transition: visibility 0s .35s; }
.visual__p2 {
  height: calc(610 * var(--r)); aspect-ratio: 480 / 880;
  left: calc(372 * var(--r)); bottom: calc(4 * var(--r));
  filter: drop-shadow(-14px 0 26px rgba(0,0,0,.6));
}
.visual__p1 {
  width: calc(500 * var(--r)); aspect-ratio: 700 / 706;
  left: calc(-12 * var(--r)); bottom: calc(-6 * var(--r));
  filter: drop-shadow(12px 0 30px rgba(0,0,0,.65));
}
.visual__grain {
  inset: 0; opacity: .08; mix-blend-mode: overlay; pointer-events: none;
  -webkit-mask-image: radial-gradient(60% 55% at 55% 55%, #000 30%, transparent 80%);
          mask-image: radial-gradient(60% 55% at 55% 55%, #000 30%, transparent 80%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.visual__fade {
  left: -2px; right: 0; bottom: -2px; height: calc(110 * var(--r));
  background: linear-gradient(0deg, #000 8%, rgba(0,0,0,0));
}

.services {
  position: absolute; z-index: 3;
  left: calc(38 * var(--r)); bottom: max(calc(20 * var(--r)), calc((100vh - 680 * var(--r)) / 2 + 20 * var(--r)));
  display: flex; flex-wrap: wrap; gap: calc(8 * var(--r));
  margin: 0; padding: 0; list-style: none;
}
.services li {
  display: inline-flex; align-items: center; gap: calc(7 * var(--r));
  padding: calc(6 * var(--r)) calc(11 * var(--r));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: max(calc(13 * var(--r)), 11px); letter-spacing: .08em; line-height: 1;
  color: var(--gray-100);
}
.services li::before {
  content: ""; width: calc(6 * var(--r)); height: calc(6 * var(--r)); min-width: 5px; min-height: 5px;
  border-radius: 50%; background: var(--pink); box-shadow: 0 0 8px var(--pink);
}

/* ---------- Entrada ---------- */
.reveal { animation: reveal .55s var(--ease) both; animation-delay: var(--d, 0ms); }
@keyframes reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero__visual { animation: visualIn .9s var(--ease) .1s both; }
@keyframes visualIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }

/* ==========================================================
   MOBILE / TABLET (fluxo vertical)
   ========================================================== */
@media (max-width: 900px), (max-aspect-ratio: 1/1) and (max-width: 1100px) {
  :root { --r: 1px; }
  .page { display: block; }
  .stage { width: 100%; height: auto; padding: 18px 20px 36px; max-width: 560px; margin: 0 auto; }

  .topbar { position: relative; inset: auto; }
  .brand { flex-wrap: wrap; gap: 14px; align-items: center; }
  .brand__logo { width: 68px; }
  .brand__badge { padding: 6px 11px 7px; }
  .brand__badge::before { display: none; }
  .brand__badge-top { font-size: 11px; }
  .brand__badge-main { font-size: 16px; white-space: nowrap; }
  .brand__badge-icon { width: 15px; height: 15px; }

  .hero { position: static; padding: 0; display: flex; flex-direction: column; }
  .hero__copy { display: contents; }
  .hero__copy, .hero__form { width: 100%; }
  .headline { order: 1; margin-top: 26px; font-size: clamp(38px, 11vw, 60px); }
  .headline__mark { padding: 2px 8px 0; border-radius: 6px; }
  .subhead { order: 2; margin-top: 14px; font-size: 16px; max-width: 34em; }
  .hero__visual { order: 3; position: relative; inset: auto; width: calc(100% + 40px); margin: 6px -20px 0; aspect-ratio: 1 / 0.96; }
  .support { order: 4; margin-top: 4px; max-width: none; }
  .support__icon { width: 44px; }
  .support p { font-size: 15px; }
  .hero__form { order: 5; margin-top: 24px; }

  .lead__title { font-size: 15px; }
  .field input, .select select { height: 50px; font-size: 16px; border-radius: 6px; padding: 0 14px; }
  .field + .field { margin-top: 10px; }
  .select { flex-basis: 118px; }
  .select svg { right: 12px; }
  .phone { gap: 8px; }
  .btn-cta { height: 54px; font-size: 20px; margin-top: 12px; border-radius: 7px; }
  .lead__note { font-size: 12px; margin-top: 12px; }
  .success { padding: 22px 20px; }

  /* imagem: coordenadas em % do bloco */
  .hero__visual { aspect-ratio: 1 / 1.08; }
  .visual__beams { width: 120%; height: auto; aspect-ratio: 1; left: -5%; top: -2%; }
  .visual__glow { width: 90%; height: auto; aspect-ratio: 1; left: 18%; top: 8%; }
  .visual__symbol { width: 46%; left: 36%; top: 24%; }
  .visual__outline { width: 53%; left: 34.5%; top: 22.5%; }
  .visual__splatter { width: 100%; left: 5%; top: 2%; }
  .fmt { border-radius: 8px; }
  .fmt--reels { width: 21%; left: 5%; top: 20%; }
  .fmt--wide { width: 36%; left: 22%; top: 4%; }
  .fmt__tag { font-size: 9.5px; padding: 2px 6px; left: 5px; bottom: 5px; }
  .fmt__play { width: 26px; height: 26px; }
  .visual__p2 { height: 88%; width: auto; left: 52%; bottom: 3%; }
  .visual__p1 { width: 74%; height: auto; left: -2%; bottom: -2%; }
  .visual__fade { height: 22%; }
  .services { left: 20px; right: 20px; bottom: 12px; gap: 6px; }
  .services li { font-size: 11.5px; padding: 6px 10px; gap: 6px; }
  .services li::before { width: 5px; height: 5px; }

  .backdrop__tex--right { width: 100%; height: 60%; opacity: .22; }
  .backdrop__vignette { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 30%, #000 70%); }
  .backdrop__leak--a { width: 80vw; height: 50vw; bottom: auto; top: 90vh; }
  .backdrop__leak--b { width: 100vw; height: 100vw; top: 30vh; right: -30vw; }
}
@media (max-width: 380px) {
  .brand__badge-main { font-size: 14.5px; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .particles { display: none; }
  .headline__mark::after { opacity: .5; }
}

[hidden] { display: none !important; }
