:root {
  --tc-blue: #006eff;
  --tc-blue-dark: #004cb3;
  --tc-navy: #0a1628;
  --tc-card: rgba(255, 255, 255, 0.06);
  --tc-border: rgba(255, 255, 255, 0.12);
  --tc-text: #e8f0ff;
  --tc-muted: #9db3d6;
  --tc-accent: #00d4ff;
}

/* Tencent Cloud lockup + CodeBuddy (Academy + Solution) */
.tc-brand-visual {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.tc-brand-halo {
  position: absolute;
  inset: -10px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 25% 15%, rgba(0, 212, 255, 0.55), transparent 52%),
    radial-gradient(circle at 78% 88%, rgba(0, 110, 255, 0.55), transparent 48%);
  filter: blur(12px);
  opacity: 0.75;
  z-index: 0;
  animation: tcHaloPulse 5.5s ease-in-out infinite;
}

.tc-brand-ring {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.38);
  box-shadow:
    0 0 22px rgba(0, 110, 255, 0.35),
    inset 0 0 14px rgba(0, 212, 255, 0.1);
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.tc-brand-ring::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 210deg,
    transparent 0deg,
    rgba(0, 212, 255, 0.12) 55deg,
    rgba(0, 110, 255, 0.35) 120deg,
    transparent 200deg
  );
  animation: tcRingSweep 10s linear infinite;
}

.tc-brand-img {
  position: relative;
  z-index: 2;
  height: 26px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.tc-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  line-height: 1.05;
}

.tc-brand-cloud {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(92deg, #bae6fd 0%, #22d3ee 35%, #006eff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tc-brand-se {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 0 28px rgba(0, 212, 255, 0.35);
}

.codebuddy-float {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  width: min(112px, 26vw);
  margin: 0;
  z-index: 180;
  pointer-events: none;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 24px rgba(0, 212, 255, 0.2));
  animation: codebuddyBob 5.2s ease-in-out infinite;
}

.codebuddy-float img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes tcHaloPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.04);
  }
}

@keyframes tcRingSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes codebuddyBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: linear-gradient(155deg, #031a3a 0%, #0a2748 40%, #04142d 100%);
  color: var(--tc-text);
}

a {
  color: var(--tc-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem max(5rem, env(safe-area-inset-bottom));
}

header.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--tc-border);
  margin-bottom: 2rem;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-row .tc-brand-visual {
  margin-right: 0.25rem;
}

.logo-row .tc-brand-visual--hero {
  padding: 0.55rem 0.85rem;
  border-radius: 16px;
}

.logo-row .tc-brand-img {
  height: 52px;
}

.tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.sub {
  color: var(--tc-muted);
  font-size: 0.95rem;
  max-width: 52ch;
  margin-top: 0.35rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--tc-card);
  border: 1px solid var(--tc-border);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  text-align: left;
  color: inherit;
  font: inherit;
  display: block;
  width: 100%;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 12px 40px rgba(0, 110, 255, 0.15);
  outline: none;
}

.card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--tc-muted);
  line-height: 1.45;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--tc-accent);
  margin-top: 0.75rem;
}

.section-title {
  font-size: 1.05rem;
  margin: 2.5rem 0 1rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.earnings-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
}

.earn-card {
  background: linear-gradient(135deg, rgba(0, 110, 255, 0.35), rgba(10, 22, 40, 0.9));
  border: 1px solid var(--tc-border);
  border-radius: 16px;
  padding: 1.25rem;
  min-height: 140px;
}

.earn-card .q {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.earn-card .rev {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.earn-card .meta {
  font-size: 0.8rem;
  color: var(--tc-muted);
  margin-top: 0.5rem;
  line-height: 1.35;
}

.panel {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--tc-border);
  border-radius: 14px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.panel p,
.panel li {
  color: var(--tc-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.train-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.train-table th,
.train-table td {
  border: 1px solid var(--tc-border);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.train-table th {
  background: rgba(0, 110, 255, 0.2);
  color: #fff;
}

.links-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* solution page */
.back {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.cols {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .cols {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

.info-block {
  background: var(--tc-card);
  border: 1px solid var(--tc-border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.85rem;
}

.info-block h3 {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tc-accent);
}

.info-block p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--tc-muted);
  line-height: 1.5;
}

.coach {
  position: sticky;
  top: 1rem;
}

.coach textarea {
  width: 100%;
  min-height: 100px;
  border-radius: 10px;
  border: 1px solid var(--tc-border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--tc-text);
  padding: 0.65rem 0.75rem;
  font: inherit;
  resize: vertical;
}

.coach button {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.65rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, var(--tc-blue), var(--tc-blue-dark));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.coach button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.coach-out {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--tc-text);
  white-space: pre-wrap;
}

.coach-kicker {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tc-accent);
  margin: 0 0 0.25rem;
}

.coach-sub,
.coach-help {
  font-size: 0.82rem;
  color: var(--tc-muted);
  line-height: 1.45;
  margin: 0 0 0.5rem;
}

.coach-sub code {
  font-size: 0.85em;
}

.coach-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.coach-retry {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--tc-text) !important;
  border: 1px solid var(--tc-border) !important;
}

.coach-usage {
  font-size: 0.75rem;
  color: var(--tc-muted);
  margin: 0.35rem 0 0;
  min-height: 1.2em;
}

.coach-foot {
  font-size: 0.72rem;
  color: var(--tc-muted);
  margin-top: 0.65rem;
  line-height: 1.4;
}

.coach-out.is-loading {
  min-height: 100px;
  opacity: 0.65;
  animation: coachPulseDark 1s ease infinite;
}

@keyframes coachPulseDark {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.9;
  }
}

.err {
  color: #ff8a8a;
  font-size: 0.85rem;
  margin-top: 0.35rem;
  min-height: 1.25em;
  white-space: pre-wrap;
}

footer.site {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--tc-border);
  font-size: 0.8rem;
  color: var(--tc-muted);
}

/* --- Hub: entrada em cartões --- */
@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card-enter {
  animation: cardRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--stagger, 0) * 0.045s);
}

.card:hover .icon {
  animation: iconWiggle 0.85s ease;
}

@keyframes iconWiggle {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-6deg);
  }
  75% {
    transform: rotate(6deg);
  }
}

/* --- Earnings: brilho + YoY --- */
.earn-shine {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.12), transparent 55%);
  pointer-events: none;
  animation: shineDrift 8s ease-in-out infinite;
}

@keyframes shineDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12%, 6%);
  }
}

.earn-card {
  position: relative;
  overflow: hidden;
}

.earn-card-enter {
  animation: cardRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--ei, 0) * 0.08s);
}

.rev-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.yoy {
  font-size: 0.82rem;
  font-weight: 700;
  color: #7dffb3;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(125, 255, 179, 0.12);
}

.earn-hi {
  font-size: 0.78rem;
  color: var(--tc-muted);
  margin-top: 0.55rem;
  line-height: 1.4;
}

.sources-strip h3 {
  margin-top: 0;
}

.sources-note {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--tc-text);
}

.sources-links a {
  font-size: 0.88rem;
}

.fineprint {
  font-size: 0.78rem;
  color: var(--tc-muted);
  margin-top: 0.5rem;
}

.ai-narrative {
  white-space: pre-wrap;
  color: var(--tc-text);
  line-height: 1.55;
}

.inline-code {
  font-size: 0.85em;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
}

.code-snippet {
  overflow: auto;
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.75rem;
  border-radius: 8px;
}

/* --- Tendências: painel «vivo» --- */
.pulse-shell {
  position: relative;
  padding: 1.25rem 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: linear-gradient(145deg, rgba(0, 110, 255, 0.18), rgba(4, 20, 45, 0.92));
  overflow: hidden;
}

.pulse-orbit {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: conic-gradient(
    from 120deg,
    transparent,
    rgba(0, 212, 255, 0.06),
    transparent 40%,
    rgba(0, 110, 255, 0.08),
    transparent 70%
  );
  animation: orbitSpin 22s linear infinite;
  pointer-events: none;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.pulse-hero {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.pulse-kicker {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tc-accent);
  margin-bottom: 0.35rem;
}

.pulse-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: #fff;
}

.pulse-exec {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #e8f4ff;
}

.pulse-remind {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--tc-muted);
}

.pulse-strip {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.pulse-tile {
  position: relative;
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  border-radius: 14px;
  padding: 1rem 1.05rem;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid var(--tc-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.pulse-tile:hover,
.pulse-tile:focus-visible {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 16px 40px rgba(0, 110, 255, 0.2);
  outline: none;
}

.pulse-tile-glow {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  background: radial-gradient(circle at 20% 0%, rgba(0, 212, 255, 0.2), transparent 60%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pulse-tile:hover .pulse-tile-glow,
.pulse-tile:focus-visible .pulse-tile-glow {
  opacity: 1;
}

.pulse-tile-slug {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.45rem;
}

.pulse-tile-line {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--tc-muted);
}

.pulse-tile-line strong {
  color: var(--tc-accent);
  font-weight: 700;
  margin-right: 0.25rem;
}

.pulse-tile-line.talk strong {
  color: #9ddcff;
}

.pulse-tile-line.risk strong {
  color: #ffb89d;
}

.pulse-ai {
  position: relative;
  z-index: 1;
  margin-top: 1.15rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px dashed rgba(0, 212, 255, 0.35);
}

.pulse-ai-muted {
  background: rgba(0, 0, 0, 0.25);
  border-style: solid;
  border-color: var(--tc-border);
}

.pulse-ai-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tc-accent);
  margin-bottom: 0.35rem;
}

/* --- Ficha: baralho de cartas --- */
.deck-toolbar {
  margin-bottom: 1rem;
}

.deck-hint {
  font-size: 0.82rem;
  color: var(--tc-muted);
  margin: 0 0 0.65rem;
}

.deck-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.deck-chip {
  font-size: 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--tc-border);
  background: rgba(0, 110, 255, 0.15);
  color: var(--tc-text);
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.deck-chip:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: translateY(-1px);
}

.deck-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}

.deck-card {
  position: relative;
  margin-top: -52px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  animation: deckIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--di, 0) * 0.06s);
  z-index: var(--di, 0);
}

.deck-card:first-child {
  margin-top: 0;
}

.deck-card:hover,
.deck-card:focus-visible {
  transform: translateY(-14px) translateX(6px) rotate(-0.6deg);
  z-index: 100 !important;
  outline: none;
}

.deck-card-face {
  border-radius: 16px;
  padding: 1.1rem 1.2rem 1.2rem;
  border: 1px solid var(--tc-border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(4, 18, 40, 0.92));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.deck-card--0 .deck-card-face {
  border-left: 4px solid #00d4ff;
}
.deck-card--1 .deck-card-face {
  border-left: 4px solid #6c8cff;
}
.deck-card--2 .deck-card-face {
  border-left: 4px solid #b07dff;
}
.deck-card--3 .deck-card-face {
  border-left: 4px solid #4dffbe;
}
.deck-card--4 .deck-card-face {
  border-left: 4px solid #ffb347;
}

.deck-step {
  float: right;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
}

.deck-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--tc-accent);
  clear: right;
}

.deck-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--tc-muted);
  white-space: pre-line;
}

@keyframes deckIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .deck-card {
    margin-top: 0.75rem;
  }

  .deck-card:hover,
  .deck-card:focus-visible {
    transform: scale(1.01);
  }
}

.coach-panel.panel {
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: linear-gradient(165deg, rgba(12, 28, 52, 0.55) 0%, rgba(0, 0, 0, 0.32) 100%);
  backdrop-filter: blur(6px);
  animation: coachGlow 4.5s ease-in-out infinite;
}

.coach-panel .coach-help {
  color: #c8d9f0;
  line-height: 1.55;
}

@keyframes coachGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.12);
  }
}

.page-solution .hero {
  animation: heroFade 0.8s ease backwards;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-enter,
  .earn-card-enter,
  .deck-card,
  .pulse-orbit,
  .earn-shine,
  .coach-panel,
  .page-solution .hero,
  .academy-card-animate,
  .academy-coach--premium,
  .academy-coach-head {
    animation: none !important;
    transition: none !important;
  }

  .academy-topnav::before,
  .academy-topnav::after,
  .academy-brand .tc-brand-img,
  .academy-brand .tc-brand-cloud,
  .academy-brand .tc-brand-se {
    animation: none !important;
  }

  .academy-brand:hover .tc-brand-visual {
    transform: none !important;
  }

  .tc-brand-halo,
  .tc-brand-ring::after,
  .codebuddy-float {
    animation: none !important;
  }

  .academy-coach-ribbon,
  .academy-coach-out.is-loading {
    animation: none !important;
  }

  .coach-out.is-loading {
    animation: none !important;
  }
}

/* ========== Academy (Tencent Sales Training) ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-academy {
  background: #e9ebf0;
  color: #1a1d21;
}

.page-academy a {
  color: #006eff;
}

.page-academy a:hover {
  text-decoration: underline;
}

.academy-topnav {
  position: sticky;
  top: 0;
  z-index: 200;
  color: #fff;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  background: linear-gradient(100deg, #050c18 0%, #0c2344 42%, #081424 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Malha luminosa animada por trás do conteúdo */
.academy-topnav::before {
  content: "";
  position: absolute;
  inset: -4px;
  background:
    radial-gradient(ellipse 85% 120% at 15% -10%, rgba(0, 212, 255, 0.28), transparent 52%),
    radial-gradient(ellipse 70% 90% at 95% 110%, rgba(0, 110, 255, 0.32), transparent 48%);
  opacity: 0.85;
  animation: academyNavMesh 9s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* Feixe de luz que atravessa a barra (efeito «scan») */
.academy-topnav::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -40%;
  width: 45%;
  height: 120%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 35%,
    rgba(0, 212, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.03) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: academyNavSweep 11s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes academyNavMesh {
  0% {
    opacity: 0.65;
    transform: scale(1) translate(0, 0);
  }
  100% {
    opacity: 0.95;
    transform: scale(1.06) translate(1.5%, -1%);
  }
}

@keyframes academyNavSweep {
  0%,
  15% {
    left: -45%;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  45% {
    left: 115%;
    opacity: 0.85;
  }
  55%,
  100% {
    left: 115%;
    opacity: 0;
  }
}

.academy-topnav-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.academy-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

.academy-brand .tc-brand-visual {
  margin-right: 0.1rem;
  transition: transform 0.35s ease;
}

.academy-brand:hover .tc-brand-visual {
  transform: scale(1.03);
}

.academy-brand .tc-brand-img {
  animation: tcLogoNudge 4.5s ease-in-out infinite;
}

.academy-brand .tc-brand-cloud {
  background-size: 220% 100%;
  animation: tcBrandLabelShimmer 6s ease-in-out infinite;
}

.academy-brand .tc-brand-se {
  animation: tcTrainingTitleGlow 4.2s ease-in-out infinite;
}

@keyframes tcLogoNudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes tcBrandLabelShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes tcTrainingTitleGlow {
  0%,
  100% {
    text-shadow:
      0 0 16px rgba(0, 212, 255, 0.28),
      0 0 32px rgba(0, 110, 255, 0.12);
  }
  50% {
    text-shadow:
      0 0 26px rgba(0, 212, 255, 0.48),
      0 0 48px rgba(0, 110, 255, 0.22);
  }
}

/* Academy: lockup Tencent maior e mais presente no header */
.page-academy .academy-topnav-inner {
  padding: 0.85rem 1.2rem;
  gap: 1.15rem;
}

.page-academy .academy-brand .tc-brand-visual {
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
}

.page-academy .academy-brand:hover .tc-brand-visual {
  transform: scale(1.05);
}

.page-academy .academy-brand .tc-brand-img {
  height: 44px;
  width: auto;
}

.page-academy .academy-brand .tc-brand-cloud {
  font-size: 0.74rem;
}

.page-academy .academy-brand .tc-brand-se {
  font-size: 1.2rem;
}

.academy-topnav-search-wrap {
  flex: 1;
  min-width: 180px;
  max-width: 420px;
}

.academy-topnav-search {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 0.45rem 0.75rem;
  font: inherit;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.academy-topnav-search:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.55);
  background: rgba(0, 20, 40, 0.45);
  box-shadow:
    0 0 0 3px rgba(0, 110, 255, 0.22),
    0 0 22px rgba(0, 212, 255, 0.18);
}

.academy-topnav-search::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.academy-topnav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.92rem;
}

.academy-topnav-actions a {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #b8d9ff !important;
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none !important;
}

.academy-topnav-actions a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #006eff);
  border-radius: 2px;
  transition: width 0.28s ease;
}

.academy-topnav-actions a:hover::after,
.academy-topnav-actions a:focus-visible::after {
  width: 100%;
}

.academy-topnav-actions a:hover {
  color: #e8f4ff !important;
}

.academy-topnav-cta {
  background: #006eff;
  color: #fff !important;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: 600;
}

.academy-shell {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 120px);
  align-items: stretch;
}

.academy-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: #eceef3;
  border-right: 1px solid #d8dce3;
  padding: 1rem 0.9rem 2rem;
  overflow-y: auto;
  max-height: calc(100vh - 56px);
  position: sticky;
  top: 56px;
  align-self: flex-start;
}

.academy-sidebar-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5c6570;
  margin: 0 0 0.25rem;
}

.academy-sidebar-hint {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0 0 1rem;
  line-height: 1.4;
}

.academy-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-right: 0.35rem;
  padding: 0.2rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
}

.academy-lang-btn {
  min-width: 2.1rem;
  padding: 0.28rem 0.45rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  line-height: 1.2;
}

.academy-lang-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.academy-lang-btn.is-active {
  background: #006eff;
  color: #fff;
}

.academy-content-locale {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid #fde68a;
  border-radius: 10px;
  background: #fffbeb;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #78350f;
}

.academy-content-locale strong {
  display: block;
  margin-bottom: 0.25rem;
}

.academy-tc-box {
  margin: 0.85rem 0 0.5rem;
}

.academy-tc-box-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 2px solid #006eff;
  border-radius: 12px;
  background: linear-gradient(145deg, #eff6ff 0%, #fff 55%);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition:
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.academy-tc-box-btn:hover,
.academy-tc-box-btn.is-active {
  border-color: #0047b3;
  box-shadow: 0 4px 14px rgba(0, 110, 255, 0.18);
}

.academy-tc-box-kicker {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.academy-tc-box-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.academy-tc-box-desc {
  font-size: 0.72rem;
  line-height: 1.4;
  color: #475569;
}

.academy-sidebar-sub {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #374151;
  margin: 1rem 0 0.35rem;
}

.academy-acc {
  border: 1px solid #d8dce3;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.academy-acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border: none;
  background: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: left;
}

.academy-acc-icon::before {
  content: "▾";
  font-size: 0.75rem;
  opacity: 0.5;
}

.academy-acc-trigger[aria-expanded="false"] .academy-acc-icon::before {
  content: "▸";
}

.academy-acc-panel {
  padding: 0 0.65rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.academy-acc-panel--collapsed {
  display: none;
}

.academy-check {
  font-size: 0.8rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.academy-side-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.5rem;
  margin-bottom: 0.25rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  color: #1e3a5f;
  cursor: pointer;
}

.academy-side-link:hover {
  background: rgba(0, 110, 255, 0.08);
}

.academy-side-link.is-active {
  background: rgba(0, 110, 255, 0.15);
  border-color: rgba(0, 110, 255, 0.25);
  font-weight: 600;
}

/* Panorama de mercado — accordion + card links */
.academy-acc--panorama {
  border: 1px solid #93c5fd;
  border-radius: 12px;
  background: linear-gradient(165deg, #eff6ff 0%, #fff 48%, #f8fafc 100%);
  box-shadow: 0 2px 10px rgba(0, 110, 255, 0.1);
  margin-bottom: 0.65rem;
}

.academy-acc-trigger--panorama {
  padding: 0.7rem 0.75rem;
  background: transparent;
  gap: 0.35rem;
}

.academy-acc-trigger--panorama:hover {
  background: rgba(255, 255, 255, 0.55);
}

.academy-acc-trigger-inner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  flex: 1;
}

.academy-acc-trigger-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #006eff 0%, #00a3ff 100%);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 110, 255, 0.35);
}

.academy-acc-trigger-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.academy-acc-trigger-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.academy-acc-trigger-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.academy-acc-trigger-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.3;
}

.academy-acc-panel--panorama {
  padding: 0.35rem 0.5rem 0.55rem;
  gap: 0.4rem;
}

.academy-side-link--card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 0;
  padding: 0.55rem 0.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.academy-side-link--card:hover {
  border-color: #93c5fd;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 110, 255, 0.14);
  transform: translateX(3px);
}

.academy-side-link--card.is-active {
  border-color: #006eff;
  background: linear-gradient(90deg, #eff6ff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 110, 255, 0.2);
  font-weight: inherit;
}

.academy-side-link--card.is-active .academy-side-link-title {
  font-weight: 700;
  color: #006eff;
}

.academy-side-link--card.is-active .academy-side-link-arrow {
  color: #006eff;
  transform: translateX(2px);
}

.academy-side-link-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
}

.academy-side-link-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.academy-side-link-icon--pulse {
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
}

.academy-side-link-icon--analysts {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.35);
}

.academy-side-link-icon--news {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.academy-side-link-icon--earnings {
  background: linear-gradient(135deg, #006eff 0%, #0047b3 100%);
  box-shadow: 0 2px 8px rgba(0, 110, 255, 0.4);
}

.academy-side-link-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.academy-side-link-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
}

.academy-side-link-desc {
  font-size: 0.68rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.3;
}

.academy-side-link-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #94a3b8;
  line-height: 1;
  transition:
    color 0.15s ease,
    transform 0.15s ease;
}

.academy-side-link--card:hover .academy-side-link-arrow {
  color: #006eff;
}

/* Cases de sucesso — accordion */
.academy-acc--cases {
  border: 1px solid #fcd34d;
  border-radius: 12px;
  background: linear-gradient(165deg, #fffbeb 0%, #fff 48%, #f8fafc 100%);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.12);
  margin-bottom: 0.65rem;
}

.academy-acc-trigger--cases:hover {
  background: rgba(255, 255, 255, 0.55);
}

.academy-acc-trigger-icon--cases {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.4);
}

.academy-acc-panel--cases {
  padding: 0.35rem 0.5rem 0.55rem;
  gap: 0.4rem;
}

.academy-side-link-icon--global {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.35);
}

.academy-side-link-icon--brazil {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
}

.academy-side-link-icon--games {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.35);
}

/* Certificação Tencent Cloud — accordion */
.academy-acc--cert {
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-radius: 12px;
  background: linear-gradient(165deg, #ecfdf5 0%, #fff 52%, #f8fafc 100%);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.12);
  margin-bottom: 0.65rem;
}

.academy-acc-trigger--cert:hover {
  background: rgba(255, 255, 255, 0.55);
}

.academy-acc-trigger-icon--cert {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4);
}

.academy-acc-panel--cert {
  padding: 0.35rem 0.5rem 0.55rem;
}

.academy-side-link-icon--cert {
  background: linear-gradient(135deg, #059669 0%, #065f46 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
}

a.academy-cert-external {
  text-decoration: none;
  color: inherit;
}

a.academy-cert-external:visited {
  color: inherit;
}

/* Success cases — main stage */
.academy-cases-hero {
  margin-bottom: 1rem;
}

.academy-cases-hero-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.academy-cases-hero-lead {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #475569;
  max-width: 72ch;
}

.academy-cases-source {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
}

.academy-cases-cat-title {
  margin: 1.1rem 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #b45309;
}

.academy-card--case {
  border-left: 3px solid #f59e0b;
}

.academy-case-head {
  margin-bottom: 0.35rem;
}

.academy-case-segment {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #b45309;
  background: #fef3c7;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}

.academy-case-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.academy-case-headline {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #006eff;
}

.academy-case-block {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #334155;
}

.academy-case-sales {
  margin: 0.55rem 0 0;
  padding: 0.5rem 0.6rem;
  background: #ecfdf5;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #14532d;
}

.academy-case-story {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
}

.academy-case-story-link {
  font-weight: 700;
  color: #006eff;
  text-decoration: none;
}

.academy-case-story-link:hover {
  text-decoration: underline;
}

.academy-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.academy-case-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.academy-cases-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.academy-cases-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: #006eff;
  text-decoration: none;
  padding: 0.3rem 0.55rem;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #f8fafc;
}

.academy-cases-foot {
  margin-top: 0.85rem;
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.45;
}

/* Painel oficial de logos (PDF appendice) — Cases globais */
.academy-cases-wall {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.academy-cases-wall-cap {
  margin: 0;
  padding: 0.65rem 1rem 0.55rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid #eef2f7;
}

.academy-cases-wall-frame {
  overflow: auto auto;
  max-height: min(70vh, 720px);
  background: #fafbfc;
}

.academy-cases-wall-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.academy-cases-wall-note {
  margin: 0;
  padding: 0.5rem 0.95rem 0.65rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #64748b;
  background: #f8fafc;
  border-top: 1px solid #eef2f7;
}

.academy-welcome-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px dashed #c5cad3;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 0.82rem;
  color: #5c6570;
  cursor: pointer;
}

.academy-welcome-btn:hover {
  border-color: #006eff;
  color: #006eff;
}

.academy-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.academy-nav-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #fff;
  cursor: pointer;
  font: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.academy-nav-item:hover {
  border-color: #c5cad3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transform: translateX(2px);
}

.academy-nav-item.is-active {
  border-color: #006eff;
  box-shadow: 0 0 0 1px rgba(0, 110, 255, 0.2);
}

.academy-nav-ico {
  font-size: 1.25rem;
  line-height: 1;
}

.academy-nav-txt strong {
  display: block;
  font-size: 0.82rem;
  color: #111827;
}

.academy-nav-txt small {
  display: block;
  font-size: 0.72rem;
  color: #6b7280;
  margin-top: 0.15rem;
  line-height: 1.3;
}

.academy-main {
  flex: 1;
  min-width: 0;
  background: #f4f5f8;
  padding: 0 1rem 2.5rem;
}

.academy-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0 0.75rem;
  position: sticky;
  top: 56px;
  z-index: 50;
  background: linear-gradient(180deg, #f4f5f8 85%, transparent);
}

.academy-crumb {
  font-weight: 800;
  font-size: 1.05rem;
  color: #111827;
}

.academy-count {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

.academy-select-wrap {
  font-size: 0.78rem;
  color: #5c6570;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.academy-select {
  border-radius: 8px;
  border: 1px solid #c5cad3;
  padding: 0.35rem 0.5rem;
  font: inherit;
  background: #fff;
}

.academy-stage {
  padding-bottom: 2rem;
}

.academy-toolbar--minimal .academy-toolbar-right {
  display: none;
}

.academy-loading {
  padding: 2rem;
  color: #6b7280;
}

.academy-hero {
  background: #fff;
  border: 1px solid #e3e5e8;
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.academy-hero-top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.academy-hero-ico {
  font-size: 2.25rem;
  line-height: 1;
}

.academy-hero-title {
  margin: 0;
  font-size: 1.45rem;
  color: #111827;
}

.academy-hero-sub {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
}

.academy-hero-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: #6b7280;
}

.academy-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.academy-hero-meta span {
  font-size: 0.72rem;
  background: #eef2ff;
  color: #3730a3;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.academy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.academy-hero-links {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.academy-results-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0.25rem 0 0.65rem;
}

.academy-results-head--section {
  margin-top: 0.5rem;
  padding-top: 0.35rem;
  border-top: 1px solid #e5e7eb;
}

.academy-results-head--section span:first-child {
  font-weight: 800;
  color: #1e40af;
  font-size: 0.88rem;
}

.academy-card-grid--hunyuan {
  margin-bottom: 0.75rem;
}

.academy-results-n {
  font-weight: 600;
  color: #374151;
}

.academy-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

/* Vista «Tendências (radar)»: resumo em colunas + grelha por produto */
.academy-pulse {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.academy-pulse--products-only {
  gap: 0.75rem;
}

.academy-pulse--products-only .academy-pulse-section-title {
  margin: 0 0 0.35rem;
  font-size: 1.22rem;
}

.academy-pulse-hero {
  background: linear-gradient(145deg, #ffffff 0%, #f5f8ff 42%, #eef4ff 100%);
  border: 1px solid rgba(0, 110, 255, 0.2);
  border-radius: 16px;
  padding: 1.35rem 1.5rem 1.2rem;
  box-shadow: 0 6px 28px rgba(0, 110, 255, 0.07);
}

.academy-pulse-title {
  margin: 0;
  font-size: 1.48rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.academy-pulse-lead {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
  max-width: 72ch;
}

.academy-pulse-forces {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.05rem;
}

.academy-pulse-forces--fallback {
  grid-template-columns: 1fr;
}

@media (max-width: 720px) {
  .academy-pulse-forces {
    grid-template-columns: 1fr;
  }
}

.academy-pulse-force {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  border-left: 4px solid #006eff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.academy-pulse-force-title {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #006eff;
}

.academy-pulse-force-body {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #475569;
}

.academy-pulse-foot {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #64748b;
  padding-top: 0.9rem;
  border-top: 1px dashed #cbd5e1;
}

.academy-pulse-section {
  margin-top: 0.15rem;
}

.academy-pulse-section-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: #111827;
}

.academy-pulse-count {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #006eff;
  background: #eff6ff;
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  vertical-align: middle;
}

.academy-pulse-section-hint {
  margin: 0.4rem 0 0.9rem;
  font-size: 0.82rem;
  color: #64748b;
  max-width: 78ch;
  line-height: 1.45;
}

.academy-card-grid--pulse {
  gap: 1.1rem;
}

.academy-card--pulse {
  border-radius: 14px;
  border-color: rgba(0, 110, 255, 0.16);
  padding: 1rem 1.1rem 1.05rem;
}

.academy-pulse-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.academy-pulse-card-ico {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.academy-card--pulse .academy-card-title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.28;
}

.academy-pulse-dl {
  margin: 0;
}

.academy-pulse-dl-row {
  margin: 0 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eef2f7;
}

.academy-pulse-dl-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.academy-pulse-dl dt {
  margin: 0 0 0.12rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.academy-pulse-dl dd {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #334155;
}

.academy-pulse-dl-row--risk dt {
  color: #c2410c;
}

.academy-pulse-dl-row--risk dd {
  color: #9a3412;
  font-size: 0.82rem;
}

.academy-card {
  background: #fff;
  border: 1px solid #e3e5e8;
  border-radius: 12px;
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.academy-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.academy-card--click {
  cursor: pointer;
}

.academy-card-animate {
  animation: academyCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--ci, 0) * 0.05s);
}

@keyframes academyCardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.academy-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #006eff;
  margin-bottom: 0.35rem;
}

.academy-card-title {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: #111827;
}

.academy-card-desc {
  margin: 0;
  font-size: 0.86rem;
  color: #4b5563;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.academy-card-metric {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.35rem;
}

.academy-card-metric em {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  color: #059669;
  margin-left: 0.35rem;
}

.academy-card-more {
  margin-top: 0.65rem;
  border: none;
  background: transparent;
  color: #006eff;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
}

.academy-card-full {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #e3e5e8;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.5;
}

.academy-card-full p {
  margin: 0;
  white-space: pre-line;
}

.academy-card-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: #006eff;
}

.academy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none !important;
  border: 1px solid transparent;
}

.academy-btn-primary {
  background: #006eff;
  color: #fff !important;
}

.academy-btn-ghost {
  background: #fff;
  color: #1e3a5f !important;
  border-color: #c5cad3;
}

.academy-hunyuan {
  background: #fff;
  border: 1px solid #e3e5e8;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.academy-hunyuan-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.academy-hunyuan-lead {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
}

.academy-hunyuan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.5rem;
}

.academy-hunyuan-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.academy-hunyuan-topic {
  border: none;
  background: none;
  padding: 0;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  line-height: 1.35;
}

.academy-hunyuan-topic:hover {
  color: #006eff;
}

.academy-hunyuan-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: #1e40af;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.academy-hunyuan-link:hover {
  border-color: #93c5fd;
  background: #eff6ff;
  box-shadow: 0 2px 8px rgba(0, 110, 255, 0.1);
}

.academy-hunyuan-ext {
  flex-shrink: 0;
  font-size: 0.75rem;
  opacity: 0.65;
}

.academy-welcome-more {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: #4b5563;
}

.academy-welcome-external {
  margin: 1rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 110, 255, 0.2);
  background: rgba(239, 246, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.45;
}

.academy-welcome-external-link {
  font-weight: 600;
  color: #006eff;
  text-decoration: none;
}

.academy-welcome-external-link:hover {
  text-decoration: underline;
}

.academy-welcome-external-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.academy-coach {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid #e3e5e8;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 4px 20px rgba(0, 110, 255, 0.06);
}

.academy-coach--premium {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 110, 255, 0.32);
  box-shadow:
    0 8px 36px rgba(0, 110, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  padding-top: 1.5rem;
  animation: academyCoachCard 0.65s ease backwards;
}

@keyframes academyCoachCard {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.academy-coach-ribbon {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #006eff, #00d4ff, #a855f7, #006eff);
  background-size: 300% 100%;
  animation: coachRibbon 8s ease infinite;
}

@keyframes coachRibbon {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.academy-coach-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #006eff;
  margin-bottom: 0.35rem;
}

.academy-coach-title {
  margin: 0;
  font-size: 1.58rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.academy-coach-head {
  animation: academyCoachHead 0.55s ease backwards;
}

@keyframes academyCoachHead {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.academy-coach-topicline {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: #334155;
}

.academy-coach-topicline strong {
  color: #006eff;
}

.academy-coach-sub {
  margin: 0.5rem 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #64748b;
}

.academy-coach-sub code {
  font-size: 0.78em;
  background: #f1f5f9;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.academy-coach-prompts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.academy-coach-prompts-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  margin-right: 0.25rem;
}

.academy-coach-prompt {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}

.academy-coach-prompt:hover {
  background: linear-gradient(180deg, #eff6ff 0%, #e0f2fe 100%);
  border-color: #006eff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 110, 255, 0.18);
}

.academy-coach-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.academy-coach-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.academy-coach-meta {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0.35rem 0 0;
}

.academy-coach-footnote {
  font-size: 0.72rem;
  color: #94a3b8;
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

.academy-coach-out.is-loading {
  position: relative;
  min-height: 180px;
  color: #0f172a;
  font-weight: 600;
  background: linear-gradient(90deg, #f1f5f9 0%, #f8fafc 40%, #f1f5f9 80%);
  background-size: 200% 100%;
  animation: coachShimmer 1.1s ease infinite;
}

@keyframes coachShimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.academy-coach-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .academy-coach-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.academy-coach-ta {
  width: 100%;
  min-height: 120px;
  border-radius: 10px;
  border: 1px solid #c5cad3;
  padding: 0.65rem 0.75rem;
  font: inherit;
  resize: vertical;
}

.academy-coach-out {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #111827;
  white-space: pre-wrap;
  min-height: 120px;
}

.academy-coach-err {
  color: #b91c1c;
  font-size: 0.82rem;
  margin: 0.35rem 0 0;
}

.academy-ai-strip {
  background: #fff;
  border: 1px solid #e3e5e8;
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
}

.academy-ai-strip-title {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4338ca;
}

.academy-ai-strip-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #334155;
}

.academy-ai-strip.muted {
  background: #fafafa;
  color: #6b7280;
  font-size: 0.88rem;
}

.academy-ai-strip.muted .academy-ai-strip-text {
  color: #6b7280;
  font-size: 0.85rem;
}

.academy-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #e3e5e8;
  border-radius: 12px;
}

.academy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.academy-table th,
.academy-table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 0.65rem 0.85rem;
  text-align: left;
}

.academy-table th {
  background: #f9fafb;
  font-weight: 700;
  color: #374151;
}

.academy-inline-btn {
  border: none;
  background: none;
  color: #006eff;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
}

.academy-error {
  color: #b91c1c;
  padding: 1rem;
}

/* Feed de notícias */
.academy-news-head {
  margin-bottom: 1rem;
}

.academy-news-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.academy-news-lead {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
  max-width: 72ch;
}

.academy-news-updated {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

.academy-news-stale {
  color: #b45309;
  font-weight: 600;
}

.academy-news-region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.academy-news-region-tab {
  border: 2px solid #cbd5e1;
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.academy-news-region-tab.is-primary-region.is-active,
.academy-news-region-tab.is-active {
  border-color: #006eff;
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
  color: #1e40af;
  box-shadow: 0 2px 8px rgba(0, 110, 255, 0.12);
}

.academy-news-region-desc {
  margin: 0.45rem 0 0.65rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #64748b;
  max-width: 72ch;
}

.academy-news-tier {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
}

.academy-news-tier--br {
  background: #dcfce7;
  color: #166534;
}

.academy-news-tier--global {
  background: #e0f2fe;
  color: #0369a1;
}

.academy-news-tab.is-secondary {
  opacity: 0.85;
  border-style: dashed;
}

.academy-news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.academy-news-tab {
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.academy-news-tab.is-primary {
  border-color: #93c5fd;
}

.academy-news-tab.is-active,
.academy-news-tab:hover {
  border-color: #006eff;
  background: #eff6ff;
  color: #1e40af;
}

.academy-news-tab-n {
  font-size: 0.68rem;
  opacity: 0.75;
  margin-left: 0.15rem;
}

.academy-news-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.academy-news-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.academy-news-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  color: #64748b;
}

.academy-news-cat {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #006eff;
}

.academy-news-source {
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  padding: 0.1rem 0.45rem;
  background: #f1f5f9;
  border-radius: 4px;
}


.academy-news-item-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

.academy-news-item-summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.academy-news-item-title a {
  color: #0f172a;
  text-decoration: none;
}

.academy-news-item-title a:hover {
  color: #006eff;
  text-decoration: underline;
}

.academy-news-item-summary {
  margin: 0.4rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #64748b;
}

.academy-news-empty,
.academy-news-foot {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
}

.academy-news-foot {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #e2e8f0;
}

/* Resultados Tencent — RMB + USD */
.academy-hero--earnings {
  border-left: 4px solid #006eff;
}

.academy-hero-note--fx {
  font-size: 0.8rem;
  color: #64748b;
}

.academy-card-grid--earnings {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.academy-card--earnings .academy-card-tag {
  background: #eff6ff;
  color: #1d4ed8;
}

.academy-earn-metrics {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #334155;
}

.academy-earn-line {
  display: block;
}

.academy-earn-line--sub {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: #64748b;
}

.academy-earn-line--muted {
  color: #94a3b8;
  font-style: italic;
}

.academy-earn-yoy {
  font-style: normal;
  font-weight: 700;
  color: #059669;
  font-size: 0.8rem;
}

.academy-insights {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
}

.academy-insights-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e3a5f;
}

.academy-insights-lead {
  margin: 0.35rem 0 0.65rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #64748b;
}

.academy-insights-lead code {
  font-size: 0.78em;
}

.academy-insights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.academy-insights-stat {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.academy-insights-n {
  font-size: 1.35rem;
  font-weight: 800;
  color: #006eff;
  line-height: 1.1;
}

.academy-insights-stat span:last-child {
  font-size: 0.72rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.academy-insights-row {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #475569;
}

.academy-insights-row a {
  color: #006eff;
}

.academy-footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  padding-bottom: max(4.5rem, env(safe-area-inset-bottom));
  font-size: 0.78rem;
  color: #6b7280;
  text-align: center;
}

/* Reconhecimento de analistas */
.academy-analysts-head {
  margin-bottom: 1rem;
}

.academy-analysts-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.academy-analysts-lead {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
  max-width: 78ch;
}

.academy-analysts-updated {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

.academy-analyst-hero {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 42%);
  gap: 1.25rem;
  align-items: center;
  margin: 1rem 0 1.25rem;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 55%, #fff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 110, 255, 0.08);
}

.academy-analyst-hero-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.academy-analyst-hero-title {
  margin: 0.35rem 0 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}

.academy-analyst-hero-placement {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #047857;
}

.academy-analyst-hero-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.12rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #92400e;
  background: #fef3c7;
  border-radius: 999px;
  vertical-align: middle;
}

.academy-analyst-hero-summary,
.academy-analyst-hero-angle {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #334155;
}

.academy-analyst-figure {
  margin: 0;
}

.academy-analyst-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.academy-analyst-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.academy-analyst-tab {
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.academy-analyst-tab.is-active,
.academy-analyst-tab:hover {
  border-color: #006eff;
  background: #eff6ff;
  color: #1e40af;
}

.academy-analyst-tab-n {
  font-size: 0.68rem;
  opacity: 0.75;
  margin-left: 0.15rem;
}

.academy-analyst-scope-desc {
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.5;
}

.academy-card-grid--analyst {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.academy-card--analyst {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.academy-card--analyst.is-featured {
  border-color: #93c5fd;
  box-shadow: 0 0 0 1px rgba(0, 110, 255, 0.12);
}

.academy-analyst-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.academy-analyst-firm {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.academy-analyst-placement {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
}

.academy-analyst-placement.is-leader {
  background: #d1fae5;
  color: #047857;
}

.academy-analyst-placement.is-challenger {
  background: #ffedd5;
  color: #c2410c;
}

.academy-analyst-placement.is-niche {
  background: #e2e8f0;
  color: #475569;
}

.academy-analyst-placement.is-featured,
.academy-analyst-placement.is-favorite {
  background: #fef3c7;
  color: #b45309;
}

.academy-analyst-placement.is-peer,
.academy-analyst-placement.is-included,
.academy-analyst-placement.is-neutral {
  background: #e0f2fe;
  color: #0369a1;
}

.academy-analyst-placement.is-corp {
  background: #f3e8ff;
  color: #7e22ce;
}

.academy-analyst-card-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.academy-analyst-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: #64748b;
}

.academy-analyst-seg {
  padding: 0.08rem 0.4rem;
  background: #f1f5f9;
  border-radius: 4px;
}

.academy-analyst-detail {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
}

.academy-analyst-summary {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #475569;
  flex: 1;
}

.academy-analyst-angle {
  margin-top: 0.25rem;
  padding: 0.55rem 0.65rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #006eff;
}

.academy-analyst-angle-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #006eff;
  margin-bottom: 0.2rem;
}

.academy-analyst-angle p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #334155;
}

.academy-analyst-link {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #006eff;
  text-decoration: none;
}

.academy-analyst-link:hover {
  text-decoration: underline;
}

.academy-analysts-foot {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
  max-width: 85ch;
}

/* Tencent Cloud — guia Sales */
.academy-tc-brief-head {
  margin-bottom: 1.25rem;
}

.academy-tc-brief-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
}

.academy-tc-brief-lead {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
  max-width: 75ch;
}

.academy-tc-brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.academy-tc-section {
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.academy-tc-section-title {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #1e40af;
}

.academy-tc-section-intro {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #475569;
}

.academy-tc-list,
.academy-tc-checklist ul,
.academy-tc-avoid ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #334155;
}

.academy-tc-links {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.academy-tc-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: #006eff;
  text-decoration: none;
  padding: 0.3rem 0.55rem;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #f8fafc;
}

.academy-tc-links a:hover {
  background: #eff6ff;
}

.academy-card-grid--tc {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.academy-card--tc-objection {
  border-left: 3px solid #f59e0b;
}

.academy-tc-objection-q {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #92400e;
}

.academy-tc-objections {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.academy-tc-subtitle {
  margin: 1rem 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.academy-card-grid--tc-pillar {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.academy-card-grid--rivals {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.academy-card--tc-rival {
  border-top: 3px solid #e2e8f0;
}

.academy-tc-rival-name {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #006eff;
}

.academy-tc-rival-block {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #334155;
}

.academy-tc-rival-block--tc {
  padding-top: 0.35rem;
  border-top: 1px dashed #cbd5e1;
  color: #0f172a;
}

.academy-tc-wins {
  margin-top: 0.85rem;
  padding: 0.65rem 0.75rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.academy-tc-wins ul {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
}

.academy-tc-checklist,
.academy-tc-avoid {
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: #f8fafc;
  border-radius: 10px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.academy-tc-quote {
  margin: 0.45rem 0 0;
  padding: 0.55rem 0.75rem;
  border-left: 3px solid #006eff;
  background: #f0f9ff;
  font-size: 0.86rem;
  color: #1e3a5f;
  border-radius: 0 8px 8px 0;
}

.academy-tc-foot {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .academy-analyst-hero {
    grid-template-columns: 1fr;
  }

  .academy-shell {
    flex-direction: column;
  }

  .academy-sidebar {
    width: 100%;
    max-height: none;
    position: relative;
    top: 0;
    border-right: none;
    border-bottom: 1px solid #d8dce3;
  }

  .academy-toolbar {
    top: 0;
  }
}

