/* ============================================================
   HOMEM GOL — Blog Esportivo · Editorial Premium
   Brand: forest green #15402A · deep navy #112037 · rich gold #C6A24E
   ============================================================ */

:root {
  /* brand */
  --green:      #15402A;
  --green-deep: #0E2E1C;
  --navy:       #112037;
  --navy-deep:  #0B1525;
  --gold:       #C6A24E;
  --gold-bright:#E2C982;
  --gold-deep:  #9C7B2E;

  /* light theme surfaces */
  --bg:        #FFFFFF;
  --bg-alt:    #F5F3ED;   /* light parchment */
  --bg-band:   #112037;   /* navy band */
  --surface:   #FFFFFF;
  --text:      #14171C;
  --text-sec:  #5C5F66;
  --text-mut:  #8A8D93;
  --border:    #E5E2D9;
  --border-str:#D2CDBF;
  --hairline:  #ECE9E1;

  /* badges */
  --badge-breaking: #B23A2E;
  --badge-trending: #B07E1E;
  --badge-exclusive:#1B335A;
  --badge-opiniao:  #5A5E57;
  --badge-patroc:   #8A7320;

  /* fonts (display swappable via tweaks) */
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;

  --container: 1400px;
  --hero-w: 1140px;       /* hero capped well under viewport (briefing: nunca 100vw) */
  --body-w: 720px;

  --shadow-sm: 0 1px 2px rgba(17,32,55,.06), 0 2px 8px rgba(17,32,55,.05);
  --shadow-md: 0 8px 30px rgba(17,32,55,.10);
}

[data-theme="dark"] {
  --bg:        #0C0F0E;
  --bg-alt:    #14181A;
  --bg-band:   #0A1322;
  --surface:   #13171A;
  --text:      #ECEAE1;
  --text-sec:  #A7AAA4;
  --text-mut:  #6E726C;
  --border:    #262B2C;
  --border-str:#33393A;
  --hairline:  #1E2324;
  --gold:      #D9BC72;
  --gold-bright:#EAD49A;
  --badge-breaking:#D0584B;
  --badge-trending:#D2A53F;
  --badge-exclusive:#5C7BB0;
  --badge-opiniao: #8B8F87;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .35s ease, color .35s ease;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* ---------- type helpers ---------- */
.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
[data-theme="dark"] .kicker { color: var(--gold); }
.serif { font-family: var(--font-display); }
.credit {
  font-size: 12px;
  font-style: italic;
  color: var(--text-mut);
  margin-top: 8px;
  letter-spacing: .01em;
}

/* ---------- badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-weight: 600; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px; color: #fff; line-height: 1;
}
.badge--breaking { background: var(--badge-breaking); }
.badge--trending { background: var(--badge-trending); }
.badge--exclusive{ background: var(--badge-exclusive); }
.badge--opiniao  { background: transparent; color: var(--badge-opiniao); border: 1px solid var(--border-str); }
.badge--patroc   { background: transparent; color: var(--badge-patroc); border: 1px solid var(--badge-patroc); }
.cat-tag {
  font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); white-space: nowrap;
}
[data-theme="dark"] .cat-tag { color: var(--gold); }

/* ============================================================
   HEADER
   ============================================================ */
.utility {
  border-bottom: 1px solid var(--hairline);
  font-size: 12px; color: var(--text-sec);
  background: var(--bg);
}
.utility .container { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.utility .u-left { display: flex; gap: 18px; align-items: center; letter-spacing: .02em; white-space: nowrap; }
.utility .u-right { display: flex; gap: 20px; align-items: center; }
.utility a { color: var(--text-sec); }
.utility a:hover { color: var(--green); }
.u-sep { width: 1px; height: 14px; background: var(--border); }

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.masthead::after {
  content: ""; display: block; height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 33%, var(--gold) 33%, var(--gold) 66%, var(--navy) 66%);
  opacity: .9;
}
.masthead .container { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }

/* brand lockup */
.brand { display: flex; align-items: center; gap: 13px; }
.brand .crest { width: 42px; height: 42px; flex: none; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wm-name {
  font-family: var(--font-display); font-weight: 700; font-size: 25px;
  letter-spacing: .01em; color: var(--text); white-space: nowrap;
}
.brand .wm-name b { color: var(--green); font-weight: 700; }
[data-theme="dark"] .brand .wm-name b { color: var(--gold); }
.brand .wm-sub {
  font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-top: 3px;
}
[data-theme="dark"] .brand .wm-sub { color: var(--gold); }

.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-weight: 500; font-size: 15px; color: var(--text);
  position: relative; padding: 6px 0; letter-spacing: .005em;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav a:hover { color: var(--green); }
[data-theme="dark"] .nav a:hover { color: var(--gold-bright); }
.nav a:hover::after { transform: scaleX(1); }

.head-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%;
  background: transparent; color: var(--text); display: grid; place-items: center;
  cursor: pointer; transition: all .18s ease;
}
.icon-btn:hover { border-color: var(--gold); color: var(--green); }
[data-theme="dark"] .icon-btn:hover { color: var(--gold-bright); }
.icon-btn svg { width: 18px; height: 18px; }
.btn-assine {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  background: var(--green); color: #fff; border: none; border-radius: 4px;
  padding: 11px 20px; cursor: pointer; letter-spacing: .02em; transition: background .18s ease;
}
.btn-assine:hover { background: var(--green-deep); }
[data-theme="dark"] .btn-assine { background: var(--gold); color: var(--navy-deep); }
[data-theme="dark"] .btn-assine:hover { background: var(--gold-bright); }

/* category subnav */
.subnav { border-bottom: 1px solid var(--border); background: var(--bg); }
.subnav .container { display: flex; gap: 26px; align-items: center; height: 46px; overflow-x: auto; scrollbar-width: none; }
.subnav .container::-webkit-scrollbar { display: none; }
.subnav a {
  font-size: 13.5px; font-weight: 500; color: var(--text-sec); white-space: nowrap;
  letter-spacing: .02em;
}
.subnav a:first-child { color: var(--green); font-weight: 600; }
[data-theme="dark"] .subnav a:first-child { color: var(--gold); }
.subnav a:hover { color: var(--text); }

/* ============================================================
   PLACEHOLDER IMAGERY (duotone, brand-tinted)
   ============================================================ */
.ph {
  position: relative; overflow: hidden; background: var(--navy);
  background-image:
    radial-gradient(120% 100% at 78% 18%, rgba(226,201,130,.20), transparent 55%),
    linear-gradient(155deg, var(--green) 0%, var(--green-deep) 42%, var(--navy) 100%);
}
.ph[data-tone="navy"] { background-image:
  radial-gradient(120% 100% at 22% 18%, rgba(226,201,130,.16), transparent 55%),
  linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 60%, #060B14 100%); }
.ph[data-tone="green"] { background-image:
  radial-gradient(110% 90% at 80% 80%, rgba(226,201,130,.18), transparent 55%),
  linear-gradient(150deg, var(--green) 0%, var(--green-deep) 70%, #081A10 100%); }
.ph[data-tone="split"] { background-image:
  radial-gradient(80% 120% at 50% 20%, rgba(226,201,130,.16), transparent 60%),
  linear-gradient(90deg, var(--green) 0%, var(--green) 49.5%, var(--navy) 50.5%, var(--navy) 100%); }
.ph::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/homem-gol-shield.png");
  background-repeat: no-repeat; background-position: center 42%; background-size: auto 78%;
  opacity: .10; mix-blend-mode: screen;
}
.ph .ph-tag {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.62); font-weight: 600;
  display: flex; align-items: center; gap: 7px;
}
.ph .ph-tag::before { content: ""; width: 18px; height: 1px; background: var(--gold); display: inline-block; }
.ph .ph-noise { position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 54px 0 46px; }
.hero-wrap { max-width: var(--hero-w); margin: 0 auto; }
.hero-text { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 48px; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-eyebrow .rule { height: 1px; width: 46px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 3.25vw, 47px); line-height: 1.08; letter-spacing: -.012em;
  margin: 0 0 20px; color: var(--text); text-wrap: balance;
}
.hero .lead {
  font-size: 20px; line-height: 1.55; color: var(--text-sec); font-weight: 400;
  max-width: 36ch; margin: 0 0 26px;
}
.hero-media { position: relative; }
.hero-media .ph { aspect-ratio: 4/5; border-radius: 6px; }
.hero-media .credit { text-align: right; }

/* byline */
.byline { display: flex; align-items: center; gap: 13px; }
.byline .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; overflow: hidden;
  border: 1.5px solid var(--gold); background: var(--bg-alt);
}
.byline .avatar.illustrated { background:
  radial-gradient(circle at 50% 38%, var(--gold-bright), var(--gold) 45%, var(--green) 100%); }
.byline .bl-meta { font-size: 13.5px; line-height: 1.4; }
.byline .bl-name { font-weight: 600; color: var(--text); }
.byline .bl-sub { color: var(--text-sec); font-size: 12.5px; }
.ai-seal {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; white-space: nowrap;
  font-size: 10.5px; letter-spacing: .04em; color: var(--text-mut);
  border: 1px solid var(--border); border-radius: 100px; padding: 2px 8px 2px 6px;
}
.ai-seal svg { width: 11px; height: 11px; color: var(--gold-deep); }
[data-theme="dark"] .ai-seal svg { color: var(--gold); }

/* hero variant: stacked (image on top, full hero width) */
.hero[data-variant="stacked"] .hero-grid { grid-template-columns: 1fr; gap: 30px; }
.hero[data-variant="stacked"] .hero-media { order: -1; }
.hero[data-variant="stacked"] .hero-media .ph { aspect-ratio: 21/9; }
.hero[data-variant="stacked"] .lead { max-width: 58ch; }
.hero[data-variant="stacked"] h1 { font-size: clamp(42px, 5vw, 66px); max-width: 18ch; }

/* hero variant: overlay (text over image) */
.hero[data-variant="overlay"] .hero-grid { grid-template-columns: 1fr; }
.hero[data-variant="overlay"] .hero-media { position: relative; }
.hero[data-variant="overlay"] .hero-media .ph { aspect-ratio: 16/8; border-radius: 8px; }
.hero[data-variant="overlay"] .hero-text {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 56px 48px 40px; color: #fff;
  background: linear-gradient(to top, rgba(8,16,12,.92) 8%, rgba(8,16,12,.55) 55%, transparent 100%);
}
.hero[data-variant="overlay"] .hero-grid { position: relative; }
.hero[data-variant="overlay"] h1 { color: #fff; max-width: 20ch; }
.hero[data-variant="overlay"] .lead { color: rgba(255,255,255,.82); max-width: 52ch; }
.hero[data-variant="overlay"] .bl-name { color: #fff; }
.hero[data-variant="overlay"] .bl-sub, .hero[data-variant="overlay"] .ai-seal { color: rgba(255,255,255,.7); }
.hero[data-variant="overlay"] .ai-seal { border-color: rgba(255,255,255,.28); }
.hero[data-variant="overlay"] .hero-media .credit { position: absolute; top: 12px; right: 14px; color: rgba(255,255,255,.6); }

/* ============================================================
   TRENDING BAR
   ============================================================ */
.trending { background: var(--bg-band); color: #fff; }
.trending .container { display: flex; align-items: stretch; gap: 0; height: 64px; }
.trending-label {
  display: flex; align-items: center; gap: 10px; flex: none; padding-right: 26px;
  border-right: 1px solid rgba(255,255,255,.14); margin-right: 4px;
}
.trending-label .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(198,162,78,.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity: 1; } 50%{ opacity: .4; } }
.trending-label span { font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); }
.trending-track { display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; flex: 1; }
.trending-track::-webkit-scrollbar { display: none; }
.trend-item {
  display: flex; align-items: baseline; gap: 11px; white-space: nowrap;
  padding: 0 26px; height: 64px; align-items: center;
  border-right: 1px solid rgba(255,255,255,.09); cursor: pointer; transition: background .18s ease;
}
.trend-item:hover { background: rgba(255,255,255,.05); }
.trend-item .num { font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 16px; }
.trend-item .t-cat { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-right: 2px; }
.trend-item .t-head { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.95); }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section { padding: 60px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 30px; border-bottom: 2px solid var(--text); padding-bottom: 12px; }
[data-theme="dark"] .section-head { border-color: var(--gold); }
.section-head h2 { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin: 0; letter-spacing: -.01em; white-space: nowrap; }
.section-head .see-all { font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: .02em; white-space: nowrap; flex: none; }
[data-theme="dark"] .section-head .see-all { color: var(--gold); }
.section-head .see-all:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FEATURED (2 wide columns)
   ============================================================ */
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.feat { display: flex; flex-direction: column; }
.feat .ph { aspect-ratio: 16/10; border-radius: 6px; margin-bottom: 18px; }
.feat .meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.feat .meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.feat h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1.14;
  letter-spacing: -.01em; margin: 0 0 12px; color: var(--text); text-wrap: balance;
}
.feat:hover h3 { color: var(--green); }
[data-theme="dark"] .feat:hover h3 { color: var(--gold-bright); }
.feat .dek { font-size: 16px; color: var(--text-sec); line-height: 1.55; margin: 0 0 16px; max-width: 46ch; }
.feat .feat-by { font-size: 13px; color: var(--text-mut); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.feat .feat-by b { color: var(--text-sec); font-weight: 600; white-space: nowrap; }
.dot-sep { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .5; }

/* ============================================================
   GRID + SIDEBAR
   ============================================================ */
.editorial { display: grid; grid-template-columns: 1fr 320px; gap: 56px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 26px; }

/* reusable card */
.card { display: flex; flex-direction: column; cursor: pointer; }
.card .ph { aspect-ratio: 16/9; border-radius: 5px; margin-bottom: 13px; }
.card .meta-row { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.card h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 18.5px; line-height: 1.22;
  margin: 0 0 9px; color: var(--text); letter-spacing: -.005em; text-wrap: pretty;
}
.card:hover h4 { color: var(--green); }
[data-theme="dark"] .card:hover h4 { color: var(--gold-bright); }
.card .card-by { font-size: 12.5px; color: var(--text-mut); display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.card .card-by b { color: var(--text-sec); font-weight: 600; white-space: nowrap; }

.card-divider { grid-column: 1 / -1; height: 1px; background: var(--hairline); margin: 4px 0; }

/* sidebar */
.sidebar { display: flex; flex-direction: column; gap: 40px; }
.side-block { }
.side-title { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--text); margin: 0 0 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border-str); display: flex; align-items: center; gap: 9px; }
.side-title::before { content: ""; width: 14px; height: 14px; background: var(--gold); border-radius: 2px; }
.rank-list { display: flex; flex-direction: column; }
.rank-item { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--hairline); cursor: pointer; }
.rank-item:last-child { border-bottom: none; }
.rank-item .rk-num { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--border-str); line-height: 1; flex: none; width: 30px; }
.rank-item:hover .rk-num { color: var(--gold); }
.rank-item .rk-body .rk-cat { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
[data-theme="dark"] .rank-item .rk-body .rk-cat { color: var(--gold); }
.rank-item .rk-body h5 { font-family: var(--font-display); font-weight: 600; font-size: 16px; line-height: 1.25; margin: 4px 0 0; color: var(--text); }
.rank-item:hover .rk-body h5 { color: var(--green); }
[data-theme="dark"] .rank-item:hover .rk-body h5 { color: var(--gold-bright); }

/* newsletter box */
.newsletter {
  background: var(--green); color: #fff; border-radius: 8px; padding: 28px 26px;
  position: relative; overflow: hidden;
}
.newsletter::before { content: ""; position: absolute; right: -30px; top: -30px; width: 140px; height: 140px;
  background: url("assets/homem-gol-shield.png") center/contain no-repeat; opacity: .12; }
.newsletter .nl-kicker { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); font-weight: 600; }
.newsletter h4 { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.15; margin: 10px 0 8px; }
.newsletter p { font-size: 13.5px; color: rgba(255,255,255,.8); margin: 0 0 16px; line-height: 1.5; }
.newsletter .nl-form { display: flex; flex-direction: column; gap: 9px; }
.newsletter input {
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #fff;
  border-radius: 4px; padding: 11px 13px; font-family: var(--font-body); font-size: 14px;
}
.newsletter input::placeholder { color: rgba(255,255,255,.55); }
.newsletter button {
  background: var(--gold); color: var(--navy-deep); border: none; border-radius: 4px;
  padding: 12px; font-family: var(--font-body); font-weight: 600; font-size: 14px; cursor: pointer;
  letter-spacing: .02em; transition: background .18s ease;
}
.newsletter button:hover { background: var(--gold-bright); }

/* ad slot (reserved, no layout shift) */
.ad-slot {
  border: 1px dashed var(--border-str); border-radius: 6px; min-height: 250px;
  display: grid; place-items: center; color: var(--text-mut); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; background: var(--bg-alt);
}

/* ============================================================
   COLUNAS / COLUNISTAS  (full-width band)
   ============================================================ */
.colunas { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
[data-theme="dark"] .colunas { background: var(--navy-deep); }
.colunas .section-head { border-color: var(--gold); }
.colunistas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.colunista {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; transition: transform .2s ease, box-shadow .2s ease;
}
[data-theme="dark"] .colunista { background: var(--surface); }
.colunista:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.colunista .col-head { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.colunista .col-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--text); line-height: 1.2; }
.colunista .col-avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: var(--bg-alt); border: 2px solid var(--gold); overflow: hidden;
}
.colunista .col-avatar.illustrated {
  background: radial-gradient(circle at 50% 35%, var(--gold-bright) 0%, var(--gold) 38%, var(--green) 78%, var(--green-deep) 100%);
  position: relative;
}
.colunista .col-avatar.illustrated::after {
  content: ""; position: absolute; inset: 0;
  background: url("assets/homem-gol-shield.png") center 60%/auto 90% no-repeat; opacity: .9; mix-blend-mode: luminosity;
}
.colunista .col-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--text); line-height: 1.2; margin-top: 1px; }
.colunista .col-role { font-size: 12px; color: var(--text-sec); margin-top: 2px; }
.colunista .col-latest { font-family: var(--font-display); font-size: 16px; line-height: 1.3; color: var(--text); margin: 0; }
.colunista:hover .col-latest { color: var(--green); }
[data-theme="dark"] .colunista:hover .col-latest { color: var(--gold-bright); }
.colunista .col-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 4px; }
.colunista .col-count { font-size: 11.5px; color: var(--text-mut); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .f-brand .crest { width: 132px; margin-bottom: 18px; }
.footer .f-brand p { font-size: 14px; line-height: 1.6; max-width: 34ch; color: rgba(255,255,255,.62); }
.footer-col h5 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.72); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; gap: 20px; flex-wrap: wrap; }
.footer-bottom .legal { font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer .ai-note {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.6); white-space: nowrap;
  border: 1px solid rgba(255,255,255,.18); border-radius: 100px; padding: 6px 14px;
}
.footer .ai-note svg { width: 13px; height: 13px; color: var(--gold); }
.footer .f-social { display: flex; gap: 10px; }
.footer .f-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; }
.footer .f-social a:hover { border-color: var(--gold); background: rgba(198,162,78,.12); }
.footer .f-social svg { width: 16px; height: 16px; }

/* ============================================================
   MOBILE CHROME — hidden on desktop by default
   ============================================================ */
.m-only { display: none !important; }
.hero-cta:hover { color: var(--gold); }
.hero-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  color: var(--gold); font-family: var(--font-body); font-weight: 600; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  white-space: nowrap;
}
.m-drawer, .m-drawer-scrim, .m-cta, .m-bottomnav { display: none; }

/* ============================================================
   TABLET
   ============================================================ */
@media (max-width: 1100px) {
  .editorial { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .colunistas-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   TABLET CHROME — collapse masthead to drawer ( ≤ 1100px )
   ============================================================ */
@media (max-width: 1100px) {
  html, body { overflow-x: hidden; }        /* clip off-canvas drawer */
  .nav { display: none; }
  .subnav { display: none; }
  .head-actions .btn-assine { display: none; }
  .m-only { display: grid !important; }

  /* ---------- drawer (available from tablet down) ---------- */
  .m-drawer-scrim {
    display: block; position: fixed; inset: 0; z-index: 90; background: rgba(7,14,10,.55);
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
    backdrop-filter: blur(2px);
  }
  .m-drawer-scrim.open { opacity: 1; visibility: visible; }
  .m-drawer {
    display: flex; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; z-index: 91;
    width: min(84vw, 360px); background: var(--bg); border-left: 1px solid var(--border);
    transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.1,1);
    box-shadow: -20px 0 50px rgba(7,14,10,.25);
  }
  .m-drawer.open { transform: translateX(0); }
  .m-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
  .m-drawer-head .crest { width: 32px; height: 32px; }
  .m-drawer-head .wm-name { font-size: 19px; }
  .m-drawer-head .wm-sub { font-size: 8px; letter-spacing: .26em; }
  .m-drawer-nav { display: flex; flex-direction: column; padding: 10px 0; overflow-y: auto; flex: 1; }
  .m-drawer-nav a {
    font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--text);
    padding: 13px 22px; border-bottom: 1px solid var(--hairline);
  }
  .m-drawer-nav a:first-child { color: var(--green); }
  [data-theme="dark"] .m-drawer-nav a:first-child { color: var(--gold); }
  .m-drawer-foot { padding: 18px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
  .m-drawer-foot .btn-assine { display: block; }
  .m-theme-row {
    display: flex; align-items: center; justify-content: space-between; background: none; border: none;
    font-family: var(--font-body); font-size: 15px; color: var(--text); cursor: pointer; padding: 4px 2px;
  }
  .m-switch { width: 44px; height: 26px; border-radius: 100px; background: var(--border-str); position: relative; transition: background .2s ease; }
  .m-switch span { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .2s ease; box-shadow: 0 1px 3px rgba(0,0,0,.3); }
  [data-theme="dark"] .m-switch { background: var(--gold); }
  [data-theme="dark"] .m-switch span { transform: translateX(18px); }
}

/* ============================================================
   MOBILE  ( ≤ 760px )
   ============================================================ */
@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 64px; }   /* room for bottom nav */
  .container { padding: 0 18px; }
  .section-head { flex-wrap: wrap; gap: 4px 12px; }

  /* --- header --- */
  .utility { display: none; }
  .masthead .container { height: 60px; gap: 12px; }
  .masthead { position: sticky; }
  .brand .crest { width: 34px; height: 34px; }
  .brand .wm-name { font-size: 21px; }
  .brand .wm-sub { font-size: 8px; letter-spacing: .28em; }
  .icon-btn { width: 38px; height: 38px; }
  .m-only { display: grid !important; }

  /* --- hero: fullscreen 100dvh --- */
  .hero { padding: 0; }
  .hero-wrap { max-width: 100%; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; position: relative; }
  .hero[data-variant] .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; position: relative; }
  .hero[data-variant] .hero-media .ph,
  .hero-media .ph { aspect-ratio: auto !important; height: calc(100dvh - 60px); min-height: 480px; border-radius: 0 !important; }
  .hero-media .credit { position: absolute; top: 10px; right: 14px; color: rgba(255,255,255,.6); }
  .hero-text {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
    padding: 80px 22px 30px; color: #fff;
    background: linear-gradient(to top, rgba(7,14,10,.95) 6%, rgba(7,14,10,.7) 45%, rgba(7,14,10,.1) 88%, transparent 100%);
  }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-eyebrow .kicker { color: var(--gold-bright); }
  .hero-eyebrow .rule { background: var(--gold); }
  .hero h1 { font-size: clamp(30px, 8.5vw, 40px); line-height: 1.08; margin-bottom: 14px; color: #fff; }
  .hero .lead { display: none; }
  .hero .byline { margin-bottom: 16px; }
  .hero .bl-name, .hero .bl-sub { color: rgba(255,255,255,.85); }
  .hero .bl-sub { display: block; margin-top: 2px; }
  .hero .ai-seal { color: rgba(255,255,255,.72); border-color: rgba(255,255,255,.3); }
  .hero-cta {
    display: inline-flex; align-items: center; gap: 9px; margin-top: 2px;
    background: var(--gold); color: var(--navy-deep); font-weight: 600; font-size: 15px;
    padding: 13px 22px; border-radius: 6px; letter-spacing: .01em;
  }
  .hero-cta svg { width: 18px; height: 18px; }
  /* neutralise desktop hero variants on mobile */
  .hero[data-variant="overlay"] .hero-text,
  .hero[data-variant="stacked"] .hero-text { position: absolute; }

  /* --- trending --- */
  .trending .container { height: 56px; padding: 0 0 0 18px; }
  .trending-label { padding-right: 16px; margin-right: 0; }
  .trending-label span { font-size: 11px; letter-spacing: .1em; }
  .trend-item { height: 56px; padding: 0 18px; }
  .trend-item .t-head { font-size: 13.5px; }

  /* --- sections --- */
  .section { padding: 38px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head h2 { font-size: 22px; }
  .section-head .see-all { font-size: 12px; }

  /* --- featured: stacked full-width --- */
  .featured-grid { grid-template-columns: 1fr; gap: 34px; }
  .feat .ph { aspect-ratio: 16/10; }
  .feat h3 { font-size: 24px; }
  .feat .dek { font-size: 15px; }

  /* --- editorial: single column, sidebar de-prioritised --- */
  .editorial { grid-template-columns: 1fr; gap: 38px; }
  .cards-grid { grid-template-columns: 1fr; gap: 22px; }
  .card {
    display: grid; grid-template-columns: 116px 1fr; column-gap: 14px; align-items: start;
  }
  .card > a:first-child { grid-row: 1 / span 4; grid-column: 1; }
  .card > a:first-child .ph { width: 116px; height: 116px; aspect-ratio: 1/1; margin-bottom: 0; border-radius: 5px; }
  .card .credit { display: none; }
  .card .meta-row { grid-column: 2; margin-bottom: 6px; }
  .card h4 { grid-column: 2; font-size: 16.5px; margin-bottom: 6px; }
  .card .card-by { grid-column: 2; }
  .card-divider { display: none; }

  /* sidebar: only Mais Lidas + newsletter, ads hidden */
  .sidebar { grid-template-columns: 1fr; gap: 34px; }
  .sidebar .ad-slot, .sidebar .side-block:has(.ad-slot) { display: none; }
  .rank-item .rk-num { font-size: 26px; }

  /* --- colunistas: horizontal scroll snap --- */
  .colunistas-grid {
    display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin: 0 -18px; padding: 4px 18px 8px; scrollbar-width: none;
  }
  .colunistas-grid::-webkit-scrollbar { display: none; }
  .colunista { flex: 0 0 78%; scroll-snap-align: start; }

  /* --- footer --- */
  .footer { padding: 44px 0 26px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer .f-brand { grid-column: 1 / -1; }
  .footer .f-brand .crest { width: 96px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* ---------- floating newsletter CTA ---------- */
  .m-cta {
    display: flex; align-items: center; gap: 12px; position: fixed; left: 12px; right: 12px; z-index: 80;
    bottom: calc(64px + 12px); padding: 12px 14px; background: var(--surface);
    border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-md);
    transform: translateY(0); transition: transform .35s ease, opacity .35s ease;
  }
  .m-cta.hidden { transform: translateY(160%); opacity: 0; pointer-events: none; }
  .m-cta-icon { width: 38px; height: 38px; flex: none; border-radius: 9px; background: var(--green); color: var(--gold-bright); display: grid; place-items: center; }
  .m-cta-icon svg { width: 20px; height: 20px; }
  .m-cta-text { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.2; }
  .m-cta-text b { font-size: 14px; color: var(--text); }
  .m-cta-text span { font-size: 12px; color: var(--text-sec); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .m-cta-btn { flex: none; background: var(--gold); color: var(--navy-deep); border: none; border-radius: 7px; padding: 9px 15px; font-family: var(--font-body); font-weight: 600; font-size: 13.5px; cursor: pointer; }
  .m-cta-x { flex: none; width: 26px; height: 26px; border: none; background: none; color: var(--text-mut); display: grid; place-items: center; cursor: pointer; }
  .m-cta-x svg { width: 15px; height: 15px; }

  /* ---------- fixed bottom nav ---------- */
  .m-bottomnav {
    display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
    background: color-mix(in srgb, var(--bg) 94%, transparent); backdrop-filter: saturate(140%) blur(12px);
    border-top: 1px solid var(--border); padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .m-bottomnav a {
    display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 9px 0 8px;
    font-size: 10.5px; font-weight: 500; color: var(--text-mut); letter-spacing: .01em;
  }
  .m-bottomnav a svg { width: 23px; height: 23px; }
  .m-bottomnav a.active { color: var(--green); }
  [data-theme="dark"] .m-bottomnav a.active { color: var(--gold); }
}

@media (max-width: 380px) {
  .card { grid-template-columns: 96px 1fr; }
  .card > a:first-child .ph { width: 96px; height: 96px; }
  .hero h1 { font-size: 27px; }
  .m-cta-text span { display: none; }
}
