/* =====================================================================
   Casal Libido — site.css
   Editorial noturno premium: base #111111, destaque #fcce29.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #111111;
  --bg-2: #161616;
  --bg-3: #1b1b1b;
  --bg-4: #222222;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .16);
  --text: #f2f0eb;
  --text-2: #bdb9b0;
  --muted: #837f77;
  --accent: #fcce29;
  --accent-2: #ffe27a;
  --accent-ink: #111111;
  --accent-dim: rgba(252, 206, 41, .12);
  --accent-glow: rgba(252, 206, 41, .28);
  --danger: #ff6b6b;
  --ok: #7bd88f;

  --font-display: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  --container: 1200px;
  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin: 0; }
p { margin: 0 0 1em; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.ic { width: 1.1em; height: 1.1em; flex: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Grão sutil por cima de tudo */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

/* ---------- Layout ---------- */
.container { width: min(var(--container), calc(100% - 2rem)); margin-inline: auto; }
.container--narrow { width: min(820px, calc(100% - 2rem)); margin-inline: auto; }
.container--wide { width: min(1400px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 112px); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--alt { background: var(--bg-2); }
.section + .section--line { border-top: 1px solid var(--line); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 4vw, 48px); flex-wrap: wrap; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 48px); max-width: 16ch; }
.section-head p { color: var(--text-2); max-width: 52ch; margin: 10px 0 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow--plain::before { display: none; }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
.accent { color: var(--accent); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .01em; line-height: 1;
  border: 1px solid transparent; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 30px -10px var(--accent-glow); }
.btn--primary:hover { background: var(--accent-2); box-shadow: 0 16px 40px -10px var(--accent-glow); }
.btn--ghost { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--dark { background: var(--bg-4); color: var(--text); }
.btn--dark:hover { background: #2b2b2b; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn .ic { width: 18px; height: 18px; }
.btn--icon { padding: 0; width: 44px; height: 44px; border-radius: 50%; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; color: var(--accent); }
.link-arrow .ic { transition: transform .25s var(--ease); }
.link-arrow:hover .ic { transform: translateX(4px); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--accent-dim); color: var(--accent); border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { background: var(--accent); color: var(--accent-ink); }
.chip--outline { background: transparent; border-color: var(--line-2); color: var(--text-2); }
.chip--outline:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.chip--solid { background: var(--accent); color: var(--accent-ink); }
.chip--serif { font-family: var(--font-serif); font-style: italic; text-transform: none; letter-spacing: 0; font-size: 15px; font-weight: 400; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled, .header.is-solid { background: rgba(17, 17, 17, .82); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__icon { height: 40px; width: auto; transition: transform .4s var(--ease); }
.logo:hover .logo__icon { transform: rotate(-8deg); }
.logo__word { height: 22px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 500; font-size: 14.5px; color: var(--text-2);
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a.is-active { color: var(--text); background: rgba(255,255,255,.05); }
.nav a.is-active { color: var(--accent); }
.header__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-2); border: 1px solid transparent; transition: color .2s, border-color .2s, background .2s;
}
.icon-btn:hover { color: var(--text); border-color: var(--line-2); background: rgba(255,255,255,.04); }
.icon-btn .ic { width: 20px; height: 20px; }
.header .btn--primary { padding: 11px 18px; font-size: 13.5px; }
.nav-toggle { display: none; }
@media (max-width: 1020px) {
  .nav, .header .btn--hot { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Menu mobile */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: rgba(17,17,17,.96); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; padding: 24px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s var(--ease);
}
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; height: calc(var(--header-h) - 48px); }
.mobile-menu nav { display: flex; flex-direction: column; margin-top: 32px; gap: 4px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: clamp(30px, 8vw, 40px); font-weight: 700; padding: 8px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; letter-spacing: -.02em; }
.mobile-menu nav a .ic { color: var(--accent); width: 26px; height: 26px; }
.mobile-menu__bottom { margin-top: auto; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu__social { display: flex; gap: 8px; }

/* Busca (overlay) */
.search-overlay {
  position: fixed; inset: 0; z-index: 210; background: rgba(10,10,10,.9); backdrop-filter: blur(12px);
  display: grid; place-items: start center; padding: min(14vh, 140px) 16px 40px; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-box { width: min(760px, 100%); }
.search-box form { position: relative; }
.search-box input {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px 64px 22px 60px;
  font-size: clamp(18px, 3vw, 24px); font-family: var(--font-display); color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s;
}
.search-box input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim); }
.search-box input::placeholder { color: var(--muted); }
.search-box .search-ico { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--accent); width: 24px; height: 24px; }
.search-box .search-close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }
.search-results { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.search-results a { display: flex; gap: 14px; align-items: center; padding: 10px; border-radius: var(--radius-sm); background: rgba(255,255,255,.03); border: 1px solid transparent; transition: border-color .2s, background .2s; }
.search-results a:hover { border-color: var(--line-2); background: rgba(255,255,255,.06); }
.search-results img { width: 84px; height: 56px; object-fit: cover; border-radius: 8px; flex: none; background: var(--bg-4); }
.search-results strong { font-family: var(--font-display); font-weight: 600; display: block; line-height: 1.3; }
.search-results small { color: var(--muted); font-size: 12.5px; }
.search-hint { color: var(--muted); font-size: 13px; margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: calc(100svh - 0px); display: flex; align-items: center; padding-top: calc(var(--header-h) + 32px); padding-bottom: 64px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; opacity: .55; filter: saturate(1.05) contrast(1.05); transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 20% 40%, rgba(17,17,17,.2) 0%, rgba(17,17,17,.75) 60%, rgba(17,17,17,1) 100%),
    linear-gradient(180deg, rgba(17,17,17,.55) 0%, rgba(17,17,17,.1) 40%, rgba(17,17,17,1) 100%);
}
.hero__glow { position: absolute; z-index: 0; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; right: -20vw; top: -10vw; border-radius: 50%; background: radial-gradient(circle, rgba(252,206,41,.18) 0%, rgba(252,206,41,0) 60%); pointer-events: none; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: end; }
.hero__kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border-radius: var(--radius-pill); border: 1px solid var(--line-2); background: rgba(17,17,17,.5); backdrop-filter: blur(8px); font-size: 13px; color: var(--text-2); margin-bottom: 26px; }
.hero__kicker .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: var(--accent-ink); }
.hero__kicker .dot .ic { width: 15px; height: 15px; }
.hero h1 { font-size: clamp(44px, 7.4vw, 96px); font-weight: 800; line-height: .98; letter-spacing: -.035em; max-width: 12ch; }
.hero h1 .serif { font-weight: 400; color: var(--accent); font-size: 1.02em; }
.hero__lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--text-2); max-width: 52ch; margin: 26px 0 34px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__aside { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.stats { display: grid; grid-template-columns: repeat(3, auto); gap: 10px; }
.stat { padding: 18px 20px; border-radius: var(--radius); background: rgba(22,22,22,.7); border: 1px solid var(--line); backdrop-filter: blur(10px); min-width: 120px; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); font-weight: 800; letter-spacing: -.03em; color: var(--accent); line-height: 1; }
.stat span { display: block; font-size: 12.5px; color: var(--text-2); margin-top: 6px; letter-spacing: .02em; }
.hero__event { display: flex; gap: 14px; align-items: center; padding: 12px 16px 12px 12px; border-radius: var(--radius); background: rgba(22,22,22,.7); border: 1px solid var(--line); backdrop-filter: blur(10px); max-width: 420px; transition: border-color .25s, transform .25s var(--ease); }
.hero__event:hover { border-color: var(--accent); transform: translateY(-2px); }
.hero__event img { width: 64px; height: 84px; object-fit: cover; border-radius: 10px; flex: none; }
.hero__event .when { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.hero__event .title { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.25; margin: 4px 0 2px; }
.hero__event .meta { color: var(--muted); font-size: 13px; }
.hero__scroll { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 1; color: var(--muted); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll::after { content: ""; width: 1px; height: 36px; background: linear-gradient(var(--accent), transparent); animation: scrollHint 1.8s infinite; }
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 48px); }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__aside { align-items: stretch; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat { min-width: 0; padding: 14px; }
  .hero__event { max-width: none; }
  .hero__scroll { display: none; }
  .hero__bg img { object-position: 60% 20%; opacity: .4; }
}

/* ---------- Marquee de parceiros ---------- */
.marquee { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 22px 0; position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee__track { display: flex; gap: 72px; width: max-content; animation: marquee 38s linear infinite; align-items: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__label { font-family: var(--font-display); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); white-space: nowrap; padding-right: 8px; }
.marquee__item { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }

/* Logo mascarado: usa o PNG como forma e pinta com a cor desejada */
.logo-mask {
  display: inline-block; height: 34px; aspect-ratio: var(--ar, 3 / 1);
  background-color: var(--muted);
  -webkit-mask: var(--logo) center / contain no-repeat; mask: var(--logo) center / contain no-repeat;
  transition: background-color .3s, transform .3s var(--ease);
}
.marquee__item:hover .logo-mask, .partner-card:hover .logo-mask { background-color: var(--accent); }

/* ---------- Cards de post ---------- */
.post-card { position: relative; display: flex; flex-direction: column; gap: 14px; }
.post-card__media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 16 / 10; background: var(--bg-3); isolation: isolate; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .4s; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(17,17,17,.55)); opacity: .9; }
.post-card__cat { position: absolute; top: 14px; left: 14px; z-index: 2; }
.post-card__body { display: flex; flex-direction: column; gap: 8px; }
.post-card__meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12.5px; letter-spacing: .02em; }
.post-card__meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.post-card h3 { font-size: 21px; font-weight: 600; line-height: 1.25; letter-spacing: -.015em; }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card h3 a { transition: color .2s; }
.post-card:hover h3 a { color: var(--accent); }
.post-card p { color: var(--text-2); font-size: 14.5px; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Card grande (destaque) */
.post-card--hero { min-height: 520px; border-radius: var(--radius); overflow: hidden; justify-content: flex-end; gap: 0; }
.post-card--hero .post-card__media { position: absolute; inset: 0; border-radius: 0; aspect-ratio: auto; }
.post-card--hero .post-card__media::after { background: linear-gradient(180deg, rgba(17,17,17,.05) 30%, rgba(17,17,17,.92) 100%); opacity: 1; }
.post-card--hero .post-card__body { position: relative; z-index: 2; padding: clamp(22px, 3vw, 40px); }
.post-card--hero h3 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; max-width: 22ch; }
.post-card--hero p { -webkit-line-clamp: 3; max-width: 60ch; font-size: 15.5px; }
.post-card--hero .post-card__cat { position: static; margin-bottom: 12px; align-self: flex-start; }

/* Card em linha (lista lateral) */
.post-row { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: center; position: relative; padding: 12px 0; border-bottom: 1px solid var(--line); }
.post-row:last-child { border-bottom: 0; }
.post-row img { width: 96px; height: 68px; object-fit: cover; border-radius: 10px; background: var(--bg-3); transition: transform .4s var(--ease); }
.post-row:hover img { transform: scale(1.04); }
.post-row h4 { font-size: 15px; font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
.post-row h4 a::after { content: ""; position: absolute; inset: 0; }
.post-row:hover h4 a { color: var(--accent); }
.post-row small { color: var(--muted); font-size: 12px; display: block; margin-top: 4px; }
.post-row__num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--accent); opacity: .6; width: 40px; text-align: center; letter-spacing: -.04em; }
.post-row--num { grid-template-columns: 40px 1fr; }

/* Conto (serif, atmosférico) */
.conto-card { position: relative; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(160deg, var(--bg-3), var(--bg-2)); display: flex; flex-direction: column; gap: 12px; overflow: hidden; transition: border-color .3s, transform .3s var(--ease); min-height: 260px; }
.conto-card::before { content: "“"; position: absolute; right: 14px; top: -20px; font-family: var(--font-serif); font-size: 160px; line-height: 1; color: var(--accent); opacity: .12; pointer-events: none; }
.conto-card:hover { border-color: rgba(252,206,41,.5); transform: translateY(-4px); }
.conto-card h3 { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 30px; letter-spacing: 0; line-height: 1.1; }
.conto-card h3 a::after { content: ""; position: absolute; inset: 0; }
.conto-card p { color: var(--text-2); font-size: 15px; margin: 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.conto-card .post-card__meta { margin-top: auto; }

/* ---------- Seção Quem somos (home) ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.about__media .sticker { position: absolute; width: 132px; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 0; right: -26px; bottom: -28px; transform: rotate(-8deg); filter: drop-shadow(0 14px 26px rgba(0,0,0,.55)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 50% { transform: rotate(-6deg) translateY(-8px); } }
.about__media .badge-years { position: absolute; left: -16px; top: 24px; background: var(--accent); color: var(--accent-ink); border-radius: 14px; padding: 12px 16px; font-family: var(--font-display); line-height: 1; box-shadow: 0 16px 40px -10px var(--accent-glow); }
.about__media .badge-years b { font-size: 34px; font-weight: 800; display: block; letter-spacing: -.04em; }
.about__media .badge-years span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.about h2 { font-size: clamp(32px, 4.4vw, 52px); }
.about__text { color: var(--text-2); font-size: 17px; margin-top: 20px; }
.about__quote { margin: 26px 0; padding-left: 22px; border-left: 2px solid var(--accent); font-family: var(--font-serif); font-style: italic; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.25; color: var(--text); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.value { padding: 16px; border-radius: 14px; background: var(--bg-3); border: 1px solid var(--line); }
.value .ic { color: var(--accent); width: 22px; height: 22px; margin-bottom: 10px; }
.value b { font-family: var(--font-display); display: block; font-size: 15px; margin-bottom: 4px; }
.value span { font-size: 13px; color: var(--muted); line-height: 1.4; display: block; }
@media (max-width: 1000px) { .about { grid-template-columns: 1fr; } .about__media { max-width: 460px; } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }

/* ---------- Evento (Libi) ---------- */
.event-feature { display: grid; grid-template-columns: 420px 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; border-radius: calc(var(--radius) + 6px); padding: clamp(22px, 3.5vw, 44px); background: linear-gradient(135deg, #1a1a1a, #121212); border: 1px solid var(--line); position: relative; overflow: hidden; }
.event-feature::before { content: ""; position: absolute; width: 520px; height: 520px; right: -200px; top: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(252,206,41,.16), transparent 62%); pointer-events: none; }
.event-feature__flyer { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; background: var(--bg-3); box-shadow: var(--shadow); }
.event-feature__flyer img { width: 100%; height: 100%; object-fit: cover; }
.event-feature__flyer .date-badge { position: absolute; left: 16px; top: 16px; background: var(--accent); color: var(--accent-ink); border-radius: 14px; padding: 10px 14px; text-align: center; font-family: var(--font-display); line-height: 1; }
.date-badge b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.04em; }
.date-badge span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.event-feature h2, .event-feature h3 { font-size: clamp(30px, 4vw, 48px); }
.event-feature .sub { color: var(--text-2); font-size: 17px; margin-top: 12px; max-width: 56ch; }
.event-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 20px 0; color: var(--text-2); font-size: 14.5px; }
.event-meta span { display: inline-flex; gap: 8px; align-items: center; }
.event-meta .ic { color: var(--accent); }
.countdown { display: inline-grid; grid-template-columns: repeat(4, auto); gap: 8px; margin: 8px 0 24px; }
.countdown div { min-width: 72px; padding: 12px 10px; text-align: center; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.countdown b { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--accent); font-variant-numeric: tabular-nums; }
.countdown span { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 6px; }
.event-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; }
.event-highlights li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-pill); border: 1px solid var(--line-2); font-size: 13.5px; color: var(--text-2); }
.event-highlights li::before { content: "✦"; color: var(--accent); font-size: 12px; }
.event-sponsors { margin-top: 24px; font-size: 13px; color: var(--muted); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.event-sponsors b { color: var(--text-2); font-weight: 500; }
@media (max-width: 900px) { .event-feature { grid-template-columns: 1fr; } .event-feature__flyer { max-width: 360px; margin: 0 auto; } }

/* Pilares das festas */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar { padding: 26px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); transition: transform .3s var(--ease), border-color .3s; }
.pillar:hover { transform: translateY(-4px); border-color: rgba(252,206,41,.45); }
.pillar__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-dim); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.pillar__icon .ic { width: 22px; height: 22px; }
.pillar h3 { font-size: 19px; margin-bottom: 8px; }
.pillar p { color: var(--text-2); font-size: 14.5px; margin: 0; }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* Eventos passados */
.past-events { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.past-event { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; background: var(--bg-3); border: 1px solid var(--line); }
.past-event img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); transition: transform .6s var(--ease), filter .4s; }
.past-event:hover img { transform: scale(1.04); filter: saturate(1); }
.past-event__info { position: absolute; inset: auto 0 0 0; padding: 16px; background: linear-gradient(transparent, rgba(17,17,17,.95)); }
.past-event__info b { font-family: var(--font-display); display: block; font-size: 16px; }
.past-event__info span { font-size: 12px; color: var(--accent); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
@media (max-width: 900px) { .past-events { grid-template-columns: repeat(2, 1fr); } }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--font-display); font-weight: 600; font-size: 18px; transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary .ic { color: var(--accent); width: 22px; height: 22px; transition: transform .3s var(--ease); flex: none; }
.faq details[open] summary .ic { transform: rotate(45deg); }
.faq details[open] summary { color: var(--accent); }
.faq__body { padding: 0 0 22px; color: var(--text-2); max-width: 70ch; }
.faq__body ol, .faq__body ul { padding-left: 20px; }
.faq__body li { margin-bottom: 6px; }

/* ---------- Projetos ---------- */
.project-card { position: relative; display: grid; grid-template-columns: 1fr; border-radius: calc(var(--radius) + 4px); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; min-height: 420px; }
.project-card:hover { transform: translateY(-6px); border-color: rgba(252,206,41,.5); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.project-card__media { position: relative; aspect-ratio: 16 / 9; background: var(--bg-4); overflow: hidden; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.project-card:hover .project-card__media img { transform: scale(1.04); }
.project-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, var(--bg-2) 100%); }
.project-card__body { padding: 28px; display: flex; flex-direction: column; gap: 12px; position: relative; margin-top: -40px; }
.project-card__kicker { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; }
.project-card h3 { font-size: clamp(26px, 2.6vw, 34px); }
.project-card .tagline { font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--accent); line-height: 1.2; }
.project-card p { color: var(--text-2); margin: 0; }
.project-card ul { list-style: none; padding: 0; margin: 4px 0 8px; display: grid; gap: 8px; }
.project-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-2); }
.project-card li .ic { color: var(--accent); width: 18px; height: 18px; margin-top: 3px; }
.project-card .btn { align-self: flex-start; margin-top: auto; }
.project-card__logo { position: absolute; top: 20px; left: 24px; z-index: 2; height: 34px; }

/* ---------- Parceiros ---------- */
.partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.partner-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); min-height: 220px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.partner-card:hover { transform: translateY(-4px); border-color: rgba(252,206,41,.45); background: var(--bg-3); }
.partner-card .logo-mask { height: 30px; background-color: var(--text-2); }
.partner-card__badge { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-family: var(--font-display); font-weight: 600; }
.partner-card p { color: var(--text-2); font-size: 13.5px; margin: 0; line-height: 1.5; }
.partner-card .link-arrow { margin-top: auto; font-size: 14px; }
.partner-card .link-arrow::after { content: ""; position: absolute; inset: 0; }
@media (max-width: 1100px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .partners-grid { grid-template-columns: 1fr 1fr; } .partner-card { min-height: 0; padding: 18px; } }

/* ---------- Vídeos ---------- */
.videos { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; }
.videos__list { display: grid; gap: 12px; align-content: start; }
.video-main { position: relative; border-radius: var(--radius); overflow: hidden; background: #000; aspect-ratio: 16 / 9; border: 1px solid var(--line); }
.video-main iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-facade { position: absolute; inset: 0; cursor: pointer; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .3s, transform .6s var(--ease); }
.video-facade:hover img { opacity: 1; transform: scale(1.02); }
.video-facade .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 78px; height: 78px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; box-shadow: 0 20px 50px -10px var(--accent-glow); transition: transform .3s var(--ease); }
.video-facade:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.video-facade .play .ic { width: 30px; height: 30px; margin-left: 4px; }
.video-facade .title { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,.8)); font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.video-item { display: grid; grid-template-columns: 132px 1fr; gap: 12px; align-items: center; padding: 8px; border-radius: 12px; border: 1px solid transparent; cursor: pointer; text-align: left; transition: background .2s, border-color .2s; }
.video-item:hover, .video-item.is-active { background: rgba(255,255,255,.04); border-color: var(--line-2); }
.video-item.is-active { border-color: var(--accent); }
.video-item img { width: 132px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; background: var(--bg-3); }
.video-item span { font-family: var(--font-display); font-weight: 500; font-size: 14px; line-height: 1.3; }
@media (max-width: 900px) { .videos { grid-template-columns: 1fr; } .videos__list { grid-template-columns: 1fr 1fr; } .video-item { grid-template-columns: 1fr; } .video-item img { width: 100%; } }
@media (max-width: 560px) { .videos__list { grid-template-columns: 1fr; } .video-item { grid-template-columns: 120px 1fr; } .video-item img { width: 120px; } }

/* ---------- Newsletter / comunidade ---------- */
.community { border-radius: calc(var(--radius) + 6px); padding: clamp(28px, 5vw, 64px); background: var(--accent); color: var(--accent-ink); display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.community::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 380px; height: 380px; border-radius: 50%; border: 44px solid rgba(17,17,17,.08); pointer-events: none; }
.community h2 { font-size: clamp(30px, 4vw, 46px); max-width: 16ch; }
.community p { color: rgba(17,17,17,.75); font-size: 17px; margin: 14px 0 0; max-width: 46ch; }
.community__actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.community .btn--dark { background: var(--accent-ink); color: var(--accent); box-shadow: 0 16px 40px -14px rgba(0,0,0,.6); }
.community .btn--dark:hover { background: #000; }
.community .btn--ghost { border-color: rgba(17,17,17,.35); color: var(--accent-ink); background: transparent; }
.community .btn--ghost:hover { border-color: var(--accent-ink); background: rgba(17,17,17,.06); color: var(--accent-ink); }
.newsletter { display: flex; gap: 8px; }
.newsletter input { flex: 1; min-width: 0; padding: 14px 18px; border-radius: var(--radius-pill); border: 1px solid rgba(17,17,17,.25); background: rgba(255,255,255,.55); color: var(--accent-ink); outline: none; }
.newsletter input::placeholder { color: rgba(17,17,17,.5); }
.newsletter input:focus { border-color: var(--accent-ink); background: rgba(255,255,255,.8); }
.newsletter__msg { font-size: 13.5px; font-weight: 500; min-height: 1.2em; }
@media (max-width: 860px) { .community { grid-template-columns: 1fr; } }

/* ---------- Blog (listagem) ---------- */
.page-head { padding-top: calc(var(--header-h) + clamp(40px, 8vw, 96px)); padding-bottom: clamp(28px, 5vw, 56px); position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; left: 50%; top: -300px; width: 900px; height: 600px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(252,206,41,.12), transparent 60%); pointer-events: none; }
.page-head h1 { font-size: clamp(38px, 6vw, 72px); letter-spacing: -.03em; max-width: 18ch; position: relative; }
.page-head .intro { color: var(--text-2); font-size: clamp(16px, 1.5vw, 19px); max-width: 60ch; margin-top: 18px; position: relative; }
.cat-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; position: relative; }
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(28px, 5vw, 64px); align-items: start; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 28px; }
.widget { padding: 22px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); }
.widget > h4, .widget__title { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-family: var(--font-display); }
.widget .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.widget--promo { background: linear-gradient(160deg, #1f1f1f, #141414); }
.widget--promo h3 { font-size: 22px; margin: 6px 0 8px; }
.widget--promo p { color: var(--text-2); font-size: 14px; }
.cat-list { list-style: none; margin: 0; padding: 0; }
.cat-list li a { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 500; font-size: 14.5px; transition: color .2s; }
.cat-list li:last-child a { border-bottom: 0; }
.cat-list li a:hover, .cat-list li a.is-active { color: var(--accent); }
.cat-list li a span { color: var(--muted); font-size: 12.5px; font-family: var(--font-body); }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 44px; height: 44px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius-pill); border: 1px solid var(--line-2); font-family: var(--font-display); font-weight: 600; font-size: 14px; transition: border-color .2s, color .2s, background .2s; }
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .is-current { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.pagination .dots { border: 0; }
.empty { padding: 60px 20px; text-align: center; color: var(--muted); border: 1px dashed var(--line-2); border-radius: var(--radius); }
@media (max-width: 980px) { .blog-layout { grid-template-columns: 1fr; } .sidebar { position: static; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- Post (artigo) ---------- */
.progress { position: fixed; left: 0; top: 0; height: 3px; width: 0; background: var(--accent); z-index: 101; transition: width .1s linear; }
.article-head { padding-top: calc(var(--header-h) + clamp(32px, 6vw, 72px)); text-align: center; }
.article-head .cats { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.article-head h1 { font-size: clamp(32px, 5.2vw, 60px); letter-spacing: -.03em; max-width: 22ch; margin-inline: auto; line-height: 1.05; }
.article-head .lead { color: var(--text-2); font-size: clamp(17px, 1.6vw, 20px); max-width: 60ch; margin: 22px auto 0; }
.article-meta { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; color: var(--muted); font-size: 14px; }
.article-meta .author { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 500; }
.article-meta .author img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.article-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); }
.article-cover { margin: clamp(28px, 5vw, 56px) auto 0; width: min(1100px, calc(100% - 2rem)); border-radius: calc(var(--radius) + 4px); overflow: hidden; aspect-ratio: 16 / 8; background: var(--bg-3); box-shadow: var(--shadow); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { display: grid; grid-template-columns: 1fr min(760px, 100%) 1fr; column-gap: 40px; padding-block: clamp(32px, 5vw, 64px); }
.article-body > * { grid-column: 2; }
.article-share { grid-column: 1; justify-self: end; position: sticky; top: calc(var(--header-h) + 32px); display: flex; flex-direction: column; gap: 8px; align-self: start; }
.article-share span { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 4px; }
.article-share a, .article-share button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text-2); transition: border-color .2s, color .2s, background .2s; }
.article-share a:hover, .article-share button:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.article-share .ic { width: 18px; height: 18px; }
.share-inline { display: none; gap: 8px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; align-items: center; }
.share-inline a, .share-inline button { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: var(--radius-pill); border: 1px solid var(--line-2); font-size: 13px; color: var(--text-2); }
@media (max-width: 1100px) { .article-body { grid-template-columns: 1fr; } .article-body > * { grid-column: 1; } .article-share { display: none; } .share-inline { display: flex; } }

/* Prosa (conteúdo migrado do WordPress + editor) */
.prose { font-size: 18px; line-height: 1.8; color: #dedbd3; }
.prose > * + * { margin-top: 1.25em; }
.prose p { margin-bottom: 0; }
.prose h2, .prose h3, .prose h4 { color: var(--text); margin-top: 2em; line-height: 1.2; }
.prose h2 { font-size: clamp(26px, 3vw, 34px); }
.prose h3 { font-size: clamp(22px, 2.4vw, 27px); }
.prose h4 { font-size: 19px; }
.prose h2 + *, .prose h3 + *, .prose h4 + * { margin-top: .8em; }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(252,206,41,.4); text-underline-offset: 3px; transition: text-decoration-color .2s; }
.prose a:hover { text-decoration-color: var(--accent); }
.prose strong { color: var(--text); font-weight: 600; }
.prose em { font-style: italic; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--accent); }
.prose hr { border: 0; height: 1px; background: var(--line-2); margin: 2.5em auto; width: 120px; position: relative; }
.prose hr::after { content: "😎"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: var(--bg); padding: 0 10px; font-size: 14px; }
.prose blockquote { margin: 2em 0; padding: 4px 0 4px 26px; border-left: 3px solid var(--accent); font-family: var(--font-serif); font-style: italic; font-size: 1.35em; line-height: 1.35; color: var(--text); }
.prose blockquote p { margin: 0; }
.prose blockquote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 14px; color: var(--muted); margin-top: 10px; }
.prose img { border-radius: var(--radius); margin-inline: auto; }
.prose figure { margin: 2em 0; }
.prose figure img { width: 100%; }
.prose figcaption { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 10px; }
.prose .gallery, .prose .wp-block-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.prose .gallery figure { margin: 0; }
.prose .gallery img { aspect-ratio: 1; object-fit: cover; }
.prose .media-text { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.prose .media-text.media-right > *:first-child { order: 2; }
@media (max-width: 640px) { .prose .media-text { grid-template-columns: 1fr; } .prose .media-text.media-right > *:first-child { order: 0; } }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; display: block; overflow-x: auto; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line-2); text-align: left; vertical-align: top; }
.prose th { background: var(--bg-3); color: var(--text); font-family: var(--font-display); font-weight: 600; }
.prose tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.prose mark { background: var(--accent); color: var(--accent-ink); padding: 0 4px; border-radius: 3px; }
.prose iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; border-radius: var(--radius); }
.prose video { width: 100%; border-radius: var(--radius); }
.prose .callout { padding: 22px 24px; border-radius: var(--radius); background: var(--accent-dim); border: 1px solid rgba(252,206,41,.3); color: var(--text); }
.prose .callout p { margin: 0; }
.prose--article > p:first-child::first-letter { font-family: var(--font-serif); font-size: 3.4em; line-height: .8; float: left; margin: .1em .12em 0 0; color: var(--accent); }
.prose--conto { font-family: var(--font-serif); font-style: normal; font-size: 21px; line-height: 1.7; }
.prose--conto p { text-indent: 1.4em; }
.prose--conto p:first-child { text-indent: 0; }
.prose--conto hr::after { content: "✦"; color: var(--accent); }
.prose--legal { font-size: 16px; }
.prose--conto > p:first-child::first-letter { all: unset; }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); align-items: center; }
.article-tags .ic { color: var(--muted); }
.author-box { margin-top: 40px; padding: 28px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); display: grid; grid-template-columns: 96px 1fr; gap: 22px; align-items: center; }
.author-box img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); }
.author-box h4 { font-size: 20px; margin-bottom: 6px; }
.author-box p { color: var(--text-2); font-size: 14.5px; margin: 0 0 12px; }
.author-box .social { display: flex; gap: 6px; }
@media (max-width: 560px) { .author-box { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.post-nav a { padding: 20px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); display: flex; flex-direction: column; gap: 6px; transition: border-color .2s, transform .25s var(--ease); }
.post-nav a:hover { border-color: var(--accent); transform: translateY(-2px); }
.post-nav a small { color: var(--muted); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; font-family: var(--font-display); }
.post-nav a b { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; line-height: 1.3; }
.post-nav a.next { text-align: right; }
@media (max-width: 560px) { .post-nav { grid-template-columns: 1fr; } .post-nav a.next { text-align: left; } }

/* Comentários */
.comments { margin-top: 56px; }
.comments h3 { font-size: 26px; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.comments h3 span { font-size: 14px; color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.comment { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.comment__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-4); color: var(--accent); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.comment--owner .comment__avatar { background: var(--accent); color: var(--accent-ink); overflow: hidden; }
.comment--owner .comment__avatar img { width: 100%; height: 100%; object-fit: cover; }
.comment__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }
.comment__head b { color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.comment__head .owner-badge { background: var(--accent-dim); color: var(--accent); font-size: 10.5px; padding: 3px 8px; border-radius: var(--radius-pill); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.comment__body { margin-top: 6px; color: var(--text-2); font-size: 15px; white-space: pre-line; }
.comment__reply { margin-top: 8px; font-size: 13px; color: var(--accent); font-weight: 600; }
.comment .replies { grid-column: 2; }
.comment .replies .comment { padding-left: 0; }
.comment-form { margin-top: 28px; padding: 26px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); }
.comment-form h4 { font-size: 19px; margin-bottom: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; font-family: var(--font-display); }
.field input, .field textarea, .field select { padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--bg); color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim); }
.field textarea { min-height: 140px; resize: vertical; }
.alert { padding: 14px 18px; border-radius: 12px; font-size: 14.5px; margin-bottom: 16px; border: 1px solid; }
.alert--ok { background: rgba(123,216,143,.1); border-color: rgba(123,216,143,.4); color: var(--ok); }
.alert--error { background: rgba(255,107,107,.1); border-color: rgba(255,107,107,.4); color: var(--danger); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Página Quem somos ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.person { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.person__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-3); }
.person__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .8s var(--ease); }
.person:hover .person__media img { transform: scale(1.04); }
.person__body { padding: 26px; }
.person__body .role { color: var(--accent); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; font-family: var(--font-display); }
.person__body h3 { font-size: 30px; margin: 6px 0 10px; }
.person__body p { color: var(--text-2); margin: 0; font-size: 15px; }
@media (max-width: 720px) { .duo { grid-template-columns: 1fr; } }
.timeline { display: grid; gap: 0; border-left: 2px solid var(--line-2); margin-left: 8px; }
.timeline__item { position: relative; padding: 0 0 32px 32px; }
.timeline__item::before { content: ""; position: absolute; left: -7px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--bg); }
.timeline__item b { font-family: var(--font-display); color: var(--accent); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.timeline__item h3 { font-size: 22px; margin-bottom: 6px; }
.timeline__item p { color: var(--text-2); margin: 0; max-width: 60ch; }

/* ---------- Página de links (bare) ---------- */
.links-page { min-height: 100svh; display: flex; flex-direction: column; align-items: center; padding: 48px 16px 64px; position: relative; overflow: hidden; }
.links-page::before { content: ""; position: absolute; left: 50%; top: -200px; width: 700px; height: 500px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(252,206,41,.16), transparent 60%); pointer-events: none; }
.links-card { width: min(520px, 100%); position: relative; }
.links-avatar { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); margin: 0 auto 16px; box-shadow: 0 20px 50px -20px var(--accent-glow); }
.links-page h1 { text-align: center; font-size: 30px; }
.links-page .sub { text-align: center; color: var(--text-2); margin: 8px 0 26px; font-size: 15px; }
.links-list { display: grid; gap: 10px; }
.link-btn { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 16px; background: var(--bg-2); border: 1px solid var(--line-2); transition: transform .25s var(--ease), border-color .25s, background .25s; }
.link-btn:hover { transform: translateY(-2px) scale(1.01); border-color: var(--accent); background: var(--bg-3); }
.link-btn .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-dim); color: var(--accent); display: grid; place-items: center; flex: none; }
.link-btn .ico .ic { width: 20px; height: 20px; }
.link-btn b { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; display: block; }
.link-btn small { color: var(--muted); font-size: 12.5px; display: block; }
.link-btn .arrow { margin-left: auto; color: var(--muted); }
.link-btn--hl { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.link-btn--hl .ico { background: rgba(17,17,17,.12); color: var(--accent-ink); }
.link-btn--hl small, .link-btn--hl .arrow { color: rgba(17,17,17,.6); }
.link-btn--hl:hover { background: var(--accent-2); }
.links-group { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); text-align: center; margin: 24px 0 10px; font-family: var(--font-display); font-weight: 600; }
.links-social { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.links-foot { margin-top: 32px; color: var(--muted); font-size: 12.5px; text-align: center; }

/* ---------- Contato ---------- */
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); }
.contact-list { display: grid; gap: 12px; }
.contact-item { display: flex; gap: 16px; padding: 18px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); transition: border-color .2s; }
.contact-item:hover { border-color: var(--accent); }
.contact-item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-dim); color: var(--accent); display: grid; place-items: center; flex: none; }
.contact-item b { font-family: var(--font-display); display: block; font-size: 15px; }
.contact-item span { color: var(--text-2); font-size: 14px; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: clamp(48px, 7vw, 80px) 0 28px; position: relative; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand p { color: var(--text-2); font-size: 14.5px; max-width: 34ch; margin: 18px 0; }
.footer h4 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer ul a { color: var(--text-2); font-size: 14.5px; transition: color .2s; }
.footer ul a:hover { color: var(--accent); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-2); font-size: 14.5px; }
.footer__contact .ic { color: var(--accent); margin-top: 3px; }
.social { display: flex; gap: 8px; }
.social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text-2); transition: border-color .2s, color .2s, background .2s, transform .25s var(--ease); }
.social a:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--accent); transform: translateY(-2px); }
.social .ic { width: 18px; height: 18px; }
.footer__bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.footer__bottom a { color: var(--text-2); }
.footer__bottom .age { display: inline-flex; align-items: center; gap: 8px; }
.footer__bottom .age b { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); font-size: 11px; font-family: var(--font-display); }
.footer__word { position: absolute; left: 50%; bottom: -1.5vw; transform: translateX(-50%); font-family: var(--font-display); font-weight: 800; font-size: 17vw; letter-spacing: -.05em; line-height: 1; color: rgba(255,255,255,.02); white-space: nowrap; pointer-events: none; user-select: none; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Aviso +18 ---------- */
.age-gate { position: fixed; inset: 0; z-index: 1000; background: rgba(10,10,10,.92); backdrop-filter: blur(16px); display: grid; place-items: center; padding: 16px; }
.age-gate__box { width: min(520px, 100%); padding: clamp(28px, 5vw, 44px); border-radius: calc(var(--radius) + 6px); background: var(--bg-2); border: 1px solid var(--line-2); text-align: center; box-shadow: var(--shadow); }
.age-gate__box img { width: 84px; margin: 0 auto 18px; }
.age-gate__box h2 { font-size: 28px; }
.age-gate__box p { color: var(--text-2); margin: 12px 0 24px; font-size: 15px; }
.age-gate__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.age-gate__foot { font-size: 12px; color: var(--muted); margin-top: 18px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__bg img { animation: none; transform: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- 404 ---------- */
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding-top: var(--header-h); }
.error-page b { font-family: var(--font-display); font-size: clamp(90px, 20vw, 200px); font-weight: 800; letter-spacing: -.06em; line-height: 1; color: var(--accent); display: block; }
.error-page h1 { font-size: 30px; margin: 10px 0 8px; }
.error-page p { color: var(--text-2); }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: var(--accent); color: var(--accent-ink); padding: 12px 18px; border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: 600; font-size: 14px; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s var(--ease); z-index: 500; box-shadow: var(--shadow); }
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Ajustes finos mobile ---------- */
@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .logo__icon { height: 32px; }
  .logo__word { height: 17px; }
  .section-head h2 { max-width: none; }
  .countdown { grid-template-columns: repeat(4, 1fr); width: 100%; }
  .countdown div { min-width: 0; padding: 10px 6px; }
  .countdown b { font-size: 24px; }
  .article-head h1 { font-size: clamp(28px, 8vw, 40px); }
  .prose { font-size: 17px; }
  .comment { grid-template-columns: 36px 1fr; }
  .comment__avatar { width: 36px; height: 36px; font-size: 14px; }
  .community { padding: 26px 20px; }
  .newsletter { flex-direction: column; }
  .footer__word { font-size: 24vw; }
}
