/*
Theme Name: ArgentoMática
Theme URI: https://argentomatica.com
Author: ArgentoMática
Author URI: https://argentomatica.com
Description: Tema oscuro de tecnología para ArgentoMática — Tecnología sin filtro. Diseño moderno con categorías, hero grid, ticker de noticias y sidebar.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
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: argentomatica
Tags: dark, technology, news, magazine, custom-menu, featured-images, widgets, two-columns
*/

/* ─── VARIABLES ─── */
:root {
  --bg:         #07080b;
  --bg2:        #0d0f15;
  --bg3:        #13161f;
  --border:     #1a1e2b;
  --border2:    #252a3a;
  --violet:     #9b4dff;
  --pink:       #ff4fa3;
  --orange:     #ff7a1a;
  --cyan:       #00d4ff;
  --text:       #dde2f0;
  --text-muted: #6b7491;
  --text-dim:   #2e3450;
  --tag-bg:     #151825;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* ─── TOPBAR ─── */
.topbar {
  background: #030405;
  border-bottom: 1px solid var(--border);
  padding: 5px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.live-dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: #00e676;
  animation: blink 1.5s infinite;
  margin-right: 4px; vertical-align: middle;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.topbar-right { display: flex; gap: 16px; }
.topbar-right a:hover { color: var(--cyan); }

/* ─── HEADER ─── */
#masthead {
  background: var(--bg2);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 32px;
  height: 64px;
}
.site-branding {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.site-branding .custom-logo { height: 44px; width: auto; }
.site-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 22px; color: var(--text); letter-spacing: 1px; text-transform: uppercase; }
.site-title a:hover { color: var(--cyan); }

/* ─── NAV PRINCIPAL ─── */
#site-navigation { flex: 1; }
#site-navigation .menu { display: flex; gap: 2px; flex-wrap: nowrap; }
#site-navigation .menu-item > a {
  display: block;
  padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 4px;
  transition: all .2s;
  white-space: nowrap;
}
#site-navigation .menu-item > a:hover,
#site-navigation .menu-item.current-menu-item > a {
  color: var(--text); background: var(--bg3);
}
#site-navigation .menu-item.menu-ofertas > a { color: var(--orange); }
#site-navigation .menu-item.menu-ofertas > a:hover { color: #fff; background: rgba(255,122,26,.15); }

.header-actions { display: flex; gap: 10px; margin-left: auto; align-items: center; }
.search-toggle {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 6px; padding: 6px 12px;
  color: var(--text-muted); font-size: 13px;
  cursor: pointer; transition: border-color .2s;
  font-family: 'Barlow', sans-serif;
}
.search-toggle:hover { border-color: var(--violet); }
.btn-sub {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #fff; border: none;
  padding: 7px 16px; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: .5px; text-transform: uppercase;
  cursor: pointer; transition: opacity .2s;
  white-space: nowrap; display: inline-block;
}
.btn-sub:hover { opacity: .85; color: #fff; }

/* ─── SEARCH OVERLAY ─── */
.search-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.85); align-items: flex-start; justify-content: center;
  padding-top: 80px;
}
.search-overlay.open { display: flex; }
.search-overlay-box {
  width: 100%; max-width: 620px; padding: 0 20px;
}
.search-overlay-box .search-field {
  width: 100%; background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 8px; padding: 14px 18px; color: var(--text);
  font-size: 18px; font-family: 'Barlow', sans-serif;
  outline: none; transition: border-color .2s;
}
.search-overlay-box .search-field:focus { border-color: var(--violet); }
.search-overlay-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
.search-overlay-close:hover { color: var(--text); }

/* ─── CATEGORY BAR ─── */
.catbar {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.catbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 20px;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.catbar-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  padding: 9px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap; cursor: pointer;
  transition: all .2s; display: block;
}
.cat-btn:hover { color: var(--text); }
.cat-btn.c-violet:hover, .cat-btn.c-violet.active { color: var(--violet); border-color: var(--violet); }
.cat-btn.c-cyan:hover, .cat-btn.c-cyan.active { color: var(--cyan); border-color: var(--cyan); }
.cat-btn.c-orange:hover, .cat-btn.c-orange.active { color: var(--orange); border-color: var(--orange); }
.cat-btn.c-pink:hover, .cat-btn.c-pink.active { color: var(--pink); border-color: var(--pink); }

/* ─── TICKER ─── */
.ticker {
  background: linear-gradient(90deg, var(--violet) 0%, var(--cyan) 100%);
  padding: 7px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 60px;
  animation: scroll 30s linear infinite;
  width: max-content;
}
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: .5px; text-transform: uppercase;
  color: #fff; white-space: nowrap;
}
.ticker-sep { color: rgba(255,255,255,.4); }

/* ─── LAYOUT PRINCIPAL ─── */
.site-main {
  max-width: 1400px; margin: 0 auto;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}
.content-area {}
.widget-area {}

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  background: var(--border);
  border-radius: 10px; overflow: hidden;
  margin-bottom: 24px;
  grid-column: 1 / -1;
}
.hero-main {
  grid-row: 1 / 3;
  position: relative; cursor: pointer;
  overflow: hidden;
}
.hero-main .post-thumbnail {
  width: 100%; height: 400px; overflow: hidden;
}
.hero-main .post-thumbnail img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.hero-main:hover .post-thumbnail img { transform: scale(1.03); }
.hero-badge {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--violet), var(--orange));
  color: #fff; padding: 3px 10px; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-main .overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.6) 70%, transparent 100%);
}
.hero-main .tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--cyan); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px;
}
.hero-main h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 28px; line-height: 1.15;
  color: #fff; margin-bottom: 8px;
}
.hero-main h2 a { color: #fff; }
.hero-main h2 a:hover { color: var(--cyan); }
.hero-main .meta { font-size: 12px; color: rgba(255,255,255,.5); }

.hero-side { position: relative; cursor: pointer; overflow: hidden; }
.hero-side .post-thumbnail { width: 100%; min-height: 196px; height: 100%; overflow: hidden; }
.hero-side .post-thumbnail img { width: 100%; height: 100%; object-fit: cover; min-height: 196px; transition: transform .4s ease; }
.hero-side:hover .post-thumbnail img { transform: scale(1.04); }
.hero-side .overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.93) 0%, transparent 100%);
}
.hero-side .tag { font-size: 10px; font-family: 'JetBrains Mono', monospace; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.hero-side h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 17px; line-height: 1.2; color: #fff; }
.hero-side h3 a { color: #fff; }
.hero-side h3 a:hover { color: var(--cyan); }

/* ─── SECTION TITLE ─── */
.section-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 20px;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--text);
}
.section-line { flex: 1; height: 1px; background: var(--border2); }
.section-more {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--cyan);
  cursor: pointer; letter-spacing: .5px;
}
.section-more:hover { text-decoration: underline; }

/* ─── CARD GRID ─── */
.card-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2px; background: var(--border);
  border-radius: 8px; overflow: hidden; margin-bottom: 24px;
}
.card {
  background: var(--bg2); cursor: pointer;
  transition: background .2s; overflow: hidden;
}
.card:hover { background: var(--bg3); }
.card-thumb { width: 100%; height: 160px; object-fit: cover; }
.card-body { padding: 12px 14px 14px; }
.card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 5px;
}
.card-tag.violet { color: var(--violet); }
.card-tag.cyan { color: var(--cyan); }
.card-tag.orange { color: var(--orange); }
.card-tag.pink { color: var(--pink); }
.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px; line-height: 1.25;
  color: var(--text); margin-bottom: 6px;
}
.card h3 a { color: inherit; }
.card:hover h3 { color: #fff; }
.card-meta { font-size: 11px; color: var(--text-muted); }

/* ─── REVIEW STRIP ─── */
.review-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
  border-radius: 8px; overflow: hidden; margin-bottom: 24px;
}
.review-card { background: var(--bg2); cursor: pointer; transition: background .2s; overflow: hidden; }
.review-card:hover { background: var(--bg3); }
.review-thumb { width: 100%; height: 160px; object-fit: cover; display: block; transition: opacity .2s; }
.review-card:hover .review-thumb { opacity: .85; }
.review-body { padding: 14px 16px 16px; }
.review-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 36px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.review-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; color: var(--text);
  margin-bottom: 4px; line-height: 1.2;
}
.review-name a { color: inherit; }
.review-card:hover .review-name a { color: var(--cyan); }
.review-cat { font-size: 11px; color: var(--text-muted); }
.review-stars { color: var(--orange); font-size: 12px; margin-top: 6px; letter-spacing: 1px; }

/* ─── LIST CARD ─── */
.list-card {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.list-card:last-child { border-bottom: none; }
.list-card:hover .list-title { color: var(--cyan); }
.list-thumb { width: 90px; height: 60px; border-radius: 4px; flex-shrink: 0; object-fit: cover; }
.list-tag { font-size: 10px; font-family: 'JetBrains Mono', monospace; color: var(--violet); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 3px; }
.list-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.2; color: var(--text); transition: color .2s; }
.list-title a { color: inherit; }
.list-meta { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ─── TIPS GRID ─── */
.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 24px; }
.tip-card { background: var(--bg2); cursor: pointer; transition: background .2s; overflow: hidden; }
.tip-card:hover { background: var(--bg3); }
.tip-thumb { width: 100%; height: 160px; object-fit: cover; display: block; transition: opacity .2s; }
.tip-card:hover .tip-thumb { opacity: .85; }
.tip-body { padding: 14px 16px 16px; }
.tip-icon { font-size: 24px; margin: 16px 16px 8px; }
.tip-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.tip-title a { color: inherit; }
.tip-card:hover .tip-title a { color: var(--cyan); }
.tip-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ─── SIDEBAR WIDGETS ─── */
.widget-area .widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.widget-area .widget-title,
.widget-head {
  padding: 12px 16px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 13px;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
  margin: 0;
}
.widget-head-dot { width: 8px; height: 8px; border-radius: 50%; }
.widget-body { padding: 0; }

/* Trending widget */
.trend-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
}
.trend-item:last-child { border-bottom: none; }
.trend-item:hover { background: var(--bg3); }
.trend-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px; line-height: 1;
  color: var(--text-dim); flex-shrink: 0; width: 24px;
}
.trend-item:hover .trend-num { color: var(--violet); }
.trend-title { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.3; }
.trend-title a { color: inherit; }
.trend-item:hover .trend-title a { color: var(--cyan); }
.trend-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ArgentoFertas widget */
.af-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit; transition: opacity .2s;
}
.af-item:last-of-type { border-bottom: none; }
.af-item:hover { opacity: .8; }
.af-thumb {
  width: 56px; height: 56px; min-width: 56px; min-height: 56px;
  max-width: 56px; max-height: 56px;
  border-radius: 6px; object-fit: cover;
  flex-shrink: 0; background: var(--bg3); display: block;
}
.af-thumb-placeholder {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 6px; background: linear-gradient(135deg, var(--bg3), var(--border2));
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.af-info { flex: 1; min-width: 0; }
.af-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; color: var(--text);
  line-height: 1.3; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.af-meta { font-size: 10px; color: var(--text-muted); }
.af-ver-mas {
  display: block; margin-top: 10px; text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: .5px;
  text-transform: uppercase; color: var(--pink);
  text-decoration: none; transition: opacity .2s;
}
.af-ver-mas:hover { opacity: .75; }
.af-error { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.af-error a { color: var(--pink); }

/* Guide widget */
.guide-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
}
.guide-item:last-child { border-bottom: none; }
.guide-item:hover { background: var(--bg3); }
.guide-icon {
  width: 36px; height: 36px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.guide-title { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.3; }
.guide-title a { color: inherit; }
.guide-item:hover .guide-title a { color: var(--cyan); }
.guide-meta { font-size: 11px; color: var(--text-muted); }

/* Spec table widget */
.spec-row { display: flex; justify-content: space-between; padding: 9px 16px; border-bottom: 1px solid var(--border); font-size: 12px; }
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--text-muted); }
.spec-val { color: var(--text); font-weight: 600; font-family: 'JetBrains Mono', monospace; font-size: 11px; }

/* ─── CHIP ─── */
.chip {
  display: inline-block; padding: 2px 8px; border-radius: 3px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .8px; text-transform: uppercase;
  background: rgba(155,77,255,.2); color: var(--violet);
  border: 1px solid rgba(155,77,255,.3);
  margin-right: 6px; margin-bottom: 6px;
}

/* ─── SINGLE POST ─── */
.single-header { margin-bottom: 24px; }
.single-header .post-cats { margin-bottom: 10px; }
.single-header .post-cats a {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--cyan); letter-spacing: 1px; text-transform: uppercase;
  margin-right: 8px;
}
.single-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 38px; line-height: 1.1;
  color: var(--text); margin-bottom: 12px;
}
.single-header .post-meta { font-size: 13px; color: var(--text-muted); }
.single-header .post-meta span { margin-right: 16px; }
.single-featured-image { border-radius: 8px; overflow: hidden; margin: 0 auto 28px; max-width: 720px; }
.single-featured-image img { width: 100%; height: auto; max-height: 400px; object-fit: cover; }
.entry-content {
  font-size: 16px; line-height: 1.85; color: #c8cfe0;
  background: #0f1219; border-radius: 10px; padding: 28px 32px;
}
.entry-content h2, .entry-content h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  color: var(--text); margin: 24px 0 12px;
}
.entry-content h2 { font-size: 26px; }
.entry-content h3 { font-size: 20px; }
.entry-content p { margin-bottom: 16px; }
.entry-content a { color: var(--cyan); }
.entry-content a:hover { text-decoration: underline; }
.entry-content img { border-radius: 6px; margin: 16px auto; }
.entry-content blockquote {
  border-left: 3px solid var(--violet);
  padding: 12px 20px; background: var(--bg2);
  margin: 20px 0; border-radius: 0 6px 6px 0;
  color: var(--text-muted); font-style: italic;
}
.entry-content code {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  background: var(--bg3); padding: 2px 6px; border-radius: 3px;
  color: var(--cyan);
}

/* ─── PAGINATION ─── */
.pagination {
  display: flex; gap: 8px; margin: 32px 0;
  justify-content: center;
}
.pagination .page-numbers {
  padding: 8px 14px; border-radius: 5px;
  background: var(--bg2); border: 1px solid var(--border2);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; color: var(--text-muted);
  transition: all .2s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--violet); color: #fff; border-color: var(--violet);
}

/* ─── FOOTER ─── */
#colophon {
  background: #030405;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 40px 0 24px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 32px;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 260px; margin-top: 12px; }
.footer-brand .site-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 22px; color: var(--text); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 13px;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--text); margin-bottom: 12px;
}
.footer-col li { margin-bottom: 6px; }
.footer-col a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--bg3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; transition: all .2s;
  color: var(--text-muted);
}
.social-btn:hover { border-color: var(--violet); background: rgba(155,77,255,.1); color: var(--violet); }

/* ─── PLACEHOLDER THUMBS ─── */
.thumb-placeholder {
  background: linear-gradient(135deg, #1a0a2e 0%, #0a1628 50%, #001824 100%);
  width: 100%; display: flex; align-items: center; justify-content: center;
}

/* ─── ANIMACIONES ─── */
.fade-in { animation: fadeUp .5s ease both; }
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.card:nth-child(1) { animation-delay: .0s; }
.card:nth-child(2) { animation-delay: .07s; }
.card:nth-child(3) { animation-delay: .14s; }

/* ─── MOBILE MENU TOGGLE ─── */
.menu-toggle {
  display: none; background: none; border: 1px solid var(--border2);
  border-radius: 5px; color: var(--text-muted); padding: 6px 10px;
  cursor: pointer; font-size: 18px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .site-main { grid-template-columns: 1fr; }
  .widget-area { display: none; }
  .review-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-main { grid-row: auto; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  #site-navigation { display: none; }
  #site-navigation.toggled { display: block; position: fixed; inset: 64px 0 0 0; background: var(--bg2); overflow-y: auto; z-index: 99; }
  #site-navigation.toggled .menu { flex-direction: column; padding: 16px; }
  #site-navigation.toggled .menu-item > a { font-size: 16px; padding: 12px 16px; }
  .menu-toggle { display: block; }
  .header-actions .btn-sub { display: none; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .review-strip { grid-template-columns: 1fr 1fr; }
}
