/* =====================================================
   Blog B4 — Dark Premium / Landing
   Inspiração: Micro Skin landing page
   Identidade: roxo neon B4 + dourado vibrante + dark warm
   ===================================================== */

:root {
  /* Backgrounds: space gray claro warm */
  --bg: #ECEAE5;
  --bg-elev: rgba(255, 255, 255, 0.6);
  --bg-elev-2: rgba(255, 255, 255, 0.8);
  --bg-overlay: rgba(236, 234, 229, 0.85);
  --bg-solid: #E0DDD6;
  --bg-dark-section: #1A1715;

  /* Glass props */
  --glass-blur: 22px;
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-border-strong: rgba(255, 255, 255, 0.9);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

  /* Textos: charcoal warm */
  --ink: #1A1715;
  --ink-soft: #3C3338;
  --ink-mute: #6E6770;
  --ink-faint: #ACA5B0;

  /* Linhas */
  --hair: rgba(26, 23, 21, 0.1);
  --hair-soft: rgba(26, 23, 21, 0.06);
  --hair-strong: rgba(26, 23, 21, 0.18);

  /* Roxo B4 vibrante */
  --roxo: #6B25C2;
  --roxo-deep: #4A1A8A;
  --roxo-bright: #8A2BE2;
  --roxo-glow: rgba(138, 43, 226, 0.3);
  --roxo-soft: rgba(138, 43, 226, 0.1);

  /* Dourado */
  --gold: #B8923A;
  --gold-bright: #D4B26A;
  --gold-deep: #8E6E26;

  /* Tipografia — sans-serif bold pros headlines */
  --display: 'Inter', system-ui, -apple-system, sans-serif;
  --display-tight: 'Inter', system-ui, -apple-system, sans-serif;
  --display-mono: 'Inter', system-ui, -apple-system, sans-serif;
  --serif: 'Newsreader', Georgia, serif;
  --ui: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max: 1320px;
  --max-narrow: 720px;
  --max-medium: 940px;
  --rail: clamp(20px, 4vw, 56px);
  --radius: 24px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--roxo); color: #fff; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
body { word-wrap: break-word; overflow-wrap: break-word; }

/* Atmosfera de fundo, gradient estático (sem animação pra economizar GPU) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(138, 43, 226, 0.15) 0%, transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(212, 178, 106, 0.14) 0%, transparent 45%);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; transition: opacity 0.25s ease, color 0.25s ease; }
a:hover { opacity: 0.75; }

img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--rail); }
.container-narrow { max-width: var(--max-narrow); margin-left: auto; margin-right: auto; padding-left: var(--rail); padding-right: var(--rail); }
.container-medium { max-width: var(--max-medium); margin-left: auto; margin-right: auto; padding-left: var(--rail); padding-right: var(--rail); }

/* ============ HEADER (glass claro) ============ */
.header {
  background: rgba(236, 234, 229, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hair);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  padding: 18px var(--rail);
}
.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  flex-shrink: 0;
}
.header-brand:hover { opacity: 1; }
.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--roxo) 0%, var(--roxo-deep) 100%);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  border-radius: var(--radius-sm);
  position: relative;
  box-shadow: 0 0 24px var(--roxo-glow);
}
.logo-num { color: var(--gold); margin-left: 1px; }
.header-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.header-wordmark-main {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.header-wordmark-sub {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 500;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--ink); opacity: 1; }
.header-nav a.active { color: var(--roxo-bright); }
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.header-nav-sep { color: var(--ink-faint); }
.header-nav-secondary {
  color: var(--ink-mute) !important;
  font-style: italic;
}
.header-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: var(--roxo-bright);
  color: #fff !important;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 16px var(--roxo-glow);
}
.header-cta:hover {
  transform: translateY(-1px);
  background: var(--roxo);
  box-shadow: 0 8px 26px var(--roxo-glow);
  opacity: 1;
  color: #fff !important;
}
.header-cta-short { display: none; }
.header-mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  padding: 6px;
}
.header-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header.menu-open .header-mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.menu-open .header-mobile-toggle span:nth-child(2) { opacity: 0; }
.header.menu-open .header-mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--hair);
  padding: 20px var(--rail);
  background: var(--bg-elev);
  gap: 6px;
}
.header.menu-open .header-mobile-menu { display: flex; }
.header-mobile-menu a {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
}
.header-mobile-menu a:last-of-type { border-bottom: none; }
.header-mobile-menu-secondary { font-style: italic; color: var(--ink-mute) !important; font-weight: 500 !important; }
.header-mobile-cta {
  margin-top: 14px !important;
  padding: 14px 22px !important;
  background: var(--roxo-bright) !important;
  color: #fff !important;
  text-align: center;
  font-weight: 600 !important;
  border-radius: 999px !important;
  border: none !important;
}
.masthead { display: none; }

@media (max-width: 960px) {
  .header-nav { display: none; }
  .header-mobile-toggle { display: flex; }
}
@media (max-width: 540px) {
  .header-wordmark-sub { display: none; }
  .header-wordmark-main { font-size: 17px; }
  .header-logo { width: 36px; height: 36px; font-size: 16px; }
  .header-cta-full { display: none; }
  .header-cta-short { display: inline; }
  .header-cta { padding: 9px 14px; font-size: 11px; }
}

/* ============ KICKER + (badge tipo Micro Skin) ============ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--roxo-bright);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  text-transform: none;
}
.kicker::before {
  content: '+';
  color: var(--roxo-bright);
  font-weight: 700;
  font-size: 14px;
}
.badge-editoria {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--roxo-bright);
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  background: rgba(123, 0, 255, 0.08);
}
.badge-editoria::before {
  content: '+';
  color: var(--roxo-bright);
  font-weight: 700;
  font-size: 13px;
}
.badge-editoria.small { font-size: 10.5px; padding: 4px 12px; margin-bottom: 14px; }

/* ============ REVEAL on-scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ HERO LANDING ============ */
.hero-landing {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero-landing-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-landing-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-landing-photo-wrap { order: -1; max-width: 480px; margin: 0 auto; }
}
.hero-landing-body {}
.hero-landing-headline {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-landing-headline em {
  font-style: normal;
  color: var(--roxo-bright);
}
.hero-landing-sub {
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-landing-sub strong { color: var(--ink); font-weight: 600; }
.hero-landing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--roxo-bright);
  color: #fff;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 999px;
  box-shadow: 0 8px 28px var(--roxo-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-landing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--roxo-glow);
  opacity: 1;
  color: #fff;
}
.hero-landing-trust {
  margin-top: 22px;
  font-family: var(--display);
  font-size: 12.5px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-landing-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-landing-trust::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.hero-landing-photo-wrap {
  position: relative;
}
.hero-landing-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
}
.hero-landing-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-landing-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, transparent 30%, rgba(10, 10, 12, 0.5) 100%);
  pointer-events: none;
}
/* glow roxo atrás da foto */
.hero-landing-photo-wrap::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, var(--roxo-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
/* Selos circulares sobrepostos — glass */
.hero-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: var(--roxo);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.hero-badge::before {
  content: '+';
  color: var(--roxo-bright);
  font-weight: 700;
  font-size: 14px;
}
.hero-badge-1 { top: 12%; left: -8%; }
.hero-badge-2 { bottom: 16%; right: -6%; }
@media (max-width: 880px) {
  .hero-badge-1 { left: 4%; top: 6%; }
  .hero-badge-2 { right: 4%; bottom: 8%; }
}

/* ============ NOME GIGANTE — FULL-BLEED COM BG WIDESCREEN ============ */
.name-big-section {
  position: relative;
  padding: clamp(60px, 7vw, 100px) 0 clamp(80px, 10vw, 140px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  max-width: 100vw;
}
.name-big-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/blog/img/sobre/jhon-palco.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  opacity: 0.5;
  filter: saturate(1.2) brightness(0.85);
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%,
    transparent 8%,
    rgba(0,0,0,0.2) 14%,
    rgba(0,0,0,0.6) 22%,
    rgba(0,0,0,0.9) 30%,
    #000 40%,
    #000 60%,
    rgba(0,0,0,0.9) 70%,
    rgba(0,0,0,0.6) 78%,
    rgba(0,0,0,0.2) 86%,
    transparent 92%,
    transparent 100%);
  mask-image: linear-gradient(180deg,
    transparent 0%,
    transparent 8%,
    rgba(0,0,0,0.2) 14%,
    rgba(0,0,0,0.6) 22%,
    rgba(0,0,0,0.9) 30%,
    #000 40%,
    #000 60%,
    rgba(0,0,0,0.9) 70%,
    rgba(0,0,0,0.6) 78%,
    rgba(0,0,0,0.2) 86%,
    transparent 92%,
    transparent 100%);
}
.name-big-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(236, 234, 229, 0.45) 0%,
      rgba(236, 234, 229, 0.25) 25%,
      rgba(236, 234, 229, 0.15) 50%,
      rgba(236, 234, 229, 0.25) 75%,
      rgba(236, 234, 229, 0.45) 100%),
    radial-gradient(circle at 15% 25%, rgba(138, 43, 226, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 85% 75%, rgba(212, 178, 106, 0.16) 0%, transparent 55%);
  z-index: -1;
}

/* Liquid glass nos cards da seção Jhon (paleta clara) */
.name-big-section .name-big-card {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.name-big-section .name-big-photo {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.name-big-section { padding: 0 !important; }
.name-big-name-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 7vw, 100px) var(--rail) 0;
  overflow: hidden;
}
.name-big-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) var(--rail) clamp(80px, 10vw, 140px);
}
@media (max-width: 880px) {
  .name-big-grid { grid-template-columns: 1fr; gap: 24px; }
}
.name-big-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.name-big-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.name-big-text { display: flex; }
.name-big-content { display: flex; }
.name-big-card { display: flex; flex-direction: column; justify-content: center; width: 100%; }
.name-big-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.name-big-text {
  position: relative;
}
.name-big-name {
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 156px);
  font-weight: 800;
  letter-spacing: -3.5px;
  line-height: 0.85;
  color: rgba(26, 23, 21, 0.14);
  display: block;
  margin-bottom: clamp(24px, 4vw, 56px);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  text-shadow:
    0 0 80px rgba(138, 43, 226, 0.18),
    0 0 140px rgba(184, 146, 58, 0.1);
  text-align: right;
  padding-right: clamp(20px, 4vw, 60px);
}
@media (max-width: 880px) {
  .name-big-name {
    font-size: clamp(48px, 12vw, 80px);
    text-align: center;
    padding-right: 0;
  }
}
.name-big-content {
  position: relative;
  z-index: 1;
  padding: 0;
}
.name-big-text {
  position: relative;
}
.name-big-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--glass-shadow);
}
.name-big-content h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
}
.name-big-content p {
  font-family: var(--display);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.name-big-content p:last-child { margin-bottom: 0; }
.name-big-content strong { color: var(--ink); font-weight: 600; }

/* ============ SEÇÃO TRANSFORMAÇÃO (glass) ============ */
.transformacao {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.transformacao-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--roxo-bright);
  margin: 0 auto 24px;
  padding: 6px 16px;
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}
.transformacao-kicker::before { content: '+'; color: var(--roxo-bright); font-weight: 700; }
.transformacao .container { text-align: center; }
.transformacao-text--center {
  max-width: 920px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.transformacao-text--center .transformacao-title,
.transformacao-text--center .transformacao-sub,
.transformacao-text--center .transformacao-tempo { text-align: center; margin-left: auto; margin-right: auto; }
.transformacao-chart {
  max-width: var(--max);
  margin: 0 auto;
}

/* ============ CHART CRESCENTE ============ */
.chart-card {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.chart-svg { min-height: clamp(280px, 38vw, 480px); }
.chart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
  gap: 12px;
  flex-wrap: wrap;
}
.chart-label {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.chart-growth {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--gold);
  background: rgba(212, 178, 106, 0.1);
  border: 1px solid rgba(212, 178, 106, 0.25);
  padding: 4px 12px;
  border-radius: 999px;
}
.chart-svg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.chart-line {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 2.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.chart-area {
  opacity: 0;
  transition: opacity 1.4s ease 0.6s;
}
.chart-dots circle {
  opacity: 0;
  transform-origin: center;
  transition: opacity 0.4s ease;
}
.reveal.is-visible .chart-line { stroke-dashoffset: 0; }
.reveal.is-visible .chart-area { opacity: 1; }
.reveal.is-visible .chart-dots circle { opacity: 1; }
.reveal.is-visible .chart-dots circle:nth-child(1) { transition-delay: 0.4s; }
.reveal.is-visible .chart-dots circle:nth-child(2) { transition-delay: 0.9s; }
.reveal.is-visible .chart-dots circle:nth-child(3) { transition-delay: 1.4s; }
.reveal.is-visible .chart-dots circle:nth-child(4) { transition-delay: 1.9s; }
.reveal.is-visible .chart-dots circle:nth-child(5) { transition-delay: 2.4s; }
.reveal.is-visible .chart-dots circle:nth-child(6) {
  transition-delay: 2.4s;
  animation: chart-pulse 2s ease-in-out infinite 2.4s;
}
@keyframes chart-pulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.5); opacity: 0.15; }
}
.chart-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
}
@media (max-width: 540px) {
  .chart-footer { grid-template-columns: 1fr; gap: 10px; }
}
.chart-footer-item { display: flex; flex-direction: column; gap: 3px; }
.chart-footer-item strong {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2px;
}
.chart-footer-item span {
  font-family: var(--display);
  font-size: 11.5px;
  color: var(--ink-mute);
  line-height: 1.4;
}
.transformacao-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.transformacao-title em { font-style: normal; color: var(--roxo-bright); }
.transformacao-sub {
  font-family: var(--display);
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  line-height: 1.55;
}
.jornada {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .jornada { grid-template-columns: 1fr; gap: 28px; }
}
.jornada-bloco { text-align: center; }
.jornada-label {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.jornada-bloco--depois .jornada-label { color: var(--roxo-bright); }
.jornada-number {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 116px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -3px;
  display: inline-block;
  position: relative;
}
.jornada-bloco--antes .jornada-number {
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
}
.jornada-bloco--depois .jornada-number {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, var(--roxo-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px var(--roxo-glow);
}
.jornada-unit {
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink-mute);
  display: block;
  margin-top: 8px;
}
.jornada-arrow {
  font-size: 36px;
  color: var(--gold);
  position: relative;
  width: 80px;
  text-align: center;
}
.jornada-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.jornada-arrow::after {
  content: '→';
  position: relative;
  background: var(--bg-elev);
  padding: 0 14px;
  font-size: 22px;
  color: var(--gold);
}
@media (max-width: 720px) {
  .jornada-arrow { transform: rotate(90deg); margin: 8px auto; width: 60px; }
  .jornada-arrow::after { background: var(--bg); }
}
.transformacao-tempo {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
  font-family: var(--display);
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--ink-soft);
}
.transformacao-tempo strong { color: var(--gold); font-weight: 600; }

/* ============ MARQUEE ============ */
.marquee-wrap {
  background: var(--bg-dark-section);
  color: #fff;
  padding: clamp(18px, 2.5vw, 26px) 0;
  overflow: hidden;
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
}
.marquee {
  display: flex;
  gap: clamp(36px, 5vw, 60px);
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee--paused { animation-play-state: paused; }
.marquee-item {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.1px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.25s ease;
  font-weight: 600;
}
.marquee-item:hover { opacity: 1; }
.marquee-handle {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.1px;
}
.marquee-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #1d9bf0;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.marquee-item::after {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin-left: clamp(36px, 5vw, 60px);
  flex-shrink: 0;
}
.marquee-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    #feda75 0%,
    #fa7e1e 25%,
    #d62976 50%,
    #962fbf 75%,
    #4f5bd5 100%
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.marquee-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  box-sizing: border-box;
}
.marquee-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.marquee-avatar-inner--initials {
  background: linear-gradient(135deg, var(--roxo) 0%, var(--roxo-deep) 100%);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: transparent;
  padding: clamp(40px, 5vw, 64px) 0;
}
.trust-bar-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  text-align: center;
}
.trust-bar-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.trust-bar-items {
  display: flex; align-items: center; gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(17px, 1.9vw, 22px);
  color: var(--ink);
  letter-spacing: -0.2px;
}
.trust-bar-item { white-space: nowrap; }
.trust-bar-item strong { color: var(--gold); font-weight: 700; }
.trust-bar-item-sep { color: var(--ink-faint); font-size: 14px; }
@media (max-width: 480px) {
  .trust-bar-items { flex-direction: column; gap: 12px; }
  .trust-bar-item-sep { display: none; }
}

/* ============ SECTION HEAD ============ */
.section-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
  margin-top: 0;
  gap: 16px;
  position: relative;
}
.section-head > div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.8px;
  line-height: 1.05;
}
.section-head p {
  font-family: var(--display);
  font-size: 17px;
  color: var(--ink-mute);
  margin-top: 12px;
  max-width: 620px;
  line-height: 1.55;
}
.all-link {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--roxo-bright);
  margin-top: 8px;
  letter-spacing: 0.2px;
}
@media (max-width: 480px) {
  .section-head h2 { font-size: 26px; }
}

/* ============ LATEST GRID ============ */
.latest { padding: clamp(60px, 8vw, 100px) 0; }
.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 40px);
}
.latest-card {
  display: flex; flex-direction: column;
  contain: layout style;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.latest-card:hover {
  transform: translateY(-6px);
  border-color: var(--roxo-bright);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(138, 43, 226, 0.25);
  opacity: 1;
}
.latest-card:hover h3 { color: var(--roxo-bright); }
.latest-card-photo {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-solid);
}
.latest-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.latest-card:hover .latest-card-photo img { transform: scale(1.05); }
.latest-card-body { padding: clamp(20px, 2.5vw, 28px); }
.latest-card-body h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.latest-card-sub {
  font-family: var(--display);
  font-weight: 400;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.55;
}
.latest-card-meta {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.2px;
  border-top: 1px solid var(--hair);
  padding-top: 14px;
}

/* ============ CLIENTES HOME — Cards horizontais 1 por linha ============ */
.clientes-home { padding: clamp(60px, 8vw, 100px) 0; }
.clientes-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
}
.cliente-card {
  display: grid;
  grid-template-columns: minmax(220px, 38%) 1fr;
  position: relative;
  contain: layout style;
  border: 3px solid transparent;
  background:
    linear-gradient(#F8F6F1, #F8F6F1) padding-box,
    conic-gradient(
      from 215deg at 50% 50%,
      #feda75 0%,
      #fa7e1e 15%,
      #d62976 38%,
      #962fbf 62%,
      #4f5bd5 85%,
      #feda75 100%
    ) border-box;
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  min-height: 240px;
}
/* Zigzag — alterna foto esquerda/direita */
.cliente-card:nth-child(even) {
  grid-template-columns: 1fr minmax(220px, 38%);
}
.cliente-card:nth-child(even) .cliente-card-photo {
  order: 2;
}
.cliente-card:nth-child(even) .cliente-card-body {
  order: 1;
}
@media (max-width: 720px) {
  .cliente-card,
  .cliente-card:nth-child(even) { grid-template-columns: 1fr; min-height: auto; }
  .cliente-card:nth-child(even) .cliente-card-photo { order: 0; }
  .cliente-card:nth-child(even) .cliente-card-body { order: 0; }
}
.cliente-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(214, 41, 118, 0.22), inset 0 1px 0 rgba(255,255,255,0.7);
  opacity: 1;
}
.cliente-card:hover h3 { color: var(--gold); }
.cliente-card-photo {
  width: 100%; height: 100%;
  min-height: 240px;
  overflow: hidden;
  background: var(--bg-solid);
  position: relative;
  aspect-ratio: auto;
}
@media (max-width: 720px) {
  .cliente-card-photo { aspect-ratio: 16/10; min-height: auto; }
}
.cliente-card-photo--initials {
  background: linear-gradient(160deg, rgba(138, 43, 226, 0.45) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cliente-card-photo--initials .initials {
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212, 178, 106, 0.3);
}
.cliente-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}
.cliente-card:hover .cliente-card-photo img { transform: scale(1.04); }
.cliente-card-body {
  padding: clamp(24px, 2.8vw, 36px);
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.cliente-card-header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cliente-card-body h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin: 0;
  transition: color 0.3s ease;
}
.cliente-card-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #1da1f2;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.cliente-card-local {
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--roxo-bright);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.cliente-card-categoria {
  font-family: var(--display);
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
  font-style: italic;
}
.cliente-card-metrics {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin: 4px 0;
}
.cliente-card-metric {
  display: flex; flex-direction: column;
  gap: 2px;
}
.cliente-card-metric strong {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
  line-height: 1;
}
.cliente-card-metric span {
  font-family: var(--display);
  font-size: 10.5px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.cliente-card-destaque {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1px;
  color: var(--gold);
  margin: 0;
  line-height: 1.45;
  padding: 10px 14px;
  background: rgba(212, 178, 106, 0.08);
  border-left: 2px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-weight: 500;
}
.cliente-card-bio {
  font-family: var(--display);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.cliente-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--roxo-bright);
  font-weight: 600;
  margin-top: 4px;
}
.cliente-card-cta::after {
  content: '→';
  transition: transform 0.3s ease;
}
.cliente-card:hover .cliente-card-cta::after { transform: translateX(4px); }

/* ============ CLIENTE PAGE ============ */
.cliente-hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--hair);
}
.cliente-hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.5fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: 32px;
}
@media (max-width: 760px) {
  .cliente-hero-grid { grid-template-columns: 1fr; gap: 28px; }
}
.cliente-hero-photo {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-elev);
  max-width: 360px;
  border-radius: var(--radius);
}
.cliente-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.cliente-hero-name {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1;
  margin: 12px 0 8px;
  color: var(--ink);
}
.cliente-hero-categoria {
  font-family: var(--display);
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 500;
}
.cliente-hero-local {
  font-family: var(--display);
  font-size: 12px;
  margin: 12px 0;
  color: var(--roxo-bright);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.cliente-hero-bio {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 18px 0 28px;
  max-width: 580px;
}
/* Selo Verificado Instagram (só o círculo azul) */
.selo-verificado {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  width: fit-content;
}
.selo-verificado--sm { margin-bottom: 10px; }
/* Quando inline (depois do nome), alinhar ao topo */
.selo-inline {
  margin-bottom: 0;
  margin-left: 12px;
  vertical-align: top;
  position: relative;
  top: 0.1em;
}
.selo-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1d9bf0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(29, 155, 240, 0.35);
}
.selo-verificado--sm .selo-check {
  width: 20px;
  height: 20px;
  font-size: 11px;
}

.cliente-stats {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  margin: 18px 0 24px;
  flex-wrap: wrap;
}
.cliente-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cliente-stat strong {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--gold);
  line-height: 1;
}
.cliente-stat span {
  font-family: var(--display);
  font-size: 12px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.cliente-hero-destaque {
  display: inline-block;
  padding: 12px 20px;
  margin: 8px 0 24px;
  background: rgba(212, 178, 106, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
}

/* ============ NARRATIVA DOCUMENTÁRIO ============ */
.cliente-narrativa {
  padding: clamp(50px, 7vw, 90px) 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: rgba(255, 255, 255, 0.02);
}
.cliente-narrativa .kicker {
  margin: 0 auto 28px;
  display: inline-flex;
}
.cliente-narrativa .container-medium {
  text-align: left;
}
.cliente-narrativa-body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.75;
  color: var(--ink-soft);
  margin-top: 12px;
}
.cliente-narrativa-body p {
  margin-bottom: 22px;
}
.cliente-narrativa-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 72px;
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 0;
  font-weight: 700;
  color: var(--roxo-bright);
}
.cliente-narrativa-body strong {
  color: var(--ink);
  font-weight: 600;
}
.cliente-parcerias {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.cliente-parcerias-label {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.cliente-parcerias-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cliente-parceria-pill {
  display: inline-flex;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.cliente-materias { padding: clamp(50px, 7vw, 80px) 0 clamp(60px, 8vw, 100px); }

/* ============ TRABALHOS DO CLIENTE (matérias inline) ============ */
.cliente-trabalhos {
  padding: clamp(50px, 7vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.cliente-trabalhos-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.cliente-trabalhos-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--ink);
  margin: 18px 0 14px;
}
.cliente-trabalhos-head p {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}
.cliente-trabalho {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(24px, 3vw, 36px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
  contain: layout style;
}
.cliente-trabalho-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  border-bottom: 1px solid var(--hair);
  padding-bottom: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(24px, 3vw, 36px);
}
@media (max-width: 600px) {
  .cliente-trabalho-head { grid-template-columns: 1fr; gap: 14px; }
}
.cliente-trabalho-num {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--roxo-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cliente-trabalho h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 10px;
  scroll-margin-top: 100px;
}
.cliente-trabalho-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 14px;
}
.cliente-trabalho-meta {
  font-family: var(--display);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
  display: flex; flex-wrap: wrap; gap: 4px;
}
.cliente-trabalho-meta .sep { margin: 0 6px; color: var(--ink-faint); }
.cliente-trabalho-meta .local-tag {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--roxo);
  padding: 0;
  background: none;
  border: none;
}
.cliente-trabalho-body {
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.cliente-trabalho-body p { margin: 0 0 20px; }
.cliente-trabalho-body strong { color: var(--ink); font-weight: 600; }
.cliente-trabalho-body h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin: 36px 0 14px;
  line-height: 1.2;
}
.cliente-trabalho-body h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 12px;
  letter-spacing: -0.2px;
}
.cliente-trabalho-body a {
  color: var(--roxo-bright);
  border-bottom: 1px solid var(--gold);
}
.cliente-trabalho-body a:hover { color: var(--roxo-deep); opacity: 1; }
.cliente-trabalho-body ul, .cliente-trabalho-body ol {
  margin: 0 0 22px 1.5em;
}
.cliente-trabalho-body li { margin-bottom: 8px; }
.cliente-trabalho-body blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding: 12px 24px;
  margin: 28px 0;
  background: rgba(212, 178, 106, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.cliente-trabalho-faq {
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: 22px;
  border-top: 1px solid var(--hair);
}
.cliente-trabalho-faq summary {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--roxo);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cliente-trabalho-faq summary::-webkit-details-marker { display: none; }
.cliente-trabalho-faq summary::after {
  content: '+';
  font-size: 18px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.25s ease;
}
.cliente-trabalho-faq[open] summary::after { transform: rotate(45deg); }
.cliente-trabalho-faq .faq-item {
  border-bottom: 1px solid var(--hair-soft);
  padding: 16px 0;
}
.cliente-trabalho-faq .faq-item:last-child { border-bottom: none; }
.cliente-trabalho-faq .faq-item strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.cliente-trabalho-faq .faq-item p {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
.empty-state {
  text-align: center;
  font-family: var(--display);
  color: var(--ink-mute);
  font-size: 18px;
  padding: 60px 0;
}

/* ============ ARTICLE ============ */
.article { background: var(--bg); padding: 0; }
.materia .article, .sobre-page .article { padding-top: clamp(40px, 5vw, 60px); }
.article-head { padding: clamp(40px, 5vw, 60px) var(--rail) clamp(28px, 4vw, 40px); max-width: var(--max-narrow); margin: 0 auto; }
.breadcrumbs {
  font-family: var(--display);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  font-weight: 500;
}
.breadcrumbs a { color: var(--ink-mute); }
.breadcrumbs a:hover { color: var(--roxo-bright); opacity: 1; }
.breadcrumbs .sep { margin: 0 10px; color: var(--ink-faint); }

.article-headline {
  font-family: var(--display);
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin: 12px 0 24px;
}
.article-sub {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 40px;
}
.article-byline {
  font-family: var(--display);
  font-size: 12px;
  color: var(--ink-mute);
  border-top: 1px solid var(--hair);
  padding-top: 22px;
  letter-spacing: 0.3px;
  font-weight: 500;
}
.article-byline strong { color: var(--ink); font-weight: 600; }
.article-byline .sep { margin: 0 10px; color: var(--ink-faint); }
.article-local { margin-top: 18px; }
.local-tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.article-figure {
  margin: clamp(40px, 5vw, 60px) auto;
  max-width: var(--max-medium);
  padding: 0 var(--rail);
}
.article-figure img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--bg-elev);
}
.article-figure figcaption {
  font-family: var(--display);
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 14px;
  text-align: center;
}

.article-toc {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  padding: 28px 32px;
  margin: clamp(30px, 4vw, 48px) auto;
  max-width: var(--max-narrow);
  border-radius: var(--radius-sm);
  box-shadow: var(--glass-shadow);
}
.article-toc strong {
  display: block;
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.article-toc ol { list-style: none; padding: 0; counter-reset: toc; }
.article-toc li {
  counter-increment: toc;
  padding: 8px 0;
  font-family: var(--display);
  font-size: 15px;
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.article-toc li:last-child { border-bottom: none; }
.article-toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--roxo-bright);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.article-toc a { color: var(--ink); }
.article-toc a:hover { color: var(--roxo-bright); opacity: 1; }

/* ============ ARTICLE BODY ============ */
.article-body {
  font-family: var(--serif);
  font-size: 18.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  padding: 16px var(--rail) clamp(60px, 8vw, 100px);
  max-width: var(--max-narrow);
  margin: 0 auto;
}
.article-body h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: clamp(48px, 6vw, 72px) 0 18px;
  line-height: 1.15;
  scroll-margin-top: 100px;
}
.article-body h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 14px;
  letter-spacing: -0.3px;
}
.article-body h4 {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--roxo-bright);
  margin: 32px 0 12px;
  font-weight: 600;
}
.article-body p { margin: 0 0 24px; }
.article-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 76px;
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 0;
  font-weight: 700;
  color: var(--roxo-bright);
}
.article-body a {
  color: var(--roxo-bright);
  border-bottom: 1px solid var(--roxo-deep);
  padding-bottom: 1px;
}
.article-body a:hover { color: var(--gold); border-bottom-color: var(--gold); opacity: 1; }
.article-body ul, .article-body ol { margin: 0 0 24px; padding-left: 28px; }
.article-body li { margin-bottom: 10px; }
.article-body blockquote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  border-left: 3px solid var(--roxo-bright);
  padding: 16px 28px;
  margin: 36px 0;
  color: var(--ink);
  letter-spacing: -0.3px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body img { margin: 28px 0; border-radius: var(--radius-sm); }
.article-body hr {
  border: none;
  height: 1px;
  background: var(--hair);
  margin: clamp(40px, 5vw, 60px) 0;
}

/* ============ CTA CLIENTE INLINE ============ */
.cta-cliente { margin: clamp(40px, 5vw, 60px) auto; padding: 0 var(--rail); max-width: var(--max-narrow); }
.cta-cliente-inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}
@media (max-width: 600px) {
  .cta-cliente-inner { grid-template-columns: 100px 1fr; gap: 20px; padding: 24px; }
}
.cta-cliente-photo {
  width: 140px;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
@media (max-width: 600px) { .cta-cliente-photo { width: 100px; } }
.cta-cliente-label {
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.cta-cliente-body h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  margin: 6px 0 10px;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.cta-cliente-body p {
  font-family: var(--display);
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.55;
}

/* ============ FAQ ============ */
.article-faq { padding: clamp(40px, 5vw, 60px) var(--rail); max-width: var(--max-narrow); margin: 0 auto; }
.article-faq h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 700;
  border-bottom: 1px solid var(--hair);
  padding-bottom: 14px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.faq-item { border-bottom: 1px solid var(--hair); padding: 18px 0; }
.faq-item summary {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  color: var(--roxo-bright);
  font-weight: 400;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  font-family: var(--serif);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

/* ============ AUTHOR ============ */
.article-author { padding: clamp(40px, 5vw, 60px) var(--rail); max-width: var(--max-narrow); margin: 0 auto; }
.author-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--glass-shadow);
}
@media (max-width: 600px) { .author-card { grid-template-columns: 64px 1fr; gap: 18px; padding: 22px; } }
.author-photo {
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-elev-2);
  border: 1px solid var(--hair-strong);
}
.author-body strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}
.author-cargo {
  font-family: var(--display);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.author-body p { font-family: var(--display); font-size: 14px; color: var(--ink-soft); margin: 0 0 10px; line-height: 1.6; }
.author-body a { font-family: var(--display); font-size: 12px; color: var(--roxo-bright); font-weight: 600; }

/* ============ RELATED ============ */
.article-related { padding: clamp(50px, 6vw, 80px) var(--rail) clamp(60px, 8vw, 100px); border-top: 1px solid var(--hair); max-width: var(--max); margin: 0 auto; }
.article-related h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 700;
  border-bottom: 1px solid var(--hair);
  padding-bottom: 16px;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 4vw, 36px);
}
.related-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.related-card:hover { border-color: var(--roxo-bright); transform: translateX(4px); opacity: 1; }
.related-card:hover h3 { color: var(--roxo-bright); }
.related-card h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 10px 0 8px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}
.related-card p { font-family: var(--display); font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gold {
  background: var(--roxo-bright);
  color: #fff;
  box-shadow: 0 4px 18px var(--roxo-glow);
}
.btn-gold:hover { background: var(--roxo); color: #fff; opacity: 1; transform: translateY(-2px); box-shadow: 0 8px 26px var(--roxo-glow); }
.btn-ig {
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
}
.btn-ig:hover { background: var(--gold-bright); color: var(--bg); opacity: 1; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hair-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(255, 255, 255, 0.05); color: var(--ink); opacity: 1; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 16px; }

/* ============ CTA BANNER FINAL ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--roxo-deep) 0%, var(--roxo) 100%);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, var(--gold) 0%, transparent 50%);
  opacity: 0.18;
  pointer-events: none;
}
.cta-banner-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
  max-width: 660px;
}
.cta-banner p {
  font-family: var(--display);
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.5;
  max-width: 540px;
}
.cta-banner .btn-gold {
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(212, 178, 106, 0.35);
}
.cta-banner .btn-gold:hover { background: var(--gold-bright); color: var(--bg); }

/* ============ EDITORIA PAGE ============ */
.editoria-hero {
  border-bottom: 1px solid var(--hair);
  padding: clamp(50px, 7vw, 80px) 0 clamp(30px, 4vw, 48px);
  text-align: center;
}
.editoria-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -1.8px;
  color: var(--ink);
  margin: 18px 0 14px;
  line-height: 1;
}
.editoria-desc {
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-mute);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}
.editoria-lista { padding: clamp(50px, 7vw, 80px) 0 clamp(60px, 8vw, 100px); }

/* ============ SOBRE JHON · DOCUMENTÁRIO ============ */
.sobre-page--documentary { background: var(--bg); }
.sobre-page--documentary .article-head,
.sobre-page--documentary .article-body,
.sobre-page--documentary .article-toc,
.sobre-page--documentary .article-figure { display: none; }

.doc-hero {
  position: relative;
  min-height: clamp(520px, 80vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(80px, 12vw, 160px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.doc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  filter: saturate(1.2) brightness(0.55);
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,0.6) 18%,
    #000 35%,
    #000 75%,
    transparent 100%);
  mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,0.6) 18%,
    #000 35%,
    #000 75%,
    transparent 100%);
}
.doc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.32) 0%, transparent 60%),
    radial-gradient(circle at 85% 70%, rgba(212, 178, 106, 0.18) 0%, transparent 55%);
  z-index: -1;
  pointer-events: none;
}
.doc-hero-inner { position: relative; z-index: 1; }
.doc-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 6px 16px;
  border: 1px solid rgba(184, 146, 58, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  margin: 32px 0 28px;
}
.doc-hero-name {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 108px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.86;
  color: var(--ink);
  margin: 0 0 28px;
}
.doc-hero-sub {
  font-family: var(--display);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 48px;
  font-weight: 400;
}
.doc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 36px);
  max-width: 880px;
}
@media (max-width: 720px) {
  .doc-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
.doc-hero-stat {
  display: flex; flex-direction: column;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.doc-hero-stat strong {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.doc-hero-stat span {
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-mute);
}

/* ===== Foto destaque ===== */
.doc-feature {
  padding: clamp(40px, 6vw, 80px) 0;
}
.doc-feature-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  position: relative;
}
.doc-feature-figure img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 20%;
}
.doc-feature-figure figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  color: #fff;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
}

/* ===== Narrativa por capítulos ===== */
.doc-narrative { padding: clamp(40px, 6vw, 80px) 0; }
.doc-narrative-body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  counter-reset: chapter;
}
.doc-narrative-body p { margin-bottom: 22px; }
.doc-narrative-body p strong { color: var(--ink); font-weight: 600; }
.doc-narrative-body h2 {
  counter-increment: chapter;
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  color: var(--ink);
  margin: clamp(60px, 8vw, 100px) 0 28px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  position: relative;
}
.doc-narrative-body h2::before {
  content: "Cap " counter(chapter, decimal-leading-zero);
  display: block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--roxo-bright);
  margin-bottom: 14px;
}
.doc-narrative-body h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.doc-narrative-body blockquote {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding: 18px 28px;
  margin: 32px 0;
  background: rgba(255,255,255,0.5);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  letter-spacing: -0.3px;
}
.doc-narrative-body blockquote strong { color: var(--roxo-bright); font-weight: 700; font-style: normal; }
.doc-narrative-body a {
  color: var(--roxo-bright);
  border-bottom: 1px solid var(--gold);
}
.doc-narrative-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 76px;
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 0;
  font-weight: 800;
  color: var(--roxo-bright);
}
.doc-narrative-body ul, .doc-narrative-body ol { margin: 0 0 28px 1.5em; }
.doc-narrative-body li { margin-bottom: 8px; }
.doc-narrative-body hr {
  border: none;
  height: 1px;
  background: var(--hair);
  margin: 40px 0;
}
.doc-narrative-body img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  margin: clamp(40px, 6vw, 64px) 0 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  display: block;
}
.doc-narrative-body img + em {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  text-align: center;
  margin: 0 auto clamp(40px, 5vw, 56px);
  max-width: 600px;
  line-height: 1.5;
}
/* Markdown gera <em> sozinho na linha depois da img como legenda */
.doc-narrative-body p img + em,
.doc-narrative-body p > img:only-child + em {
  display: block;
}

/* ===== Bloco de quotes ===== */
.doc-quotes {
  padding: clamp(40px, 6vw, 80px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-solid) 100%);
}
.doc-quote {
  margin: 28px 0;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  border-left: 4px solid var(--roxo-bright);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.doc-quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin: 0 0 12px;
}
.doc-quote p strong { color: var(--roxo-bright); font-style: normal; font-weight: 700; }
.doc-quote cite {
  font-family: var(--display);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ============ FOOTER ============ */
.rodape {
  background: var(--bg-dark-section);
  border-top: 1px solid var(--hair-strong);
  color: rgba(255,255,255,0.75);
  padding: clamp(60px, 8vw, 100px) 0 32px;
  margin-top: 0;
}
.rodape h4 { color: var(--gold-bright) !important; }
.rodape a { color: rgba(255,255,255,0.75) !important; }
.rodape a:hover { color: #fff !important; }
.rodape-claim { color: rgba(255,255,255,0.65) !important; }
.rodape-disclaimer { color: rgba(255,255,255,0.4) !important; }
.rodape-inner { border-bottom: 1px solid rgba(255,255,255,0.1); }
.rodape-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(36px, 5vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 24px;
}
@media (max-width: 760px) { .rodape-inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 500px) { .rodape-inner { grid-template-columns: 1fr; } }
.rodape-col h4 {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.rodape-col a {
  display: block;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 14px;
  padding: 6px 0;
  letter-spacing: 0.1px;
}
.rodape-col a:hover { color: var(--ink); opacity: 1; }
.rodape-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--roxo) 0%, var(--roxo-deep) 100%);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  box-shadow: 0 0 24px var(--roxo-glow);
}
.rodape-claim {
  font-family: var(--display);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 280px;
  margin-bottom: 18px;
}
.rodape-disclaimer {
  font-family: var(--display);
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
  line-height: 1.6;
}
.rodape-cta {
  display: inline-block;
  background: var(--roxo-bright);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--display) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px var(--roxo-glow);
}
.rodape-cta:hover { background: var(--roxo); color: #fff !important; opacity: 1; }
