/*
Theme Name: NeuroViaje
Theme URI: https://neuroviaje.com
Author: NeuroViaje
Author URI: https://neuroviaje.com
Description: Tema editorial cálido para un blog de crianza neurodivergente. Blog y artículos dinámicos, categorías con el sistema de color del espectro, y páginas a medida (contacto, comunidad, recursos, sobre mí y páginas legales). Diseño propio, sin dependencias de page builders.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neuroviaje
*/

/* ============================================================
   NeuroViaje — Sistema de diseño
   Editorial cálido + espectro de neurodiversidad
   ============================================================ */

/* ---- Tipografía (maridajes intercambiables vía data-type) ---- */
:root {
  --font-head: "Newsreader", Georgia, serif;
  --font-body: "Mulish", system-ui, sans-serif;
  --head-weight: 600;
  --head-italic-display: italic;
}
:root[data-type="suave"] {
  --font-head: "Bitter", Georgia, serif;
  --font-body: "Karla", system-ui, sans-serif;
  --head-weight: 600;
}
:root[data-type="moderno"] {
  --font-head: "Spectral", Georgia, serif;
  --font-body: "Work Sans", system-ui, sans-serif;
  --head-weight: 600;
}

/* ---- Color ---- */
:root {
  /* base cálida */
  --paper:    oklch(0.987 0.008 85);
  --paper-2:  oklch(0.966 0.013 80);
  --paper-3:  oklch(0.945 0.016 78);
  --ink:      oklch(0.275 0.018 60);
  --ink-soft: oklch(0.46 0.020 62);
  --ink-faint:oklch(0.62 0.018 65);
  --line:     oklch(0.90 0.013 80);
  --line-soft:oklch(0.93 0.011 82);

  /* espectro neurodivergente (del logo) */
  --blue:   oklch(0.62 0.115 245);
  --green:  oklch(0.66 0.115 158);
  --yellow: oklch(0.80 0.105 88);
  --orange: oklch(0.71 0.135 55);
  --red:    oklch(0.60 0.155 28);

  /* acento principal (cálido, llamadas a la acción) */
  --accent:        var(--orange);
  --accent-strong: oklch(0.62 0.155 45);
  --accent-soft:   oklch(0.93 0.045 60);
  --accent-ink:    oklch(0.42 0.13 40);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px oklch(0.4 0.02 60 / 0.06), 0 2px 8px oklch(0.4 0.02 60 / 0.05);
  --shadow-md: 0 4px 14px oklch(0.4 0.02 60 / 0.08), 0 18px 40px oklch(0.4 0.02 60 / 0.07);
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }

/* ---- Layout helpers (la grilla que NO se desborda) ---- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

/* ---- Cinta espectro (referencia al logo) ---- */
.spectrum-bar {
  height: 6px; width: 100%; border: 0;
  background: linear-gradient(90deg,
    var(--blue) 0 20%, var(--green) 20% 40%,
    var(--yellow) 40% 60%, var(--orange) 60% 80%, var(--red) 80% 100%);
}
.spectrum-dots { display: inline-flex; gap: 5px; align-items: center; }
.spectrum-dots i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.spectrum-dots i:nth-child(1){ background: var(--blue); }
.spectrum-dots i:nth-child(2){ background: var(--green); }
.spectrum-dots i:nth-child(3){ background: var(--yellow); }
.spectrum-dots i:nth-child(4){ background: var(--orange); }
.spectrum-dots i:nth-child(5){ background: var(--red); }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.987 0.008 85 / 0.86);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 86px;
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-logo { height: 60px; width: auto; display: block; }
.site-footer .brand-logo { height: 52px; }
.brand .mark { display: flex; gap: 4px; }
.brand .mark i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.brand .mark i:nth-child(1){ background: var(--blue); }
.brand .mark i:nth-child(2){ background: var(--green); }
.brand .mark i:nth-child(3){ background: var(--yellow); }
.brand .mark i:nth-child(4){ background: var(--orange); }
.brand .mark i:nth-child(5){ background: var(--red); }
.brand .word {
  font-family: var(--font-head);
  font-weight: 600; font-size: 24px; letter-spacing: -0.02em; color: var(--ink);
}
.brand .word b { font-weight: 600; color: var(--accent-ink); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-size: 15.5px; font-weight: 600; color: var(--ink-soft);
  padding: 6px 0; position: relative; transition: color .18s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--accent); border-radius: 2px;
}

/* ---- Menú desplegable de categorías ---- */
.nav-drop { position: relative; }
.nav-drop-trigger { display: inline-flex !important; align-items: center; gap: 6px; }
.nav-drop-trigger .caret { transition: transform .2s; margin-top: 1px; color: var(--ink-faint); }
.nav-drop:hover .caret, .nav-drop:focus-within .caret { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 248px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 15px; box-shadow: var(--shadow-md); padding: 8px;
  display: flex; flex-direction: column; gap: 1px;
  opacity: 0; visibility: hidden; transition: opacity .16s, transform .16s; z-index: 60;
}
.nav-menu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-drop:hover .nav-menu, .nav-drop:focus-within .nav-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-menu a {
  display: flex !important; align-items: center; gap: 11px; padding: 10px 12px !important;
  border-radius: 10px; font-size: 14.5px; font-weight: 700; color: var(--ink-soft); white-space: nowrap;
}
.nav-menu a:hover { background: var(--paper-2); color: var(--ink); }
.nav-menu a.head { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); padding-bottom: 4px !important; pointer-events: none; }
.nav-menu a.head:hover { background: transparent; color: var(--ink-faint); }
.nav-menu a.all { font-weight: 800; color: var(--ink); }
.nav-menu-sep { height: 1px; background: var(--line); margin: 6px 8px; }
.cdot { width: 10px; height: 10px; border-radius: 50%; flex: none; box-shadow: 0 0 0 3px color-mix(in oklch, currentColor 8%, transparent); }

/* ---- Botones ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 15.5px;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s; white-space: nowrap;
}
.btn-primary {
  background: var(--accent-strong); color: oklch(0.99 0.01 85);
  box-shadow: 0 6px 18px oklch(0.62 0.155 45 / 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px oklch(0.62 0.155 45 / 0.4); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { background: var(--paper-2); border-color: var(--ink-faint); }
.btn-block { width: 100%; }

/* ---- Etiquetas de categoría (color por tema) ---- */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
}
.tag::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ink-faint); }
.tag.c-blue   { color: var(--blue);  } .tag.c-blue::before   { background: var(--blue); }
.tag.c-green  { color: var(--green); } .tag.c-green::before  { background: var(--green); }
.tag.c-orange { color: var(--accent-ink); } .tag.c-orange::before { background: var(--orange); }
.tag.c-red    { color: var(--red);   } .tag.c-red::before    { background: var(--red); }
.tag.c-yellow { color: oklch(0.55 0.10 80); } .tag.c-yellow::before { background: var(--yellow); }

/* ---- Placeholder de imagen cálido (reemplazable) ---- */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, oklch(1 0 0 / 0.16) 0 2px, transparent 2px 11px),
    var(--ph-tint, var(--paper-3));
  display: grid; place-items: center;
}
.ph[data-tint="blue"]   { --ph-tint: oklch(0.88 0.05 245); }
.ph[data-tint="green"]  { --ph-tint: oklch(0.89 0.05 158); }
.ph[data-tint="yellow"] { --ph-tint: oklch(0.91 0.05 88); }
.ph[data-tint="orange"] { --ph-tint: oklch(0.90 0.055 55); }
.ph[data-tint="red"]    { --ph-tint: oklch(0.88 0.05 28); }
.ph span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px; letter-spacing: 0.04em; color: oklch(0.40 0.03 60 / 0.78);
  background: oklch(0.99 0.01 85 / 0.7); padding: 5px 10px; border-radius: 999px;
}

/* ---- Tarjetas de artículo ---- */
.card { display: flex; flex-direction: column; gap: 14px; }
.card .ph { aspect-ratio: 16/10; }
.card h3 { font-size: 22px; line-height: 1.18; transition: color .18s; }
.card a:hover h3 { color: var(--accent-ink); }
.card .meta { color: var(--ink-faint); font-size: 13.5px; font-weight: 600; }
.card .excerpt { color: var(--ink-soft); font-size: 15.5px; }

/* ---- Footer ---- */
.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding: 60px 0 36px;
}
.footer-grid h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { color: var(--ink-soft); font-size: 15px; }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px 28px;
  font-size: 13.5px; color: var(--ink-faint); flex-wrap: wrap;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; }
.footer-legal a { color: var(--ink-faint); font-size: 13.5px; font-weight: 600; transition: color .18s; }
.footer-legal a:hover { color: var(--ink); }
@media (max-width: 560px) { .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ---- Tarjeta lista de espera (sidebar del hero) ---- */
.waitlist {
  background: var(--ink); color: oklch(0.96 0.01 85);
  border-radius: var(--radius-lg); padding: 30px 28px;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.waitlist::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: linear-gradient(90deg, var(--blue) 0 20%, var(--green) 20% 40%, var(--yellow) 40% 60%, var(--orange) 60% 80%, var(--red) 80% 100%);
}
.waitlist .pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.85 0.04 85); white-space: nowrap;
  background: oklch(1 0 0 / 0.08); padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}
.waitlist h3 { color: oklch(0.98 0.01 85); font-size: 25px; margin-bottom: 8px; }
.waitlist p { color: oklch(0.84 0.015 85); font-size: 15px; margin-bottom: 18px; }
.field { margin-bottom: 11px; }
.field input {
  width: 100%; padding: 13px 15px; border-radius: 11px; border: 1.5px solid oklch(1 0 0 / 0.14);
  background: oklch(1 0 0 / 0.06); color: oklch(0.97 0.01 85); font: inherit; font-size: 15px;
}
.field input::placeholder { color: oklch(0.75 0.01 85); }
.field input:focus { outline: none; border-color: var(--orange); background: oklch(1 0 0 / 0.1); }
.waitlist .fine { font-size: 12.5px; color: oklch(0.72 0.012 85); margin: 12px 0 0; text-align: center; }
.wl-consent {
  display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 14px;
  font-size: 12.5px; line-height: 1.45; color: oklch(0.82 0.015 85); cursor: pointer; text-align: left;
}
.wl-consent input {
  appearance: none; -webkit-appearance: none; flex: none; margin: 1px 0 0;
  width: 19px; height: 19px; border-radius: 6px; border: 1.5px solid oklch(1 0 0 / 0.22);
  background: oklch(1 0 0 / 0.06); cursor: pointer; display: grid; place-items: center; transition: background .15s, border-color .15s;
}
.wl-consent input:checked { background: var(--orange); border-color: var(--orange); }
.wl-consent input:checked::after { content: "✓"; color: var(--ink); font-size: 12px; font-weight: 900; line-height: 1; }
.wl-consent input:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.waitlist .count { display: flex; align-items: center; gap: 8px; font-size: 13px; color: oklch(0.82 0.015 85); margin-top: 14px; }
.avatars { display: flex; }
.avatars i { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--ink); margin-left: -8px; display: block; }
.avatars i:first-child { margin-left: 0; }

/* ---- Prosa de artículo ---- */
.prose { font-size: 19px; line-height: 1.75; color: oklch(0.32 0.018 60); }
.prose p { margin: 0 0 1.25em; }
.prose h2 { font-size: 30px; margin: 1.6em 0 0.5em; }
.prose h3 { font-size: 23px; margin: 1.4em 0 0.4em; }
.prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 24px; border-left: 4px solid var(--accent);
  font-family: var(--font-head); font-size: 23px; font-style: italic; line-height: 1.4; color: var(--ink);
}
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1.25em; }
.prose li { margin-bottom: 0.5em; }
.prose a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose strong { color: var(--ink); }

/* ---- Páginas legales ---- */
.legal-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 44px); }
.legal-head h1 { font-size: clamp(34px, 4.6vw, 54px); margin: 14px 0 16px; }
.legal-head .lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); max-width: 56ch; margin: 0; }
.legal-updated {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  font-size: 13.5px; font-weight: 700; color: var(--ink-faint);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px;
}
.legal-grid { display: grid; grid-template-columns: 230px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.legal-toc { position: sticky; top: 110px; }
.legal-toc .toc-label { font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.legal-toc ol { list-style: none; counter-reset: toc; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.legal-toc a { counter-increment: toc; display: flex; gap: 10px; padding: 8px 10px; border-radius: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); border-left: 2px solid transparent; }
.legal-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--ink-faint); font-weight: 800; font-variant-numeric: tabular-nums; }
.legal-toc a:hover { background: var(--paper-2); color: var(--ink); }
.legal-prose h2 { display: flex; align-items: baseline; gap: 12px; scroll-margin-top: 110px; }
.legal-prose h2 .n {
  font-family: var(--font-body); font-size: 14px; font-weight: 800; color: var(--accent-ink);
  background: var(--accent-soft); border-radius: 8px; padding: 2px 9px; flex: none; transform: translateY(-3px);
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-callout {
  margin: 1.6em 0; padding: 18px 20px; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius); font-size: 16px; color: var(--ink-soft);
}
.legal-callout strong { color: var(--ink); }
.legal-disclaimer {
  margin-top: clamp(32px, 5vw, 56px); padding: 20px 22px; border-radius: var(--radius);
  border: 1px dashed var(--line); display: flex; gap: 14px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-soft); background: var(--paper);
}
.legal-disclaimer .spectrum-dots { margin-top: 4px; flex: none; }
@media (max-width: 860px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-toc { position: static; padding-bottom: 8px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
  .legal-toc ol { flex-flow: row wrap; }
}

/* ---- Utilidades ---- */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section-tight { padding: clamp(36px, 5vw, 60px) 0; }

/* ---- WordPress: logo personalizado e imagen real en placeholders ---- */
.brand .custom-logo, .brand img.custom-logo { height: 50px; width: auto; display: block; }
.brand .custom-logo-link { display: inline-flex; }
.ph.has-img span { display: none; }
.ph.has-img { background-color: transparent; }
/* WordPress: imágenes y leyendas dentro del contenido del artículo */
.prose img { max-width: 100%; height: auto; border-radius: var(--radius); }
.prose figure { margin: 1.6em 0; }
.prose figcaption { font-size: 13.5px; color: var(--ink-faint); text-align: center; margin-top: 8px; }
.prose .wp-block-image { margin: 1.6em 0; }
.sticky-note, .page-links { font-size: 14px; color: var(--ink-faint); margin-top: 1.4em; }
.prose .alignleft { float: left; margin: 0.4em 1.4em 1em 0; }
.prose .alignright { float: right; margin: 0.4em 0 1em 1.4em; }
.prose .aligncenter { display: block; margin-inline: auto; }

/* ---- Redes sociales ---- */
.social-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid var(--line); color: var(--ink-soft); background: var(--paper);
  transition: transform .16s, background .18s, color .18s, border-color .18s;
}
.social-btn:hover { transform: translateY(-2px); color: oklch(0.99 0.01 85); border-color: transparent; }
.social-btn[data-net="youtube"]:hover   { background: var(--red); }
.social-btn[data-net="instagram"]:hover { background: var(--orange); }
.social-btn[data-net="tiktok"]:hover    { background: var(--ink); }
.social-btn[data-net="facebook"]:hover  { background: var(--blue); }

/* ---- Hamburguesa + menú móvil (drawer) ---- */
.nav-burger { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; position: relative; padding: 0; }
.nav-burger i { position: absolute; left: 12px; right: 12px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform .25s, opacity .2s; }
.nav-burger i:nth-child(1) { top: 16px; }
.nav-burger i:nth-child(2) { top: 22px; }
.nav-burger i:nth-child(3) { top: 28px; }
.nav-burger.open i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open i:nth-child(2) { opacity: 0; }
.nav-burger.open i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mdrawer-overlay { position: fixed; inset: 0; background: oklch(0.25 0.02 60 / 0.42); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; z-index: 200; }
.mdrawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(87vw, 365px);
  background: var(--paper); box-shadow: -24px 0 70px oklch(0.3 0.02 60 / 0.2);
  transform: translateX(101%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  z-index: 201; display: flex; flex-direction: column; padding: 20px 22px 30px; overflow-y: auto;
}
body.mdrawer-open { overflow: hidden; }
body.mdrawer-open .mdrawer { transform: none; }
body.mdrawer-open .mdrawer-overlay { opacity: 1; visibility: visible; }
.mdrawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mdrawer-head .brand-logo { height: 46px; }
.mdrawer-close { width: 40px; height: 40px; border: 1px solid var(--line); background: var(--paper); border-radius: 50%; cursor: pointer; color: var(--ink); font-size: 15px; display: grid; place-items: center; }
.mdrawer-nav { display: flex; flex-direction: column; }
.mdrawer-label { font-family: var(--font-head); font-weight: 600; font-size: 21px; color: var(--ink); padding: 14px 0 6px; }
.mdrawer-nav > a { font-family: var(--font-head); font-weight: 600; font-size: 21px; color: var(--ink); padding: 13px 0; border-top: 1px solid var(--line-soft); }
.mdrawer-cats { display: flex; flex-direction: column; padding: 2px 0 10px; }
.mdrawer-cats .nav-menu-sep { display: none; }
.mdrawer-cats a { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--ink-soft); padding: 10px 0 10px 2px; display: flex; align-items: center; gap: 11px; }
.mdrawer-cats a.all { color: var(--accent-ink); }
.mdrawer-cats a.head { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); padding: 8px 0 2px; pointer-events: none; }
.mdrawer-cta { margin: 18px 0 4px; }
.mdrawer-social { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.mdrawer-social .social-label { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }

/* ---- Responsivo ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .site-header .nav > .btn { display: none; }
  .brand-logo { height: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
