/* PodUé v2: estilo global.
   Tema: página clara, com hero e rodapé escuros como "capas" e uma única faixa escura (podcast) no meio.
   Acento: o azul do logo. Raios: botões pílula, cartões e imagens 20px.
   Tipografia: Bricolage Grotesque (títulos) + Instrument Sans (texto). */

@font-face { font-family: "Bricolage Grotesque"; src: url("fonts/bricolage.woff2") format("woff2"); font-weight: 200 800; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("fonts/instrument.woff2") format("woff2"); font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("fonts/instrument-italic.woff2") format("woff2"); font-weight: 400 700; font-style: italic; font-display: swap; }

:root {
  --ink: #0d0f12;
  --ink-2: #14171c;
  --ink-3: #1d2128;
  --paper: #f4f5f7;
  --white: #fbfbfc;
  --text: #111418;
  --muted: #5b6470;
  --muted-2: #8b939f;
  --line: rgba(17, 20, 24, .1);
  --line-dark: rgba(255, 255, 255, .12);
  --blue: #1f8ede;
  --blue-deep: #1466ad;
  --blue-soft: #e3f0fb;
  --radius: 20px;
  --radius-sm: 12px;
  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --body: "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --gutter: clamp(20px, 4.5vw, 64px);
  --max: 1440px;
  --nav-h: 72px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p a, li a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; letter-spacing: -.02em; line-height: 1.05; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(38px, 6vw, 84px); font-weight: 700; letter-spacing: -.035em; }
h2 { font-size: clamp(32px, 4.4vw, 60px); letter-spacing: -.03em; }
h3 { font-size: clamp(22px, 2.2vw, 30px); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 999px; z-index: 100; }
.skip:focus { left: 16px; }
.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.js .reveal { opacity: 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px; border-radius: 999px;
  font: 600 15px/1 var(--body); letter-spacing: -.01em; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .5s var(--ease), background-color .3s, color .3s, border-color .3s;
}
.btn:active { transform: scale(.97); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--paper); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: rgba(17, 20, 24, .25); }
.btn-outline:hover { border-color: var(--ink); }
.btn svg { width: 16px; height: 16px; }
.arrow { display: inline-block; transition: transform .5s var(--ease); }
.btn:hover .arrow, .link-arrow:hover .arrow { transform: translateX(4px); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; }

/* ---------- Topo ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  color: #fff;
  transition: background-color .4s, color .4s, box-shadow .4s, transform .5s var(--ease);
}
.topbar::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(244, 245, 247, .82);
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
  opacity: 0; transition: opacity .4s;
}
.topbar.is-solid { color: var(--text); }
.topbar.is-solid::before { opacity: 1; }
.topbar.is-hidden { transform: translateY(-100%); }
body.menu-open .topbar { color: #fff; transform: none; }
body.menu-open .topbar::before { opacity: 0; }
.topbar-inner {
  width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; height: 100%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font: 700 20px/1 var(--display); letter-spacing: -.02em; }
.brand img { width: 40px; height: 40px; }
.nav { display: flex; gap: 4px; justify-content: center; }
.nav a { padding: 8px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500; opacity: .85; transition: opacity .3s, background-color .3s; }
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; background: rgba(127, 127, 127, .14); }
.topbar-right { display: flex; justify-content: flex-end; align-items: center; gap: 4px; }
.icon-btn { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 999px; opacity: .85; transition: opacity .3s, background-color .3s; }
.icon-btn:hover { opacity: 1; background: rgba(127, 127, 127, .14); }
.icon-btn svg { width: 19px; height: 19px; fill: currentColor; }
.menu-btn { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: inherit; cursor: pointer; border-radius: 999px; position: relative; }
.menu-btn span { position: absolute; left: 12px; right: 12px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .4s var(--ease), top .4s var(--ease); top: 17px; }
.menu-btn span + span { top: 25px; }
.menu-btn[aria-expanded="true"] span { top: 21px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span + span { transform: rotate(-45deg); }

.menu { position: fixed; inset: 0; z-index: 40; background: var(--ink); color: #fff; padding: calc(var(--nav-h) + 24px) var(--gutter) 40px; display: flex; flex-direction: column; justify-content: space-between; }
.menu[hidden] { display: none; }
.menu-links { display: flex; flex-direction: column; gap: 6px; }
.menu-links a { font: 600 clamp(34px, 8vw, 56px)/1.1 var(--display); letter-spacing: -.03em; padding: 6px 0; border-bottom: 1px solid var(--line-dark); }
.menu-foot { display: flex; gap: 24px; font-weight: 600; opacity: .8; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: var(--vh, 100dvh); display: flex; align-items: flex-end; color: #fff; background: var(--ink); overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: hero-zoom 22s var(--ease) forwards; }
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(13, 15, 18, .92) 0%, rgba(13, 15, 18, .45) 45%, rgba(13, 15, 18, .15) 100%),
    linear-gradient(to right, rgba(13, 15, 18, .5), transparent 60%);
}
.hero-content { position: relative; width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; padding: calc(var(--nav-h) + 24px) 0 clamp(40px, 7vh, 80px); }
.hero-title { max-width: 12ch; font-size: clamp(44px, 7.6vw, 108px); line-height: .96; }
@media (min-width: 1100px) { .hero-title { max-width: 16ch; font-size: clamp(64px, 6.6vw, 96px); } }
.hero-sub { max-width: 44ch; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; color: rgba(255, 255, 255, .82); margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.word > span { display: inline-block; will-change: transform; }

/* ---------- Manifesto ---------- */
.manifesto { padding: clamp(96px, 16vh, 180px) 0; }
.manifesto-text {
  width: min(100% - 2 * var(--gutter), 1180px); margin: 0 auto;
  font: 500 clamp(28px, 4.2vw, 62px)/1.15 var(--display); letter-spacing: -.03em; text-wrap: pretty;
}
.manifesto-text .w { color: var(--text); opacity: .16; transition: opacity .2s linear; }
.manifesto-text .w.on { opacity: 1; }

/* ---------- Destaque ---------- */
.destaque { padding: 0 0 clamp(64px, 10vh, 120px); }
.destaque-frame {
  display: block; position: relative; margin-inline: auto; width: min(100% - 2 * var(--gutter), var(--max));
  aspect-ratio: 16 / 9; max-height: calc(var(--vh, 100vh) * .92); min-height: 520px;
  border-radius: var(--radius); overflow: hidden; background: var(--ink); color: #fff;
  will-change: width, border-radius;
}
.destaque-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.destaque-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 15, 18, .9), rgba(13, 15, 18, .25) 55%, transparent); }
.destaque-copy { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: clamp(24px, 4vw, 56px); display: grid; gap: 14px; max-width: 760px; }
.kicker { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.destaque-copy h2 { font-size: clamp(28px, 3.6vw, 54px); }
.destaque-copy p { margin: 0; max-width: 56ch; color: rgba(255, 255, 255, .85); font-size: clamp(15px, 1.2vw, 18px); }
.destaque-copy .btn { justify-self: start; margin-top: 8px; }

/* ---------- Trilho de artigos ---------- */
.rail { position: relative; background: var(--white); scroll-margin-top: 0; }
.rail-pin { min-height: var(--vh, 100dvh); display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: clamp(48px, 8vh, 96px) 0; }
.rail-head { width: min(100% - 2 * var(--gutter), var(--max)); margin: 0 auto 36px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.rail-head p { margin: 0; color: var(--muted); max-width: 40ch; }
.rail-track { display: flex; gap: clamp(16px, 2vw, 28px); padding-inline: var(--gutter); width: max-content; will-change: transform; }
.rail-card { flex: 0 0 auto; width: clamp(270px, 26vw, 400px); }
.rail-card a { display: block; }
.rail-card .cover { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: #dfe2e6; }
.rail-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.rail-card:hover .cover img { transform: scale(1.05); }
.rail-card .meta { display: flex; gap: 10px; align-items: center; margin: 16px 0 8px; font-size: 13.5px; color: var(--muted); }
.rail-card .meta .tag { color: var(--blue-deep); font-weight: 600; }
.rail-card h3 { font-size: clamp(19px, 1.5vw, 23px); line-height: 1.2; }
.rail-card h3 a:hover { color: var(--blue-deep); }
.rail-more { flex: 0 0 auto; width: clamp(240px, 22vw, 320px); display: flex; align-items: center; }
.rail-more a { display: grid; gap: 12px; }
.rail-more strong { font: 600 clamp(22px, 2vw, 30px)/1.1 var(--display); letter-spacing: -.02em; }
.rail-more span { color: var(--muted); }
.rail-track::-webkit-scrollbar { display: none; }

/* ---------- Escolhas da semana ---------- */
.escolhas { padding: clamp(80px, 12vh, 140px) 0; }
.section-head { display: grid; gap: 14px; max-width: 60ch; margin-bottom: clamp(32px, 5vh, 56px); }
.section-head p { margin: 0; color: var(--muted); font-size: clamp(16px, 1.25vw, 19px); }
.picks { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.pick { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); display: grid; grid-template-rows: auto 1fr; transition: transform .7s var(--ease), box-shadow .7s var(--ease); }
.pick:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(17, 20, 24, .3); }
.pick-lg { grid-column: span 7; grid-template-rows: 1fr; grid-template-columns: 1.1fr 1fr; }
.pick-md { grid-column: span 5; }
.pick-sm { grid-column: span 6; }
.pick .foto { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #eef0f3; display: grid; place-items: center; }
.pick-lg .foto { aspect-ratio: auto; min-height: 380px; }
.pick-md { grid-template-rows: 1fr auto; }
.pick-md .foto { aspect-ratio: auto; min-height: 240px; }
.pick-sm { grid-template-rows: 1fr; grid-template-columns: .8fr 1.2fr; }
.pick-sm .foto { aspect-ratio: auto; min-height: 220px; }
.pick .foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pick .foto.produto-foto img { object-fit: contain; padding: 12%; mix-blend-mode: multiply; }
.pick:hover .foto img { transform: scale(1.04); }
.pick .tile { display: grid; align-content: end; gap: 6px; padding: 26px; background: var(--ink); color: #fff; place-items: start; }
.pick .tile::before { content: ""; position: absolute; inset: auto -30% -50% auto; width: 90%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(31, 142, 222, .55), transparent 70%); transition: transform 1.2s var(--ease); }
.pick:hover .tile::before { transform: scale(1.25); }
.pick-sm .tile { background: var(--blue-soft); color: var(--ink); }
.pick-sm .tile::before { background: radial-gradient(closest-side, rgba(31, 142, 222, .35), transparent 70%); }
.tile-label { position: relative; font-size: 13px; font-weight: 600; opacity: .7; }
.tile-big { position: relative; font: 600 clamp(24px, 2.2vw, 34px)/1.1 var(--display); letter-spacing: -.03em; text-wrap: balance; }
.pick .corpo { padding: 24px 26px 28px; display: grid; align-content: start; gap: 8px; }
.pick-lg .corpo { padding: 36px; align-content: center; }
.selo { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; background: var(--blue-soft); color: var(--blue-deep); font-size: 12.5px; font-weight: 600; width: max-content; }
.pick strong { font: 600 clamp(20px, 1.6vw, 26px)/1.15 var(--display); letter-spacing: -.02em; margin-top: 8px; text-wrap: balance; }
.pick-lg strong { font-size: clamp(26px, 2.4vw, 38px); }
.pick .marca { color: var(--muted); font-size: 14px; }
.pick p { margin: 6px 0 0; color: var(--text); font-size: 15.5px; line-height: 1.5; }
.pick .faixa { margin-top: 10px; font-weight: 600; font-size: 14px; color: var(--blue-deep); }

/* ---------- Faixa do podcast ---------- */
.band { background: var(--ink); color: #fff; padding: clamp(96px, 14vh, 160px) 0; overflow: hidden; position: relative; }
.band::before { content: ""; position: absolute; inset: auto -20% -40% auto; width: 60vw; height: 60vw; background: radial-gradient(closest-side, rgba(31, 142, 222, .28), transparent 70%); pointer-events: none; }
.band-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.band h2 { font-size: clamp(36px, 5.2vw, 76px); max-width: 12ch; }
.band p { font-size: clamp(17px, 1.3vw, 20px); color: rgba(255, 255, 255, .78); max-width: 50ch; margin: 24px 0 0; }
.band .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.band-art { position: relative; display: grid; place-items: center; }
.band-art img { width: min(100%, 420px); filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .5)); will-change: transform; }
.band-art::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(31, 142, 222, .35), transparent); filter: blur(30px); }

/* ---------- Painéis de editorias ---------- */
.editorias { padding: clamp(80px, 12vh, 140px) 0 0; background: var(--white); }
.editorias .section-head { width: min(100% - 2 * var(--gutter), var(--max)); max-width: none; margin-inline: auto; }
.editorias .section-head p { max-width: 60ch; }
.panels { display: flex; height: min(calc(var(--vh, 100vh) * .78), 720px); }
.panel { position: relative; flex: 1; overflow: hidden; color: #fff; isolation: isolate; transition: flex 1.1s var(--ease); }
.panel::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; transition: transform 1.4s var(--ease); z-index: -2; }
.panel::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(13, 15, 18, .85), rgba(13, 15, 18, .2) 50%, rgba(13, 15, 18, .1)); transition: opacity .8s; }
.panel:hover, .panel:focus-visible { flex: 2.2; outline: none; }
.panel:hover::before { transform: scale(1.06); }
.panels:hover .panel:not(:hover)::after { opacity: .9; }
.panel-body { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(20px, 2.6vw, 40px); display: grid; gap: 8px; }
.panel h3 { font-size: clamp(22px, 2.4vw, 36px); white-space: nowrap; }
.panel p { margin: 0; max-width: 34ch; color: rgba(255, 255, 255, .85); font-size: 15px; opacity: 0; transform: translateY(8px); transition: opacity .6s var(--ease) .1s, transform .8s var(--ease) .1s; }
.panel:hover p, .panel:focus-visible p { opacity: 1; transform: none; }
.panel-arrow { position: absolute; top: clamp(16px, 2vw, 28px); right: clamp(16px, 2vw, 28px); width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .4); display: grid; place-items: center; font-size: 18px; transition: background-color .4s, transform .6s var(--ease); }
.panel:hover .panel-arrow { background: #fff; color: var(--ink); transform: rotate(-45deg); }

/* ---------- Rodapé ---------- */
.footer { background: var(--ink); color: #fff; padding: clamp(64px, 10vh, 112px) 0 32px; overflow: hidden; }
.footer-inner { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer-brand p { color: rgba(255, 255, 255, .7); max-width: 38ch; margin: 18px 0 0; font-size: 15.5px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer h4 { font: 600 14px/1 var(--body); letter-spacing: .02em; color: rgba(255, 255, 255, .55); margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer li a { font-size: 15.5px; color: rgba(255, 255, 255, .9); text-decoration: none; }
.footer li a:hover { color: var(--blue); }
.footer-mark { font: 700 clamp(96px, 22vw, 340px)/.9 var(--display); letter-spacing: -.05em; color: rgba(255, 255, 255, .06); margin: 40px 0 0; text-align: center; user-select: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: 13px; color: rgba(255, 255, 255, .55); }

/* ---------- Cabeçalho de página (editoria, páginas simples) ---------- */
.page-head { background: var(--ink); color: #fff; padding: calc(var(--nav-h) + clamp(56px, 10vh, 120px)) 0 clamp(48px, 8vh, 96px); position: relative; overflow: hidden; isolation: isolate; }
.page-head-media { position: absolute; inset: 0; z-index: -1; }
.page-head-media img { width: 100%; height: 100%; object-fit: cover; opacity: .75; will-change: transform; }
.page-head-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--ink) 0%, rgba(13, 15, 18, .5) 55%, rgba(13, 15, 18, .3)); }
.page-head.com-media { min-height: calc(var(--vh, 100vh) * .55); display: flex; align-items: flex-end; }
.page-head.com-media .wrap { width: min(100% - 2 * var(--gutter), var(--max)); }
.lista .post .tag { display: none; }
.page-head::before { content: ""; position: absolute; inset: auto -10% -60% auto; width: 50vw; height: 50vw; background: radial-gradient(closest-side, rgba(31, 142, 222, .22), transparent 70%); pointer-events: none; z-index: -1; }
.page-head .wrap { display: grid; gap: 18px; position: relative; }
.page-head .mascote { position: absolute; right: 0; bottom: -20px; width: clamp(120px, 16vw, 220px); filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .5)); }
.page-head h1 { max-width: 16ch; }
.page-head p { margin: 0; max-width: 52ch; font-size: clamp(17px, 1.4vw, 21px); color: rgba(255, 255, 255, .8); }
.breadcrumb { font-size: 14px; color: rgba(255, 255, 255, .7); display: flex; gap: 8px; }
.breadcrumb a:hover { color: #fff; }

/* Lista de artigos da editoria: primeiro grande, restante em grade */
.lista { padding: clamp(56px, 8vh, 96px) 0 clamp(80px, 12vh, 140px); }
.lista-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 36px); }
.post { display: grid; gap: 0; }
.post .cover { aspect-ratio: 3 / 2; border-radius: var(--radius); overflow: hidden; background: #dfe2e6; }
.post .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.post:hover .cover img { transform: scale(1.04); }
.post .meta { display: flex; gap: 10px; margin: 18px 0 8px; font-size: 13.5px; color: var(--muted); }
.post .meta .tag { color: var(--blue-deep); font-weight: 600; }
.post h3 { font-size: clamp(22px, 2vw, 30px); line-height: 1.15; }
.post h3 a:hover { color: var(--blue-deep); }
.post p { margin: 10px 0 0; color: var(--muted); max-width: 60ch; }
.post-lg { grid-column: 1 / -1; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 3vw, 48px); align-items: end; }
.post-lg .cover { aspect-ratio: 16 / 10; }
.post-lg h3 { font-size: clamp(28px, 3vw, 46px); }
.post-lg .meta { margin-top: 0; }
.vazio { color: var(--muted); font-size: 19px; }

/* ---------- Artigo ---------- */
.artigo-head { position: relative; min-height: calc(var(--vh, 100vh) * .78); display: flex; align-items: flex-end; color: #fff; background: var(--ink); overflow: hidden; isolation: isolate; }
.artigo-head .page-head-media img { opacity: 1; }
.artigo-head .page-head-media::after { background: linear-gradient(to top, rgba(13, 15, 18, .95) 0%, rgba(13, 15, 18, .5) 50%, rgba(13, 15, 18, .2)); }
.artigo-head .wrap { position: relative; padding: calc(var(--nav-h) + 40px) 0 clamp(40px, 6vh, 64px); display: grid; gap: 18px; }
.artigo-head h1 { max-width: 18ch; font-size: clamp(34px, 5vw, 72px); }
.artigo-head .lead { margin: 0; max-width: 60ch; font-size: clamp(17px, 1.35vw, 21px); color: rgba(255, 255, 255, .82); }
.byline { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255, 255, 255, .8); }
.byline img { width: 36px; height: 36px; border-radius: 50%; }
.byline b { color: #fff; }
.legenda { width: min(100% - 2 * var(--gutter), var(--max)); margin: 12px auto 0; font-size: 13.5px; color: var(--muted); }

.artigo-layout { display: grid; grid-template-columns: 280px minmax(0, 720px); gap: clamp(40px, 6vw, 96px); justify-content: center; padding: clamp(48px, 7vh, 88px) 0 clamp(80px, 12vh, 140px); }
.artigo-lateral { position: sticky; top: calc(var(--nav-h) + 24px); align-self: start; display: grid; gap: 28px; }
.indice strong { display: block; font: 600 13px/1 var(--body); letter-spacing: .02em; color: var(--muted); margin-bottom: 14px; }
.indice ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.indice a { display: block; padding: 7px 12px; border-left: 2px solid var(--line); font-size: 14.5px; color: var(--muted); text-decoration: none; transition: color .3s, border-color .3s; }
.indice a:hover, .indice a.on { color: var(--text); border-color: var(--blue); }
.compartilhar { display: grid; gap: 8px; }
.compartilhar span { font: 600 13px/1 var(--body); color: var(--muted); margin-bottom: 6px; }
.compartilhar .btn { height: 44px; justify-content: flex-start; font-size: 14px; }
.compartilhar .btn svg { width: 16px; height: 16px; fill: currentColor; }

.prosa { font-size: 18px; line-height: 1.7; }
.prosa > p, .prosa > ul, .prosa > ol { margin: 0 0 1.4em; }
.prosa h2 { font-size: clamp(26px, 2.6vw, 38px); margin: 2.2em 0 .7em; scroll-margin-top: calc(var(--nav-h) + 24px); }
.prosa h3 { font-size: clamp(21px, 1.8vw, 26px); margin: 1.8em 0 .6em; }
.prosa ul, .prosa ol { padding-left: 1.3em; }
.prosa li { margin-bottom: .4em; }
.prosa li::marker { color: var(--blue); }
.prosa img { border-radius: var(--radius); }
.prosa blockquote { margin: 2em 0; padding-left: 20px; border-left: 3px solid var(--blue); font-size: 1.1em; color: var(--text); }
.prosa table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prosa th, .prosa td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.prosa thead th { font-family: var(--display); font-weight: 600; }
.table-wrap { overflow-x: auto; margin: 2em 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.table-wrap table { margin: 0; }
.comparativo th { font-weight: 600; }
.comparativo thead th { background: var(--paper); }
.comparativo thead th a { text-decoration: none; display: block; margin-top: 8px; color: var(--text); }
.comparativo thead th small { display: block; font-weight: 400; color: var(--muted); margin-top: 2px; }
.comparativo tbody th { color: var(--muted); font-weight: 500; white-space: nowrap; }
.comparativo tr:last-child td, .comparativo tr:last-child th { border-bottom: 0; }
.comparativo .acoes .btn { height: 40px; padding-inline: 16px; font-size: 13.5px; }

.resposta-rapida { background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); margin: 0 0 2.5em; }
.resposta-rapida h2 { font-size: 15px; letter-spacing: .02em; margin: 0 0 14px; font-family: var(--body); font-weight: 600; color: var(--blue); }
.resposta-rapida > p { margin: 0; font-size: clamp(17px, 1.3vw, 20px); line-height: 1.55; font-family: var(--display); font-weight: 500; letter-spacing: -.01em; }
.picks-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.picks-list li { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 12px 14px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, .06); }
.picks-list .selo { background: rgba(31, 142, 222, .2); color: #8fc7f5; }
.picks-list a { text-decoration: none; color: #fff; }
.picks-list .marca { display: block; color: rgba(255, 255, 255, .6); font-size: 14px; }
.picks-list .faixa { display: block; font-size: 13px; color: rgba(255, 255, 255, .6); }
.picks-list .btn { height: 40px; padding-inline: 16px; font-size: 13.5px; }

.produto { display: grid; grid-template-columns: 220px 1fr; gap: 28px; margin: 2.5em 0; padding: clamp(20px, 2.5vw, 32px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); scroll-margin-top: calc(var(--nav-h) + 24px); }
.produto:not(.com-foto) { grid-template-columns: 1fr; }
.produto-foto { display: grid; place-items: center; background: var(--paper); border-radius: var(--radius-sm); padding: 16px; align-self: start; }
.produto-foto img { max-height: 220px; width: auto; mix-blend-mode: multiply; }
.produto-corpo { display: grid; gap: 10px; align-content: start; }
.produto-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.produto h3 { margin: 4px 0 0; font-size: clamp(22px, 1.9vw, 28px); }
.produto .marca { color: var(--muted); font-size: 15px; }
.nota { font: 600 14px/1 var(--body); color: var(--blue-deep); background: var(--blue-soft); padding: 8px 12px; border-radius: 999px; white-space: nowrap; }
.produto .porque { margin: 0; font-size: 17px; }
.produto .faixa { margin: 0; font-size: 14.5px; color: var(--muted); }
.pros-contras { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.pros-contras h4 { font: 600 13px/1 var(--body); color: var(--muted); margin: 0 0 10px; }
.pros-contras ul { margin: 0; padding-left: 1.1em; font-size: 15px; }
.pros-contras li { margin-bottom: 4px; }
.produto-acoes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.produto-acoes .btn { height: 46px; }

.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { cursor: pointer; padding: 16px 0; font: 600 18px/1.3 var(--display); letter-spacing: -.01em; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 400; font-size: 22px; line-height: 1; color: var(--blue); flex: 0 0 auto; transition: transform .4s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; color: var(--text); font-size: 16.5px; }

.fontes ol { padding-left: 1.3em; font-size: 15.5px; }
.fontes .marca { color: var(--muted); font-size: 14px; }
.aviso-afiliado { font-size: 14.5px; color: var(--muted); padding: 16px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.confianca { display: grid; grid-template-columns: 48px 1fr; gap: 18px; margin-top: 2em; padding: 24px; border-radius: var(--radius); background: var(--blue-soft); }
.confianca strong { display: block; font: 600 17px/1.2 var(--display); margin-bottom: 6px; }
.confianca p { margin: 0; font-size: 15px; }
.confianca .atualizado { display: block; margin-top: 10px; font-size: 13.5px; color: var(--muted); }

.related { padding: clamp(64px, 10vh, 120px) 0; background: var(--white); border-top: 1px solid var(--line); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ---------- Páginas simples ---------- */
.pagina { padding: clamp(48px, 7vh, 88px) 0 clamp(80px, 12vh, 140px); }
.pagina .prosa { max-width: 720px; }
.notfound { min-height: var(--vh, 100dvh); display: grid; place-items: center; text-align: center; background: var(--ink); color: #fff; padding: 120px var(--gutter) 60px; }
.notfound img { width: 160px; margin: 0 auto 24px; }
.notfound p { color: rgba(255, 255, 255, .75); max-width: 40ch; margin: 16px auto 28px; }

/* ---------- Responsivo ---------- */
@media (max-width: 1100px) {
  .topbar-inner { grid-template-columns: auto 1fr; }
  .nav { display: none; }
  .menu-btn { display: block; }
  .artigo-layout { grid-template-columns: minmax(0, 720px); }
  .artigo-lateral { position: static; }
  .indice { display: none; }
  .compartilhar { display: flex; flex-wrap: wrap; align-items: center; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .band-grid { grid-template-columns: 1fr; }
  .band-art img { width: min(70%, 320px); }
  .picks { grid-template-columns: 1fr 1fr; }
  .pick-lg { grid-column: 1 / -1; grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .pick-lg .foto { min-height: 0; aspect-ratio: 16 / 10; }
  .pick-md, .pick-sm { grid-column: span 1; }
  .pick-sm { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .pick-sm .foto { min-height: 0; aspect-ratio: 16 / 9; }
  .lista-grid { grid-template-columns: 1fr; }
  .post-lg { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .produto { grid-template-columns: 1fr; }
  .produto-foto img { max-height: 180px; }
  .pros-contras { grid-template-columns: 1fr; }
  .panels { flex-direction: column; height: auto; }
  .panel { min-height: 200px; flex: none; }
  .panel:hover { flex: none; }
  .panel p { opacity: 1; transform: none; }
  .panel h3 { white-space: normal; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .btn { height: 48px; padding: 0 22px; font-size: 14.5px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .picks { grid-template-columns: 1fr; }
  .destaque-frame { min-height: 0; aspect-ratio: 4 / 5; }
  .rail-pin { min-height: 0; }
  .rail-track { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scrollbar-width: none; }
  .rail-card { scroll-snap-align: start; width: 78vw; }
  .rail-more { width: 60vw; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .picks-list li { grid-template-columns: 1fr; }
  .artigo-head { min-height: calc(var(--vh, 100vh) * .62); }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media video, .hero-media img { animation: none; transform: none; }
  .js .reveal { opacity: 1; }
  .manifesto-text .w { opacity: 1; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
