/*
 * Creators Embassy — Home do membro
 * ------------------------------------------------------------------
 * Tokens: creators_embassy_design_system_showcase_v2.html (fonte visual)
 * + creators_embassy_home_design_system.md (regras). Ajustes em relação
 * ao sistema, todos por acessibilidade (WCAG AA) e documentados abaixo:
 *   --gold-ink   dourado mais escuro para TEXTO em fundo claro (#C6A15B
 *                dá 2.3:1 no canvas; #8C6A2E dá 4.6:1). O dourado da marca
 *                segue igual para linhas, selos, estrelas e detalhes.
 *   --muted      #626E67 no lugar de #7D8882 (3.4:1 → 4.9:1 no canvas).
 */

/* =================================================================== */
/* 1. Tokens                                                            */
/* =================================================================== */
:root {
  /* Marca */
  --green: #214535;
  --green-hover: #2a5944;
  --green-pressed: #163226;
  --green-soft: #e8f0eb;
  --green-pale: #f2f6f3;
  --gold: #c6a15b;
  --gold-soft: #f3e9d5;
  --gold-ink: #8c6a2e;
  --gold-on-dark: #d9b76f;
  --sage: #87a191;

  /* Neutros quentes */
  --canvas: #f7f7f2;
  --canvas-deep: #f0efe8;
  --sand: #efe7d9;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #1d2722;
  --ink-soft: #4f5e56;
  --muted: #626e67;
  --line: rgba(33, 69, 53, 0.12);
  --line-strong: rgba(33, 69, 53, 0.2);
  --dark: #153428;
  --dark-2: #0f281f;
  --on-dark: #fffdf8;
  --on-dark-soft: #c9d8d0;

  /* Tipografia */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-ui: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Espaço — grade de 8 */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 80px;
  --s8: 96px;
  --section: clamp(48px, 5.6vw, 80px);
  --gutter: clamp(20px, 3.4vw, 40px);
  --head-gap: clamp(32px, 4vw, 56px);

  /* Raios — crescem com o tamanho do componente */
  --r-input: 8px;
  --r-card: 16px;
  --r-card-lg: 24px;
  --r-panel: 32px;
  --r-pill: 999px;

  /* Elevação — sombra tingida de verde, nunca cinza */
  --shadow-sm: 0 1px 2px rgba(18, 40, 30, 0.06), 0 2px 8px rgba(18, 40, 30, 0.04);
  --shadow-md: 0 12px 34px rgba(18, 40, 30, 0.1);
  --shadow-lg: 0 34px 80px rgba(18, 40, 30, 0.16);
  --edge: inset 0 0 0 1px rgba(33, 69, 53, 0.07);

  /* Movimento — uma assinatura só */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-ui: 0.35s;
  --dur-media: 0.9s;
  --dur-enter: 0.9s;
  --rise: 28px;

  /* Layout */
  --container: 1320px;
  --header-h: 72px;
}

/* =================================================================== */
/* 2. Base                                                              */
/* =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--gold-soft);
  color: var(--green-pressed);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

.icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: var(--on-dark);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform var(--dur-ui) var(--ease);
}

.skip-link:focus {
  transform: none;
}

.noscript {
  max-width: 480px;
  margin: 96px auto;
  padding: 0 24px;
  text-align: center;
  color: var(--ink-soft);
}

/* =================================================================== */
/* 3. Layout e tipografia de seção                                      */
/* =================================================================== */
.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.kicker--on-dark {
  color: var(--on-dark);
}

.kicker--on-dark::before {
  background: var(--gold-on-dark);
}

.h2 {
  margin-top: 18px;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}

.h2 em {
  font-family: var(--font-display);
  font-size: 1.04em;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--green);
}

.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 64px;
  margin-bottom: var(--head-gap);
}

.section-head__main {
  max-width: 760px;
}

.section-head__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  text-align: right;
}

.section-head__aside .section-sub {
  max-width: 40ch;
}

.section-head--center {
  justify-content: center;
  text-align: center;
}

.section-head--center .section-head__main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head--center .section-sub {
  margin-top: 16px;
  max-width: 52ch;
}

.micro-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =================================================================== */
/* 4. Ações, chips e pequenos elementos                                 */
/* =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition:
    transform var(--dur-ui) var(--ease),
    box-shadow var(--dur-ui) var(--ease),
    background-color var(--dur-ui) var(--ease),
    color var(--dur-ui) var(--ease);
}

.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--dur-ui) var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover .icon:last-child:not(:first-child) {
  transform: translateX(3px);
}

.btn:active {
  transform: scale(0.97);
}

.btn--lg {
  height: 56px;
  padding: 0 28px 0 24px;
  font-size: 15px;
}

.btn--sm {
  height: 44px;
  padding: 0 18px;
  font-size: 13.5px;
}

.btn--primary {
  background: var(--green);
  color: var(--on-dark);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--green-hover);
  box-shadow: 0 14px 30px rgba(33, 69, 53, 0.24);
}

.btn--primary .btn__play {
  width: 16px;
  height: 16px;
  color: var(--gold-on-dark);
}

.btn--secondary {
  background: rgba(255, 253, 248, 0.7);
  color: var(--green);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.btn--secondary:hover {
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-sm);
}

.btn--light {
  background: var(--paper);
  color: var(--green);
}

.btn--light:hover {
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--green);
  transition: color var(--dur-ui) var(--ease);
}

.link-arrow span {
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  padding-bottom: 2px;
  transition: background-size var(--dur-ui) var(--ease);
}

.link-arrow .icon {
  width: 17px;
  height: 17px;
  transition: transform var(--dur-ui) var(--ease);
}

.link-arrow:hover span {
  background-size: 100% 1px;
}

.link-arrow:hover .icon {
  transform: translateX(4px);
}.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--green);
  transition: background-color var(--dur-ui) var(--ease), transform var(--dur-ui) var(--ease), opacity var(--dur-ui) var(--ease);
}

.icon-btn:hover {
  background: var(--green-pale);
}

.icon-btn:active {
  transform: scale(0.94);
}

.icon-btn--outline {
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.icon-btn--outline:hover {
  background: var(--green);
  color: var(--on-dark);
}

.icon-btn:disabled {
  opacity: 0.38;
  cursor: default;
  background: var(--paper);
  color: var(--green);
  transform: none;
}.arrow-circle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  box-shadow: inset 0 0 0 1px var(--line);
  transition:
    background-color var(--dur-ui) var(--ease),
    color var(--dur-ui) var(--ease),
    transform var(--dur-ui) var(--ease);
}

.arrow-circle .icon {
  width: 18px;
  height: 18px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip-sm {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px;
  border-radius: var(--r-pill);
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.chip-sm--outline {
  background: transparent;
  color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  letter-spacing: 0.08em;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  background: var(--green-pale);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.avatars {
  display: inline-flex;
  flex: none;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--canvas-deep);
  box-shadow: 0 0 0 2px var(--paper);
}

.avatars img + img {
  margin-left: -8px;
}

.avatars--xs img {
  width: 24px;
  height: 24px;
}

.avatars--xs img + img {
  margin-left: -6px;
}

.avatars--sm img {
  width: 30px;
  height: 30px;
}

.bar {
  display: block;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--green-soft);
  overflow: hidden;
}

.bar i {
  display: block;
  width: var(--p);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-hover) 100%);
  transform-origin: left center;
}

.pulse {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--gold-on-dark);
  animation: pulse 2.2s var(--ease) infinite;
}

.pulse--green {
  background: var(--sage);
  animation-name: pulse-green;
}

.play-disc {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.95);
  color: var(--green);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--dur-ui) var(--ease),
    background-color var(--dur-ui) var(--ease),
    color var(--dur-ui) var(--ease);
}

.play-disc .icon {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.play-disc--sm {
  width: 44px;
  height: 44px;
}

.play-disc--sm .icon {
  width: 16px;
  height: 16px;
}

.play-disc--lg {
  width: 72px;
  height: 72px;
}

.play-disc--lg .icon {
  width: 24px;
  height: 24px;
}

.play-disc--xl {
  width: 88px;
  height: 88px;
}

.play-disc--xl .icon {
  width: 28px;
  height: 28px;
}

.dot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.live-tag .pulse {
  background: var(--gold);
}

.live-tag--static {
  height: 30px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 253, 248, 0.94);
  color: var(--green);
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
}

/* Selo da marca: SVG oficial usado como máscara, herda a cor */
.brand__seal {
  display: block;
  width: 36px;
  height: 36px;
  flex: none;
  background: var(--green);
  -webkit-mask: url("brand/seal.svg") center / contain no-repeat;
  mask: url("brand/seal.svg") center / contain no-repeat;
}

/* =================================================================== */
/* 5. Header, menu da conta e menu mobile                              */
/* =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 247, 242, 0.84);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-ui) var(--ease), background-color var(--dur-ui) var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 247, 242, 0.92);
}

.header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.brand__word {
  width: auto;
  height: 22px;
}

.nav__list {
  display: flex;
  gap: 2px;
  padding: 4px;
  border-radius: var(--r-pill);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: inset 0 0 0 1px var(--line);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--dur-ui) var(--ease), background-color var(--dur-ui) var(--ease), box-shadow var(--dur-ui) var(--ease);
}

.nav__link:hover {
  color: var(--ink);
  background: var(--green-pale);
}

.nav__link[aria-current="page"] {
  background: var(--white);
  color: var(--green);
  font-weight: 600;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
}

.header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}.lang {
  display: inline-flex;
  padding: 3px;
  border-radius: var(--r-pill);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: inset 0 0 0 1px var(--line);
}

.lang__btn {
  min-width: 38px;
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background-color var(--dur-ui) var(--ease), color var(--dur-ui) var(--ease);
}

.lang__btn:hover {
  color: var(--ink);
}

.lang__btn[aria-pressed="true"] {
  background: var(--green);
  color: var(--on-dark);
}

.avatar-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: 2px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.avatar-mono {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 0 0 2px var(--canvas), 0 0 0 3px var(--gold);
  transition: transform var(--dur-ui) var(--ease);
}

.avatar-btn:hover .avatar-mono {
  transform: scale(1.05);
}

.avatar-mono--lg {
  width: 44px;
  height: 44px;
  font-size: 19px;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--gold);
}

.menu-btn {
  display: none;
}

.pop {
  position: relative;
}

.popover {
  position: absolute;
  top: calc(100% + 12px);
  right: -8px;
  z-index: 70;
  width: 340px;
  padding: 8px;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-lg), var(--edge);
  animation: pop-in 0.35s var(--ease) both;
}

.popover[hidden] {
  display: none;
}

.popover--account {
  width: 272px;
}.popover__member {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.popover__member strong {
  display: block;
  font-size: 15px;
}

.popover__member span span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
}.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: background-color var(--dur-ui) var(--ease);
}

.menu-item:hover {
  background: var(--green-pale);
}

.menu-item .icon {
  width: 18px;
  height: 18px;
  color: var(--green);
}

/* Menu mobile */
.sheet {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0 var(--gutter) 24px;
  border: 0;
  background: var(--canvas);
  color: var(--ink);
}

.sheet[open] {
  display: flex;
  flex-direction: column;
  animation: sheet-in 0.45s var(--ease) both;
}

.sheet::backdrop {
  background: rgba(15, 40, 31, 0.3);
}

.sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  flex: none;
}

.sheet__nav {
  display: grid;
  gap: 4px;
  margin: 12px 0 24px;
}

.sheet__link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 0 12px;
  border-radius: 18px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: background-color var(--dur-ui) var(--ease);
}

.sheet__link:hover,
.sheet__link[aria-current="page"] {
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.sheet__link[aria-current="page"] {
  color: var(--green);
}

.sheet__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--green-pale);
  color: var(--green);
}

.sheet__arrow {
  margin-left: auto;
  color: var(--muted);
}

.sheet__foot {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.sheet__foot .lang {
  justify-self: start;
  margin-top: 12px;
}

.sheet__foot .lang__btn {
  min-width: 64px;
  height: 44px;
  font-size: 14px;
}/* =================================================================== */
/* 6. Hero + faixa de contexto                                          */
/* =================================================================== */
.hero {
  position: relative;
  padding-block: clamp(28px, 4.4vw, 64px) clamp(32px, 4vw, 56px);
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60vw;
  height: 70vh;
  background:
    radial-gradient(closest-side, rgba(198, 161, 91, 0.13), transparent 70%),
    radial-gradient(closest-side at 20% 60%, rgba(135, 161, 145, 0.1), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}

.hero__kicker {
  flex-wrap: wrap;
  row-gap: 6px;
}

.kicker__date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.kicker__date::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__title {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.6vw, 84px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-wrap: balance;
}

.hero__name {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.025em;
  padding-right: 0.06em;
}

.hero__swash {
  position: absolute;
  left: 2%;
  bottom: -0.1em;
  width: 94%;
  height: 0.2em;
  color: var(--gold);
  overflow: visible;
}

.hero__swash path {
  stroke-dasharray: 240;
  stroke-dashoffset: 0;
}

.hero__ask {
  margin-top: 32px;
  font-size: clamp(21px, 1.9vw, 27px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.hero__body {
  margin-top: 12px;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 36px;
}

.hero__art {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1.04;
}

.hero__ring {
  position: absolute;
  right: -9%;
  top: -6%;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(198, 161, 91, 0.5);
  pointer-events: none;
}

.hero__photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 76%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-panel);
  overflow: hidden;
  background: var(--canvas-deep);
  box-shadow: var(--shadow-lg);
}

.hero__photo img,
.hero__mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__mini {
  position: absolute;
  left: 0;
  bottom: 7%;
  width: 45%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid var(--paper);
  background: var(--canvas-deep);
  box-shadow: var(--shadow-md);
  rotate: -4deg;
}

.float-card {
  position: absolute;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.float-card__title {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.float-card__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.float-card__people {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--muted);
}

.float-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.float-card__meta span:last-child {
  color: var(--green);
}

.float-card--live {
  left: 3%;
  top: 11%;
  width: 238px;
}

.float-card--progress {
  right: -3%;
  bottom: 22%;
  width: 226px;
}

.float-card--progress .bar {
  height: 5px;
}

.hero__stamp {
  position: absolute;
  right: 31%;
  bottom: -1%;
  width: 124px;
  rotate: -12deg;
  filter: drop-shadow(0 14px 18px rgba(18, 40, 30, 0.22));
}

.ctx {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(40px, 5vw, 72px);
  padding: 8px;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
}

.ctx li {
  position: relative;
  min-width: 0;
}

.ctx li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--line);
}

.ctx__item {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 12px 16px;
  border-radius: 18px;
  transition: background-color var(--dur-ui) var(--ease);
}

a.ctx__item:hover {
  background: var(--green-pale);
}

.ctx__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
}

.ctx__icon--ring {
  background: transparent;
}

.ring {
  width: 44px;
  height: 44px;
  rotate: -90deg;
}

.ring circle {
  fill: none;
  stroke: var(--green-soft);
  stroke-width: 3.5;
}

.ring .ring__value {
  stroke: var(--green);
  stroke-linecap: round;
}

.ctx__icon--stamp {
  background: var(--gold-soft);
}

.ctx__icon--stamp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.ctx__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ctx__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.ctx__value {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.ctx__value::first-letter {
  text-transform: uppercase;
}

.ctx__arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: var(--green);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--dur-ui) var(--ease), transform var(--dur-ui) var(--ease);
}

a.ctx__item:hover .ctx__arrow,
a.ctx__item:focus-visible .ctx__arrow {
  opacity: 1;
  transform: none;
}

/* =================================================================== */
/* 7. Foco (objetivos)                                                  */
/* =================================================================== */
.goals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.goals__item {
  display: flex;
}

.goal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.goal--green {
  background: var(--green-pale);
  box-shadow: var(--edge);
}

.goal--paper {
  background: var(--paper);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
}

.goal--sand {
  background: var(--sand);
}

.goal:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.goal__head {
  display: grid;
  gap: 12px;
  padding: 32px 32px 0;
}

.goal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.goal__tags li {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.goal__title {
  font-size: clamp(25px, 2.2vw, 31px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.goal__text {
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.goal__visual {
  position: relative;
  flex: 1;
  min-height: 270px;
  margin-top: 16px;
}

.goal__foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 16px 32px;
  border-top: 1px solid var(--line);
  background: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--green);
}

.goal:hover .arrow-circle {
  background: var(--green);
  color: var(--on-dark);
  transform: rotate(45deg);
}

.gv-note {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 3px;
  max-width: 214px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  font-size: 12.5px;
  color: var(--muted);
  transition: transform 0.7s var(--ease);
}

.gv-note strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.gv-note__kicker {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.gv-note__kicker .icon {
  width: 13px;
  height: 13px;
}

/* Audiência: celular com a grade dos nove primeiros posts */
.gv-phone {
  position: absolute;
  left: 50%;
  bottom: -64px;
  width: 196px;
  height: 320px;
  margin-left: -132px;
  padding: 28px 14px 0;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-md), inset 0 0 0 1px var(--line);
  rotate: -5deg;
  transition: transform 0.7s var(--ease);
}

.gv-phone__notch {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 46px;
  height: 6px;
  margin-left: -23px;
  border-radius: var(--r-pill);
  background: var(--canvas-deep);
}

.gv-phone__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.gv-phone__avatar {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  background-size: cover;
  background-position: center 22%;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3.5px var(--gold);
}

.gv-phone__lines {
  display: grid;
  flex: 1;
  gap: 6px;
}

.gv-phone__lines i {
  display: block;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--canvas-deep);
}

.gv-phone__lines i:first-child {
  width: 72%;
  background: var(--green-soft);
}

.gv-phone__lines i:last-child {
  width: 46%;
}

.gv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gv-grid__tile {
  aspect-ratio: 1;
  border-radius: 5px;
  background: var(--canvas-deep);
  background-size: cover;
  background-position: center 25%;
}

.gv-grid__tile--0,
.gv-grid__tile--5 {
  background-color: var(--green-soft);
}

.gv-grid__tile--1,
.gv-grid__tile--8 {
  background-color: var(--sand);
}

.gv-grid__tile--2,
.gv-grid__tile--6 {
  background-color: var(--gold-soft);
}

.gv-grid__tile--3 {
  background-color: var(--green);
}

.gv-grid__tile--7 {
  background-color: var(--green-pale);
}

.gv-note--audience {
  right: 22px;
  top: 30px;
  rotate: 3deg;
}

.goal:hover .gv-phone {
  transform: translateY(-10px);
}

/* Vender: oferta → página → checkout */
.gv-flow {
  position: absolute;
  left: 32px;
  right: 32px;
  top: 8px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: var(--canvas);
  box-shadow: inset 0 0 0 1px var(--line);
}

.gv-flow__step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.gv-flow__step + .gv-flow__step::before {
  content: "";
  position: absolute;
  left: 25px;
  top: -13px;
  width: 2px;
  height: 14px;
  background: var(--green-soft);
}

.gv-flow__node {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--on-dark);
}

.gv-flow__node .icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.gv-flow__step.is-active {
  box-shadow: 0 0 0 2px var(--green-soft), var(--shadow-sm);
}

.gv-flow__step.is-active .gv-flow__node {
  background: var(--white);
  box-shadow: inset 0 0 0 2px var(--green);
}

.gv-flow__step.is-active .gv-flow__node::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.2s var(--ease) infinite;
}

.gv-note--sell {
  right: 20px;
  bottom: 22px;
  rotate: -2deg;
}

.goal:hover .gv-note--sell {
  transform: translateY(-6px);
}

/* Monetizar: selo de US$ 1.000 + recompensa */
.gv-stamp {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 208px;
  margin: -112px 0 0 -96px;
  rotate: -9deg;
  filter: drop-shadow(0 18px 24px rgba(90, 64, 20, 0.22));
  transition: transform 0.8s var(--ease);
}

.goal:hover .gv-stamp {
  transform: rotate(7deg) scale(1.03);
}

.gv-note--money {
  left: 24px;
  bottom: 22px;
  rotate: -3deg;
}

/* =================================================================== */
/* 8. Continuar aprendendo                                              */
/* =================================================================== */
.learn {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 20px;
}

.learn-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm), var(--edge);
}

.learn-main__media {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 110%, rgba(198, 161, 91, 0.18), transparent 45%),
    var(--green-pale);
}

.learn-main__frame {
  position: absolute;
  left: 13%;
  top: 19%;
  width: 118%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  rotate: -3deg;
  transition: transform var(--dur-media) var(--ease);
}

.learn-main__frame img {
  width: 100%;
}

.learn-main__media .play-disc {
  position: absolute;
  left: 28px;
  bottom: 28px;
}

.learn-main__lesson-chip {
  position: absolute;
  left: 24px;
  top: 24px;
}

.learn-main:hover .learn-main__frame {
  transform: translateY(-8px);
}

.learn-main:hover .play-disc,
.learn-card:hover .play-disc,
.vcard__media:hover .play-disc {
  background: var(--green);
  color: var(--on-dark);
  transform: scale(1.06);
}

.learn-main__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 3vw, 40px);
}

.learn-main__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hosts {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}

.learn-main__lesson {
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.learn-main__lesson .micro-label {
  margin-bottom: 6px;
}

.learn-main__lesson-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.learn-main__lesson-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.learn-main__lesson-meta .icon {
  width: 15px;
  height: 15px;
}

.progress__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--muted);
}

.progress__pct {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

.learn-main .btn {
  align-self: flex-start;
  margin-top: auto;
}

.learn-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.learn-side li {
  display: flex;
}

.learn-card {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm), var(--edge);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--edge);
}

.learn-card__thumb {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.learn-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transition: transform var(--dur-media) var(--ease);
}

.learn-card:hover .learn-card__thumb img {
  transform: scale(1.04);
}

.learn-card__thumb .play-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -22px 0 0 -22px;
  opacity: 0;
  scale: 0.85;
  transition: opacity var(--dur-ui) var(--ease), scale var(--dur-ui) var(--ease), background-color var(--dur-ui) var(--ease), color var(--dur-ui) var(--ease);
}

.learn-card:hover .learn-card__thumb .play-disc,
.learn-card:focus-visible .learn-card__thumb .play-disc {
  opacity: 1;
  scale: 1;
}

.learn-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 22px 22px 22px 20px;
}

.learn-card__kind {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.learn-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.learn-card__lesson {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.learn-card__progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.learn-card__progress .bar {
  flex: 1;
}

.learn-card__pct {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

/* =================================================================== */
/* 9. Programas                                                         */
/* =================================================================== */
.programs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
  padding-bottom: 56px;
}

.programs__item:nth-child(even) {
  translate: 0 56px;
}

.programs__item[data-reveal]:nth-child(even) {
  translate: 0 calc(56px + var(--rise));
}

.programs__item[data-reveal].is-in:nth-child(even) {
  translate: 0 56px;
}

.program {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.program__cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background: var(--canvas-deep);
}

.program__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-media) var(--ease);
}

.program:hover .program__img,
.program:hover .program__ui {
  transform: scale(1.03);
}

.program__cover.tone-green {
  background:
    radial-gradient(circle at 85% 0%, rgba(198, 161, 91, 0.22), transparent 42%),
    linear-gradient(160deg, var(--green) 0%, var(--dark-2) 100%);
}

.program__cover.tone-sand {
  background:
    radial-gradient(circle at 10% 100%, rgba(198, 161, 91, 0.2), transparent 45%),
    var(--sand);
}

.program__ui {
  position: absolute;
  left: 16%;
  top: 24%;
  width: 150%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(10, 30, 22, 0.32);
  rotate: -5deg;
  transform-origin: left top;
  transition: transform var(--dur-media) var(--ease);
}

.program__ui img {
  width: 100%;
}

.program__cover--type.tone-dark {
  background:
    radial-gradient(circle at 82% 8%, rgba(217, 183, 111, 0.24), transparent 40%),
    linear-gradient(160deg, var(--green) 0%, var(--dark-2) 100%);
}

.program__cover--type::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(217, 183, 111, 0.32);
  pointer-events: none;
}

.program__typeset {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--on-dark);
  transition: transform var(--dur-media) var(--ease);
}

.program:hover .program__typeset {
  transform: translateY(-6px);
}

.program__mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-on-dark);
}

.program__mark::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.program__word {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.program__word em {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-on-dark);
}

.program__seal {
  position: absolute;
  right: 26px;
  top: 64px;
  width: 64px;
  height: 64px;
  background: var(--gold-on-dark);
  opacity: 0.85;
  rotate: 12deg;
  -webkit-mask: url("brand/seal.svg") center / contain no-repeat;
  mask: url("brand/seal.svg") center / contain no-repeat;
}

.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 253, 248, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.badge .icon {
  width: 14px;
  height: 14px;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.25);
}

.badge--locked {
  color: var(--ink-soft);
}

.lang-chip {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 30px;
  min-width: 40px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 253, 248, 0.95);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.program__bar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: var(--shadow-sm);
}

.program__bar .bar {
  height: 5px;
}

.program__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px;
}

.program__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.program__title {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color var(--dur-ui) var(--ease);
}

.program:hover .program__title {
  color: var(--green);
}

.program__desc {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.program__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.program__meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.program__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.program .arrow-circle {
  width: 36px;
  height: 36px;
}

.program .arrow-circle .icon {
  width: 16px;
  height: 16px;
}

.program:hover .arrow-circle {
  background: var(--green);
  color: var(--on-dark);
}

/* =================================================================== */
/* 10. Mentores (carrossel)                                             */
/* =================================================================== */
.section--mentors {
  background: var(--canvas-deep);
}

.rail-controls {
  display: flex;
  gap: 8px;
}

.rail {
  --rail-pad: max(var(--gutter), calc((100% - var(--container)) / 2));
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 20px;
  padding: 8px var(--rail-pad) 24px;
  scroll-padding-inline: var(--rail-pad);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail:focus-visible {
  outline-offset: -4px;
  border-radius: 28px;
}

.rail__item {
  display: flex;
  scroll-snap-align: start;
}

.rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.mentor {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow-sm), var(--edge);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.mentor:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--edge);
}

.mentor__photo {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--canvas-deep);
}

.mentor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  transition: transform var(--dur-media) var(--ease);
}

.mentor:hover .mentor__photo img {
  transform: scale(1.04);
}

.mentor__role {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px;
  border-radius: var(--r-pill);
  background: rgba(255, 253, 248, 0.95);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.mentor__live {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: rgba(15, 40, 31, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--on-dark);
  font-size: 12px;
  font-weight: 600;
}

.mentor__live::first-letter {
  text-transform: uppercase;
}

.mentor__go {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity var(--dur-ui) var(--ease), transform var(--dur-ui) var(--ease);
}

.mentor__go .icon {
  width: 18px;
  height: 18px;
}

.mentor:hover .mentor__go,
.mentor:focus-visible .mentor__go {
  opacity: 1;
  transform: none;
}

.mentor__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 10px 10px;
}

.mentor__name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mentor__bio {
  min-height: calc(1.55em * 2);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.mentor__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.mentor-end {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
  padding: 28px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 183, 111, 0.22), transparent 42%),
    linear-gradient(170deg, var(--green) 0%, var(--dark-2) 100%);
  color: var(--on-dark);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.mentor-end:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mentor-end:focus-visible {
  outline-color: var(--gold);
}

.mentor-end__stamp {
  position: absolute;
  left: 50%;
  top: 40px;
  width: 184px;
  margin-left: -92px;
  rotate: -8deg;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.35));
  transition: transform 0.8s var(--ease);
}

.mentor-end:hover .mentor-end__stamp {
  transform: rotate(8deg) scale(1.03);
}

.mentor-end__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
}

.mentor-end__title {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mentor-end__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--on-dark-soft);
}

.mentor-end .link-arrow {
  color: var(--on-dark);
}

/* =================================================================== */
/* 11. Aula ao vivo                                                     */
/* =================================================================== */
.live {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 640px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 253, 248, 0.55), transparent 40%),
    var(--sand);
}

.live__media {
  position: relative;
  min-height: 560px;
  margin: 14px;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 18%, rgba(217, 183, 111, 0.24), transparent 42%),
    radial-gradient(circle at 10% 100%, rgba(135, 161, 145, 0.2), transparent 45%),
    linear-gradient(160deg, var(--green) 0%, var(--dark-2) 100%);
}

.live__rings {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 520px;
  aspect-ratio: 1;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 248, 0.08);
  box-shadow: 0 0 0 70px rgba(255, 253, 248, 0.02), 0 0 0 71px rgba(255, 253, 248, 0.07), 0 0 0 150px rgba(255, 253, 248, 0.015), 0 0 0 151px rgba(255, 253, 248, 0.05);
}

.live__faces {
  position: absolute;
  inset: 0;
}

/* Retratos dos anfitriões como fotos de passaporte */
.live__face {
  position: absolute;
  display: block;
  width: min(42%, 260px);
  padding: 8px 8px 0;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
  transition: transform 0.9s var(--ease);
}

.live__face img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.live__face--1 {
  right: calc(50% - 18px);
  top: 13%;
  rotate: -5deg;
}

.live__face--2 {
  left: calc(50% - 18px);
  z-index: 1;
  top: 24%;
  rotate: 4deg;
}

.live:hover .live__face--1 {
  transform: translate(-6px, -6px);
}

.live:hover .live__face--2 {
  transform: translate(6px, -10px);
}

.live__face-name {
  display: flex;
  flex-direction: column;
  padding: 10px 4px 12px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.live__face-name small {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.live__seal {
  position: absolute;
  right: 22px;
  bottom: 22px;
  rotate: -12deg;
}

.live__seal .brand__seal {
  width: 76px;
  height: 76px;
  background: var(--gold-on-dark);
  opacity: 0.7;
}

.live__badge {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 34px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.live__badge .pulse {
  background: var(--gold);
}

.live__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(28px, 4.4vw, 64px);
}

.live__top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.date-tile {
  display: grid;
  justify-items: center;
  width: 84px;
  flex: none;
  padding: 11px 0 12px;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  line-height: 1;
  text-transform: uppercase;
}

.date-tile__wd {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-ink);
}

.date-tile__d {
  margin: 5px 0 3px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--green);
}

.date-tile__m {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.live__intro {
  display: grid;
  gap: 8px;
}

.live__open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}

.live__open .icon {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.live__title {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.live__desc {
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.live__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(33, 69, 53, 0.12);
}

.live__fact {
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.66);
}

.live__fact dt {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.live__fact dt .icon {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.live__fact dd {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.live__fact dd::first-letter {
  text-transform: uppercase;
}

.live__countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

.live__countdown .icon {
  width: 17px;
  height: 17px;
}

.live__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

[data-save-seat] .btn__check {
  display: none;
}

[data-save-seat].is-saved {
  background: var(--green-pressed);
}

[data-save-seat].is-saved .btn__check {
  display: block;
  color: var(--gold-on-dark);
}

[data-save-seat].is-saved .btn__bookmark {
  display: none;
}

.live__replay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(33, 69, 53, 0.14);
  font-size: 14px;
  color: var(--ink-soft);
}

/* =================================================================== */
/* 12. Comunidade                                                       */
/* =================================================================== */
.community {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.community__intro .section-sub {
  margin-top: 20px;
}

.spaces {
  margin: 32px 0 36px;
}

.space {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.space:last-child {
  border-bottom: 1px solid var(--line);
}

.space__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 13px;
  background: var(--green-pale);
  color: var(--green);
}

.space__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.space__text {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: var(--muted);
}

.community__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px clamp(24px, 3.4vw, 48px) 40px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.7), transparent 40%),
    var(--green-pale);
  box-shadow: var(--edge);
}

.presence {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.presence > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.presence .avatars img {
  box-shadow: 0 0 0 2px var(--green-pale);
}

.moment {
  padding: 20px 22px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.moment__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.initials {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.initials--seal {
  background: var(--green);
}

.initials--seal .brand__seal {
  width: 24px;
  height: 24px;
  background: var(--paper);
}

.moment__who {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.moment__who strong {
  font-size: 14.5px;
  font-weight: 600;
}

.moment__where {
  overflow: hidden;
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.moment__time {
  margin-left: auto;
  flex: none;
  font-size: 12px;
  color: var(--muted);
}

.moment__text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.moment__reply {
  margin: 16px 0 0 18px;
  padding: 2px 0 0 20px;
  border-left: 2px solid var(--gold-soft);
}

.moment__reply .moment__who {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.moment__reply .moment__text {
  margin-top: 10px;
  color: var(--ink-soft);
}

.staff-badge {
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.moment__actions {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.moment__actions span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.moment__actions .icon {
  width: 16px;
  height: 16px;
}

.moment--broadcast {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 56px 0 clamp(-64px, -4vw, -24px);
}

.moment__tile {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 13px;
  background: var(--gold-soft);
  color: var(--gold-ink);
}

.moment__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.moment--broadcast .moment__text {
  display: block;
  margin-top: 6px;
  font-size: 14.5px;
}

.moment--milestone {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 clamp(-40px, -2.6vw, -16px) 0 72px;
  padding: 12px 20px 12px 14px;
}

.moment--milestone img {
  width: 60px;
  flex: none;
  rotate: -8deg;
}

.moment--milestone .moment__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.moment--milestone em {
  font-style: normal;
  font-weight: 600;
  color: var(--green);
}

/* =================================================================== */
/* 13. Conquistas                                                       */
/* =================================================================== */
.wins {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.win-feature {
  position: relative;
  grid-column: 1 / 7;
  grid-row: 1 / 3;
  min-height: 620px;
  border-radius: var(--r-panel);
  overflow: hidden;
  background: var(--dark);
}

.win-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 30%;
  transition: transform 1.2s var(--ease);
}

.win-feature:hover img {
  transform: scale(1.03);
}

.win-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(15, 40, 31, 0.92) 100%);
  pointer-events: none;
}

.win-feature__cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: clamp(24px, 3vw, 40px);
  color: var(--on-dark);
}

.win-feature .badge {
  position: static;
  background: var(--gold-soft);
  color: var(--green);
}

.win-feature__title {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.win-feature__sub {
  font-size: 15px;
  color: var(--on-dark-soft);
}

/* O slide dos selos: a coluna ao lado da foto. Duas faixas andam sem parar,
   em sentidos opostos, e não respondem a nada: nem ponteiro, nem toque, nem
   foco. Cada faixa tem o conjunto duas vezes, e cada card carrega o próprio
   espaçamento (margem, não gap), então -50% cai exatamente no começo da
   cópia e o loop não tem emenda. */
.win-marquee {
  --marquee-gap: 20px;
  --marquee-per-card: 11s;
  position: relative;
  grid-column: 7 / 13;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--marquee-gap);
  min-height: 620px;
  /* Espaço para a sombra dos cards não ser cortada nas laterais. */
  margin-inline: -14px;
  padding-inline: 14px;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 11%, #000 89%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 11%, #000 89%, transparent 100%);
}

.win-marquee__lane {
  position: relative;
  min-height: 0;
}

.win-marquee__track {
  position: absolute;
  inset: 0 0 auto 0;
  display: flex;
  flex-direction: column;
  animation: win-marquee-y calc(var(--count, 7) * var(--marquee-per-card)) linear infinite;
  will-change: transform;
}

/* Meio card de defasagem: sem ela as duas faixas começam alinhadas e o slide
   parece uma grade parada até andar. */
.win-marquee__lane--reverse .win-marquee__track {
  animation-direction: reverse;
  animation-delay: calc(var(--marquee-per-card) * -0.5);
}

.win-marquee__set {
  display: flex;
  flex-direction: column;
}

@keyframes win-marquee-y {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes win-marquee-x {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.win-stamp {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
  margin-bottom: var(--marquee-gap);
  background: var(--paper);
  box-shadow: var(--shadow-sm), var(--edge);
}

.win-stamp__img {
  width: 132px;
  height: 132px;
  margin: 0 0 22px -6px;
  object-fit: contain;
  rotate: -6deg;
  filter: drop-shadow(0 12px 16px rgba(18, 40, 30, 0.16));
  transition: transform 0.8s var(--ease);
}

.win-stamp .micro-label {
  margin-bottom: 8px;
}

.win-stamp__title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.win-stamp__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.win-stamp--gold {
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 253, 248, 0.7), transparent 50%),
    var(--gold-soft);
}

.win-stamp--gold .micro-label {
  color: var(--ink-soft);
}

/* =================================================================== */
/* 14. Temas                                                            */
/* =================================================================== */
/* Um mapa para explorar: dois conjuntos de curvas de nível, cada um preso numa
   lateral e centrado na vertical, saem de dois brilhos suaves (dourado à
   direita, verde à esquerda). O tamanho segue a altura da seção, então as
   curvas nunca chegam ao fade de cima e de baixo. O fundo é papel e se funde
   com o canvas nas bordas, sem emenda com as seções vizinhas. */
.section--topics {
  isolation: isolate;
  overflow: hidden;
}

.section--topics::before,
.section--topics::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  pointer-events: none;
}

.section--topics::before {
  background:
    radial-gradient(34% 62% at 100% 50%, rgba(243, 233, 213, 0.95) 0%, rgba(243, 233, 213, 0) 76%),
    radial-gradient(30% 56% at 0% 50%, var(--green-soft) 0%, rgba(232, 240, 235, 0) 76%),
    var(--paper);
}

.section--topics::after {
  background:
    url("img/topics-contours-gold.svg") right -240px center / auto 84% no-repeat,
    url("img/topics-contours-sage.svg") left -280px center / auto 72% no-repeat;
}

/* ---- O trilho: o carrossel dos mentores, com larguras variadas ---- */
.topic-rail {
  grid-auto-columns: max-content;
  gap: 16px;
  padding-block: 10px 22px;
}

.topic-rail__item {
  width: 300px;
}

.topic-rail__item--wide {
  width: 420px;
}

.topic {
  /* As cores da cena; cada tom redefine. */
  --vg-panel: var(--canvas);
  --vg-edge: rgba(33, 69, 53, 0.1);
  --vg-skel: rgba(33, 69, 53, 0.14);
  --vg-accent: var(--green);
  --vg-accent-2: var(--gold);
  --vg-soft: var(--green-pale);
  --vg-on-accent: var(--paper);
  --vg-shadow: 0 10px 22px -12px rgba(18, 40, 30, 0.28);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 416px;
  padding: 20px 22px 18px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-sm), var(--edge);
  color: var(--ink);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background-color var(--dur-ui) var(--ease);
}

.topic:hover,
.topic:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--edge);
}

.topic__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.topic__count {
  max-width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-soft);
}

.topic__title {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.topic__link {
  color: inherit;
}

/* O card inteiro é o link, sem aninhar links. */
.topic__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 28px;
}

.topic__link:focus-visible {
  outline: none;
}

.topic__link:focus-visible::after {
  outline: 2px solid var(--green);
  outline-offset: -4px;
}

.topic__lessons {
  display: grid;
  gap: 7px;
  width: 100%;
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.topic__lessons li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-soft);
}

.topic__lessons li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.topic__lessons span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topic__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.topic__go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

.topic__go .icon {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-ui) var(--ease);
}

.topic:hover .topic__go .icon:last-child {
  transform: translateX(4px);
}

.topic__go .icon:first-child:not(:last-child) {
  width: 14px;
  height: 14px;
}

.topic__index {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gold-ink);
}

.topic__index i {
  margin-left: 2px;
  font-size: 12px;
  opacity: 0.6;
}

/* Card largo: título no itálico da marca. */
.topic--wide .topic__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

/* ---- Tons ---- */
.topic--forest {
  --vg-panel: rgba(255, 253, 248, 0.1);
  --vg-edge: rgba(255, 253, 248, 0.16);
  --vg-skel: rgba(255, 253, 248, 0.26);
  --vg-accent: var(--gold-on-dark);
  --vg-accent-2: var(--sage);
  --vg-soft: rgba(255, 253, 248, 0.08);
  --vg-on-accent: var(--dark);
  --vg-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.45);
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(198, 161, 91, 0.26) 0%, rgba(198, 161, 91, 0) 60%),
    linear-gradient(165deg, var(--green) 0%, var(--dark) 100%);
  box-shadow: 0 22px 44px -24px rgba(18, 40, 30, 0.6);
  color: var(--on-dark);
}

.topic--forest:hover,
.topic--forest:focus-within {
  box-shadow: 0 32px 56px -24px rgba(18, 40, 30, 0.65);
}

.topic--forest .topic__index,
.topic--forest .topic__go {
  color: var(--gold-on-dark);
}

.topic--forest .topic__count,
.topic--forest .topic__lessons li {
  color: var(--on-dark-soft);
}

.topic--forest .topic__lessons {
  border-top-color: rgba(255, 253, 248, 0.14);
}

.topic--forest .topic__lessons li::before {
  background: var(--gold-on-dark);
}

.topic--forest .topic__link:focus-visible::after {
  outline-color: var(--gold-on-dark);
}

.topic--gold {
  --vg-panel: rgba(255, 253, 248, 0.82);
  --vg-edge: rgba(140, 106, 46, 0.16);
  --vg-skel: rgba(140, 106, 46, 0.22);
  --vg-soft: rgba(255, 253, 248, 0.5);
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(255, 253, 248, 0.7) 0%, rgba(255, 253, 248, 0) 60%),
    linear-gradient(165deg, #f5ead3 0%, #ecdcbc 100%);
}

.topic--gold .topic__lessons {
  border-top-color: rgba(140, 106, 46, 0.2);
}

.topic--gold .topic__lessons li::before {
  background: var(--gold-ink);
}

.topic--paper {
  --vg-panel: var(--white);
  --vg-edge: rgba(33, 69, 53, 0.12);
  --vg-shadow: 0 12px 26px -12px rgba(18, 40, 30, 0.3);
}

.topic--sage {
  --vg-panel: rgba(255, 253, 248, 0.85);
  --vg-skel: rgba(33, 69, 53, 0.15);
  --vg-soft: rgba(33, 69, 53, 0.06);
  background: linear-gradient(165deg, #edf3ef 0%, #dce8e0 100%);
}

.topic--sand {
  --vg-panel: rgba(255, 253, 248, 0.85);
  --vg-edge: rgba(140, 106, 46, 0.14);
  --vg-skel: rgba(140, 106, 46, 0.2);
  --vg-accent: var(--gold-ink);
  --vg-accent-2: var(--green);
  --vg-soft: rgba(140, 106, 46, 0.08);
  background: linear-gradient(165deg, #f5efe4 0%, #eadfcb 100%);
}

/* ---- As cenas ----
   Peças comuns: painel, linha-esqueleto e selo de confirmação. Cada cena só
   posiciona as suas peças e diz o que se mexe no hover. */
.topic__art {
  position: relative;
  flex: none;
  height: 150px;
  margin-bottom: 10px;
}

.vg .icon {
  width: 18px;
  height: 18px;
}

.vg-panel {
  position: absolute;
  display: flex;
  border-radius: 14px;
  background: var(--vg-panel);
  box-shadow: inset 0 0 0 1px var(--vg-edge), var(--vg-shadow);
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.vg-skel {
  display: block;
  height: 6px;
  flex: none;
  border-radius: 3px;
  background: var(--vg-skel);
}

.vg-skel--accent {
  background: var(--vg-accent-2);
}

.vg-lines {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.vg-tick {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 4px 10px -2px rgba(140, 106, 46, 0.5);
  color: var(--paper);
}

.vg .vg-tick .icon {
  width: 12px;
  height: 12px;
  stroke-width: 2.6;
}

/* Faceless: o celular com a máscara no lugar do rosto e os vídeos saindo. */
.vg--faceless .vg-phone {
  top: 0;
  left: 4%;
  z-index: 3;
  flex-direction: column;
  gap: 7px;
  width: 100px;
  height: 150px;
  padding: 8px;
  border-radius: 20px;
}

.vg-phone__screen {
  display: grid;
  place-items: center;
  height: 96px;
  margin-bottom: 3px;
  border-radius: 13px;
  background: linear-gradient(160deg, #e7c985 0%, var(--sage) 58%, #2a5944 100%);
  color: var(--paper);
}

.vg .vg-phone__screen .icon {
  width: 42px;
  height: 42px;
  stroke-width: 1.3;
}

.vg-reel {
  position: absolute;
  top: 22px;
  display: grid;
  place-items: center;
  width: 74px;
  height: 104px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.25), var(--vg-shadow);
  color: var(--paper);
  transition: transform 0.8s var(--ease);
}

.vg .vg-reel .icon {
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(15, 40, 31, 0.3);
  fill: currentColor;
}

.vg-reel--a {
  left: 38%;
  z-index: 1;
  background: linear-gradient(160deg, #f3e9d5 0%, #d9b76f 100%);
  transform: rotate(-8deg);
}

.vg-reel--b {
  top: 28px;
  left: 55%;
  z-index: 2;
  background: linear-gradient(160deg, #cfe0d5 0%, #5f8a74 100%);
  transform: rotate(3deg);
}

.vg-reel--c {
  top: 18px;
  left: 72%;
  z-index: 1;
  background: linear-gradient(160deg, #d9b76f 0%, #2a5944 100%);
  transform: rotate(10deg);
}

.topic:hover .vg--faceless .vg-phone {
  transform: translateY(-4px);
}

.topic:hover .vg-reel--a {
  transform: translate(-8px, -4px) rotate(-14deg);
}

.topic:hover .vg-reel--b {
  transform: translateY(-10px) rotate(0deg);
}

.topic:hover .vg-reel--c {
  transform: translate(8px, -2px) rotate(16deg);
}

/* IA: o prompt sendo escrito e os resultados brilhando. */
.vg--ai .vg-prompt {
  top: 4px;
  right: 0;
  left: 0;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 7px 0 14px;
  border-radius: 23px;
  color: var(--vg-accent-2);
}

.vg-caret {
  width: 2px;
  height: 16px;
  margin-left: -6px;
  border-radius: 1px;
  background: var(--vg-accent);
}

.topic:hover .vg-caret {
  animation: vg-blink 1s steps(1) infinite;
}

@keyframes vg-blink {
  50% {
    opacity: 0;
  }
}

.vg-send {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--vg-accent);
  color: var(--vg-on-accent);
  transition: transform 0.5s var(--ease);
}

.vg .vg-send .icon {
  width: 16px;
  height: 16px;
}

.topic:hover .vg-send {
  transform: rotate(45deg);
}

.vg-results {
  position: absolute;
  top: 64px;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.vg-tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px var(--vg-edge), var(--vg-shadow);
  transition: transform 0.6s var(--ease);
}

.vg-tile:nth-child(1) {
  background: linear-gradient(160deg, #fffdf8 0%, #d9b76f 100%);
}

.vg-tile:nth-child(2) {
  background: linear-gradient(160deg, #cfe0d5 0%, var(--sage) 100%);
  transition-delay: 0.06s;
}

.vg-tile:nth-child(3) {
  background: linear-gradient(160deg, var(--sage) 0%, var(--green) 100%);
  transition-delay: 0.12s;
}

.vg-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 253, 248, 0.6) 50%, transparent 70%);
  transform: translateX(-120%);
}

.topic:hover .vg-tile {
  transform: translateY(-4px);
}

.topic:hover .vg-tile::after {
  transform: translateX(120%);
  transition: transform 1.1s var(--ease);
}

.topic:hover .vg-tile:nth-child(2)::after {
  transition-delay: 0.12s;
}

.topic:hover .vg-tile:nth-child(3)::after {
  transition-delay: 0.24s;
}

/* Vendas: as notificações de venda e o caminho oferta → página → checkout. */
.vg--sales .vg-toast {
  top: 6px;
  right: 0;
  left: 0;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding: 0 14px;
  transform-origin: 50% 0;
}

/* As notificações de trás são só a pilha: tom próprio e sem conteúdo. */
.vg-toast--2,
.vg-toast--3 {
  background: var(--vg-soft);
}

.vg-toast--2 > *,
.vg-toast--3 > * {
  visibility: hidden;
}

.vg-toast--2 {
  opacity: 0.9;
  transform: translateY(20px) scale(0.92);
}

.vg-toast--3 {
  opacity: 0.6;
  transform: translateY(40px) scale(0.84);
}

.vg-toast__icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vg-soft);
  color: var(--vg-accent);
}

.vg .vg-toast__icon .icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.vg .vg-toast__bag {
  flex: none;
  color: var(--vg-accent-2);
}

.topic:hover .vg-toast--1 {
  transform: translateY(-4px);
}

.topic:hover .vg-toast--2 {
  transform: translateY(26px) scale(0.94);
}

.topic:hover .vg-toast--3 {
  transform: translateY(52px) scale(0.88);
}

.vg-steps {
  position: absolute;
  right: 10%;
  bottom: 6px;
  left: 10%;
  display: flex;
  align-items: center;
}

.vg-steps i {
  flex: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 2px var(--vg-skel);
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.vg-steps i:first-child {
  background: var(--vg-accent);
  box-shadow: none;
}

.vg-steps b {
  position: relative;
  flex: 1;
  height: 2px;
  margin: 0 6px;
  overflow: hidden;
  background: var(--vg-skel);
}

.vg-steps b::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vg-accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.topic:hover .vg-steps b::after {
  transform: scaleX(1);
}

.topic:hover .vg-steps b:nth-of-type(2)::after {
  transition-delay: 0.45s;
}

.topic:hover .vg-steps i:nth-of-type(2),
.topic:hover .vg-steps i:nth-of-type(3) {
  background: var(--vg-accent);
  box-shadow: none;
  transition-delay: 0.4s;
}

.topic:hover .vg-steps i:nth-of-type(3) {
  transition-delay: 0.85s;
}

/* Marketing digital: o funil, que no hover alarga (converte mais) e deixa
   cair o ponto dourado da venda. */
.vg-funnel {
  position: absolute;
  top: 2px;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  filter: drop-shadow(0 10px 14px rgba(18, 40, 30, 0.14));
}

.vg-funnel i {
  display: block;
  height: 26px;
  background: var(--vg-panel);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 12px 100%);
  transition: width 0.8s var(--ease);
}

.vg-funnel i:nth-child(1) {
  width: 100%;
}

.vg-funnel i:nth-child(2) {
  width: 82%;
  background: rgba(135, 161, 145, 0.5);
}

.vg-funnel i:nth-child(3) {
  width: 64%;
  background: var(--sage);
}

.vg-funnel i:nth-child(4) {
  width: 46%;
  background: linear-gradient(90deg, var(--vg-accent) 0%, #2a5944 100%);
}

.vg-funnel::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.topic:hover .vg-funnel i:nth-child(2) {
  width: 88%;
}

.topic:hover .vg-funnel i:nth-child(3) {
  width: 76%;
  transition-delay: 0.08s;
}

.topic:hover .vg-funnel i:nth-child(4) {
  width: 62%;
  transition-delay: 0.16s;
}

.topic:hover .vg-funnel::after {
  transform: translateY(6px) scale(1.25);
  transition-delay: 0.45s;
}

.vg--marketing .vg-pin {
  right: 2px;
  bottom: 2px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--vg-accent);
}

.topic:hover .vg--marketing .vg-pin {
  transform: rotate(-14deg) scale(1.08);
}

/* Social media: o perfil, a grade de posts e a curtida. */
.vg--social .vg-profile {
  top: 6px;
  bottom: 6px;
  left: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 34%;
  padding: 12px;
}

.vg-avatar {
  display: block;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(150deg, #e7c985 0%, var(--sage) 60%, var(--green) 100%);
}

.vg--social .vg-avatar {
  margin-bottom: 4px;
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--vg-accent);
}

.vg-follow {
  display: block;
  width: 58%;
  height: 16px;
  margin-top: 3px;
  border-radius: 8px;
  background: var(--vg-accent);
}

.vg-grid {
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 6px;
  left: 38%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
}

.vg-grid i {
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px var(--vg-edge);
  transition: transform 0.6s var(--ease);
}

.vg-grid i:nth-child(1) {
  background: linear-gradient(150deg, #f3e9d5 0%, #d9b76f 100%);
}

.vg-grid i:nth-child(2) {
  background: linear-gradient(150deg, #cfe0d5 0%, var(--sage) 100%);
  transition-delay: 0.04s;
}

.vg-grid i:nth-child(3) {
  background: linear-gradient(150deg, var(--sage) 0%, var(--green) 100%);
  transition-delay: 0.08s;
}

.vg-grid i:nth-child(4) {
  background: linear-gradient(150deg, #d9b76f 0%, var(--gold-ink) 100%);
  transition-delay: 0.12s;
}

.vg-grid i:nth-child(5) {
  background: linear-gradient(150deg, var(--paper) 0%, var(--green-soft) 100%);
  transition-delay: 0.16s;
}

.vg-grid i:nth-child(6) {
  background: linear-gradient(150deg, #2a5944 0%, var(--dark) 100%);
  transition-delay: 0.2s;
}

.topic:hover .vg-grid i {
  transform: scale(0.93);
}

.vg-heart {
  position: absolute;
  top: -4px;
  right: 30%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--vg-shadow);
  color: var(--gold);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vg .vg-heart .icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.topic:hover .vg-heart {
  transform: translateY(-4px) scale(1.2);
}

/* Conteúdo: o player e a timeline de três cortes, com o cursor andando. */
.vg--content .vg-player {
  top: 0;
  right: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  height: 100px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(217, 183, 111, 0.55) 0%, rgba(135, 161, 145, 0.35) 55%, rgba(15, 40, 31, 0.4) 100%);
}

.vg-play {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  color: var(--dark);
  transition: transform 0.5s var(--ease);
}

.vg .vg-play .icon {
  width: 18px;
  height: 18px;
  margin-left: 2px;
  fill: currentColor;
}

.topic:hover .vg-play {
  transform: scale(1.1);
}

.vg-timeline {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  display: flex;
  gap: 4px;
  height: 32px;
  padding: 5px;
  border-radius: 10px;
  background: var(--vg-panel);
  box-shadow: inset 0 0 0 1px var(--vg-edge);
}

.vg-timeline i {
  border-radius: 6px;
}

.vg-timeline i:nth-child(1) {
  flex: 38;
  background: rgba(217, 183, 111, 0.8);
}

.vg-timeline i:nth-child(2) {
  flex: 26;
  background: rgba(135, 161, 145, 0.85);
}

.vg-timeline i:nth-child(3) {
  flex: 34;
  background: var(--vg-skel);
}

.vg-playhead {
  position: absolute;
  top: -6px;
  bottom: -4px;
  left: 14%;
  width: 2px;
  border-radius: 1px;
  background: var(--vg-accent);
  transition: left 1.6s var(--ease);
}

.vg-playhead::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vg-accent);
}

.topic:hover .vg-playhead {
  left: 84%;
}

/* Afiliados: o link, a comissão viajando e a venda confirmada. */
.vg--affiliates .vg-node {
  top: 12px;
  align-items: center;
  gap: 8px;
  width: 38%;
  height: 72px;
  padding: 0 12px;
  color: var(--vg-accent);
}

.vg-node--from {
  left: 0;
}

.vg-node--to {
  right: 0;
}

.vg .vg-node > .icon {
  flex: none;
  width: 20px;
  height: 20px;
}

.vg-wire {
  position: absolute;
  top: 47px;
  right: 38%;
  left: 38%;
  border-top: 2px dashed var(--vg-skel);
}

.vg-coin {
  position: absolute;
  top: -15px;
  left: -8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: var(--vg-shadow);
  color: var(--paper);
  transition: left 1.2s var(--ease);
}

.vg .vg-coin .icon {
  width: 15px;
  height: 15px;
}

.topic:hover .vg-coin {
  left: calc(100% - 20px);
}

.vg-node--to .vg-tick {
  position: absolute;
  top: -9px;
  right: -9px;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.topic:hover .vg-node--to .vg-tick {
  transform: scale(1);
  transition-delay: 0.9s;
}

.vg-history {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  display: flex;
  gap: 8px;
}

.vg-history i {
  position: relative;
  flex: 1;
  height: 30px;
  border-radius: 10px;
  background: var(--vg-panel);
  box-shadow: inset 0 0 0 1px var(--vg-edge);
  opacity: 0.85;
  transition: transform 0.5s var(--ease);
}

.vg-history i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 11px;
  height: 11px;
  margin-top: -5.5px;
  border-radius: 50%;
  background: var(--gold);
}

.vg-history i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  left: 27px;
  height: 6px;
  margin-top: -3px;
  border-radius: 3px;
  background: var(--vg-skel);
}

.topic:hover .vg-history i {
  transform: translateY(-3px);
  transition-delay: 1.05s;
}

.topic:hover .vg-history i:nth-child(2) {
  transition-delay: 1.15s;
}

.topic:hover .vg-history i:nth-child(3) {
  transition-delay: 1.25s;
}

/* Produtos digitais: as capas dos cursos se abrindo em leque. */
.vg-cover {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 92px;
  height: 132px;
  margin-left: -46px;
  border-radius: 8px 14px 14px 8px;
  box-shadow: var(--vg-shadow), inset 4px 0 0 rgba(15, 40, 31, 0.18);
  transition: transform 0.8s var(--ease);
}

.vg-cover--a {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 12px 12px 14px 16px;
  background: linear-gradient(160deg, #2a5944 0%, var(--dark) 100%);
}

.vg-cover--a .brand__seal {
  width: 30px;
  height: 30px;
  margin-bottom: auto;
  background: var(--gold-on-dark);
}

.vg-cover--a .vg-skel {
  background: rgba(255, 253, 248, 0.35);
}

.vg-cover--b {
  z-index: 2;
  background: linear-gradient(160deg, #fffdf8 0%, #d9b76f 100%);
  transform: translateX(-46px) rotate(-10deg);
}

.vg-cover--c {
  z-index: 1;
  background: linear-gradient(160deg, #cfe0d5 0%, var(--sage) 100%);
  transform: translateX(46px) rotate(10deg);
}

.topic:hover .vg-cover--a {
  transform: translateY(-6px);
}

.topic:hover .vg-cover--b {
  transform: translateX(-66px) rotate(-16deg);
}

.topic:hover .vg-cover--c {
  transform: translateX(66px) rotate(16deg);
}

/* Marca pessoal: o cartão de perfil verificado. */
.vg--brand .vg-card {
  top: 6px;
  right: 7%;
  bottom: 6px;
  left: 7%;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px;
}

.vg-card__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vg-card__head .vg-lines {
  max-width: 55%;
}

.vg-ring {
  display: grid;
  flex: none;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #d9b76f, var(--sage), var(--green), #d9b76f);
  transition: transform 1.2s var(--ease);
}

.vg-ring .vg-avatar {
  width: 50px;
  height: 50px;
  border: 3px solid var(--paper);
}

.topic:hover .vg-ring {
  transform: rotate(180deg);
}

.vg-verified {
  position: absolute;
  top: 38px;
  left: 40px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--paper);
  color: var(--paper);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vg .vg-verified .icon {
  width: 12px;
  height: 12px;
  stroke-width: 2.6;
}

.topic:hover .vg-verified {
  transform: scale(1.25);
}

.vg-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.vg-stats i {
  position: relative;
  height: 32px;
  border-radius: 8px;
  background: var(--vg-soft);
}

.vg-stats i::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 36%;
  height: 7px;
  border-radius: 4px;
  background: var(--vg-accent);
  opacity: 0.75;
  transition: width 0.8s var(--ease);
}

.vg-stats i::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 10px;
  width: 60%;
  height: 4px;
  border-radius: 2px;
  background: var(--vg-skel);
}

.topic:hover .vg-stats i::before {
  width: 66%;
}

/* Monetização: as barras subindo e o selo de US$ 1.000 do passaporte. */
.vg-bars {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 118px;
  padding: 0 4px;
  border-bottom: 2px solid var(--vg-skel);
}

.vg-bars i {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: var(--vg-panel);
  box-shadow: inset 0 0 0 1px var(--vg-edge);
  transform-origin: 50% 100%;
  transition: transform 0.7s var(--ease);
}

.vg-bars i:nth-child(1) {
  height: 22%;
}

.vg-bars i:nth-child(2) {
  height: 34%;
  transition-delay: 0.05s;
}

.vg-bars i:nth-child(3) {
  height: 30%;
  transition-delay: 0.1s;
}

.vg-bars i:nth-child(4) {
  height: 52%;
  transition-delay: 0.15s;
}

.vg-bars i:nth-child(5) {
  height: 68%;
  transition-delay: 0.2s;
}

.vg-bars i:nth-child(6) {
  height: 92%;
  background: linear-gradient(180deg, #d9b76f 0%, var(--gold-ink) 100%);
  box-shadow: none;
  transition-delay: 0.25s;
}

.topic:hover .vg-bars i {
  transform: scaleY(1.1);
}

.vg-stamp {
  position: absolute;
  top: -4px;
  left: 2%;
  width: 74px;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(18, 40, 30, 0.22));
  transform: rotate(-12deg);
  transition: transform 0.9s var(--ease);
}

.topic:hover .vg-stamp {
  transform: rotate(4deg) scale(1.06);
}

/* Mindset: o teste A/B, com a variação que venceu. */
.vg--mindset .vg-variant {
  top: 6px;
  bottom: 6px;
  flex-direction: column;
  gap: 7px;
  width: 46%;
  padding: 12px;
}

.vg--mindset .vg-variant:first-child {
  left: 0;
}

.vg-variant--win {
  right: 0;
}

.vg-variant b {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  color: var(--vg-accent);
}

.vg-variant__hero {
  display: block;
  height: 46px;
  border-radius: 8px;
  background: var(--vg-skel);
}

.vg-variant--win .vg-variant__hero {
  background: linear-gradient(150deg, rgba(217, 183, 111, 0.85) 0%, rgba(135, 161, 145, 0.6) 100%);
}

.vg-variant .vg-tick {
  position: absolute;
  top: 10px;
  right: 10px;
}

.topic:hover .vg--mindset .vg-variant:first-child {
  opacity: 0.5;
  transform: scale(0.95);
}

.topic:hover .vg--mindset .vg-variant--win {
  box-shadow: inset 0 0 0 1.5px var(--vg-accent), var(--vg-shadow);
  transform: translateY(-5px);
}

/* ---- O fim do trilho: a biblioteca completa, ou a entrada ---- */
.topic--end {
  justify-content: flex-end;
  background: rgba(255, 253, 248, 0.5);
  box-shadow: inset 0 0 0 1.5px rgba(198, 161, 91, 0.45);
}

.topic--end:hover,
.topic--end:focus-within {
  background: var(--paper);
  box-shadow: inset 0 0 0 1.5px rgba(198, 161, 91, 0.7), var(--shadow-md);
}

.topic__seal {
  position: absolute;
  top: 24px;
  left: 22px;
  transition: transform 0.9s var(--ease);
}

.topic__seal .brand__seal {
  width: 58px;
  height: 58px;
  background: var(--gold);
}

.topic--end:hover .topic__seal {
  transform: rotate(-14deg);
}

.topic--end .topic__count {
  color: var(--gold-ink);
}

.topic--end .topic__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.topic__text {
  max-width: 26ch;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---- Progresso do trilho ---- */
.rail-progress {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--line);
}

.rail-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--vis, 0.3) * 100%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 100%);
  transform: translateX(calc(var(--x, 0) * 100%));
}

/* =================================================================== */
/* 15. Oportunidades                                                    */
/* =================================================================== */
.opps {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 2fr);
  align-items: start;
  gap: clamp(32px, 5vw, 80px);
}

.opps__intro {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.opps__intro .section-sub {
  margin: 20px 0 12px;
}

.opps__note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 14px 18px 14px 12px;
  border-radius: 18px;
  background: var(--gold-soft);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.opps__note img {
  width: 64px;
  flex: none;
  rotate: -8deg;
}

.opps__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.opps__item {
  display: flex;
}

.opps__item--wide {
  grid-column: 1 / -1;
}

.opp {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 28px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-sm), var(--edge);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.opp:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--edge);
}

.opp:focus-within {
  box-shadow: var(--shadow-md), inset 0 0 0 2px var(--green);
}

.opp:focus-within .opp__cta:focus-visible {
  outline: none;
}

.opp__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.opp__logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 14px;
  background: var(--canvas-deep);
  box-shadow: inset 0 0 0 1px var(--line);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.opp__logo--seal {
  background: var(--green);
  box-shadow: none;
}

.opp__logo--seal .brand__seal {
  width: 30px;
  height: 30px;
  background: var(--gold-on-dark);
}

.opp__brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.opp__brand-name {
  font-size: 14.5px;
  font-weight: 600;
}

.opp__type {
  font-size: 12.5px;
  color: var(--muted);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 28px;
  margin-left: auto;
  padding: 0 11px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status--open {
  background: var(--green-soft);
  color: var(--green);
}

.status--open i {
  background: var(--sage);
}

.status--closing {
  background: var(--gold-soft);
  color: var(--ink);
}

.status--closing i {
  background: var(--gold);
}

.status--invite {
  box-shadow: inset 0 0 0 1px var(--line-strong);
  color: var(--ink-soft);
}

.status--invite i {
  background: var(--gold);
}

.opp__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.opp__text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.opp__reqs {
  display: grid;
  gap: 10px;
}

.opp__reqs li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.opp__reqs .icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--green);
}

.opp__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.opp__payout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
}

.opp__payout .icon {
  width: 18px;
  height: 18px;
  color: var(--gold-ink);
}

.opp__platforms {
  display: inline-flex;
  gap: 6px;
  color: var(--muted);
}

.opp__platforms .icon {
  width: 18px;
  height: 18px;
}

.opp__cta {
  margin-left: auto;
}

.opp__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.opp--wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "head head"
    "main reqs"
    "foot foot";
  gap: 20px 40px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 253, 248, 0.8), transparent 45%),
    var(--green-pale);
}

.opp--wide .opp__head {
  grid-area: head;
}

.opp--wide .opp__main {
  grid-area: main;
  align-self: center;
}

.opp--wide .opp__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.opp--wide .opp__reqs {
  grid-area: reqs;
  align-self: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--paper);
}

.opp--wide .opp__foot {
  grid-area: foot;
}

/* =================================================================== */
/* 16. Momento da marca                                                 */
/* =================================================================== */
.brand-band {
  padding: clamp(24px, 3vw, 48px) clamp(8px, 1.4vw, 24px);
}

.brand-band__inner {
  position: relative;
  border-radius: clamp(24px, 3vw, 40px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 26%, rgba(198, 161, 91, 0.2), transparent 34%),
    radial-gradient(circle at 6% 100%, rgba(135, 161, 145, 0.16), transparent 40%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--on-dark);
}

.brand-band__inner::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -30%;
  z-index: -1;
  width: 720px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 248, 0.07);
  box-shadow: 0 0 0 90px rgba(255, 253, 248, 0.015), 0 0 0 91px rgba(255, 253, 248, 0.06);
  pointer-events: none;
}

.brand-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding-block: clamp(64px, 9vw, 128px);
}

.brand-band__title {
  margin: 24px 0 28px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.brand-band__title span,
.brand-band__title em {
  display: block;
}

.brand-band__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-on-dark);
}

.brand-band__text {
  max-width: 44ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--on-dark-soft);
}

.brand-band__places {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 36px;
  font-size: 14px;
  font-weight: 600;
}

.brand-band__places > span:not(.brand-band__line) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-band__places .icon {
  width: 16px;
  height: 16px;
  color: var(--gold-on-dark);
}

.brand-band__line {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-on-dark), transparent);
}

.brand-band :focus-visible {
  outline-color: var(--gold-on-dark);
}

.brand-band__collage {
  position: relative;
  min-height: 580px;
}

.bc {
  position: absolute;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.bc--main {
  right: 3%;
  top: 0;
  width: 54%;
  height: 90%;
  rotate: 3deg;
  object-position: center 30%;
}

.bc--left {
  left: 0;
  top: 12%;
  width: 42%;
  height: 50%;
  rotate: -5deg;
}

.bc--small {
  left: 18%;
  bottom: 0;
  width: 33%;
  height: 34%;
  rotate: 2deg;
  object-position: center 40%;
}

.brand-band__seal {
  position: absolute;
  z-index: 2;
  left: 34%;
  top: -3%;
  rotate: -12deg;
}

.brand-band__seal .brand__seal {
  width: 104px;
  height: 104px;
  background: var(--gold-on-dark);
}

.brand-band__note {
  position: absolute;
  right: 7%;
  bottom: 3%;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--gold-soft);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  rotate: -3deg;
}

/* =================================================================== */
/* 17. Depoimentos                                                      */
/* =================================================================== */
.vwall {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 20px;
}

.vcard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.vcard__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark);
}

.vcard--feature .vcard__media {
  flex: 1;
  min-height: 520px;
  aspect-ratio: auto;
  border-radius: var(--r-panel);
}

.vcard__media img,
.vcard__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcard__media img {
  transition: transform var(--dur-media) var(--ease);
}

.vcard__media:hover img {
  transform: scale(1.03);
}

.vcard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 40, 31, 0.55) 100%);
  pointer-events: none;
}

.vcard__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-items: end;
  justify-items: end;
  border: 0;
  padding: 12px;
  background: transparent;
}

.vcard--feature .vcard__play {
  justify-items: start;
  padding: 24px;
}

.vcard--feature .vcard__duration {
  top: 20px;
  bottom: auto;
  left: 20px;
}

.vcard__play:focus-visible {
  outline-offset: -6px;
  border-radius: inherit;
  outline-color: var(--gold);
}

.vcard__duration {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  background: rgba(15, 40, 31, 0.66);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--on-dark);
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
}

.vcard__duration .icon {
  width: 14px;
  height: 14px;
}

.vcard__media.is-playing img,
.vcard__media.is-playing .vcard__play,
.vcard__media.is-playing .vcard__duration,
.vcard__media.is-playing::after {
  display: none;
}

.vcard__cap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 4px;
}

.vcard__name {
  font-size: 16px;
  font-weight: 600;
}

.vcard__meta {
  font-size: 13px;
  color: var(--muted);
}

.vcard--feature .vcard__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
}

.vwall__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 20px;
  padding-bottom: 32px;
}

.vwall__grid li:nth-child(3n + 2) {
  translate: 0 32px;
}

/* =================================================================== */
/* 18. Footer                                                           */
/* =================================================================== */
.page-end {
  height: 1px;
}

.site-footer {
  margin-top: var(--section);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.1fr);
  gap: 48px;
  padding-block: 64px 48px;
}

.brand--footer .brand__seal {
  width: 42px;
  height: 42px;
}

.footer__tagline {
  max-width: 36ch;
  margin: 20px 0 14px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.footer__est {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.5fr);
  gap: 24px;
}

.footer__title {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__col ul {
  display: grid;
  gap: 2px;
}

.footer__col a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: 14px;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
  transition: color var(--dur-ui) var(--ease);
}

.footer__col a:hover {
  color: var(--green);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px 32px;
  border-top: 1px solid var(--line);
}

.footer__legal {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* =================================================================== */
/* 18b. Estados por perfil (membro novo e visitante)                    */
/* =================================================================== */

/* Header do visitante: entrar + fazer parte no lugar do avatar */
.header__login {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: background-color var(--dur-ui) var(--ease);
}

.header__login:hover {
  background: var(--green-pale);
}

.header__join {
  margin-left: 2px;
}

.sheet__join {
  width: 100%;
  margin-bottom: 8px;
}

/* Primeiros passos: selos ainda não conquistados ficam apagados */
.ctx__icon--todo {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}

.ctx__icon--todo.ctx__icon--stamp img {
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter var(--dur-ui) var(--ease), opacity var(--dur-ui) var(--ease);
}

a.ctx__item:hover .ctx__icon--todo.ctx__icon--stamp img {
  filter: none;
  opacity: 1;
}

/* Trilha ainda não iniciada */
.progress__pct--idle {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.learn-card__progress--time {
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.learn-card__progress--time .icon {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.badge--start .icon {
  color: var(--gold);
}

.opp__cta .icon:first-child {
  width: 15px;
  height: 15px;
}

.link-arrow:hover .icon:first-child:not(:last-child) {
  transform: none;
}

/* Seletor de perfil — só do protótipo */
.proto-switch {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 24px);
  padding: 6px 6px 6px 16px;
  border-radius: var(--r-pill);
  background: rgba(15, 40, 31, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  color: var(--on-dark);
  translate: -50% 0;
}

.proto-switch:empty {
  display: none;
}

.proto-switch__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  white-space: nowrap;
}

.proto-switch__group {
  display: flex;
  gap: 2px;
}

.proto-switch__btn {
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--on-dark-soft);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--dur-ui) var(--ease), color var(--dur-ui) var(--ease);
}

.proto-switch__btn:hover {
  color: var(--on-dark);
}

.proto-switch__btn[aria-pressed="true"] {
  background: var(--paper);
  color: var(--green);
}

.proto-switch :focus-visible {
  outline-color: var(--gold-on-dark);
}

.site-footer {
  padding-bottom: 72px;
}

@media (max-width: 760px) {
  .header__login {
    display: none;
  }

  .header__join {
    height: 40px;
    padding: 0 16px;
  }

  .proto-switch {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    padding: 5px;
    translate: none;
  }

  .proto-switch__label {
    display: none;
  }

  .proto-switch__group {
    flex: 1;
  }

  .proto-switch__btn {
    flex: 1;
    padding: 0 8px;
    font-size: 12px;
  }
}

/* =================================================================== */
/* 19. Movimento                                                        */
/* =================================================================== */
:root {
  --reveal-transition:
    opacity var(--dur-enter) var(--ease) calc(var(--d, 0) * 70ms),
    translate var(--dur-enter) var(--ease) calc(var(--d, 0) * 70ms);
}

.js [data-reveal] {
  opacity: 0;
  translate: 0 var(--rise);
  transition: var(--reveal-transition);
}

.js [data-reveal].is-in {
  opacity: 1;
  translate: none;
}

/* Elementos que já têm transição própria somam a de entrada */

.js [data-reveal] .bar i {
  transform: scaleX(0);
  transition: transform 1.3s var(--ease) 0.35s;
}

.js [data-reveal].is-in .bar i {
  transform: scaleX(1);
}

.js .hero-in {
  animation: rise-in var(--dur-enter) var(--ease) both;
  animation-delay: calc(var(--d, 0) * 90ms + 60ms);
}

.js .hero__swash path {
  animation: draw 1.3s var(--ease) 0.75s both;
}

.no-intro .hero-in,
.no-intro .hero__swash path {
  animation: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    translate: 0 var(--rise);
  }
  to {
    opacity: 1;
    translate: none;
  }
}

@keyframes draw {
  from {
    stroke-dashoffset: 240;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pop-in {
  from {
    opacity: 0;
    translate: 0 -8px;
    scale: 0.98;
  }
  to {
    opacity: 1;
    translate: none;
    scale: 1;
  }
}

@keyframes sheet-in {
  from {
    opacity: 0;
    translate: 0 -16px;
  }
  to {
    opacity: 1;
    translate: none;
  }
}

@keyframes swap-in {
  from {
    opacity: 0;
    translate: 0 10px;
  }
  to {
    opacity: 1;
    translate: none;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(198, 161, 91, 0.55);
  }
  70%,
  100% {
    box-shadow: 0 0 0 8px rgba(198, 161, 91, 0);
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(135, 161, 145, 0.6);
  }
  70%,
  100% {
    box-shadow: 0 0 0 8px rgba(135, 161, 145, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .js [data-reveal] {
    opacity: 1;
    translate: none;
  }

  .js [data-reveal] .bar i {
    transform: none;
  }

  .win-marquee__track {
    animation: none;
  }
}

/* =================================================================== */
/* 20. Responsivo                                                       */
/* =================================================================== */
@media (max-width: 1360px) {
  .nav__link {
    padding: 0 13px;
  }
}

@media (max-width: 1180px) {
  .learn {
    grid-template-columns: 1fr;
  }

  .learn-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .learn-card {
    min-height: 200px;
  }

  .programs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .wins {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .win-feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 520px;
  }

  .win-marquee {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
    height: 580px;
  }

  .opps {
    grid-template-columns: 1fr;
  }

  .opps__intro {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 48px;
    align-items: end;
  }

  .opps__intro .kicker,
  .opps__intro .h2 {
    grid-column: 1;
  }

  .opps__intro .section-sub,
  .opps__intro .link-arrow {
    grid-column: 2;
  }

  .opps__intro .section-sub {
    grid-row: 1 / 3;
    align-self: end;
    margin: 0;
  }

  .opps__note {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 16px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .program__cover {
    aspect-ratio: 5 / 4;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .vcard--feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    gap: 32px;
  }

  .vcard--feature .vcard__media {
    max-height: none;
  }

  .vcard--feature .vcard__cap {
    padding-bottom: 24px;
  }

  .vcard--feature .vcard__name {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-h: 64px;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .header__lang {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero__art {
    justify-self: center;
    max-width: 560px;
  }

  .ctx {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 8px;
  }

  .ctx li:nth-child(3)::before {
    display: none;
  }

  .goals {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 44%);
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 16px;
    scroll-padding-inline: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .goals::-webkit-scrollbar {
    display: none;
  }

  .goals__item {
    scroll-snap-align: start;
  }

  .community {
    grid-template-columns: 1fr;
  }

  .community__intro {
    max-width: 640px;
  }

  .moment--broadcast {
    margin: 0 40px 0 -8px;
  }

  .moment--milestone {
    margin: 0 -8px 0 56px;
  }

  .live {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .live__media {
    min-height: 520px;
  }

  .brand-band__grid {
    grid-template-columns: 1fr;
  }

  .brand-band__collage {
    width: 100%;
    max-width: 640px;
    min-height: 520px;
    justify-self: center;
  }

  .vwall {
    grid-template-columns: 1fr;
  }

  .vcard--feature .vcard__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
    max-height: 640px;
  }
}

@media (max-width: 760px) {
  :root {
    --rise: 20px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section-head__aside {
    align-items: flex-start;
    text-align: left;
  }

  .section-head--center {
    align-items: center;
  }

  .section-sub {
    font-size: 16px;
  }

  .header__account {
    display: none;
  }

  .brand__word {
    height: 19px;
  }

  .brand .brand__seal {
    width: 32px;
    height: 32px;
  }

  .hero__title {
    margin-top: 20px;
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .hero__ask {
    margin-top: 24px;
  }

  .hero__body {
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 28px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__grid {
    gap: 40px;
  }

  .hero__art {
    aspect-ratio: 1 / 1.1;
  }

  .hero__photo {
    width: 80%;
    border-radius: 24px;
  }

  .hero__mini {
    width: 48%;
    border-width: 4px;
    border-radius: 16px;
  }

  .float-card {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .float-card__title {
    font-size: 13px;
  }

  .float-card--live {
    left: 0;
    top: 8%;
    width: 196px;
  }

  .float-card--progress {
    right: -1%;
    bottom: 24%;
    width: 182px;
  }

  .float-card__people span:last-child {
    display: none;
  }

  .hero__stamp {
    width: 88px;
    right: 26%;
  }

  .hero__ring {
    display: none;
  }

  .ctx {
    display: flex;
    gap: 8px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px var(--gutter);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
  }

  .ctx::-webkit-scrollbar {
    display: none;
  }

  .ctx li {
    flex: none;
    scroll-snap-align: start;
  }

  .ctx li + li::before {
    display: none;
  }

  .ctx__item {
    padding: 10px 18px 10px 10px;
    border-radius: var(--r-pill);
    background: var(--paper);
    box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
  }

  .ctx__arrow {
    display: none;
  }

  .goals {
    grid-auto-columns: 84%;
  }

  .goal {
    min-height: 520px;
  }

  .goal__head {
    padding: 26px 24px 0;
  }

  .goal__foot {
    padding-left: 24px;
  }

  .rail-mobile {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    gap: 16px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 16px;
    scroll-padding-inline: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .rail-mobile::-webkit-scrollbar {
    display: none;
  }

  .rail-mobile > li {
    scroll-snap-align: start;
  }

  .programs__item:nth-child(even),
  .programs__item[data-reveal]:nth-child(even),
  .programs__item[data-reveal].is-in:nth-child(even) {
    translate: none;
  }

  .programs {
    padding-bottom: 16px;
  }

  .learn-main {
    grid-template-columns: 1fr;
  }

  .learn-main__media {
    aspect-ratio: 16 / 11;
  }

  .learn-main .btn {
    align-self: stretch;
  }

  .learn-side {
    grid-template-columns: 1fr;
  }

  .learn-card {
    grid-template-columns: 38% minmax(0, 1fr);
    min-height: 168px;
    border-radius: 20px;
  }

  .learn-card__body {
    padding: 16px;
  }

  .learn-card__title {
    font-size: 16px;
  }

  .rail {
    grid-auto-columns: 78%;
    gap: 14px;
  }

  .live {
    border-radius: 28px;
  }

  .live__media {
    min-height: 380px;
    margin: 10px;
    border-radius: 20px;
  }

  .live__face {
    width: 44%;
    max-width: 180px;
    padding: 6px 6px 0;
    border-radius: 10px;
  }

  .live__face-name {
    padding: 7px 2px 9px;
    font-size: 12px;
  }

  .live__face-name small {
    font-size: 9px;
  }

  .live__seal .brand__seal {
    width: 52px;
    height: 52px;
  }

  .live__top {
    gap: 14px;
  }

  .date-tile {
    width: 72px;
  }

  .date-tile__d {
    font-size: 34px;
  }

  .live__actions .btn {
    flex: 1 1 100%;
  }

  .live__fact {
    padding: 12px;
  }

  .live__fact dd {
    font-size: 14px;
  }

  .community__stage {
    padding: 20px 16px 24px;
    border-radius: 28px;
  }

  .moment {
    padding: 16px;
  }

  .moment--broadcast,
  .moment--milestone {
    margin: 0;
  }

  .moment__reply {
    margin-left: 6px;
    padding-left: 14px;
  }

  .presence > span:last-child {
    font-size: 12px;
  }

  .wins {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .win-feature {
    min-height: 440px;
  }

  /* No celular as faixas deitam: duas fileiras que correm para os lados, de
     ponta a ponta da tela. */
  .win-marquee {
    --marquee-gap: 14px;
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    height: auto;
    margin-inline: calc(var(--gutter) * -1);
    padding: 6px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .win-marquee__track {
    position: relative;
    inset: auto;
    flex-direction: row;
    width: max-content;
    animation-name: win-marquee-x;
  }

  .win-marquee__set {
    flex-direction: row;
  }

  .win-stamp {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-content: start;
    column-gap: 18px;
    width: min(300px, 78vw);
    margin: 0 var(--marquee-gap) 0 0;
    padding: 20px;
    border-radius: 22px;
  }

  .win-stamp__img {
    grid-row: 1 / 4;
    width: 88px;
    height: 88px;
    margin: 0;
  }

  .win-stamp .micro-label {
    margin-bottom: 4px;
  }

  .win-stamp__title {
    margin-bottom: 4px;
    font-size: 18px;
  }

  /* No celular os cards dos temas têm todos a mesma largura e as curvas de
     nível encolhem com a seção. */
  .topic-rail {
    grid-auto-columns: min(82vw, 320px);
  }

  .topic-rail__item,
  .topic-rail__item--wide {
    width: auto;
  }

  .topic {
    height: 408px;
  }

  .topic:hover,
  .topic:focus-within {
    transform: none;
  }

  .topic--wide .topic__title {
    font-size: 32px;
  }

  .section--topics::after {
    background:
      url("img/topics-contours-gold.svg") right -180px center / auto 62% no-repeat,
      url("img/topics-contours-sage.svg") left -200px center / auto 52% no-repeat;
  }


  .opps__intro {
    display: block;
  }

  .opps__intro .section-sub {
    margin: 16px 0 8px;
  }

  .opps__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .opp,
  .opp--wide {
    display: flex;
    padding: 22px;
    border-radius: 22px;
  }

  .brand-band {
    padding-inline: 10px;
  }

  .brand-band__grid {
    gap: 48px;
  }

  .brand-band__text {
    font-size: 16px;
  }

  .brand-band__places {
    margin: 24px 0 28px;
  }

  .brand-band__collage {
    min-height: 400px;
  }

  .bc {
    border-radius: 16px;
  }

  .brand-band__seal .brand__seal {
    width: 72px;
    height: 72px;
  }

  .brand-band__note {
    font-size: 15px;
    right: 2%;
  }

  .vwall__grid {
    grid-auto-columns: 46%;
  }

  .vwall__grid li:nth-child(3n + 2) {
    translate: none;
  }

  .vcard--feature .vcard__name {
    font-size: 24px;
  }

  .footer__top {
    padding-block: 48px 32px;
  }

  .footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .footer__col:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .kicker__date {
    flex-basis: 100%;
    padding-left: 32px;
  }

  .kicker__date::before {
    display: none;
  }

  .float-card .live-tag {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .brand-band__title {
    font-size: clamp(34px, 9.4vw, 44px);
  }

  .opp__head {
    flex-wrap: nowrap;
  }

  .opp__brand-name,
  .opp__type {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .status {
    height: 26px;
    padding: 0 9px;
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .float-card--live {
    width: 176px;
  }

  .float-card--progress {
    width: 164px;
  }
}
