* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0a0e1a;
  --bg-darker: #060912;
  --bg-light: #f5f3ee;
  --bg-cream: #ebe7dc;
  --ink: #0a0e1a;
  --ink-muted: #4a4e5a;
  --accent: #c8a45c;
  --accent-dark: #9c7a3a;
  --accent-soft: #e8d9b8;
  --line: rgba(255,255,255,0.08);
  --line-dark: rgba(10,14,26,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-light);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -0.02em; }
.italic { font-style: italic; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #f9f9f9;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.logo-mark img { width: 100%; height: 100%; display: block; }
.logo .tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid rgba(200,164,92,0.4);
  border-radius: 100px;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--accent);
  color: var(--bg-darker);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent-soft); transform: translateY(-1px); }

@media (max-width: 820px) {
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .logo .tag { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 12px; }
}

/* ===== HERO ===== */
.hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 140px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(200,164,92,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding: 8px 14px;
  border: 1px solid rgba(200,164,92,0.35);
  border-radius: 100px;
  background: rgba(200,164,92,0.06);
}
.pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,164,92,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(200,164,92,0.18); }
  50% { box-shadow: 0 0 0 7px rgba(200,164,92,0.06); }
}
.hero-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-sub strong { color: rgba(255,255,255,0.92); font-weight: 600; }

/* Hotmart primary CTA — big button */
.btn-hotmart {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--bg-darker);
  padding: 18px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 36px rgba(200,164,92,0.28);
}
.btn-hotmart:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(200,164,92,0.4);
}
.btn-hotmart svg { width: 16px; height: 16px; }

.hotmart-microcopy {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}
.hotmart-microcopy .sep { opacity: 0.45; }
.hotmart-microcopy strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.hero-cta-block {
  margin-bottom: 32px;
}

.lead-secondary {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  max-width: 540px;
}
.lead-secondary-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.lead-secondary-label .accent { color: var(--accent); }
.lead-secondary p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Email form */
.email-form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px;
  border-radius: 100px;
  max-width: 520px;
  backdrop-filter: blur(8px);
  margin-bottom: 18px;
  transition: all 0.25s;
}
.email-form:focus-within {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(200,164,92,0.12);
}
.email-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 18px;
  min-width: 0;
}
.email-form input::placeholder { color: rgba(255,255,255,0.45); }
.btn-primary {
  background: var(--accent);
  color: var(--bg-darker);
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(200,164,92,0.25);
}
.btn-primary svg { width: 14px; height: 14px; }

.form-microcopy {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
}
.form-microcopy span { display: inline-flex; align-items: center; gap: 6px; }
.form-microcopy span::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}
.form-success {
  display: none;
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(200,164,92,0.10);
  border: 1px solid rgba(200,164,92,0.35);
  border-radius: 14px;
  color: var(--accent-soft);
  font-size: 14px;
  max-width: 520px;
}
.form-success.show { display: block; }

.hero-stats {
  display: flex;
  gap: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* Hero visual / cards collage */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 460px;
}

.card-tile {
  border-radius: 18px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease;
}
.card-tile:hover { transform: translateY(-4px); }

.card-tile.dark {
  background: linear-gradient(145deg, #131826 0%, #0a0e1a 100%);
  border: 1px solid var(--line);
}
.card-tile.gold {
  background: linear-gradient(145deg, #c8a45c 0%, #9c7a3a 100%);
  color: var(--bg-darker);
}
.card-tile.cream {
  background: var(--bg-cream);
  color: var(--ink);
}
.card-tile.outline {
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
}

.tile-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.75;
  font-weight: 600;
}
.tile-big {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tile-small { font-size: 12.5px; line-height: 1.4; opacity: 0.85; margin-top: 8px; }

.chart-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { height: 380px; }
  .hero { padding: 110px 0 70px; }
  .hero-stats { gap: 28px; }
  .email-form { padding: 6px; }
  .email-form input { padding: 10px 14px; font-size: 14px; }
  .btn-primary { padding: 12px 20px; font-size: 13px; }
}
@media (max-width: 480px) {
  .email-form { flex-direction: column; border-radius: 16px; padding: 8px; }
  .email-form input { width: 100%; padding: 12px 14px; }
  .btn-primary { width: 100%; justify-content: center; }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--bg-darker);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 64px;
}
.marquee-item::after {
  content: '✦';
  color: var(--accent);
  font-size: 14px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 110px 0; }

/* ===== PROBLEM ===== */
.problem { background: var(--bg-light); }

.problem-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.problem-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.problem-head h2 .accent { font-style: italic; color: var(--accent-dark); font-weight: 400; }
.problem-head p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.problem-head p strong { color: var(--ink); font-weight: 600; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.problem-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px;
  border: 1px solid var(--line-dark);
  position: relative;
  transition: all 0.3s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,14,26,0.06);
  border-color: var(--accent);
}
.problem-card-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--accent-dark);
  margin-bottom: 22px;
}
.problem-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .problem-head { grid-template-columns: 1fr; gap: 28px; }
  .problem-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}

/* ===== MECHANISMS ===== */
.mechanisms {
  background: var(--bg-darker);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mechanisms::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.mech-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 68px;
}
.mech-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.mech-head h2 .accent { font-style: italic; color: var(--accent); font-weight: 400; }
.mech-head p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
}
.mech-head p strong { color: #fff; font-weight: 600; }

.mech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.mech-card {
  background: var(--bg-darker);
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s;
  cursor: default;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.mech-card:hover { background: #0d111e; }
.mech-card:hover .mech-num { color: var(--accent); }
.mech-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
  transition: color 0.3s;
}
.mech-card h4,
.mech-card .mech-area {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}
.mech-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin-bottom: 12px;
}
.mech-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  flex-grow: 1;
}
.mech-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.mech-foot .mech-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(200,164,92,0.10);
  color: var(--accent);
  border: 1px solid rgba(200,164,92,0.28);
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mech-foot .mech-badge.live {
  background: rgba(230,57,70,0.12);
  color: #ff7d85;
  border-color: rgba(230,57,70,0.35);
}
.mech-foot .mech-badge.live::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #ff5560;
  animation: pulse 1.8s ease-in-out infinite;
}
.mech-card.featured {
  background: linear-gradient(160deg, #0d1424 0%, #060912 100%);
  border-left: 1px solid rgba(200,164,92,0.4);
}
.mech-card.featured:hover { background: linear-gradient(160deg, #101a30 0%, #060912 100%); }
.mech-card.kickoff h4,
.mech-card.kickoff .mech-area { color: rgba(255,255,255,0.7); }
@media (min-width: 1025px) {
  .mech-card.featured { grid-column: span 2; }
  .mech-card.featured h3 { font-size: 24px; max-width: 80%; }
  .mech-card.featured p { max-width: 80%; }
}

.mech-cta {
  text-align: center;
  margin-top: 56px;
}
.btn-light {
  background: var(--accent);
  color: var(--bg-darker);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}
.btn-light:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,164,92,0.25);
}
.btn-light svg { width: 14px; height: 14px; }

@media (max-width: 1024px) {
  .mech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .mech-grid { grid-template-columns: 1fr; }
}

/* ===== FORMAT ===== */
.format { background: var(--bg-cream); }

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.format-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.format-text h2 .accent { font-style: italic; color: var(--accent-dark); font-weight: 400; }
.format-text > p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.format-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar {
  background: #fff;
  padding: 26px 30px;
  border-radius: 14px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: all 0.25s;
  border: 1px solid transparent;
}
.pillar:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.pillar-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--accent-dark);
  line-height: 1;
  min-width: 40px;
}
.pillar h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .format-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ===== CREDIBILITY (YouTube proof) ===== */
.credibility {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.credibility::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.credibility .container { position: relative; z-index: 2; }

.cred-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.cred-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.cred-head h2 .accent { font-style: italic; color: var(--accent); font-weight: 400; }
.cred-head p {
  font-size: 16.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.cred-head p strong { color: #fff; font-weight: 600; }

.cred-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 56px;
}
.cred-stat {
  background: var(--bg-dark);
  padding: 28px 26px;
  transition: background 0.3s;
}
.cred-stat:hover { background: #0d1220; }
.cred-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1;
}
.cred-stat-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
  line-height: 1.4;
}

.cred-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.thumb:hover { transform: translateY(-4px); }
.thumb:hover .thumb-image::after { opacity: 1; }
.thumb:hover .thumb-play { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.thumb:hover .thumb-title { color: var(--accent); }

.thumb-image {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c1018;
}
.thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.thumb:hover .thumb-image img { transform: scale(1.04); }
.thumb-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 100%);
  opacity: 0.7;
  transition: opacity 0.3s;
  pointer-events: none;
}
.thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.78);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.thumb-play svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 3px;
}
.thumb-time {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.02em;
}
.thumb-meta {
  padding: 14px 4px 4px;
}
.thumb-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s;
}
.thumb-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.thumb-sub .dot { opacity: 0.45; margin: 0 6px; }
.cred-foot {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.cred-foot strong { color: var(--accent); font-weight: 500; font-family: 'Fraunces', serif; font-style: italic; }

@media (max-width: 1024px) {
  .cred-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .cred-thumbs { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cred-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--bg-light);
  padding: 110px 0 120px;
}
.cta-box {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a2240 70%, #2a3560 100%);
  border-radius: 28px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(200,164,92,0.18) 0%, transparent 60%);
}
.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 30%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent);
}
.cta-content { position: relative; z-index: 2; }
.cta-stamp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.cta-stamp-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f9f9f9;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-stamp-mark img { width: 100%; height: 100%; display: block; border-radius: 50%; }
.cta-stamp-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}
.cta-stamp-text strong {
  color: #fff;
  font-weight: 600;
}
.cta-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta-content h2 .accent { font-style: italic; color: var(--accent); font-weight: 400; }
.cta-content > p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  font-size: 16px;
  max-width: 460px;
}

.cta-features {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.cta-feature-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 12px;
}
.cta-feature h4,
.cta-feature h3 {
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cta-feature p {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cta-box { grid-template-columns: 1fr; padding: 56px 28px; gap: 36px; }
  .final-cta { padding: 80px 0 90px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.55);
  padding: 40px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
}
.footer-inner .brand { color: rgba(255,255,255,0.75); }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #f9f9f9;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-mark img { width: 100%; height: 100%; display: block; }

/* ===== Reveal animation =====
   O estado escondido é escopado em .js — a classe é posta pelo próprio
   navegador em inc/layout.php. Sem JavaScript (ou se o site.js falhar ao
   carregar), o conteúdo aparece normalmente em vez de a página ficar em
   branco. Isso vale tanto para pessoas quanto para rastreadores que não
   executam script. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================================================
   COMPONENTES DO HUB
   ---------------------------------------------------------------------------
   Adicionado na reestruturação do site (institucional + editorial + comercial).
   Reaproveita os mesmos tokens da landing original: paleta navy/creme/dourado,
   Fraunces para títulos e Inter para texto.
   =========================================================================== */

/* ===== ACESSIBILIDADE ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--bg-darker);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== NAV — versão do hub (8 itens + menu mobile) ===== */
.nav-inner { gap: 20px; }
.logo .tag { white-space: nowrap; }

.nav-links { gap: 22px; }
.nav-links a { font-size: 13.5px; white-space: nowrap; }
.nav-links a.ativo { color: var(--accent); }
.nav-links a.ativo::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
}
@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-inner { padding: 14px 20px; flex-wrap: wrap; }
  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 4px;
    border-top: 1px solid var(--line);
    margin-top: 12px;
  }
  body.menu-aberto .nav-links { display: flex; }
  .nav-links a {
    padding: 13px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  body.menu-aberto .nav-cta {
    display: inline-flex;
    order: 4;
    width: 100%;
    justify-content: center;
    margin: 12px 0 4px;
  }
  body.menu-aberto { overflow: hidden; }
}
@media (max-width: 400px) {
  .logo { font-size: 17px; gap: 8px; }
  .logo .tag { display: none; }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--line);
  padding: 78px 0 0;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.breadcrumbs li + li::before {
  content: '/';
  margin-right: 8px;
  opacity: 0.35;
}
.breadcrumbs a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current="page"] { color: rgba(255,255,255,0.85); }

/* Sem breadcrumbs (home e páginas de curso com hero próprio), o hero já
   compensa a nav fixa; com breadcrumbs, o espaçamento vem daqui. */
.breadcrumbs + main .page-hero { padding-top: 64px; }
.breadcrumbs + main .hero { padding-top: 90px; }

/* ===== HERO DE PÁGINA INTERNA ===== */
.page-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -180px; right: -140px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(200,164,92,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.page-hero h1 .accent { color: var(--accent); font-style: italic; font-weight: 400; }
.page-hero-sub {
  margin-top: 22px;
  max-width: 62ch;
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: rgba(255,255,255,0.66);
  line-height: 1.65;
}
.page-hero-sub strong { color: rgba(255,255,255,0.92); font-weight: 600; }
.page-hero-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.page-hero-handle {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.page-hero-legal h1 { max-width: 20ch; }

@media (max-width: 700px) {
  .page-hero { padding: 118px 0 54px; }
  .breadcrumbs + main .page-hero { padding-top: 44px; }
}

/* ===== HERO DA HOME ===== */
.hero-grid-solo { grid-template-columns: 1fr; max-width: 900px; }
.hero-cta-duplo { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-nota {
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.03);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
.btn-ghost svg { width: 19px; height: 19px; flex-shrink: 0; }

/* Estado do CTA do Patreon enquanto a URL oficial não é configurada. */
.btn-inativo {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== CABEÇALHOS DE SEÇÃO ===== */
.sec-head-centro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.sec-head-centro h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.sec-head-centro h2 .accent { font-style: italic; color: var(--accent-dark); font-weight: 400; }
.sec-sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* Em fundo escuro o dourado precisa ser o claro. */
.mechanisms .sec-head-centro h2 .accent,
.credibility .sec-head-centro h2 .accent,
.outros-cursos .sec-head-centro h2 .accent { color: var(--accent); }
.mechanisms .sec-head-centro,
.credibility .sec-head-centro,
.outros-cursos .sec-head-centro { color: #fff; }
.mechanisms .sec-sub,
.credibility .sec-sub,
.outros-cursos .sec-sub { color: rgba(255,255,255,0.6); }

.container-estreito { max-width: 760px; }

/* ===== CARDS DE CURSO ===== */
.cursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.curso-card { display: flex; }
.curso-card-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 30px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.curso-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(200,164,92,0.5);
  box-shadow: 0 18px 44px rgba(10,14,26,0.10);
}
.curso-card-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.curso-card-link h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.curso-card-sub {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.45;
}
.curso-card-desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
  flex-grow: 1;
}
.curso-card-stats {
  list-style: none;
  display: flex;
  gap: 26px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.curso-card-stats li { display: flex; flex-direction: column; gap: 3px; }
.curso-card-stats strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.curso-card-stats span {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  line-height: 1.3;
}
.curso-card-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
}
.curso-card-cta svg { width: 14px; height: 14px; transition: transform .2s ease; }
.curso-card-link:hover .curso-card-cta svg { transform: translateX(4px); }

/* Cards de curso sobre fundo escuro */
.format .curso-card-link,
.outros-cursos .curso-card-link,
.conteudos-home .curso-card-link {
  background: rgba(255,255,255,0.9);
}
.outros-cursos { background: var(--bg-darker); }
.outros-cursos .curso-card-link {
  background: #0b0f1c;
  border-color: var(--line);
  color: #fff;
}
.outros-cursos .curso-card-link h3 { color: #fff; }
.outros-cursos .curso-card-desc,
.outros-cursos .curso-card-sub { color: rgba(255,255,255,0.6); }
.outros-cursos .curso-card-cat,
.outros-cursos .curso-card-cta { color: var(--accent); }
.outros-cursos .curso-card-stats { border-top-color: var(--line); }
.outros-cursos .curso-card-stats strong { color: #fff; }
.outros-cursos .curso-card-stats span { color: rgba(255,255,255,0.5); }
.outros-cursos .curso-card-link:hover { background: #0d111e; }

.cursos-grid-compacto { grid-template-columns: 1fr; gap: 16px; }
.cursos-grid-compacto .curso-card-link { padding: 24px 24px; }
.cursos-grid-compacto .curso-card-link h3 { font-size: 21px; }
.cursos-grid-compacto .curso-card-stats { display: none; }

.catalogo-nota {
  margin-top: 44px;
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-muted);
}
.catalogo-nota a { color: var(--accent-dark); font-weight: 600; }

/* ===== LINK DENTRO DE CARD ===== */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
}
.card-link span { transition: transform .2s ease; display: inline-block; }
.card-link:hover span { transform: translateX(4px); }

/* ===== PASSOS (como funciona) ===== */
.passos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  counter-reset: passo;
}
.passos li {
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
}
.passo-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.06em;
}
.passos h3 {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}
.passos p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.como-funciona { background: var(--bg-cream); }

/* ===== APRENDIZADO (o que você vai estudar) ===== */
.aprendizado {
  margin-top: 40px;
  padding: 40px 38px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.aprendizado-titulo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}
.aprendizado-lista {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 34px;
}
.aprendizado-lista li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}
.aprendizado-lista li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== MATERIAIS ===== */
.materiais { background: var(--bg-light); }
.materiais-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.materiais-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.materiais-inner h2 .accent { font-style: italic; color: var(--accent-dark); font-weight: 400; }
.materiais-lista { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.materiais-lista li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-size: 15.5px;
  line-height: 1.55;
}
.materiais-lista .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-darker);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
@media (max-width: 860px) { .materiais-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ===== PROFESSORES ===== */
.professores { background: var(--bg-cream); }
.prof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}
.prof-card {
  text-align: center;
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
}
.prof-inicial {
  width: 66px; height: 66px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prof-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.prof-papel {
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  font-weight: 600;
}
.prof-bio {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ===== DEPOIMENTOS ===== */
.depoimentos { background: var(--bg-light); }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.dep-card {
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
}
.dep-card blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}
.dep-card blockquote::before { content: '“'; color: var(--accent); }
.dep-card blockquote::after  { content: '”'; color: var(--accent); }
.dep-card figcaption {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
}
.dep-card figcaption strong { font-weight: 600; }
.dep-card figcaption span { color: var(--ink-muted); font-size: 13px; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-cream); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(200,164,92,0.55); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-dark); }
.faq-item summary svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--accent-dark);
  transition: transform .25s ease;
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-answer {
  padding: 0 26px 24px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-muted);
}
.faq-answer a { color: var(--accent-dark); font-weight: 600; }
.faq-rodape {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.faq-rodape p { font-size: 15.5px; color: var(--ink-muted); }
.faq-cursos { background: var(--bg-light); }

/* ===== CONTEÚDOS ===== */
.conteudos-lista { background: var(--bg-light); }
.categoria {
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
  scroll-margin-top: 110px;
}
.categoria:last-child { border-bottom: 0; }
.categoria-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: baseline;
}
.categoria-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.categoria-head p { font-size: 15.5px; line-height: 1.65; color: var(--ink-muted); }
.categoria-ponte {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
}
.categoria-ponte a { color: var(--accent-dark); font-weight: 600; }
.artigo-lista { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.artigo-lista a {
  display: block;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease;
}
.artigo-lista a:hover { border-color: rgba(200,164,92,0.5); transform: translateY(-2px); }
.artigo-lista h3 { font-size: 17px; font-weight: 600; line-height: 1.35; }
.artigo-lista p { margin-top: 8px; font-size: 14.5px; color: var(--ink-muted); line-height: 1.6; }
@media (max-width: 780px) { .categoria-head { grid-template-columns: 1fr; gap: 12px; } }

.conteudos-home { background: var(--bg-dark); color: #fff; }
.conteudos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.conteudos-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.conteudos-inner h2 .accent { font-style: italic; color: var(--accent); font-weight: 400; }
.conteudos-inner > div > p {
  margin: 20px 0 30px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
}
.tema-nuvem { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.tema-nuvem a {
  display: inline-block;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.tema-nuvem a:hover {
  border-color: rgba(200,164,92,0.55);
  color: var(--accent);
  background: rgba(200,164,92,0.06);
}
@media (max-width: 860px) { .conteudos-inner { grid-template-columns: 1fr; gap: 34px; } }

.tema-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.tema-grid a {
  display: block;
  height: 100%;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, border-color .2s ease;
}
.tema-grid a:hover { transform: translateY(-3px); border-color: rgba(200,164,92,0.5); }
.tema-grid h3 { font-size: 17px; font-weight: 600; }
.tema-grid p { margin-top: 9px; font-size: 14px; line-height: 1.6; color: var(--ink-muted); }

/* ===== PROSA (Sobre, jurídicas, clube) ===== */
.sobre-texto { background: var(--bg-light); }
.prosa { font-size: 17px; line-height: 1.8; color: var(--ink-muted); }
.prosa p + p { margin-top: 20px; }
.prosa strong { color: var(--ink); font-weight: 600; }
.prosa a { color: var(--accent-dark); font-weight: 600; }
.prosa h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
}
.prosa h2:first-child { margin-top: 0; }
.prosa h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 26px 0 10px;
}
.prosa ul { margin: 16px 0 16px 22px; }
.prosa li { margin-bottom: 10px; }
.prosa-destaque {
  margin-top: 32px;
  padding: 26px 30px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 0 12px 12px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
}
.sobre-pessoas { background: var(--bg-cream); }
.format-pillars-largo { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); display: grid; gap: 16px; }

/* ===== PÁGINAS JURÍDICAS ===== */
.legal { background: var(--bg-light); padding-top: 60px; }
.prosa-legal { font-size: 16px; }
.prosa-legal h2 { font-size: 22px; margin-top: 44px; }
.legal-data {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
  color: var(--ink-muted);
}

/* ===== CLUBE / PATREON ===== */
.clube-info { background: var(--bg-cream); }
.clube-cta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.clube-aviso {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ===== CONTATO ===== */
.contato-secao { background: var(--bg-light); }
.contato-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: start;
}
.contato-grid-solo { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.contato-grid h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.form-contato { display: flex; flex-direction: column; gap: 18px; }
.campo { display: flex; flex-direction: column; gap: 8px; }
.campo label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.campo label span { color: var(--accent-dark); }
.campo input,
.campo select,
.campo textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.campo textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.campo input:focus,
.campo select:focus,
.campo textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,164,92,0.16);
}
.campo-armadilha {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-contato .btn-primary { align-self: flex-start; }
.form-contato.com-erro .campo input:invalid { border-color: #e76b6b; }

.contato-canais { display: flex; flex-direction: column; gap: 16px; }
.canal {
  padding: 26px 26px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
}
.canal h3 { font-size: 16.5px; font-weight: 600; }
.canal p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
}
.canal p a { color: var(--accent-dark); font-weight: 600; }
.canal-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
}
.canal-link span { transition: transform .2s ease; display: inline-block; }
.canal-link:hover span { transform: translateX(4px); }
.canal-destaque { background: var(--bg-cream); border-color: rgba(200,164,92,0.35); }
@media (max-width: 880px) { .contato-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== NEWSLETTER ===== */
.newsletter-bloco { background: var(--bg-dark); color: #fff; }
.newsletter-bloco .sec-head-centro { color: #fff; }
.newsletter-bloco .sec-head-centro h2 .accent { color: var(--accent); }
.newsletter-bloco .lead-secondary { max-width: 620px; margin: 0 auto; }

/* Formulário de e-mail sobre fundo claro (páginas internas) */
.conteudos-lista .email-form input,
.legal .email-form input { color: var(--ink); }

/* ===== FAIXA DE CURSOS ===== */
.faixa-cursos { background: var(--bg-darker); color: #fff; padding: 84px 0; }
.faixa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.faixa-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-top: 4px;
}
.faixa-inner p {
  margin-top: 12px;
  max-width: 56ch;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}
.faixa-inner .btn-light { flex-shrink: 0; }

/* ===== OFERTA ===== */
.oferta-preco {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--accent);
  margin: 6px 0 20px;
}
.cta-box-simples { grid-template-columns: 1fr; text-align: center; }
.cta-box-simples .cta-stamp { justify-content: center; }
.cta-box-simples .cta-content > p { margin-left: auto; margin-right: auto; }

/* ===== VÍDEOS ===== */
.cred-thumbs-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.thumb-embed { display: flex; flex-direction: column; }
.thumb-embed .thumb-image {
  width: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  display: block;
}
.thumb-embed:hover .thumb-play { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.thumb-embed:hover .thumb-title { color: var(--accent); }
.thumb-embed:hover .thumb-image img { transform: scale(1.04); }
.thumb-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}
.thumb-player iframe { width: 100%; height: 100%; border: 0; display: block; }
.thumb-play { pointer-events: none; }

/* ===== RODAPÉ (versão do hub) ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer-col h3 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-col-brand .footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-desc {
  margin-top: 18px;
  max-width: 40ch;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}
.footer-yt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.footer-yt:hover { border-color: rgba(200,164,92,0.5); color: var(--accent); }
.footer-yt svg { width: 17px; height: 17px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .brand { color: rgba(255,255,255,0.7); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ===== ESTADOS DE FORMULÁRIO ===== */
.form-error-msg {
  color: #e76b6b;
  font-size: 13px;
  margin-top: 8px;
  min-height: 18px;
}
.email-form.com-erro { border-color: #e76b6b; }
.btn-primary.carregando { opacity: 0.7; cursor: wait; }

/* ===== UNIDADES DOS TILES ===== */
.tile-unit { font-size: 22px; color: var(--accent); }
.tile-unit-it { font-size: 16px; font-style: italic; font-weight: 400; }

/* ===== AJUSTES DE ESPAÇAMENTO EM TELA PEQUENA ===== */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 68px 0; }
  .sec-head-centro { margin-bottom: 38px; }
  .cursos-grid { grid-template-columns: 1fr; }
  .curso-card-link { padding: 26px 22px; }
  .curso-card-stats { gap: 18px; }
  .aprendizado { padding: 28px 22px; }
  .faq-item summary { padding: 18px 20px; font-size: 15px; }
  .faq-answer { padding: 0 20px 20px; font-size: 15px; }
  .prosa { font-size: 16px; }
  .prosa-destaque { font-size: 18px; padding: 22px 24px; }
  .faixa-cursos { padding: 60px 0; }
}

/* ===== MOVIMENTO REDUZIDO ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}
