/* ==========================================================================
   DIÃRIO DO TREINADOR â€” Design tokens
   ========================================================================== */
:root {
  --bg: #080e20;
  --bg-1: #0b1226;
  --bg-2: #0e1730;
  --accent: #14ffe3;
  --accent-dim: rgba(20, 255, 227, 0.14);
  --accent-line: rgba(20, 255, 227, 0.35);
  --accent2: #3a8bff;
  --support: #f5f5f5;
  --muted: #93a0c2;
  --muted-dim: #5a6588;
  --border: rgba(245, 245, 245, 0.09);
  --glass: rgba(245, 245, 245, 0.045);
  --glass-hover: rgba(245, 245, 245, 0.08);

  /* Testando Kalam (manuscrita, com bom peso nativo em Bold) nos tÃ­tulos.
     Carlito nos demais textos. */
  --font-display: "Kalam", "Carlito", cursive;
  --font-tag: "Kalam", "Carlito", cursive;
  --font-body: "Carlito", sans-serif;
  --font-body: "Fredoka", sans-serif;
  --font-accent: "Instrument Serif", serif;

  --col-max: 620px;
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--support);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--accent); color: var(--bg); }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Fundo â€” linhas onduladas animadas (flow field), estilo referÃªncia
   ========================================================================== */
.flow-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(20,255,227,0.05), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 100%, rgba(20,255,227,0.04), transparent 60%),
    linear-gradient(180deg, #05070f 0%, var(--bg) 55%, var(--bg-1) 100%);
  overflow: hidden;
}
.pitch-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
  opacity: 0.05;
}
.pitch-light {
  position: absolute;
  width: 26vw;
  height: 34vh;
  max-width: 340px;
  max-height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: screen;
  background: radial-gradient(ellipse, rgba(20, 255, 227, 0.28), rgba(20, 255, 227, 0.06) 45%, transparent 72%);
  pointer-events: none;
}
.pitch-light-1 {
  top: -10%;
  left: -15%;
  animation: pitchSweep1 26s ease-in-out infinite;
}
.pitch-light-2 {
  bottom: -12%;
  right: -18%;
  animation: pitchSweep2 32s ease-in-out infinite;
}
@keyframes pitchSweep1 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(55vw, 55vh); }
  100% { transform: translate(0, 0); }
}
@keyframes pitchSweep2 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-50vw, -50vh); }
  100% { transform: translate(0, 0); }
}
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 20%, rgba(8,14,32,0.35), transparent 65%),
    linear-gradient(180deg, #05070f 0%, var(--bg) 30%, rgba(11,18,38,0.55) 70%, var(--bg-1) 100%);
}
.light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  mix-blend-mode: screen;
  will-change: transform;
}
.light-orb-1 {
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  top: -12%;
  left: 2%;
  background: radial-gradient(circle, rgba(20, 255, 227, 0.22), transparent 70%);
  animation: orbMove1 24s ease-in-out infinite;
}
.light-orb-2 {
  width: 38vw;
  height: 38vw;
  max-width: 520px;
  max-height: 520px;
  top: 38%;
  right: -8%;
  background: radial-gradient(circle, rgba(20, 255, 227, 0.16), transparent 70%);
  animation: orbMove2 30s ease-in-out infinite;
}
.light-orb-3 {
  width: 42vw;
  height: 42vw;
  max-width: 560px;
  max-height: 560px;
  bottom: -14%;
  left: 24%;
  background: radial-gradient(circle, rgba(20, 255, 227, 0.14), transparent 70%);
  animation: orbMove3 27s ease-in-out infinite;
}
@keyframes orbMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50%      { transform: translate(4vw, 3vw) scale(1.12); opacity: 0.85; }
}
@keyframes orbMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50%      { transform: translate(-3vw, -4vw) scale(1.1); opacity: 0.8; }
}
@keyframes orbMove3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50%      { transform: translate(3vw, -3vw) scale(1.08); opacity: 0.75; }
}

/* ==========================================================================
   Seletor de idiomas â€” bandeiras redondas, sempre visÃ­veis
   ========================================================================== */
.lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  animation: heroIn 1s var(--ease) 0.22s both;
}
.lang-option {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 245, 245, 0.05);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.lang-flag {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  overflow: hidden;
}
.lang-option:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
  background: rgba(20, 255, 227, 0.06);
}
.lang-option.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(20, 255, 227, 0.14);
}

/* ==========================================================================
   Layout shell
   ========================================================================== */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 24px 64px;
}

/* ==========================================================================
   Hero v2 â€” avatar circular + pill + nome + bio + Ã­cones sociais
   ========================================================================== */
.hero-v2 {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 22px;
}
.avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), rgba(20,255,227,0.15) 30%, var(--accent) 55%, rgba(20,255,227,0.1) 80%, var(--accent) 100%);
  animation: ringSpin 6s linear infinite;
  filter: drop-shadow(0 0 18px rgba(20, 255, 227, 0.35));
}
.avatar-ring::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg);
}
@keyframes ringSpin {
  to { transform: rotate(360deg); }
}
.avatar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  object-position: 50% 50%;
  animation: heroIn 1s var(--ease) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-v2 h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 6vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0 0 6px;
  padding: 6px 4px 4px 0;
  color: var(--support);
  animation: heroIn 1s var(--ease) 0.1s both;
}

/* Linhas de papÃ©is/credenciais do Gabriel (3 linhas fixas) */
.role-lines {
  max-width: 480px;
  margin: 0 0 22px;
  animation: heroIn 1s var(--ease) 0.15s both;
}
.role-line {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}
.role-line:last-child { margin-bottom: 0; }
.role-line.is-primary {
  color: var(--support);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 7px;
}
.role-line .sep {
  color: var(--accent);
  margin: 0 8px;
  opacity: 0.8;
}

/* Ãcones sociais (topo) â€” ciano, maiores */
.social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  animation: heroIn 1s var(--ease) 0.2s both;
}
.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 255, 227, 0.07);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.social-btn svg { width: 23px; height: 23px; }
.social-btn:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

/* ==========================================================================
   Carrossel â€” faixa fina e contÃ­nua com as marcas
   ========================================================================== */
.brand-strip {
  width: 100%;
  max-width: 100%;
  margin: 20px 0 22px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  -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%);
}
.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.brand-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  color: var(--muted);
  white-space: nowrap;
}
.brand-item .check-dot {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--accent);
}
.brand-item .check-dot svg { width: 100%; height: 100%; display: block; }
.brand-item .check-dot circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  opacity: 0.5;
}
.brand-item .check-dot .tick {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  animation: tickMark 2.6s ease-in-out infinite;
}
.brand-item:nth-of-type(2n) .check-dot .tick { animation-delay: 0.55s; }
.brand-item:nth-of-type(3n) .check-dot .tick { animation-delay: 1.1s; }
.brand-item:nth-of-type(4n) .check-dot .tick { animation-delay: 1.65s; }
@keyframes tickMark {
  0%   { stroke-dashoffset: 16; opacity: 0; }
  8%   { opacity: 1; }
  28%  { stroke-dashoffset: 0; }
  78%  { stroke-dashoffset: 0; opacity: 1; }
  92%  { opacity: 0; }
  100% { stroke-dashoffset: 16; opacity: 0; }
}

/* ==========================================================================
   Blocos de conteÃºdo â€” mesmo estilo visual do painel DiÃ¡rio do Treinador
   ========================================================================== */
.content-panel {
  width: 100%;
  max-width: var(--col-max);
  margin-top: 28px;
  padding: 26px 20px;
  border-radius: 28px;
  background: rgba(245, 245, 245, 0.025);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.panel-header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 255, 227, 0.1);
  border: 1px solid var(--accent-line);
  color: var(--accent);
}
.panel-icon svg { width: 28px; height: 28px; }
.panel-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  padding: 4px 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==========================================================================
   Agenda de prÃ³ximos eventos
   ========================================================================== */
.agenda-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agenda-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 18px 18px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: left;
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.agenda-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.agenda-card:hover {
  background: var(--glass-hover);
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.agenda-top {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.agenda-date-inline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  color: var(--accent);
  white-space: nowrap;
}
.agenda-sep {
  color: var(--muted-dim);
  font-size: 13px;
}
.agenda-top .tema {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--support);
  flex: 1;
  min-width: 0;
}
.agenda-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.agenda-meta .local {
  font-size: 13.5px;
  color: var(--accent);
}
.agenda-hora {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--muted);
}
.agenda-hora::before {
  content: "â€¢";
  color: var(--muted-dim);
  line-height: 1;
}
.agenda-format {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.agenda-btn-full {
  display: block;
  text-align: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(20, 255, 227, 0.1);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.agenda-btn-full:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-1px);
}

/* ==========================================================================
   Painel 2 â€” DiÃ¡rio do Treinador (visualmente delimitado)
   ========================================================================== */
.diario-panel {
  margin-top: 28px;
}
.diario-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.diario-logo {
  flex: none;
  width: 52px;
  height: 52px;
  padding: 13px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 255, 227, 0.1);
  border: 1px solid var(--accent-line);
  color: var(--accent);
}
.diario-logo svg { width: 100%; height: 100%; }
.diario-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.diario-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.25;
  padding: 4px 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.diario-slogan {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 340px;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.destaques-list { margin-bottom: 14px; }

/* Item base (linha de link) */
.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.link-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.link-card:hover,
.link-card:focus-visible {
  background: var(--glass-hover);
  border-color: var(--accent-line);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -14px rgba(20, 255, 227, 0.22);
}
.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(200px 60px at var(--mx, 50%) var(--my, 50%), var(--accent-dim), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.link-card:hover::before { opacity: 1; }
.link-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(245,245,245,0.10), transparent);
  transform: skewX(-18deg);
  transition: left 0.75s var(--ease);
  pointer-events: none;
}
.link-card:hover::after { left: 130%; }
.link-card:active { transform: translateY(0) scale(0.985); }

/* Cards em destaque â€” maiores e em cor diferenciada (ciano â†’ azul) */
.link-card.is-featured {
  align-items: flex-start;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-color: transparent;
  padding: 20px 20px;
  box-shadow: 0 0 0 2px rgba(20, 255, 227, 0.55);
  animation: featuredGlow 2.6s ease-in-out infinite;
}
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 0 0 2px rgba(20, 255, 227, 0.35); }
  50%      { box-shadow: 0 0 0 2px rgba(20, 255, 227, 0.85); }
}
.link-card.is-featured .title {
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.25;
  padding: 2px 0;
  display: block;
}
.link-card.is-featured .title .accent-word {
  color: #000;
}
.link-card.is-featured .subtitle {
  display: block;
  color: rgba(8, 14, 32, 0.78);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 3px;
}
.link-card.is-featured .desc { margin-top: 6px; }
.cta-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
}
.cta-line svg {
  width: 13px;
  height: 13px;
}

/* Mini carrossel interno (livros do Curso Best Seller) */
.mini-strip {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(8, 14, 32, 0.18);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.mini-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: miniMarquee 18s linear infinite;
}
.mini-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0 16px;
  border-right: 1px solid rgba(8, 14, 32, 0.15);
  white-space: nowrap;
}
.mini-item:last-child { border-right: none; }
.mini-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  color: rgba(8, 14, 32, 0.8);
}
.mini-autor {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  color: rgba(8, 14, 32, 0.55);
}
@keyframes miniMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.link-card.is-featured .desc  { color: rgba(8, 14, 32, 0.68); -webkit-line-clamp: 3; font-size: 13px; }
.link-card.is-featured .link-icon {
  background: rgba(8, 14, 32, 0.14);
  border-color: transparent;
  color: var(--bg);
  width: 54px;
  height: 54px;
}
.link-card.is-featured .link-icon svg { width: 26px; height: 26px; }
.link-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: rgba(8, 14, 32, 0.16);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  width: fit-content;
}
.link-card.is-featured .link-arrow {
  background: rgba(8, 14, 32, 0.14);
  color: var(--bg);
  width: 38px;
  height: 38px;
}
.link-card.is-featured::before {
  background: radial-gradient(200px 60px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.25), transparent 70%);
}
.link-card.is-featured:hover {
  box-shadow: 0 14px 34px -14px rgba(58, 139, 255, 0.5);
}

.link-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 245, 245, 0.045);
  border: 1px solid var(--border);
  color: var(--accent);
  transition: transform 0.35s var(--ease);
}
.link-icon svg { width: 23px; height: 23px; }
.link-card:hover .link-icon { transform: scale(1.07) rotate(-4deg); }

.link-body { flex: 1; min-width: 0; text-align: left; }
.link-body .title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--support);
}
.accent-word {
  color: var(--accent);
  font-weight: 700;
}
.link-card.is-featured .accent-word {
  color: var(--support);
}
.link-body .desc {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.link-arrow {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 245, 245, 0.05);
  color: var(--muted);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease);
}
.link-arrow svg { width: 15px; height: 15px; }
.link-card:hover .link-arrow {
  transform: translate(2px, -2px) scale(1.05);
  color: var(--accent);
  background: rgba(20, 255, 227, 0.1);
}
.link-card.is-featured:hover .link-arrow {
  color: var(--bg);
  background: rgba(8, 14, 32, 0.22);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  margin-top: 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer strong {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--support);
}
.site-footer span {
  font-size: 12.5px;
  color: var(--muted-dim);
}
.site-footer a {
  color: var(--accent);
  font-weight: 700;
  transition: opacity 0.25s var(--ease);
}
.site-footer a:hover { opacity: 0.75; }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 640px) {
  .page { padding-top: 44px; }
  .avatar-wrap { width: 128px; height: 128px; }
  .hero-v2 h1 { font-size: 30px; }
  .pitch-light { width: 70vw; height: 40vh; filter: blur(50px); }

  /* TÃ­tulos dos botÃµes normais numa linha sÃ³ */
  .link-icon { width: 42px; height: 42px; border-radius: 12px; }
  .link-icon svg { width: 20px; height: 20px; }
  .link-card { padding: 13px 14px; gap: 12px; }
  .link-body .title {
    font-size: 14px;
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Cards em destaque (Mentoria/Best Seller) mais compactos, tÃ­tulo em atÃ© 2 linhas */
  .link-card.is-featured { padding: 16px; }
  .link-card.is-featured .link-icon { width: 44px; height: 44px; }
  .link-card.is-featured .link-icon svg { width: 21px; height: 21px; }
  .link-badge { font-size: 9px; padding: 2px 8px; }
  .link-card.is-featured .title {
    font-size: 19px;
    line-height: 1.2;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .link-card.is-featured .subtitle { font-size: 11px; }
  .link-card.is-featured .desc { font-size: 11.5px; -webkit-line-clamp: 2; }
  .cta-line { font-size: 12.5px; margin-top: 8px; }
  .mini-strip { margin-top: 8px; padding-top: 8px; }
  .mini-title { font-size: 10.5px; }
  .mini-autor { font-size: 9px; }
}
@media (max-width: 380px) {
  .page { padding-left: 16px; padding-right: 16px; }
  .link-card { padding: 13px; }
}
