* {
  box-sizing: border-box;
}

:root {
  --bg: #070b12;
  --bg-soft: #0b111c;
  --panel: rgba(13, 20, 33, 0.86);
  --panel-strong: #111a2a;
  --text: #edf4ff;
  --muted: #8fa0b8;
  --border: #1d2a40;
  --blue: #3394ff;
  --blue-soft: rgba(51, 148, 255, 0.12);
  --purple: #9b68ff;
  --purple-soft: rgba(155, 104, 255, 0.12);
  --green: #38d996;
  --green-soft: rgba(56, 217, 150, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(51, 148, 255, 0.10), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(155, 104, 255, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

body.light-theme {
  --bg: #eef4fb;
  --bg-soft: #e3ebf5;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --text: #111827;
  --muted: #607086;
  --border: #cfdbea;
  --blue-soft: rgba(51, 148, 255, 0.09);
  --purple-soft: rgba(155, 104, 255, 0.09);
  --green-soft: rgba(56, 217, 150, 0.10);
  --shadow: 0 24px 65px rgba(27, 39, 55, 0.10);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(130, 160, 200, 0.15);
  background: rgba(7, 11, 18, 0.78);
  backdrop-filter: blur(18px);
}

.light-theme .topbar {
  background: rgba(239, 245, 252, 0.82);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.brand-icon {
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.brand-text strong {
  color: var(--blue);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--muted);
  padding: 11px 16px;
  border-radius: 10px;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--blue-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 220px;
  padding: 0 12px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--panel);
  color: var(--muted);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  min-width: 0;
}

.search-box input::placeholder {
  color: var(--muted);
}

.icon-button,
.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 86px 0 10px;
  scroll-margin-top: 80px;
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 60px;
  padding-top: 100px;
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.eyebrow.purple {
  color: var(--purple);
}

.eyebrow.green {
  color: var(--green);
}

.hero h1 {
  max-width: 760px;
  margin: 16px 0 20px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero p,
.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  max-width: 720px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 750;
}

.button.primary {
  background: var(--blue);
  color: #04101f;
}

.button.secondary {
  border-color: var(--border);
  background: var(--panel);
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), rgba(10, 17, 30, 0.35));
  box-shadow: var(--shadow);
}

.light-theme .hero-panel {
  background: var(--panel);
}

.hero-stat {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 1.8rem;
}

.hero-stat span {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 8px 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
}

.quick-grid,
.cards-grid,
.guides-grid {
  display: grid;
  gap: 16px;
}

.quick-grid {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.guides-grid {
  grid-template-columns: repeat(2, 1fr);
}

.quick-card,
.category-card,
.guide-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.quick-card:hover,
.category-card:hover,
.guide-card:hover {
  transform: translateY(-3px);
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px;
}

.quick-card h3,
.category-card h3,
.guide-card h3 {
  margin: 0;
}

.quick-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.category-card {
  min-height: 250px;
  padding: 23px;
  border-color: rgba(155, 104, 255, 0.25);
}

.category-card:hover {
  border-color: var(--purple);
  background: linear-gradient(145deg, var(--panel), var(--purple-soft));
}

.guide-card {
  padding: 24px;
  border-color: rgba(56, 217, 150, 0.22);
}

.guide-card:hover {
  border-color: var(--green);
  background: linear-gradient(145deg, var(--panel), var(--green-soft));
}

.category-title,
.guide-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.category-title h3 {
  color: var(--purple);
}

.guide-head h3 {
  color: var(--green);
  margin-top: 3px;
}

.card-icon {
  font-size: 1.7rem;
}

.guide-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.category-card ul,
.guide-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-card li,
.guide-card li {
  border-top: 1px solid rgba(128, 154, 190, 0.10);
}

.category-card li:first-child,
.guide-card li:first-child {
  border-top: 0;
}

.tool-page-link {
  display: block;
  width: 100%;
  line-height: 1.45;
}

.tool-link,
.tool-page-link,
.guide-link {
  width: 100%;
  padding: 11px 0;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.tool-link:hover,
.tool-page-link:hover {
  color: var(--purple);
  padding-left: 5px;
}

.guide-link:hover {
  color: var(--green);
  padding-left: 5px;
}

.search-hidden {
  display: none !important;
}

.search-match {
  outline: 1px solid var(--blue);
}

.no-results {
  margin: 28px 0 0;
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 100px auto 30px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--muted);
}

.footer-brand {
  color: var(--blue);
  font-weight: 900;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a:hover {
  color: var(--text);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(1, 4, 10, 0.72);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.modal h2 {
  margin: 10px 0;
  font-size: 2rem;
}

.modal p {
  color: var(--muted);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.6rem;
}


.footer-owner {
  display: grid;
  gap: 3px;
}

.footer-owner > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-owner > strong {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.35;
}

.copyright {
  margin: 0;
  text-align: right;
  font-size: 0.8rem;
  line-height: 1.55;
}

.privacy-modal {
  width: min(680px, 100%);
}

.privacy-modal h2 {
  padding-right: 44px;
}

.privacy-notice {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
}

.privacy-notice p {
  margin: 0;
}

.privacy-details {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.privacy-details > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) 1fr;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.privacy-details dt {
  color: var(--green);
  font-weight: 800;
}

.privacy-details dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.privacy-warning {
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  background: var(--green-soft);
  color: var(--text) !important;
  line-height: 1.55;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1.5;
}

.privacy-check input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.privacy-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

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

@media (max-width: 680px) {
  .privacy-details > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 960px) {
  .topbar {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--panel-strong);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 90px;
  }

  .quick-grid,
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .topbar {
    grid-template-columns: auto auto;
    padding: 0 16px;
  }

  .brand {
    font-size: 1rem;
  }

  .menu-toggle {
    justify-self: end;
  }

  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    padding-bottom: 12px;
  }

  .search-box {
    flex: 1;
    min-width: 0;
  }

  main {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding-top: 70px;
  }

  .hero {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .quick-grid,
  .cards-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===== Aviso obligatorio al iniciar ===== */
.privacy-gate-backdrop {
  z-index: 1000;
  background: rgba(1, 4, 10, 0.86);
  backdrop-filter: blur(16px);
}

.privacy-gate {
  border-color: rgba(56, 217, 150, 0.35);
}

.privacy-check-required:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}

.privacy-actions-gate {
  justify-content: stretch;
}

.privacy-actions-gate .button {
  width: 100%;
}

body.privacy-locked {
  overflow: hidden;
}


/* ===== Footer informativo y ventanas legales ===== */
.footer-link-button {
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--text);
}

.footer-link-button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

.info-modal {
  max-height: min(82vh, 760px);
  overflow: auto;
}

.legal-content {
  max-height: min(58vh, 540px);
  overflow: auto;
  scrollbar-gutter: stable;
}

.legal-content > p:first-child {
  margin-top: 0;
}

.legal-content > p:last-child {
  margin-bottom: 0;
}

/*
  Bloqueo preventivo del primer render:
  solo se activa cuando el script del <head> detecta que el aviso aún no fue aceptado.
*/
html.privacy-pending body {
  overflow: hidden;
}

html.privacy-pending .topbar,
html.privacy-pending main,
html.privacy-pending .footer {
  pointer-events: none;
  user-select: none;
}

html.privacy-pending #pdfPrivacyBackdrop[hidden] {
  display: grid;
}


/* ==========================================================
   ToolHub v13 · Discord
   ========================================================== */

.discord-info-link {
  font: inherit;
}

.external-tool-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.external-link-mark {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .82rem;
  transition: transform .15s ease, color .15s ease;
}

.external-tool-link:hover .external-link-mark {
  color: var(--blue);
  transform: translate(2px, -2px);
}

.discord-info-modal {
  width: min(96vw, 720px);
}

.discord-info-body p {
  line-height: 1.65;
}

.discord-warning {
  border-left-color: var(--purple);
  background: var(--purple-soft);
}


/* v17.2 · Guías VR visuales */
.vr-guide-home-card {
  min-height: 360px;
}

.vr-home-guides {
  display: grid;
  gap: 10px;
}

.guide-entry-rich {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border: 1px solid rgba(128, 154, 190, 0.12);
  border-radius: 12px;
  background: rgba(7, 11, 18, 0.22);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.guide-entry-rich:hover {
  border-color: rgba(56, 217, 150, .55);
  background: var(--green-soft);
  transform: translateX(3px);
}

.guide-entry-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(56, 217, 150, .09);
  font-size: 1.15rem;
}

.guide-entry-rich strong,
.guide-entry-rich small {
  display: block;
}

.guide-entry-rich strong {
  color: var(--text);
  margin-bottom: 4px;
}

.guide-entry-rich small {
  color: var(--muted);
  line-height: 1.4;
  font-size: .78rem;
}

.guide-entry-arrow {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 800;
}

@media (max-width: 620px) {
  .guide-entry-rich {
    grid-template-columns: 34px 1fr auto;
    padding: 12px 10px;
  }
}


/* =========================================================
   v17.3 · HERO PRINCIPAL MÁS AMPLIO + TÍTULO PROFESIONAL
   ========================================================= */

:root {
  --hero-shell-border: rgba(92, 137, 255, 0.18);
  --hero-shell-blue: rgba(51, 148, 255, 0.075);
  --hero-shell-purple: rgba(155, 104, 255, 0.065);
  --hero-title-highlight: #b9d9ff;
  --hero-title-shadow: rgba(0, 0, 0, 0.42);
}

.light-theme {
  --hero-shell-border: rgba(52, 102, 170, 0.18);
  --hero-shell-blue: rgba(51, 148, 255, 0.055);
  --hero-shell-purple: rgba(155, 104, 255, 0.045);
  --hero-title-highlight: #315f91;
  --hero-title-shadow: rgba(47, 71, 99, 0.18);
}

/* El hero se sale ligeramente del ancho estándar de <main>.
   El resto de las secciones conserva los 1180 px originales. */
.hero {
  margin-top: 72px;
  position: relative;
  isolation: isolate;
  width: min(1480px, calc(100vw - 44px));
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 100px clamp(44px, 5.3vw, 96px) 44px;
  border: 1px solid var(--hero-shell-border);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 20%, var(--hero-shell-blue), transparent 34%),
    radial-gradient(circle at 88% 78%, var(--hero-shell-purple), transparent 34%),
    linear-gradient(135deg, rgba(12, 20, 34, 0.58), rgba(8, 13, 23, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 30px 90px rgba(0, 0, 0, 0.16);
}

.light-theme .hero {
  background:
    radial-gradient(circle at 13% 20%, var(--hero-shell-blue), transparent 34%),
    radial-gradient(circle at 88% 78%, var(--hero-shell-purple), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(237, 244, 252, 0.48));
}

/* Línea de luz superior casi imperceptible: da profundidad sin parecer neón. */
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(93, 167, 255, 0.34),
    rgba(155, 104, 255, 0.28),
    transparent
  );
  opacity: 0.8;
}

/* El contenido queda por encima de los efectos decorativos. */
.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

/* Título: profundidad + barrido de luz muy lento.
   No se mueve físicamente, por lo que sigue viéndose serio y estable. */
.hero h1 {
  width: fit-content;
  max-width: 760px;
  color: transparent;
  background-image: linear-gradient(
    108deg,
    var(--text) 0%,
    var(--text) 36%,
    var(--hero-title-highlight) 48%,
    var(--text) 60%,
    var(--text) 100%
  );
  background-size: 230% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 3px 0 rgba(255, 255, 255, 0.025))
    drop-shadow(0 15px 26px var(--hero-title-shadow));
  animation: toolhub-hero-title-sheen 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: background-position;
}

/* El panel de estadísticas recibe un poco más de presencia dentro del hero ancho. */
.hero-panel {
  border-color: rgba(92, 137, 255, 0.18);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

@keyframes toolhub-hero-title-sheen {
  0%,
  18% {
    background-position: 100% 50%;
  }

  47%,
  100% {
    background-position: -115% 50%;
  }
}

/* Accesibilidad: se mantiene la sombra, pero se elimina la animación. */
@media (prefers-reduced-motion: reduce) {
  .hero h1 {
    animation: none;
    background-position: 50% 50%;
  }
}

/* Tablet */
@media (max-width: 960px) {
  .hero {
    margin-top: 42px;
    width: min(100%, calc(100vw - 24px));
    padding: 90px 30px 36px;
    border-radius: 24px;
  }

  .hero h1 {
    width: auto;
  }
}

/* Móvil */
@media (max-width: 680px) {
  .hero {
    margin-top: 24px;
    width: calc(100vw - 16px);
    padding: 76px 20px 30px;
    border-radius: 20px;
  }

  .hero h1 {
    max-width: 100%;
  }
}


/* =========================================================
   v18 · BIBLIOTECA DE ASSETS VRCHAT
   ========================================================= */

.asset-library-home {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.asset-library-heading {
  margin-bottom: 24px;
}

.asset-library-heading h2 {
  margin-bottom: 10px;
}

.asset-library-heading p {
  max-width: 760px;
}

.asset-library-home-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(93, 214, 175, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(46, 213, 150, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(14, 24, 36, 0.94), rgba(11, 18, 29, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.asset-library-home-card:hover {
  transform: translateY(-2px);
  border-color: rgba(93, 214, 175, 0.42);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.asset-library-home-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(42, 215, 154, 0.09);
  border: 1px solid rgba(42, 215, 154, 0.2);
  font-size: 28px;
}

.asset-library-home-kicker {
  display: block;
  margin-bottom: 5px;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: #51e7b0;
}

.asset-library-home-copy h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.asset-library-home-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.asset-library-home-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.asset-library-home-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
  background: rgba(255, 255, 255, 0.015);
}

.asset-library-home-arrow {
  font-size: 2rem;
  color: #51e7b0;
  opacity: .85;
}

@media (max-width: 720px) {
  .asset-library-home-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .asset-library-home-arrow {
    display: none;
  }
}



@media (max-width: 680px) {
  .asset-library-home {
    width: min(100% - 28px, 1180px);
  }
}


/* v19 · Guías Unity visuales */
.unity-guide-home-card {
  min-height: 360px;
}

.unity-home-guides {
  display: grid;
  gap: 10px;
}

