/* ══════════════════════════════════════════════════════
   AdoptaPaw — Estilos Minimalistas Mobile-First
   Desarrollado por Aetherion Systems
   ══════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────── */
:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --surface-2: #f0ede8;
  --border: #e8e4de;

  --ink: #1a1814;
  --ink-2: #5a5550;
  --ink-3: #9a9590;

  --accent: #c8622a;
  --accent-light: #f5e8df;
  --accent-dark: #a04e20;

  --green: #2d7a4f;
  --green-light: #e3f2ea;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-full: 100px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);

  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;

  --nav-h: 60px;
  --max-w: 1100px;
  --section-pad: 80px 20px;

  --trans: all .25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── NAVEGACIÓN ─────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.paw-icon { font-size: 1.3rem; }

.nav-links {
  display: none;
  gap: 4px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.nav-link {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: var(--trans);
}

.nav-link:hover,
.nav-link.active {
  background: var(--accent-light);
  color: var(--accent);
  text-decoration: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--trans);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  gap: 4px;
  box-shadow: var(--shadow);
}

.nav-links.mobile-open .nav-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

/* ── SECCIONES BASE ──────────────────────────────────── */
.section {
  padding: var(--section-pad);
  padding-top: calc(80px + var(--nav-h));
  max-width: var(--max-w);
  margin: 0 auto;
}

.section:first-of-type { padding-top: calc(40px + var(--nav-h)); }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--ink-3);
  font-size: .95rem;
}

/* ── HERO ────────────────────────────────────────────── */
.section-hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding-top: calc(40px + var(--nav-h)) !important;
}

@media (min-width: 768px) {
  .section-hero {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(200, 98, 42, .2);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

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

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  max-width: 280px;
  box-shadow: var(--shadow-lg);
}

.hero-dog-emoji {
  font-size: 5rem;
  margin-bottom: 16px;
  display: block;
}

.hero-card p {
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.5;
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── BOTONES ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--trans);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  text-decoration: none;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 98, 42, .3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--ink-3);
  color: var(--ink);
  text-decoration: none;
}

.btn-sm { padding: 8px 18px; font-size: .8rem; }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.btn-whatsapp:hover {
  background: #1da750;
  border-color: #1da750;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

/* ── FILTROS & BÚSQUEDA ──────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--surface);
  border: 1.5px solid var(--border);
  transition: var(--trans);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.search-bar { margin-bottom: 32px; }

.search-input {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--surface);
  font-size: .95rem;
  color: var(--ink);
  transition: var(--trans);
  outline: none;
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 98, 42, .12);
}

/* ── GRID DE PERROS ──────────────────────────────────── */
.dog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.dog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--trans);
  animation: fadeInUp .4s ease both;
}

.dog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.dog-card-thumb {
  height: 160px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dog-card-status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 10;
}

.dog-card-status.adopted {
  background: var(--ink-3);
}

.dog-card-body {
  padding: 16px;
}

.dog-card-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.dog-card-breed {
  font-size: .82rem;
  color: var(--ink-3);
  margin-bottom: 10px;
}

.dog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: .03em;
}

.tag-accent {
  background: var(--accent-light);
  color: var(--accent);
}

/* ── CHAT ────────────────────────────────────────────── */
.chat-container {
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chat-header-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--ink);
  color: #fff;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.chat-info { display: flex; flex-direction: column; gap: 2px; }
.chat-info strong { font-size: .95rem; }

.online-dot {
  font-size: .75rem;
  color: #4ade80;
}

.chat-messages {
  padding: 20px;
  min-height: 260px;
  max-height: 360px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
}

.message { display: flex; flex-direction: column; gap: 3px; }

.message-in { align-items: flex-start; }
.message-out { align-items: flex-end; }

.message-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: .9rem;
  line-height: 1.5;
}

.message-in .message-bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--ink);
}

.message-out .message-bubble {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.message-time {
  font-size: .7rem;
  color: var(--ink-3);
  padding: 0 4px;
}

.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .9rem;
  outline: none;
  transition: var(--trans);
}

.chat-input:focus {
  border-color: var(--accent);
}

.chat-send-btn {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--trans);
  flex-shrink: 0;
}

.chat-send-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

.chat-whatsapp { padding: 12px 16px 16px; }

/* ── CONTRATO ────────────────────────────────────────── */
.contract-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contract-container {
    grid-template-columns: 1fr 1fr;
  }
  .contract-text-card { grid-column: 1 / -1; }
  .signature-card { grid-column: 1 / -1; }
}

.form-card, .contract-text-card, .signature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: var(--trans);
}

.form-input:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(200, 98, 42, .1);
}

.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a5550' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.contract-text {
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.7;
}

.contract-text p { margin-bottom: 10px; }
.contract-text ul { padding-left: 0; display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.contract-text li::before { content: '→ '; color: var(--accent); font-weight: 700; }

.signature-hint {
  font-size: .85rem;
  color: var(--ink-3);
  margin-bottom: 14px;
}

.canvas-wrapper {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  margin-bottom: 14px;
}

.signature-canvas {
  display: block;
  width: 100%;
  height: 180px;
  cursor: crosshair;
  touch-action: none;
}

.canvas-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ink-3);
  pointer-events: none;
  transition: opacity .3s;
  gap: 8px;
}

.canvas-placeholder.hidden { opacity: 0; }

.signature-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ── EDUCACIÓN ───────────────────────────────────────── */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.edu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--trans);
}

.edu-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.edu-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.edu-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.edu-card p {
  font-size: .875rem;
  color: var(--ink-2);
  line-height: 1.65;
}

/* FAQ */
.faq-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--trans);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ink-3);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after { content: '−'; }
.faq-item.open .faq-question { color: var(--accent); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 20px 16px;
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ── MODALES ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 20, .6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(.95) translateY(10px);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.modal-card p { font-size: .9rem; color: var(--ink-2); line-height: 1.65; margin-bottom: 24px; }

.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.modal-close:hover { background: var(--border); }

.dog-modal-card { text-align: left; }
.dog-modal-emoji { font-size: 4rem; margin-bottom: 12px; text-align: center; }
.dog-modal-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.dog-modal-card p { font-size: .9rem; color: var(--ink-2); line-height: 1.65; margin-bottom: 16px; }

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.modal-info-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.modal-info-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-3);
  margin-bottom: 2px;
}

.modal-info-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}

/* ── TOAST ───────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: .88rem;
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── INSTALL BANNER ──────────────────────────────────── */
.install-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1500;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.install-banner.show { transform: translateY(0); }
.install-banner > span { flex: 1; font-size: .88rem; }
.install-close {
  color: rgba(255,255,255,.6);
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
}
.install-close:hover { color: #fff; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 48px 20px 32px;
  margin-top: 80px;
}

.footer-content {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-tagline {
  font-size: .85rem;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 24px auto;
}

.footer-brand {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 6px;
}

.footer-brand a {
  color: var(--accent);
}

.footer-brand a:hover { color: #e8845a; }

.footer-credits {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-top: 16px;
}

/* ── NO RESULTADOS ───────────────────────────────────── */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-3);
}
.no-results span { font-size: 3rem; display: block; margin-bottom: 12px; }
.no-results p { font-size: .95rem; }

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-3); }