/**
 * Neuroeducador — components.css
 * Todos los componentes UI del tema.
 */

/* ============================================================
   POST CARD
   ============================================================ */

.post-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border-top: 3px solid var(--card-accent, var(--accent));
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.post-card__thumb { aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; display: block; }
.post-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.post-card__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.post-card__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-3);
  flex: 1;
}
.post-card__title a { color: var(--black); }
.post-card__title a:hover { color: var(--accent); }

.post-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: auto;
}

/* Card featured (grande) */
.post-card--featured .post-card__thumb { aspect-ratio: 16/10; }
.post-card--featured .post-card__title { font-size: var(--text-2xl); }
.post-card--featured .post-card__excerpt { -webkit-line-clamp: 4; }

/* Card secondary (compacta, horizontal en grid asimétrico) */
.post-card--secondary {
  flex-direction: row;
  align-items: stretch;
}
.post-card--secondary .post-card__thumb {
  width: 110px;
  aspect-ratio: unset;
  flex-shrink: 0;
  border-radius: 0;
}
.post-card--secondary .post-card__body { padding: var(--sp-4); }
.post-card--secondary .post-card__title { font-size: var(--text-base); }
.post-card--secondary .post-card__excerpt { display: none; }
.post-card--secondary .post-card__footer { border: none; padding: 0; margin-top: var(--sp-2); }

@media (max-width: 640px) {
  .post-card--secondary { flex-direction: column; }
  .post-card--secondary .post-card__thumb { width: 100%; aspect-ratio: 16/9; }
}

/* ============================================================
   SITE HERO — fondo oscuro
   ============================================================ */

.site-hero {
  background-color: var(--black);
  color: var(--white);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 60%, rgba(230,57,70,.09) 0%, transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(67,97,238,.07) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero con imagen de fondo personalizada (ACF: hero_image) */
.site-hero--has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Oscurecer la imagen para mantener legibilidad del texto */
.site-hero--has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.site-hero__inner { position: relative; z-index: 1; max-width: 680px; }

.site-hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-5);
}

.site-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--white);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.025em;
}
.site-hero__title mark { background: none; color: var(--accent); }

.site-hero__subtitle {
  font-size: var(--text-xl);
  color: rgba(255,255,255,.68);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-10);
  max-width: 580px;
}

.site-hero__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* Botones */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  background: var(--accent);
  color: var(--white);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-md);
  border: none;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast);
}
.btn-primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  background: transparent;
  color: rgba(255,255,255,.75);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all var(--t-fast);
}
.btn-outline:hover { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.4); }

/* ============================================================
   TARJETAS DE CATEGORÍA (homepage nav)
   ============================================================ */

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 1024px) { .category-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .category-cards-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); } }

.category-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--cat-card-color, var(--accent));
  border-radius: var(--r-md);
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.category-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cat-card-color, var(--accent));
}
.category-card__name {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--black);
  line-height: var(--lh-snug);
}
.category-card__count {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: auto;
}

/* ============================================================
   YOUTUBE CARDS
   ============================================================ */

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 1024px) { .youtube-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px)  { .youtube-grid { grid-template-columns: 1fr; } }

.youtube-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.youtube-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.youtube-card__facade {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.youtube-card__facade img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .82;
  transition: opacity var(--t-base);
}
.youtube-card__facade:hover img { opacity: .65; }

.youtube-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-fast), background var(--t-fast);
  pointer-events: none;
}
.youtube-card__facade:hover .youtube-card__play { transform: translate(-50%,-50%) scale(1.1); background: var(--accent-dark); }
.youtube-card__play svg { margin-left: 3px; }

.youtube-card__body { padding: var(--sp-4); }
.youtube-card__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--black);
  line-height: var(--lh-snug);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.youtube-card__title a { color: inherit; }
.youtube-card__title a:hover { color: var(--accent); }

/* ============================================================
   KO-FI BAR
   ============================================================ */

.kofi-bar {
  background: var(--black);
  padding: var(--sp-8) 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.kofi-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  text-align: center;
}
.kofi-bar__text { color: rgba(255,255,255,.7); font-size: var(--text-base); margin: 0; }
.kofi-bar__text strong { color: var(--white); }

/* ============================================================
   ARTÍCULO INDIVIDUAL — HERO
   ============================================================ */

.article-hero { padding: var(--sp-12) 0 var(--sp-8); background: var(--white); }

.article-hero__cat { margin-bottom: var(--sp-4); }

.article-hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: var(--sp-5);
}

.article-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
  font-weight: var(--fw-normal);
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}
.article-hero__meta-item { display: flex; align-items: center; gap: var(--sp-2); }
.article-hero__meta a { color: var(--text-muted); }
.article-hero__meta a:hover { color: var(--accent); }

/* .article-hero__image — estilos movidos a sección BREADCRUMB/HERO de abajo */

/* ============================================================
   ARTÍCULO — LAYOUT CON TOC
   ============================================================ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr var(--toc-width);
  gap: var(--sp-12);
  align-items: start;
  padding: var(--sp-10) 0 var(--sp-16);
}

.article-layout__main { min-width: 0; }

@media (max-width: 1100px) {
  .article-layout { grid-template-columns: 1fr; }
  #toc-sidebar { display: none; }
}

/* Cuerpo del artículo */
.article-body {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--text);
}
.article-body > * + * { margin-top: var(--sp-5); }

.article-body h2 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--black);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-total) + 16px);
}
.article-body h3 {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--black);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
  scroll-margin-top: calc(var(--header-total) + 16px);
}
.article-body p { margin: 0 0 var(--sp-5); }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-body strong { font-weight: var(--fw-semibold); color: var(--black); }
.article-body ul, .article-body ol { padding-left: var(--sp-6); margin-bottom: var(--sp-5); }
.article-body li { margin-bottom: var(--sp-2); line-height: var(--lh-relaxed); }
.article-body img { border-radius: var(--r-md); }

.article-body blockquote {
  border-left: 4px solid var(--accent);
  background: var(--accent-bg);
  padding: var(--sp-4) var(--sp-6);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--sp-8) 0;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--black);
}
.article-body blockquote p { margin: 0; }

.article-body figure { margin: var(--sp-8) 0; }
.article-body figcaption { font-size: var(--text-sm); color: var(--text-muted); text-align: center; margin-top: var(--sp-2); }

/* ============================================================
   TOC SIDEBAR
   ============================================================ */

.toc-sidebar {
  position: sticky;
  top: calc(var(--header-total) + var(--sp-6));
  max-height: calc(100vh - var(--header-total) - 3rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.toc-sidebar__inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
}
.toc-sidebar__title {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--sp-4);
}
.toc-sidebar__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-1); }
.toc-sidebar__link {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: var(--sp-1) var(--sp-3);
  border-left: 2px solid transparent;
  line-height: var(--lh-snug);
  transition: color var(--t-fast), border-color var(--t-fast);
  text-decoration: none;
}
.toc-sidebar__link:hover { color: var(--black); }
.toc-sidebar__link.is-active { color: var(--accent); border-left-color: var(--accent); }
.toc-sidebar__item--h3 .toc-sidebar__link { padding-left: var(--sp-6); font-size: var(--text-xs); }

/* ============================================================
   ETIQUETAS DEL ARTÍCULO
   ============================================================ */

.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding-top: var(--sp-6);
  margin-top: var(--sp-8);
  border-top: 1px solid var(--border);
}
.article-tags__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.article-tag {
  padding: var(--sp-1) var(--sp-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--t-fast);
}
.article-tag:hover { background: var(--accent-bg); border-color: var(--accent); color: var(--accent); }

/* ============================================================
   CAJA DE AUTOR
   ============================================================ */

.author-box {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-8);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  margin-top: var(--sp-10);
}
.author-box__avatar {
  flex-shrink: 0;
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.author-box__avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-box__name {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--black);
  margin-bottom: var(--sp-2);
}
.author-box__name a { color: inherit; }
.author-box__name a:hover { color: var(--accent); }

.author-box__credentials { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-3); }

.credential-badge {
  display: inline-block;
  padding: 2px var(--sp-2);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.author-box__bio {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (max-width: 580px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; padding: var(--sp-6); }
  .author-box__credentials { justify-content: center; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-section { margin-top: var(--sp-12); padding-top: var(--sp-8); border-top: 1px solid var(--border); }
.faq-section__title { font-size: var(--text-2xl); font-weight: var(--fw-bold); color: var(--black); margin-bottom: var(--sp-6); }

.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); list-style: none; padding: 0; margin: 0; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item.is-open { border-color: var(--accent); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--black);
  line-height: var(--lh-snug);
  transition: color var(--t-fast);
}
.faq-item__question:hover,
.faq-item.is-open .faq-item__question { color: var(--accent); }

.faq-item__icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-base), background var(--t-fast), border-color var(--t-fast);
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
}
.faq-item.is-open .faq-item__icon svg { stroke: var(--white); }

/* Animación sin JS de height */
.faq-item__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-base); }
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item__answer-inner { overflow: hidden; }
.faq-item__answer-body {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}
.faq-item__answer-body p:last-child { margin: 0; }

/* ============================================================
   REFERENCIAS APA
   ============================================================ */

.article-references { margin-top: var(--sp-12); padding-top: var(--sp-8); border-top: 1px solid var(--border); }
.article-references__title { font-size: var(--text-lg); font-weight: var(--fw-bold); color: var(--black); margin-bottom: var(--sp-5); }

.references-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: apa;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.references-list__item {
  display: flex;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  counter-increment: apa;
}
.references-list__item::before {
  content: counter(apa) '.';
  flex-shrink: 0;
  font-weight: var(--fw-semibold);
  color: var(--accent);
  min-width: 1.4rem;
  font-size: var(--text-xs);
  padding-top: 0.2em;
}

/* ============================================================
   NAVEGACIÓN ENTRE ARTÍCULOS
   ============================================================ */

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}
.article-nav__cell {
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.article-nav__cell:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.article-nav__cell--next { text-align: right; }

.article-nav__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.article-nav__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--black);
  line-height: var(--lh-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-nav__cell:hover .article-nav__title { color: var(--accent); }

@media (max-width: 580px) {
  .article-nav { grid-template-columns: 1fr; }
  .article-nav__cell--next { text-align: left; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.article-breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-3) 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--text-xs);
}
.breadcrumb__item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.breadcrumb__item a:hover { color: var(--accent); }
.breadcrumb__item--sep { color: var(--text-light); font-size: 0.65rem; }
.breadcrumb__item--current { color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
.breadcrumb__cat-badge {
  display: inline-block;
  padding: 2px var(--sp-2);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ============================================================
   HERO DEL ARTÍCULO — ajustes meta
   ============================================================ */

.meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.article-hero__meta-item--cat {
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* Imagen hero: centrada con max-width controlado */
.article-hero__image-wrap {
  max-width: 960px;
  margin: var(--sp-8) auto 0;
  padding: 0 var(--sp-6);
}
.article-hero__image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  margin: 0;
}
.article-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.article-hero__image figcaption {
  font-size: var(--text-xs);
  color: var(--text-light);
  text-align: center;
  padding: var(--sp-2) 0 0;
}

/* ============================================================
   PUNTO CLAVE — caja borde naranja
   ============================================================ */

.punto-clave {
  border-left: 4px solid #f77f00;
  background: #fff8f0;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-8);
}
.punto-clave__label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f77f00;
  margin-bottom: var(--sp-3);
}
.punto-clave__text {
  font-size: var(--text-base);
  color: var(--black);
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-medium);
  margin: 0;
}

/* ============================================================
   CONCEPTOS CLAVE — bullets de color
   ============================================================ */

.conceptos-clave {
  margin-bottom: var(--sp-8);
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.conceptos-clave__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.conceptos-clave__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.conceptos-clave__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--text);
  line-height: var(--lh-relaxed);
}
.conceptos-clave__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5em;
}

/* ============================================================
   TOC — CAJA NEGRA
   ============================================================ */

.toc-box {
  background: var(--black);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  margin-bottom: var(--sp-5);
}
.toc-box__title {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 var(--sp-4);
}
.toc-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
/* Los links son generados por toc.js con clase .toc-sidebar__link;
   sobreescribimos colores para el tema negro */
.toc-box .toc-sidebar__link {
  color: rgba(255,255,255,.6);
  border-left-color: transparent;
  font-size: var(--text-sm);
  line-height: var(--lh-snug);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.toc-box .toc-sidebar__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.toc-box .toc-sidebar__link.is-active { color: var(--accent); background: rgba(230,57,70,.15); border-left-color: var(--accent); }
.toc-box .toc-sidebar__item--h3 .toc-sidebar__link { padding-left: var(--sp-6); font-size: var(--text-xs); }

/* ============================================================
   COMPARTIR
   ============================================================ */

.share-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.share-box__title {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--sp-4);
}
.share-box__buttons {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.share-btn:hover { color: var(--white); border-color: transparent; }
.share-btn--twitter:hover  { background: #000; }
.share-btn--linkedin:hover { background: #0a66c2; }
.share-btn--facebook:hover { background: #1877f2; }
.share-btn--copy:hover     { background: var(--accent); }
.share-box__copy-msg {
  font-size: var(--text-xs);
  color: var(--accent);
  margin: var(--sp-2) 0 0;
  min-height: 1.2em;
}

/* ============================================================
   RECURSO RELACIONADO — CAJA AMARILLA
   ============================================================ */

.recurso-box {
  background: #fffbea;
  border: 2px solid #f5c842;
  border-radius: var(--r-lg);
  padding: var(--sp-4);
}
.recurso-box__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b45309;
  margin: 0 0 var(--sp-3);
}
.recurso-box__link {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  text-decoration: none;
  color: inherit;
}
.recurso-box__thumb {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.recurso-box__thumb img { width: 100%; height: 100%; object-fit: cover; }
.recurso-box__body { display: flex; flex-direction: column; gap: var(--sp-1); }
.recurso-box__cat {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.recurso-box__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--black);
  line-height: var(--lh-snug);
  margin: 0;
  transition: color var(--t-fast);
}
.recurso-box__link:hover .recurso-box__title { color: var(--accent); }
.recurso-box__read {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============================================================
   CAJA DE AUTOR — actualizada con avatar initials
   ============================================================ */

.author-box__initials {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-box__content { flex: 1; }

.credential-badge--cargo {
  background: var(--accent-bg);
  border-color: rgba(230,57,70,.25);
  color: var(--accent-dark);
}
.credential-badge--inst {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

/* ============================================================
   ARTÍCULOS RELACIONADOS — tarjetas con ícono categoría
   ============================================================ */

.related-section {
  background: var(--surface);
  padding: var(--sp-12) 0;
  margin-top: 0;
}
.related-section__title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--black);
  position: relative;
  padding-left: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.related-section__title::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--section-accent, var(--accent));
  border-radius: 2px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.related-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 3px solid var(--card-accent, var(--accent));
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.related-card__cat-icon {
  margin: var(--sp-4) var(--sp-4) 0;
  width: 32px;
  height: 32px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}
.related-card__cat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.related-card__thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-top: var(--sp-3);
}
.related-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.related-card:hover .related-card__thumb img { transform: scale(1.04); }
.related-card__body {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.related-card__title {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  flex: 1;
}
.related-card__title a { color: var(--black); }
.related-card__title a:hover { color: var(--accent); }
.related-card__meta { font-size: var(--text-xs); color: var(--text-light); margin-top: auto; }

@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CATEGORÍA — HERO
   ============================================================ */

.category-hero {
  padding: var(--sp-16) 0 var(--sp-10);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.category-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
  background: var(--cat-color, var(--accent));
}
.category-hero__inner { display: flex; gap: var(--sp-5); align-items: flex-start; }
.category-hero__dot {
  flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cat-color, var(--accent));
  margin-top: 0.55rem;
}
.category-hero__title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--black);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.category-hero__desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-bottom: var(--sp-3);
}
.category-hero__count { font-size: var(--text-sm); color: var(--text-muted); margin: 0; }
.category-hero__count strong { font-size: var(--text-3xl); font-weight: var(--fw-extrabold); color: var(--cat-color, var(--accent)); line-height: 1; display: block; }

/* ============================================================
   CATEGORÍA — TABS DE NAVEGACIÓN
   ============================================================ */

.category-tabs-bar {
  position: sticky;
  top: var(--header-total);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.category-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab-link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: color var(--t-fast), border-color var(--t-fast);
  height: 48px;
}
.category-tab-link::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--tab-color, var(--border));
  flex-shrink: 0;
}
.category-tab-link:hover { color: var(--black); }
.category-tab-link.is-active {
  color: var(--tab-color, var(--accent));
  border-bottom-color: var(--tab-color, var(--accent));
  font-weight: var(--fw-semibold);
}
.category-tab-link--all::before { display: none; }

/* ============================================================
   CATEGORÍA — ARTÍCULO DESTACADO
   ============================================================ */

.category-featured { padding: var(--sp-10) 0 0; }

.post-card--category-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 340px;
}
.post-card--category-featured .post-card__thumb {
  aspect-ratio: unset;
  height: 100%;
  min-height: 280px;
}
.post-card--category-featured .post-card__body {
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-card--category-featured .post-card__title { font-size: var(--text-2xl); }
.post-card--category-featured .post-card__excerpt { -webkit-line-clamp: 4; }

@media (max-width: 860px) {
  .post-card--category-featured { grid-template-columns: 1fr; min-height: auto; }
  .post-card--category-featured .post-card__thumb { min-height: 200px; aspect-ratio: 16/9; }
  .post-card--category-featured .post-card__body { padding: var(--sp-6); }
}

/* ============================================================
   PAGE HEROES — PÁGINAS INTERIORES
   ============================================================ */

.page-hero {
  padding: var(--sp-16) 0 var(--sp-12);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.page-hero__title { font-size: var(--text-4xl); font-weight: var(--fw-extrabold); color: var(--black); margin-bottom: var(--sp-4); letter-spacing: -0.02em; }
.page-hero__desc { font-size: var(--text-lg); color: var(--text-muted); max-width: 560px; line-height: var(--lh-relaxed); margin: 0; }

.page-hero--recursos { border-top: 4px solid var(--accent); }
.page-hero--juegos   { border-top: 4px solid var(--cat-talento); }
.page-hero--sobre {
  background: var(--black);
  color: var(--white);
}
.page-hero--sobre .page-hero__title { color: var(--white); }
.page-hero--sobre .page-hero__desc  { color: rgba(255,255,255,.65); }

/* ============================================================
   RECURSOS — CARDS Y FILTROS
   ============================================================ */

.resource-filters {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-8);
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--t-fast);
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.is-active { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* Bloque destacado del recurso */
.resource-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding: var(--sp-12) 0;
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border);
}
.resource-featured__image { border-radius: var(--r-lg); overflow: hidden; }
.resource-featured__image img { width: 100%; height: 100%; object-fit: cover; }
.resource-featured__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.resource-featured__title { font-size: var(--text-3xl); font-weight: var(--fw-extrabold); color: var(--black); margin-bottom: var(--sp-4); letter-spacing: -0.02em; line-height: var(--lh-snug); }
.resource-featured__desc { font-size: var(--text-lg); color: var(--text-muted); line-height: var(--lh-relaxed); margin-bottom: var(--sp-6); }

@media (max-width: 860px) {
  .resource-featured { grid-template-columns: 1fr; }
}

/* Simulador dislexia */
.dyslexia-simulator {
  padding: var(--sp-12);
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-12);
}
.dyslexia-simulator__title { font-size: var(--text-2xl); font-weight: var(--fw-bold); color: var(--white); margin-bottom: var(--sp-3); }
.dyslexia-simulator__desc { color: rgba(255,255,255,.65); margin-bottom: var(--sp-6); }
.dyslexia-simulator__text {
  background: rgba(255,255,255,.06);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  font-size: var(--text-lg);
  line-height: 2;
  margin-bottom: var(--sp-6);
  min-height: 80px;
  transition: all var(--t-slow);
}
.dyslexia-simulator__text.is-active {
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  word-spacing: 0.25em;
  line-height: 2.4;
  color: rgba(255,255,255,.55);
}
.dyslexia-simulator__controls { display: flex; gap: var(--sp-3); align-items: center; flex-wrap: wrap; }
.dyslexia-simulator__note { font-size: var(--text-xs); color: rgba(255,255,255,.35); margin: 0; }

/* Resource card */
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.resource-card__thumb { aspect-ratio: 16/9; overflow: hidden; }
.resource-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.resource-card:hover .resource-card__thumb img { transform: scale(1.04); }
.resource-card__body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; gap: var(--sp-2); }
.resource-card__type { font-size: var(--text-xs); font-weight: var(--fw-semibold); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.resource-card__title { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--black); line-height: var(--lh-snug); margin: 0; }
.resource-card__title a { color: inherit; }
.resource-card__title a:hover { color: var(--accent); }
.resource-card__desc { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--lh-relaxed); flex: 1; }
.resource-card__action {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--accent);
  text-decoration: none;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  margin-top: auto;
  transition: gap var(--t-fast);
}
.resource-card__action:hover { gap: var(--sp-3); color: var(--accent-dark); }

/* ============================================================
   JUEGOS — CARDS Y FILTROS
   ============================================================ */

.level-filters {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-8);
}

.game-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--game-color, var(--cat-talento));
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.game-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.game-card__thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.game-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.game-card:hover .game-card__thumb img { transform: scale(1.04); }

.game-badge {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px var(--sp-3);
  border-radius: var(--r-full);
  color: var(--white);
}
.game-badge--available   { background: rgba(6,214,160,.9); }
.game-badge--coming-soon { background: rgba(107,114,128,.85); }
.game-badge--beta        { background: rgba(247,127,0,.9); }

.game-card__body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; gap: var(--sp-2); }
.game-card__level { font-size: var(--text-xs); font-weight: var(--fw-semibold); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.game-card__title { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--black); line-height: var(--lh-snug); margin: 0; }
.game-card__title a { color: inherit; }
.game-card__title a:hover { color: var(--accent); }
.game-card__desc { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--lh-relaxed); flex: 1; }
.game-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.game-card__age { font-size: var(--text-xs); color: var(--text-muted); }
.game-card__cta {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--cat-talento);
  text-decoration: none;
}
.game-card__cta:hover { color: #d16800; }
.game-card[data-status="coming-soon"] .game-card__cta { color: var(--text-muted); cursor: default; pointer-events: none; }

/* ============================================================
   SOBRE EL PROYECTO
   ============================================================ */

/* Sección misión */
.sobre-mission { padding: var(--sp-16) 0; background: var(--white); }
.sobre-mission__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: center; }
.sobre-mission__title { font-size: var(--text-4xl); font-weight: var(--fw-extrabold); color: var(--black); letter-spacing: -0.02em; margin-bottom: var(--sp-5); }
.sobre-mission__title span { color: var(--accent); }
.sobre-mission__text { font-size: var(--text-lg); color: var(--text-muted); line-height: var(--lh-relaxed); }

@media (max-width: 768px) { .sobre-mission__grid { grid-template-columns: 1fr; } }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

.stat-card {
  padding: var(--sp-8);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  text-align: center;
}
.stat-card__number { font-size: var(--text-5xl); font-weight: var(--fw-extrabold); color: var(--black); line-height: 1; letter-spacing: -0.03em; }
.stat-card__number span { color: var(--accent); }
.stat-card__label { font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--sp-2); }

/* Credenciales UNIR */
.sobre-credentials { padding: var(--sp-16) 0; background: var(--surface); }
.credentials-card {
  display: flex;
  gap: var(--sp-8);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
}
.credentials-card__logo { flex-shrink: 0; }
.credentials-card__logo img { height: 64px; width: auto; }
.credentials-card__title { font-size: var(--text-2xl); font-weight: var(--fw-bold); color: var(--black); margin-bottom: var(--sp-3); }
.credentials-card__desc { font-size: var(--text-base); color: var(--text-muted); line-height: var(--lh-relaxed); margin-bottom: var(--sp-4); }
.credentials-badges { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.unir-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
}
@media (max-width: 640px) { .credentials-card { flex-direction: column; text-align: center; } .credentials-badges { justify-content: center; } }

/* Donaciones */
.sobre-donate { padding: var(--sp-16) 0; background: var(--black); color: var(--white); }
.sobre-donate__inner { text-align: center; max-width: 520px; margin: 0 auto; }
.sobre-donate__title { font-size: var(--text-3xl); font-weight: var(--fw-extrabold); color: var(--white); margin-bottom: var(--sp-4); }
.sobre-donate__text { color: rgba(255,255,255,.65); font-size: var(--text-lg); line-height: var(--lh-relaxed); margin-bottom: var(--sp-8); }
