/* =========================================================
   MANGAS - ESTILO PRINCIPAL
   ========================================================= */

:root {
  --bg: #0b0f19;
  --bg-secondary: #111827;
  --surface: #151c2b;
  --surface-hover: #1b2436;
  --surface-light: #202a3d;

  --text: #f8fafc;
  --text-secondary: #cbd5e1;
  --muted: #94a3b8;

  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --accent-dark: #6d28d9;

  --border: rgba(255, 255, 255, 0.08);

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  --radius: 14px;
  --container: 1400px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(139, 92, 246, 0.12),
      transparent 35%
    ),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  min-height: 72px;

  margin: auto;
  padding: 0 28px;

  display: flex;
  align-items: center;
  gap: 25px;
}

/* =========================================================
   BRAND
   ========================================================= */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  color: var(--text);
  text-decoration: none;

  font-size: 20px;
  font-weight: 800;

  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;

  object-fit: contain;

  border-radius: 9px;

  transition: transform 0.25s ease;
}

.brand:hover img {
  transform: scale(1.08);
}

.brand span {
  letter-spacing: -0.4px;
}

/* =========================================================
   NAVEGACIÓN
   ========================================================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;

  margin-left: auto;
}

/* =========================================================
   ACCIONES DEL HEADER
   ========================================================= */

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

/* =========================================================
   BOTÓN ABOUT
   ========================================================= */

.about-btn {
  flex-shrink: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;

  padding: 10px 13px;

  color: var(--muted);
  text-decoration: none;

  border-radius: 10px;

  font-size: 13px;
  font-weight: 600;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.main-nav a i {
  margin-right: 7px;
  font-size: 13px;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(139, 92, 246, 0.12);
}

.main-nav a:active {
  transform: scale(0.97);
}

/* =========================================================
   BOTÓN ACERCA DE
   ========================================================= */

.about-btn {
  width: 38px;
  height: 38px;

  margin-left: 5px;
  padding: 0;

  display: grid;
  place-items: center;

  border: 1px solid var(--border);
  border-radius: 10px;

  background: transparent;
  color: var(--muted);

  cursor: pointer;

  font-size: 15px;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.about-btn:hover {
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent-light);
  border-color: rgba(139, 92, 246, 0.3);
}

/* =========================================================
   HAMBURGUESA
   ========================================================= */

.hamburger-btn {
  display: none;

  width: 42px;
  height: 42px;

  margin-left: auto;

  border: 1px solid var(--border);
  border-radius: 10px;

  background: transparent;
  color: var(--text);

  cursor: pointer;

  font-size: 18px;

  transition: 0.2s ease;
}

.hamburger-btn:hover {
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent-light);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 390px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 70px 20px;

  overflow: hidden;

  background: linear-gradient(180deg, rgba(11, 15, 25, 0.15), var(--bg));
}

/* brillo decorativo */

.hero::before {
  content: "";

  position: absolute;

  width: 550px;
  height: 550px;

  top: -300px;
  left: 50%;

  transform: translateX(-50%);

  background: rgba(139, 92, 246, 0.18);

  filter: blur(100px);

  border-radius: 50%;

  pointer-events: none;
}

/* contenido */

.hero-content {
  position: relative;

  width: 100%;
  max-width: 800px;

  text-align: center;

  z-index: 1;
}

/* badge */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 7px 13px;

  border-radius: 999px;

  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);

  color: var(--accent-light);

  font-size: 12px;
  font-weight: 700;

  margin-bottom: 18px;
}

.hero-badge i {
  font-size: 11px;
}

/* título */

.hero h1 {
  font-size: clamp(42px, 7vw, 72px);

  line-height: 1;

  letter-spacing: -2px;

  margin-bottom: 20px;

  background: linear-gradient(135deg, #ffffff 20%, var(--accent-light));

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}

/* descripción */

.hero p {
  max-width: 600px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.7;
}

/* =========================================================
   BOTONES HERO
   ========================================================= */

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 12px;

  margin-top: 28px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 12px 18px;

  border-radius: 10px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

/* principal */

.hero-btn.primary {
  background: var(--accent);
  color: white;

  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

.hero-btn.primary:hover {
  background: var(--accent-dark);
}

/* secundario */

.hero-btn.secondary {
  background: var(--surface);

  color: var(--text-secondary);

  border: 1px solid var(--border);
}

.hero-btn.secondary:hover {
  background: var(--surface-hover);
  border-color: rgba(139, 92, 246, 0.3);
  color: white;
}

/* =========================================================
   BUSCADOR
   ========================================================= */

.search-section {
  width: 100%;
  max-width: var(--container);

  margin: -5px auto 45px;

  padding: 0 28px;

  position: relative;
  z-index: 5;
}

.search-container {
  position: relative;

  width: 100%;
}

.search-icon {
  position: absolute;

  left: 17px;
  top: 50%;

  transform: translateY(-50%);

  color: var(--muted);

  font-size: 15px;

  pointer-events: none;
}

#buscador {
  width: 100%;

  height: 52px;

  padding: 0 48px;

  border: 1px solid var(--border);
  border-radius: 12px;

  outline: none;

  background: var(--surface);

  color: var(--text);

  font-size: 14px;

  box-shadow: var(--shadow);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

#buscador::placeholder {
  color: #64748b;
}

#buscador:focus {
  background: var(--surface-hover);

  border-color: rgba(139, 92, 246, 0.6);

  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* botón limpiar */

#btnLimpiar {
  position: absolute;

  right: 15px;
  top: 50%;

  transform: translateY(-50%);

  width: 28px;
  height: 28px;

  padding: 0;
  margin: 0;

  display: none;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: var(--surface-light);
  color: var(--muted);

  cursor: pointer;

  font-size: 12px;
}

#btnLimpiar:hover {
  background: var(--accent);
  color: white;
}

/* =========================================================
   CONTENEDOR DE SECCIONES
   ========================================================= */

.content-section {
  width: 100%;
  max-width: var(--container);

  margin: 0 auto 65px;

  padding: 0 28px;
}

/* =========================================================
   CABECERA DE SECCIÓN
   ========================================================= */

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 22px;
}

.section-label {
  display: block;

  margin-bottom: 7px;

  color: var(--accent-light);

  font-size: 11px;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.8px;
}

.section-label i {
  margin-right: 5px;
}

.color-label {
  color: #f59e0b;
}

.section-header h2 {
  color: var(--text);

  font-size: 27px;

  line-height: 1.2;

  letter-spacing: -0.5px;
}

.section-header p {
  margin-top: 7px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.5;
}

/* enlace de sección */

.section-link {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  padding: 8px 12px;

  color: var(--muted);

  text-decoration: none;

  border-radius: 8px;

  font-size: 12px;
  font-weight: 700;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.section-link:hover {
  color: var(--accent-light);
  background: rgba(139, 92, 246, 0.08);
}

/* =========================================================
   GRID
   ========================================================= */

.grid {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));

  gap: 18px;
}

/* =========================================================
   TARJETAS DE CAPÍTULOS
   ========================================================= */

.card {
  position: relative;

  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  text-align: left;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);

  background: var(--surface-hover);

  border-color: rgba(139, 92, 246, 0.35);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
}

/* imagen */

.card img {
  display: block;

  width: 100%;

  aspect-ratio: 2 / 3;

  object-fit: cover;

  background: #0f172a;

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.card:hover img {
  transform: scale(1.035);

  filter: brightness(1.08);
}

/* =========================================================
   INFORMACIÓN DE TARJETA
   ========================================================= */

.card .title {
  display: block;

  padding: 12px 12px 4px;

  color: var(--text);

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  line-height: 1.35;

  transition: color 0.2s ease;
}

.card:hover .title {
  color: var(--accent-light);
}

.card .fecha {
  padding: 0 12px 12px;

  color: var(--muted);

  font-size: 11px;
}

/* =========================================================
   RESULTADOS DE BÚSQUEDA
   ========================================================= */

.search-results {
  width: 100%;
  max-width: var(--container);

  margin: 0 auto 50px;

  padding: 0 28px;
}

/* =========================================================
   MODAL ACERCA DE
   ========================================================= */

.about-overlay {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(0, 0, 0, 0.7);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-overlay.active {
  display: flex;
}

.about-modal {
  position: relative;

  width: 100%;
  max-width: 480px;

  padding: 35px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);

  text-align: center;

  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* icono */

.about-icon {
  width: 58px;
  height: 58px;

  margin: 0 auto 18px;

  display: grid;
  place-items: center;

  border-radius: 15px;

  background: rgba(139, 92, 246, 0.12);

  color: var(--accent-light);

  font-size: 24px;
}

.about-modal h2 {
  margin-bottom: 15px;

  color: var(--text);

  font-size: 24px;
}

.about-modal p {
  margin-bottom: 13px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}

.about-modal strong {
  color: var(--accent-light);
}

/* cerrar */

.about-close {
  position: absolute;

  top: 15px;
  right: 15px;

  width: 35px;
  height: 35px;

  display: grid;
  place-items: center;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  color: var(--muted);

  cursor: pointer;

  transition: 0.2s ease;
}

.about-close:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* Telegram */

.telegram-btn {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-top: 10px;

  padding: 11px 16px;

  border-radius: 10px;

  background: #229ed9;

  color: white;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  transition: 0.2s ease;
}

.telegram-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  margin-top: 80px;

  border-top: 1px solid var(--border);

  background: #080c14;
}

.footer-content {
  width: 100%;
  max-width: var(--container);

  margin: auto;

  padding: 45px 28px;

  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr;

  gap: 45px;
}

/* marca */

.footer-brand {
  display: flex;
  align-items: flex-start;

  gap: 13px;
}

.footer-brand img {
  width: 42px;
  height: 42px;

  object-fit: contain;

  border-radius: 9px;
}

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

  font-size: 16px;
}

.footer-brand p {
  margin-top: 6px;

  color: var(--muted);

  font-size: 12px;
}

/* enlaces */

.footer-links {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 9px;
}

.footer-links h3 {
  margin-bottom: 5px;

  color: var(--text);

  font-size: 13px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--muted);

  text-decoration: none;

  font-size: 12px;

  transition: color 0.2s ease;
}

.footer-links a i {
  width: 15px;

  text-align: center;
}

.footer-links a:hover {
  color: var(--accent-light);
}

/* copyright */

.footer-bottom {
  padding: 18px 28px;

  border-top: 1px solid var(--border);

  text-align: center;
}

.footer-bottom p {
  color: #64748b;

  font-size: 11px;
}

.footer-bottom strong {
  color: var(--muted);
}

/* =========================================================
   BOTÓN VOLVER ARRIBA
   ========================================================= */

#btnSubir {
  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: 2000;

  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border: 1px solid var(--border);
  border-radius: 50%;

  background: rgba(21, 28, 43, 0.95);

  color: var(--text);

  cursor: pointer;

  box-shadow: var(--shadow);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease;
}

#btnSubir.mostrar {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

#btnSubir:hover {
  background: var(--accent);

  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 900px) {
  .header-inner {
    padding: 0 20px;
  }

  .main-nav a {
    padding: 9px 9px;
    font-size: 12px;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));

    gap: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   RESPONSIVE - MÓVIL
   ========================================================= */

@media (max-width: 760px) {
  .header-inner {
    min-height: 64px;

    padding: 0 15px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  /* menú */

  .hamburger-btn {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;

    top: 64px;
    left: 0;

    width: 100%;

    padding: 12px 15px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 5px;

    background: rgba(11, 15, 25, 0.97);

    border-bottom: 1px solid var(--border);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;

    padding: 13px 15px;

    background: rgba(255, 255, 255, 0.025);

    font-size: 14px;
  }

  .main-nav a:hover {
    background: rgba(139, 92, 246, 0.1);
  }

  .hero {
    min-height: 350px;

    padding: 60px 20px 50px;
  }

  .hero h1 {
    font-size: 48px;

    letter-spacing: -1.5px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;

    width: 100%;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
  }

  /* buscador */

  .search-section {
    padding: 0 15px;

    margin-bottom: 40px;
  }

  /* secciones */

  .content-section {
    padding: 0 15px;

    margin-bottom: 50px;
  }

  .section-header {
    align-items: flex-start;

    flex-direction: column;

    gap: 10px;
  }

  .section-header h2 {
    font-size: 23px;
  }

  .section-link {
    padding-left: 0;
  }

  /* grid */

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
  }

  /* tarjetas */

  .card {
    border-radius: 11px;
  }

  .card .title {
    padding: 10px 9px 3px;

    font-size: 12px;
  }

  .card .fecha {
    padding: 0 9px 10px;

    font-size: 10px;
  }

  /* resultados */

  .search-results {
    padding: 0 15px;

    margin-bottom: 40px;
  }

  /* footer */

  .footer-content {
    grid-template-columns: 1fr;

    gap: 30px;

    padding: 35px 20px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-bottom {
    padding: 18px 15px;
  }

  /* botón */

  #btnSubir {
    right: 15px;
    bottom: 15px;
  }
}

/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {
  .hero h1 {
    font-size: 42px;
  }

  .grid {
    gap: 9px;
  }

  .card .title {
    font-size: 11px;
  }

  #buscador {
    height: 48px;

    font-size: 13px;
  }
}

/* =========================================================
   REDUCIR ANIMACIONES
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}
 /* =========================================
   ABOUT - ESTILO PELIS COOL
========================================= */

.about-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: rgba(0, 0, 0, 0.72);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.about-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* =========================================
   MODAL
========================================= */

.about-modal {
  position: relative;

  width: min(625px, 90vw);
  height: min(90vh, 760px);

  padding: 34px 38px 40px;

  overflow-y: auto;
  overflow-x: hidden;

  background: #151020;

  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 0 0 20px 20px;

  color: #ffffff;

  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.65),
    inset 0 0 35px rgba(168, 85, 247, 0.025);

  transform: translateY(-20px);
  transition: transform 0.25s ease;
}

.about-overlay.active .about-modal {
  transform: translateY(0);
}


/* =========================================
   SCROLLBAR
========================================= */

.about-modal {
  scrollbar-width: thin;
  scrollbar-color: #7e22ce transparent;
}

.about-modal::-webkit-scrollbar {
  width: 9px;
}

.about-modal::-webkit-scrollbar-track {
  background: transparent;
}

.about-modal::-webkit-scrollbar-thumb {
  background: #6b21a8;
  border-radius: 10px;
}

.about-modal::-webkit-scrollbar-thumb:hover {
  background: #9333ea;
}


/* =========================================
   BOTÓN CERRAR
========================================= */

.about-close {
  position: absolute;

  top: 0;
  right: 0;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 0 0 0 50%;

  background: rgba(88, 28, 135, 0.55);

  color: #c084fc;

  font-size: 18px;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.about-close:hover {
  background: rgba(126, 34, 206, 0.8);
  color: #ffffff;
  transform: scale(1.05);
}


/* =========================================
   ICONO SUPERIOR
========================================= */

.about-modal > .about-icon {
  display: none;
}


/* =========================================
   TÍTULO PRINCIPAL
========================================= */

.about-modal > h2 {
  margin: 8px 0 20px;

  text-align: center;

  font-size: 30px;
  line-height: 1.2;

  font-weight: 800;

  color: #c084fc;

  background: linear-gradient(
    90deg,
    #c084fc,
    #e9d5ff,
    #c084fc
  );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.about-modal > p {
  margin: 0;

  text-align: center;

  color: #a9a1bd;

  font-size: 17px;
  line-height: 1.5;
}

.about-modal > p + p {
  margin-top: 3px;
}

.about-modal > p strong {
  color: #c4bdd2;
  font-weight: 700;
}


/* =========================================
   CATEGORÍAS
========================================= */

.about-category {
  position: relative;

  margin-top: 28px;
  padding-top: 0;
  padding-bottom: 26px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.about-category:last-child {
  border-bottom: none;
  padding-bottom: 10px;
}


/* =========================================
   TÍTULOS DE CATEGORÍA
========================================= */

.about-category h3 {
  margin: 0 0 18px;

  text-align: center;

  font-size: 19px;
  line-height: 1.3;

  font-weight: 800;

  background: linear-gradient(
    90deg,
    #c084fc,
    #f0abfc,
    #c084fc
  );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}

.about-category h3 i {
  display: none;
}


/* =========================================
   CONTENEDOR DE ICONOS
========================================= */

.about-links {
  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 13px;
}


/* =========================================
   BOTONES / ICONOS
========================================= */

.about-links a {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: none;
  border-radius: 13px;

  background: #29113f;

  color: #bca7d2;

  text-decoration: none;

  font-size: 20px;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.about-links a:hover {
  background: #3b155b;

  color: #e9d5ff;

  transform: translateY(-3px);

  box-shadow:
    0 8px 20px rgba(126, 34, 206, 0.25);
}

.about-links a i {
  font-size: 20px;

  color: inherit;

  transition: transform 0.2s ease;
}

.about-links a:hover i {
  transform: scale(1.08);
}


/* =========================================
   ELIMINAR TEXTO VISUAL
========================================= */

/*
   Los títulos siguen existiendo en el HTML
   mediante title="" para accesibilidad,
   pero NO se muestran debajo del icono.
*/

.about-links a::after {
  content: none !important;
}


/* =========================================
   TELEGRAM
========================================= */

.about-links a[title="Grupo de Telegram"] {
  color: #bca7d2;
}

.about-links a[title="Grupo de Telegram"]:hover {
  color: #e9d5ff;
  background: #3b155b;
}


/* =========================================
   TOOLTIP
========================================= */

.about-links a {
  position: relative;
}

.about-links a::before {
  content: attr(title);

  position: absolute;

  bottom: calc(100% + 8px);
  left: 50%;

  transform: translateX(-50%) translateY(4px);

  padding: 5px 8px;

  background: #09070e;

  border: 1px solid rgba(192, 132, 252, 0.25);
  border-radius: 6px;

  color: #ddd6fe;

  font-size: 11px;
  font-weight: 500;

  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0.15s ease;

  z-index: 20;
}

.about-links a:hover::before {
  opacity: 1;
  visibility: visible;

  transform: translateX(-50%) translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 700px) {

  .about-modal {
    width: 92vw;
    height: 90vh;

    padding: 30px 24px 35px;

    border-radius: 0 0 18px 18px;
  }

  .about-modal > h2 {
    font-size: 28px;
  }

  .about-modal > p {
    font-size: 16px;
  }

  .about-category h3 {
    font-size: 18px;
  }

}


/* =========================================
   MÓVILES PEQUEÑOS
========================================= */

@media (max-width: 480px) {

  .about-modal {
    width: 94vw;
    height: 92vh;

    padding: 28px 18px 32px;
  }

  .about-modal > h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .about-modal > p {
    font-size: 14px;
  }

  .about-category {
    margin-top: 24px;
    padding-bottom: 23px;
  }

  .about-category h3 {
    margin-bottom: 15px;
    font-size: 17px;
  }

  .about-links {
    gap: 11px;
  }

  .about-links a {
    width: 50px;
    height: 50px;

    flex-basis: 50px;
  }

  .about-links a i {
    font-size: 19px;
  }

}


/* =========================================
   MÓVIL MUY PEQUEÑO
========================================= */

@media (max-width: 360px) {

  .about-modal {
    width: 96vw;
    padding-left: 14px;
    padding-right: 14px;
  }

  .about-links {
    gap: 9px;
  }

  .about-links a {
    width: 48px;
    height: 48px;

    flex-basis: 48px;
  }

}