:root {
  --ink: #0b0709;
  --ink-2: #140b10;
  --ink-3: #1d1017;
  --pink: #f0609a;
  --pink-deep: #e04870;
  --red: #b01018;
  --red-deep: #6f0a10;
  --cream: #f7f2ee;
  --muted: #c9bcc2;
  --gold: #d9a441;
  --line: rgba(247, 242, 238, .16);
  --display: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
  --script: 'Yellowtail', 'Brush Script MT', cursive;
  --body: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1240px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }

.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--pink); color: var(--ink); padding: 10px 16px; z-index: 100; font-weight: 700; }
.skip:focus { left: 8px; }

/* Tipografia */
.display, h1, h2, h3.display { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .01em; }
.script { font-family: var(--script); color: var(--pink); font-size: clamp(30px, 4vw, 44px); line-height: 1; display: inline-block; transform: rotate(-3deg); transform-origin: left center; }
.kicker { font-weight: 700; letter-spacing: .24em; text-transform: uppercase; font-size: 13px; color: var(--pink); }
.hl { display: inline-block; background: var(--pink); color: var(--ink); padding: 0 .18em 0 .1em; line-height: 1.02; transform: rotate(-1.6deg); box-shadow: .06em .06em 0 var(--red); }
.muted { color: var(--muted); }

/* Botoes */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 26px; border: 2px solid var(--pink);
  background: var(--pink); color: var(--ink); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 15px;
  text-decoration: none; cursor: pointer; border-radius: 2px;
  box-shadow: 5px 5px 0 var(--red); transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--red); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--red); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--cream); box-shadow: 5px 5px 0 rgba(247, 242, 238, .22); }
.btn-ghost:hover { box-shadow: 7px 7px 0 rgba(247, 242, 238, .3); }
.btn-small { min-height: 42px; padding: 8px 18px; font-size: 13px; box-shadow: 3px 3px 0 var(--red); }
.link { color: var(--pink); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* Cabecalho */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(11, 7, 9, .9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--pink); }
.brand span { font-family: var(--display); font-size: 28px; letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.brand span i { font-style: normal; color: var(--pink); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-weight: 600; font-size: 15px; letter-spacing: .04em; color: var(--cream); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover { border-bottom-color: var(--pink); }
.menu-button { display: none; background: transparent; color: var(--cream); border: 2px solid var(--cream); border-radius: 2px; min-height: 44px; padding: 8px 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; cursor: pointer; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 56px 0 84px; background:
  radial-gradient(900px 520px at 88% 12%, rgba(240, 96, 154, .2), transparent 62%),
  radial-gradient(700px 500px at 0% 100%, rgba(176, 16, 24, .3), transparent 65%), var(--ink); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(120px, 17.5vw, 260px); line-height: .84; margin: 6px 0 0; white-space: nowrap; }
.hero .fullname { margin-top: 26px; font-weight: 700; font-size: 16px; letter-spacing: .28em; text-transform: uppercase; color: var(--pink); }
.hero .lead { margin-top: 12px; font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; line-height: 1.22; max-width: 22em; }
.hero .sub { margin-top: 16px; color: var(--muted); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px 20px; margin-top: 32px; align-items: center; }
.hero-photo { position: relative; justify-self: end; width: min(100%, 470px); }
.hero-photo::before { content: ''; position: absolute; inset: 22px -18px -22px 22px; background: var(--pink); transform: rotate(2.2deg); z-index: 0; }
.hero-photo::after { content: ''; position: absolute; inset: 44px -34px -44px 44px; background: var(--red); transform: rotate(4.2deg); z-index: -1; }
.hero-photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 18%; border: 4px solid var(--ink); }
.sticker { position: absolute; z-index: 2; left: -24px; bottom: 34px; background: var(--ink); color: var(--cream); border: 2px solid var(--pink); padding: 12px 16px 12px 14px; display: flex; align-items: center; gap: 12px; transform: rotate(-4deg); box-shadow: 5px 5px 0 var(--red); max-width: 290px; }
.sticker svg { flex: none; width: 34px; height: 34px; }
.sticker b { display: block; font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 21px; line-height: 1; letter-spacing: .03em; }
.sticker small { display: block; color: var(--muted); font-size: 13px; line-height: 1.25; margin-top: 3px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.stat { border: 1px solid var(--line); border-top: 4px solid var(--pink); background: rgba(20, 11, 16, .8); padding: 20px 22px 18px; }
.stat strong { display: block; font-family: var(--display); font-weight: 400; font-size: clamp(38px, 5vw, 58px); line-height: 1; text-transform: uppercase; color: var(--cream); }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 15px; line-height: 1.35; }

/* Faixa */
.band { background: var(--pink); color: var(--ink); overflow: hidden; border-block: 3px solid var(--ink); }
.band-track { display: flex; width: max-content; animation: slide 38s linear infinite; }
.band p { font-family: var(--display); text-transform: uppercase; font-size: 30px; letter-spacing: .06em; white-space: nowrap; padding: 12px 0; }
.band p span { margin: 0 22px; color: var(--red); }
@keyframes slide { to { transform: translateX(-50%); } }

/* Secoes */
.section { padding: 96px 0; position: relative; }
.section-head { max-width: 64em; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(46px, 7vw, 92px); line-height: .92; margin-top: 8px; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 19px; max-width: 38em; }
.alt { background: var(--ink-2); border-block: 1px solid var(--line); }

/* Sobre */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.about-photo { position: relative; max-width: 470px; }
.about-photo::before { content: ''; position: absolute; inset: -16px 16px 16px -16px; border: 3px solid var(--pink); z-index: 0; }
.about-photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%; }
.about-copy p { font-size: 20px; margin-top: 18px; max-width: 34em; }
.about-copy p:first-of-type { margin-top: 22px; font-size: 24px; font-weight: 600; line-height: 1.35; }
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.facts li { border: 2px solid var(--cream); border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.facts li b { color: var(--pink); }

/* Trajetoria */
.path-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.path-photo { position: sticky; top: 104px; }
.path-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 30%; border: 4px solid var(--gold); box-shadow: 12px 12px 0 var(--red); }
.path-photo figcaption { margin-top: 20px; font-size: 14px; color: var(--muted); }
.timeline { display: grid; gap: 0; border-left: 3px solid var(--pink); margin-left: 8px; }
.tl-item { position: relative; padding: 0 0 34px 34px; }
.tl-item::before { content: ''; position: absolute; left: -12px; top: 6px; width: 21px; height: 21px; background: var(--ink-2); border: 4px solid var(--pink); border-radius: 50%; }
.tl-date { font-family: var(--display); font-size: 28px; color: var(--gold); letter-spacing: .04em; line-height: 1; }
.tl-item h3 { font-family: var(--body); text-transform: none; font-weight: 700; font-size: 23px; line-height: 1.2; margin-top: 8px; }
.tl-item p { color: var(--muted); margin-top: 8px; max-width: 36em; }

/* Podcast */
.podcast { background:
  radial-gradient(800px 460px at 100% 0%, rgba(176, 16, 24, .55), transparent 60%),
  linear-gradient(180deg, #16080c, #0b0709); border-block: 3px solid var(--red); overflow: hidden; }
.pod-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.pod-title { display: flex; align-items: center; gap: 20px; }
.pod-title svg { flex: none; width: clamp(56px, 8vw, 92px); height: auto; }
.wave { display: flex; align-items: center; gap: 5px; height: 46px; margin: 28px 0 22px; }
.wave i { display: block; width: 7px; background: var(--pink); border-radius: 4px; animation: pulse 1.4s ease-in-out infinite; }
.wave i:nth-child(3n) { background: var(--red); }
.wave i:nth-child(1) { height: 30%; animation-delay: -.2s; } .wave i:nth-child(2) { height: 65%; animation-delay: -.5s; }
.wave i:nth-child(3) { height: 45%; animation-delay: -.8s; } .wave i:nth-child(4) { height: 90%; animation-delay: -.1s; }
.wave i:nth-child(5) { height: 55%; animation-delay: -.6s; } .wave i:nth-child(6) { height: 100%; animation-delay: -.3s; }
.wave i:nth-child(7) { height: 40%; animation-delay: -.9s; } .wave i:nth-child(8) { height: 75%; animation-delay: -.4s; }
.wave i:nth-child(9) { height: 50%; animation-delay: -.7s; } .wave i:nth-child(10) { height: 85%; animation-delay: -.15s; }
.wave i:nth-child(11) { height: 35%; animation-delay: -.55s; } .wave i:nth-child(12) { height: 60%; animation-delay: -.35s; }
.wave i:nth-child(13) { height: 95%; animation-delay: -.85s; } .wave i:nth-child(14) { height: 45%; animation-delay: -.25s; }
.wave i:nth-child(15) { height: 70%; animation-delay: -.65s; } .wave i:nth-child(16) { height: 30%; animation-delay: -.05s; }
@keyframes pulse { 0%, 100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }
.pod-copy p { color: var(--cream); font-size: 20px; max-width: 32em; }
.pod-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pod-list li { background: rgba(247, 242, 238, .08); border: 1px solid var(--line); padding: 8px 14px; font-weight: 600; font-size: 15px; }
.pod-list li b { color: var(--pink); font-weight: 700; }
.pod-count { display: flex; gap: 32px; margin-top: 26px; flex-wrap: wrap; }
.pod-count div strong { display: block; font-family: var(--display); font-weight: 400; font-size: 54px; line-height: 1; }
.pod-count div span { color: var(--muted); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }
.pod-actions { display: flex; flex-wrap: wrap; gap: 16px 20px; margin-top: 32px; }
.pod-covers { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.pod-covers figure:nth-child(2) { margin-top: 56px; }
.pod-covers img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border: 3px solid var(--cream); box-shadow: 10px 10px 0 var(--red); }
.pod-covers figure:nth-child(2) img { box-shadow: 10px 10px 0 var(--pink); }
.pod-covers figcaption { margin-top: 14px; font-size: 13px; color: var(--muted); letter-spacing: .04em; }

/* Conteudo */
.pillars { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: auto auto; gap: 20px; }
.tile { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--ink-3); }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 22px 20px; background: linear-gradient(180deg, transparent, rgba(11, 7, 9, .94)); }
.tile .cap h3 { font-size: 34px; line-height: 1; }
.tile .cap p { margin-top: 8px; color: var(--muted); font-size: 16px; max-width: 26em; }
.tile-train { grid-row: span 2; min-height: 620px; }
.tile-train img { object-position: 50% 30%; }
.tile-humor { padding: 32px 28px; background: var(--pink); color: var(--ink); border: 0; display: flex; flex-direction: column; justify-content: center; }
.tile-humor .big { font-family: var(--display); font-size: clamp(76px, 11vw, 150px); line-height: .86; text-transform: uppercase; }
.tile-humor h3 { font-size: 32px; line-height: 1; margin-top: 8px; }
.tile-humor p { margin-top: 10px; font-weight: 500; font-size: 17px; max-width: 26em; }
.tile-event { min-height: 300px; }
.tile-event img { object-position: 50% 20%; }

/* Parceiros */
.coupons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.coupon { position: relative; border: 1px solid var(--line); background: var(--ink-3); padding: 26px 24px 24px; display: flex; flex-direction: column; }
.coupon::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: repeating-linear-gradient(90deg, var(--pink) 0 14px, transparent 14px 22px); }
.coupon .tag { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--pink); }
.coupon h3 { font-family: var(--body); text-transform: none; font-weight: 700; font-size: 26px; line-height: 1.15; margin-top: 10px; }
.coupon .where { color: var(--muted); font-size: 15px; margin-top: 6px; }
.coupon .benefit { margin-top: 16px; font-weight: 600; }
.code-row { display: flex; align-items: stretch; margin-top: auto; padding-top: 22px; gap: 10px; }
.code { flex: 1; display: flex; align-items: center; justify-content: center; border: 2px dashed var(--pink); font-family: var(--display); font-size: 30px; letter-spacing: .12em; padding: 6px 12px; color: var(--cream); }
.copy-btn { border: 2px solid var(--pink); background: var(--pink); color: var(--ink); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 13px; padding: 0 16px; min-height: 52px; cursor: pointer; border-radius: 2px; }
.copy-btn.done { background: var(--cream); border-color: var(--cream); }
.coupon .go { margin-top: 16px; font-size: 15px; }
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.brand-card { border: 1px solid var(--line); padding: 20px 22px; background: rgba(20, 11, 16, .6); }
.brand-card h3 { font-family: var(--body); text-transform: none; font-size: 21px; font-weight: 700; line-height: 1.2; }
.brand-card p { color: var(--muted); font-size: 15px; margin-top: 8px; }
.brand-card a { display: inline-block; margin-top: 12px; font-size: 14px; }
.brand-card.cta { border: 2px solid var(--pink); background: var(--pink); color: var(--ink); }
.brand-card.cta p { color: rgba(11, 7, 9, .82); }
.brand-card.cta a { color: var(--ink); }
.sub-title { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 38px; margin-top: 72px; letter-spacing: .01em; }
.note { margin-top: 20px; color: var(--muted); font-size: 15px; }

/* Marcas */
.cta-block { background: var(--pink); color: var(--ink); padding: 72px 0; border-block: 3px solid var(--ink); position: relative; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.cta-block h2 { font-size: clamp(48px, 7.4vw, 104px); line-height: .9; }
.cta-block h2 .hl-dark { display: inline-block; background: var(--ink); color: var(--pink); padding: 0 .16em; transform: rotate(-1.4deg); }
.cta-block .kicker { color: var(--ink); }
.cta-block p { font-size: 20px; margin-top: 20px; max-width: 30em; font-weight: 500; }
.cta-block .btn { background: var(--ink); color: var(--cream); border-color: var(--ink); box-shadow: 5px 5px 0 var(--red); }
.cta-block .btn-ghost { background: transparent; color: var(--ink); box-shadow: 5px 5px 0 rgba(11, 7, 9, .25); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px 20px; margin-top: 32px; }
.formats { display: grid; gap: 12px; }
.formats li { background: rgba(11, 7, 9, .92); color: var(--cream); padding: 16px 20px 16px 20px; border-left: 6px solid var(--red); font-weight: 600; font-size: 18px; }
.formats li span { display: block; color: var(--muted); font-weight: 400; font-size: 15px; margin-top: 2px; }

/* Rodape */
.footer { padding: 56px 0 40px; border-top: 1px solid var(--line); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.footer p { color: var(--muted); font-size: 15px; margin-top: 14px; max-width: 24em; }
.footer h3 { font-family: var(--body); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: var(--pink); font-weight: 700; margin-bottom: 14px; }
.footer li { margin-top: 8px; }
.footer li a { text-decoration: none; }
.footer li a:hover { text-decoration: underline; text-underline-offset: 4px; }
.copyright { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.redirect { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 24px; }
.redirect h1 { font-size: 72px; margin-bottom: 12px; }
.redirect p { color: var(--muted); margin-bottom: 24px; }

/* ===== Midia kit ===== */
.kit-cover { position: relative; overflow: hidden; padding: 56px 0 72px; background:
  radial-gradient(800px 520px at 90% 0%, rgba(240, 96, 154, .22), transparent 60%),
  radial-gradient(700px 500px at 0% 100%, rgba(176, 16, 24, .3), transparent 65%), var(--ink); }
.kit-cover-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.kit-cover h1 { font-size: clamp(84px, 13vw, 190px); line-height: .86; margin-top: 10px; }
.kit-tag { display: inline-block; margin-top: 18px; background: var(--ink); border: 2px solid var(--pink); padding: 8px 16px; font-weight: 700; letter-spacing: .22em; font-size: 13px; text-transform: uppercase; }
.kit-cover .lead { font-size: clamp(21px, 2.3vw, 27px); font-weight: 600; line-height: 1.28; margin-top: 22px; max-width: 24em; }
.kit-cover .date { margin-top: 14px; color: var(--muted); font-size: 15px; }
.kit-cover .photo { position: relative; max-width: 460px; justify-self: end; width: 100%; }
.kit-cover .photo::before { content: ''; position: absolute; inset: 20px -18px -20px 20px; background: var(--pink); transform: rotate(2deg); }
.kit-cover .photo img { position: relative; width: 100%; aspect-ratio: 9 / 10; object-fit: cover; object-position: 50% 22%; border: 4px solid var(--ink); }

.kit-section { padding: 72px 0; border-top: 1px solid var(--line); }
.kit-section h2 { font-size: clamp(40px, 6vw, 72px); line-height: .92; margin: 8px 0 28px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.prose p { font-size: 19px; margin-top: 16px; max-width: 34em; }
.prose p:first-child { margin-top: 0; }
.numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.number { border: 1px solid var(--line); border-top: 4px solid var(--pink); padding: 20px 22px; background: var(--ink-3); }
.number strong { display: block; font-family: var(--display); font-weight: 400; font-size: clamp(40px, 5vw, 64px); line-height: 1; text-transform: uppercase; }
.number span { display: block; color: var(--muted); font-size: 15px; margin-top: 8px; line-height: 1.35; }
.number.hot { background: var(--pink); color: var(--ink); border-top-color: var(--ink); }
.number.hot span { color: rgba(11, 7, 9, .82); }
.data-note { margin-top: 18px; color: var(--muted); font-size: 14px; max-width: 56em; }
.territories { display: flex; flex-wrap: wrap; gap: 12px; }
.territories li { border: 2px solid var(--cream); padding: 12px 20px; font-family: var(--display); text-transform: uppercase; font-size: 24px; letter-spacing: .04em; line-height: 1.1; }
.territories li:nth-child(3n+1) { background: var(--pink); color: var(--ink); border-color: var(--pink); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work { border: 1px solid var(--line); background: var(--ink-3); }
.work img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 22%; }
.work div { padding: 14px 16px 18px; }
.work h3 { font-family: var(--body); text-transform: none; font-size: 18px; font-weight: 700; line-height: 1.25; }
.work p { color: var(--muted); font-size: 14px; margin-top: 6px; line-height: 1.4; }
.brand-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.brand-table th, .brand-table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 16px; }
.brand-table th { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--pink); }
.brand-table td:first-child { font-weight: 700; }
.brand-table td:nth-child(3) { color: var(--muted); }
.kit-timeline .timeline { margin-top: 0; }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.format { border: 1px solid var(--line); padding: 22px; background: var(--ink-3); }
.format h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 30px; line-height: 1; letter-spacing: .01em; }
.format p { color: var(--muted); margin-top: 10px; font-size: 16px; }
.kit-pod { display: grid; grid-template-columns: .7fr 1.3fr; gap: 48px; align-items: center; }
.kit-pod img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; object-position: 50% 30%; max-width: 360px; border: 3px solid var(--cream); box-shadow: 10px 10px 0 var(--red); }

.proposal { background: var(--ink-2); border-block: 3px solid var(--pink); }
.proposal-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.steps { counter-reset: step; display: grid; gap: 14px; margin-top: 26px; }
.steps li { counter-increment: step; display: flex; gap: 16px; align-items: flex-start; }
.steps li::before { content: counter(step); flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--pink); color: var(--ink); font-family: var(--display); font-size: 22px; display: grid; place-items: center; }
.channel { margin-top: 28px; border: 2px solid var(--pink); padding: 20px 22px; background: var(--ink); }
.channel b { display: block; font-family: var(--display); font-weight: 400; font-size: 26px; text-transform: uppercase; letter-spacing: .03em; }
.channel a { color: var(--pink); font-weight: 700; overflow-wrap: anywhere; }
.channel p a { white-space: nowrap; overflow-wrap: normal; }
.channel p { color: var(--muted); font-size: 15px; margin-top: 6px; }
.form { border: 1px solid var(--line); background: var(--ink); padding: 28px; display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--pink); }
.field input, .field select, .field textarea { width: 100%; background: var(--ink-3); border: 2px solid rgba(247, 242, 238, .28); color: var(--cream); padding: 13px 14px; font: inherit; font-size: 17px; border-radius: 2px; min-height: 50px; }
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { color: var(--muted); font-size: 14px; }
#form-status { min-height: 24px; font-weight: 600; color: var(--pink); }
.toolbar { display: flex; flex-wrap: wrap; gap: 16px 20px; margin-top: 30px; }

/* Responsivo */
@media (max-width: 1080px) {
  .nav { position: absolute; left: 0; right: 0; top: 72px; background: rgba(11, 7, 9, .98); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 16px 22px; display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; width: 100%; font-size: 18px; }
  .menu-button { display: inline-block; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .coupons { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  body { font-size: 17px; }
  .section { padding: 72px 0; }
  .hero { padding: 36px 0 64px; }
  .hero-grid, .about-grid, .path-grid, .pod-grid, .cta-grid, .kit-cover-grid, .two-col, .proposal-grid, .kit-pod { grid-template-columns: 1fr; gap: 44px; }
  .hero-photo { justify-self: center; width: min(88%, 420px); order: -1; margin-top: 8px; }
  .hero h1 { font-size: clamp(96px, 31vw, 230px); }
  .stats, .numbers, .format-grid { grid-template-columns: 1fr; }
  .about-photo { margin: 0 auto 0 16px; max-width: 420px; }
  .path-photo { position: static; max-width: 420px; }
  .pillars { grid-template-columns: 1fr; }
  .tile-train { grid-row: auto; min-height: 520px; }
  .coupons, .brands-grid, .footer-grid { grid-template-columns: 1fr; }
  .kit-cover .photo { justify-self: center; max-width: 380px; }
  .kit-pod img { margin-inline: auto; }
  .field-row { grid-template-columns: 1fr; }
  .sticker { left: -8px; bottom: 20px; }
  .brand span { font-size: 24px; }
  .topbar .btn-small { display: none; }
}
@media (max-width: 520px) {
  .work-grid { grid-template-columns: 1fr; }
  .band p { font-size: 24px; }
  .pod-covers { gap: 14px; }
  .pod-covers figure:nth-child(2) { margin-top: 32px; }
  .brand-table th:nth-child(3), .brand-table td:nth-child(3) { display: none; }
  .form { padding: 20px; }
  .tl-date { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .band-track, .wave i { animation: none; }
  .btn { transition: none; }
}

/* Impressao do midia kit */
@page { size: A4; margin: 12mm; }
@media print {
  html, body { background: var(--ink) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; font-size: 14px; }
  .topbar, .toolbar, .form, .band, .no-print, .footer .copyright { display: none !important; }
  .kit-section, .kit-cover, .proposal { padding: 24px 0; break-inside: avoid; }
  .work, .number, .format, .tl-item, .channel { break-inside: avoid; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .proposal-grid { grid-template-columns: 1fr; }
  a { text-decoration: none; }
  .wave i { animation: none; }
}

/* Destaques de marca */
.feature { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: center; margin-top: 28px; border: 1px solid var(--line); background: var(--ink-3); padding: 20px; }
.feature img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 24%; border: 3px solid var(--cream); }
.feature h3.display { font-size: clamp(34px, 4.6vw, 56px); line-height: .95; margin: 8px 0 12px; }
.feature p:not(.kicker) { color: var(--muted); max-width: 36em; }
.feature .link { display: inline-block; margin-top: 14px; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature img { max-width: 300px; }
}
