/* ═══════════════════════════════════════════════════════════════
   AZTECHMETAL MÉXICO — DESIGN SYSTEM v2
   Magazine Editorial Dark Brutal — Optimized UX
   ═══════════════════════════════════════════════════════════════ */

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

/* ─── DESIGN TOKENS ─── */
:root {
    --c-bg: #0A0A0A;
    --c-surface: #111111;
    --c-surface-2: #1A1A1A;
    --c-surface-3: #222222;
    --c-red: #8B0000;
    --c-red-bright: #CC0000;
    --c-red-glow: #FF1A1A;
    --c-blood: #5C0000;
    --c-text: #E8E4E0;
    --c-text-muted: #999;
    --c-text-dim: #555;
    --c-border: rgba(255,255,255,0.06);
    --c-border-hover: rgba(255,255,255,0.12);
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Bebas Neue', sans-serif;
    --section-pad: clamp(2.5rem, 6vw, 5rem);
    --container-max: 1360px;
    --gap: clamp(1.2rem, 4vw, 3.5rem);
    --shadow-hard: 6px 6px 0 rgba(0,0,0,1);
    --shadow-accent: 6px 6px 0 rgba(139,0,0,0.6);
    --ease-out: cubic-bezier(0.22,1,0.36,1);
    --transition: 0.4s var(--ease-out);
}

/* ─── BASE ─── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 70px; }
body {
    font-family: var(--font-body);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-red); }
::selection { background: var(--c-red); color: #fff; }

/* ═══ LOADING SCREEN ═══ */
.loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--c-bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { text-align: center; }
.loader__logo {
    width: 160px; height: auto;
    animation: loadPulse 1.2s ease-in-out infinite;
    margin-bottom: 24px;
}
@keyframes loadPulse { 0%,100%{ opacity: 0.4; transform: scale(0.95); } 50%{ opacity: 1; transform: scale(1); } }
.loader__bar {
    width: 200px; height: 2px;
    background: var(--c-surface-2);
    overflow: hidden;
}
.loader__progress {
    height: 100%; width: 0;
    background: var(--c-red-bright);
    animation: loadBar 1.5s var(--ease-out) forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* ═══ TAGS ═══ */
.tag {
    display: inline-block; font-family: var(--font-accent);
    font-size: 0.7rem; letter-spacing: 0.12em;
    padding: 3px 10px; text-transform: uppercase;
}
.tag--red { background: var(--c-red); color: #fff; }
.tag--outline { background: transparent; border: 1px solid var(--c-border-hover); color: var(--c-text-muted); }
.text--accent { color: var(--c-red-bright); }

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.1em;
    padding: 12px 24px; border: none; cursor: pointer;
    transition: var(--transition); text-transform: uppercase;
}
.btn--primary { background: var(--c-red); color: #fff; box-shadow: var(--shadow-hard); }
.btn--primary:hover { background: var(--c-red-bright); transform: translate(-2px,-2px); box-shadow: var(--shadow-accent); }
.btn--ghost { background: transparent; color: var(--c-text); border: 1px solid var(--c-border-hover); }
.btn--ghost:hover { border-color: var(--c-red); color: var(--c-red-bright); }

/* ═══ NAVIGATION ═══ */
.nav-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.4s ease;
}
.nav-header.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--c-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-header.scrolled .nav-logo img { height: 36px; }
.nav-header.scrolled .nav-container { height: 56px; }

.nav-container {
    max-width: var(--container-max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 var(--gap); height: 68px;
    transition: height 0.4s ease;
}
.nav-logo img { height: 42px; width: auto; transition: var(--transition); }
.nav-logo:hover img { filter: brightness(1.3) drop-shadow(0 0 8px rgba(139,0,0,0.5)); }

.nav-links { display: flex; gap: 0; }
.nav-link {
    font-family: var(--font-display); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 22px 14px; position: relative;
    color: var(--c-text-muted); transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute;
    bottom: 0; left: 14px; right: 14px; height: 2px;
    background: var(--c-red); transform: scaleX(0);
    transform-origin: right; transition: transform 0.4s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--c-text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link--accent { color: var(--c-red-bright) !important; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-search-btn, .nav-menu-btn {
    background: none; border: 1px solid var(--c-border); color: var(--c-text-muted);
    width: 38px; height: 38px; display: flex; align-items: center;
    justify-content: center; cursor: pointer; transition: var(--transition);
}
.nav-search-btn:hover, .nav-menu-btn:hover { border-color: var(--c-red); color: var(--c-red-bright); }
.nav-menu-btn { display: none; flex-direction: column; gap: 5px; }
.nav-menu-btn span { width: 18px; height: 2px; background: currentColor; transition: var(--transition); }
.nav-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.search-overlay {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.98); padding: 20px var(--gap);
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.search-overlay.active { transform: translateY(0); opacity: 1; visibility: visible; }
.search-form { max-width: 600px; margin: 0 auto; display: flex; }
.search-input {
    flex: 1; background: var(--c-surface); border: 1px solid var(--c-border);
    border-right: none; color: var(--c-text); font-family: var(--font-body);
    font-size: 1rem; padding: 12px 16px; outline: none;
}
.search-input:focus { border-color: var(--c-red); }
.search-input::placeholder { color: var(--c-text-dim); }
.search-submit {
    background: var(--c-red); border: 1px solid var(--c-red);
    color: #fff; padding: 12px 16px; cursor: pointer; transition: var(--transition);
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    min-height: 100vh; /* Fallback */
    min-height: 100dvh;
    display: flex; flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    transform: scale(1.03); animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { 0%{ transform: scale(1.03); } 100%{ transform: scale(1.08); } }
.hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10,10,10,0.70) 0%,    /* top - oscuro para legibilidad del logo */
            rgba(10,10,10,0.15) 45%,   /* centro - deja ver la foto */
            rgba(10,10,10,0.85) 80%,   /* bottom - oscuro para el texto */
            var(--c-bg) 100%
        );
}

/* ZONA SUPERIOR: LOGO */
.hero__logo-zone {
    position: relative; z-index: 2;
    width: 100%;
    padding: calc(68px + clamp(20px, 5vh, 50px)) var(--gap) 0;
    display: flex; justify-content: center; align-items: center;
    animation: scaleIn 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.2s both;
}
.hero__big-logo {
    width: clamp(280px, 50vw, 700px);
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(204,0,0,0.5)) drop-shadow(0 0 80px rgba(139,0,0,0.3));
}
@keyframes scaleIn { 0%{ transform: scale(0.85); opacity: 0; } 100%{ transform: scale(1); opacity: 1; } }

/* ZONA INFERIOR: TEXTO */
.hero__text-zone {
    position: relative; z-index: 2;
    width: 100%; max-width: var(--container-max);
    padding: 0 var(--gap) clamp(32px, 6vh, 80px);
    display: flex; flex-direction: column; align-items: flex-start;
    animation: fadeInUp 0.9s var(--ease-out) 0.5s both;
}
.hero__title {
    font-family: var(--font-display); font-weight: 700;
    line-height: 0.88; margin-bottom: 16px;
}
.hero__title-line {
    display: block; font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -0.03em; text-transform: uppercase;
}
.hero__title-line--accent {
    color: var(--c-red-bright);
    font-size: clamp(3.8rem, 10vw, 9rem);
    text-shadow: 0 0 60px rgba(204,0,0,0.5);
}
.hero__desc {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--c-text-muted); max-width: 560px;
    margin-bottom: 28px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
    position: absolute; right: var(--gap); bottom: 2.5rem;
    z-index: 2; display: flex; flex-direction: column; align-items: center;
}
.hero__scroll-line {
    width: 1px; height: 50px; background: var(--c-border);
    position: relative; overflow: hidden;
}
.hero__scroll-line::after {
    content: ''; position: absolute; top: -100%; width: 100%; height: 50%;
    background: var(--c-red); animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{ top: -50%; } 100%{ top: 150%; } }

/* ═══ TICKER ═══ */
.ticker {
    background: var(--c-red); overflow: hidden; white-space: nowrap;
    position: relative; z-index: 10; display: flex; align-items: center;
}
.ticker__label {
    flex-shrink: 0; padding: 8px 16px;
    font-family: var(--font-accent); font-size: 0.75rem;
    letter-spacing: 0.15em; background: var(--c-blood);
    color: #fff; font-weight: 700;
}
.ticker__track { display: inline-flex; animation: ticker 50s linear infinite; }
.ticker__item {
    font-family: var(--font-display); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 8px 20px; color: #fff;
}
.ticker__sep { color: rgba(255,255,255,0.3); padding: 8px 0; }
@keyframes ticker { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

/* ═══ SECTION HEADERS ═══ */
.section {
    padding: var(--section-pad) var(--gap);
    max-width: var(--container-max); margin: 0 auto; position: relative; z-index: 2;
}
.section--dark {
    max-width: 100%; background: var(--c-surface);
    border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
    padding: var(--section-pad) 0;
}
.section--dark > * { max-width: var(--container-max); margin-left: auto; margin-right: auto; padding-left: var(--gap); padding-right: var(--gap); }

/* PARALLAX SECTIONS */
.section-wrapper--parallax {
    position: relative;
    padding: var(--section-pad) 0;
    margin: var(--section-pad) 0;
    border-top: 2px solid var(--c-red); border-bottom: 1px solid var(--c-border);
    overflow: hidden;
}
.section-wrapper--parallax .parallax-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center; background-attachment: fixed;
    transform: scale(1.1);
}
.section-wrapper--parallax .overlay {
    position: absolute; inset: 0; z-index: 1;
    background: rgba(10,10,10,0.85); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.section-wrapper--parallax .section { margin: 0 auto; padding-top: 0; padding-bottom: 0; }

.section__header {
    display: flex; align-items: flex-end; gap: 20px;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    padding-bottom: 16px; border-bottom: 1px solid var(--c-border);
}
.section__number {
    font-family: var(--font-accent); font-size: 0.8rem;
    letter-spacing: 0.1em; color: var(--c-red-bright);
}
.section__title-group { flex: 1; }
.section__title {
    font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.section__subtitle { font-size: 0.8rem; color: var(--c-text-dim); margin-top: 4px; }
.section__more {
    font-family: var(--font-accent); font-size: 0.75rem;
    letter-spacing: 0.15em; color: var(--c-red-bright);
    flex-shrink: 0; transition: var(--transition);
}
.section__more:hover { color: var(--c-red-glow); }
.section__header--light .section__title,
.section__header--light .section__subtitle { color: var(--c-text); }

/* ═══ SCROLL REVEAL ═══ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ SEC 1: NEWS CAROUSEL ═══ */
.news-carousel {
    display: flex; gap: var(--gap); overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 24px; scrollbar-width: thin; scrollbar-color: var(--c-red) var(--c-surface);
    animation: fadeInUp 0.7s var(--ease-out) 0.3s both;
}
.news-carousel::-webkit-scrollbar { height: 8px; }
.news-carousel::-webkit-scrollbar-track { background: var(--c-surface); }
.news-carousel::-webkit-scrollbar-thumb { background: var(--c-red); border-radius: 4px; }

.news-featured-card {
    flex: 0 0 calc(100% - 40px);
    scroll-snap-align: center;
    background: var(--c-surface); border: 1px solid var(--c-border);
    overflow: hidden; transition: var(--transition);
    /* Animación directa sin depender de JS */
    opacity: 1 !important;
    transform: none !important;
}
.news-featured-card:hover { border-color: var(--c-border-hover); }
.news-featured-card a { display: grid; grid-template-columns: 1fr 1fr; height: 100%; }
.news-featured-card__img { position: relative; min-height: 280px; overflow: hidden; }
.news-featured-card__img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); transition: all 0.6s; }
.news-featured-card:hover .news-featured-card__img img { filter: saturate(0.9); transform: scale(1.03); }
.news-featured-card__gradient { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 40%, rgba(10,10,10,0.95) 100%); }
.news-featured-card__body { padding: clamp(20px, 4vw, 40px); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.news-featured-card__body h3 { font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 600; text-transform: uppercase; line-height: 1.2; }
.news-featured-card__body p.excerpt {
    font-size: 0.95rem; color: var(--c-text-muted); line-height: 1.6;
    border-left: 3px solid var(--c-red); padding-left: 16px; font-style: normal;
}
.news-featured-card__meta { font-size: 0.8rem; color: var(--c-text-dim); display: flex; gap: 16px; margin-top: auto; }
.news-featured-card__meta span { color: var(--c-red-bright); }

@media (max-width: 900px) {
    .news-featured-card a { grid-template-columns: 1fr; }
    .news-featured-card__gradient { background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.95) 100%); }
    .news-featured-card { flex: 0 0 100%; }
}

/* ═══ SEC 2: MEDIA GRID (Reviews + Interview) ═══ */
.media-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
.review-card {
    background: var(--c-surface); border: 1px solid var(--c-border);
    overflow: hidden; transition: var(--transition);
}
.review-card:hover { border-color: var(--c-border-hover); transform: translate(-2px,-2px); box-shadow: var(--shadow-accent); }
.review-card a { display: block; }
.review-card__cover { position: relative; aspect-ratio: 1; overflow: hidden; }
.review-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; filter: saturate(0.7); }
.review-card:hover .review-card__cover img { transform: scale(1.06); filter: saturate(0.9); }
.review-card__rating {
    position: absolute; bottom: 8px; right: 8px;
    background: var(--c-red); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: 1rem;
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}
.review-card__info { padding: 14px; }
.review-card__info h3 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.review-card__info p { font-size: 0.75rem; color: var(--c-text-dim); }
.review-card__stars { color: var(--c-red-bright); font-size: 0.8rem; margin-top: 6px; }

.interview-featured {
    grid-column: 1 / -1; background: var(--c-surface); border: 1px solid var(--c-border);
    overflow: hidden; transition: var(--transition);
}
.interview-featured:hover { border-color: var(--c-border-hover); }
.interview-featured a { display: grid; grid-template-columns: 1fr 1.2fr; }
.interview-featured__img { position: relative; min-height: 240px; overflow: hidden; }
.interview-featured__img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); transition: all 0.6s; }
.interview-featured:hover .interview-featured__img img { filter: saturate(0.9); transform: scale(1.03); }
.interview-featured__gradient {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 50%, rgba(17,17,17,0.9) 100%);
}
.interview-featured__body {
    padding: 28px; display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.interview-featured__body h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; text-transform: uppercase; line-height: 1.3; }
.interview-featured__body blockquote {
    font-style: italic; color: var(--c-text-muted); font-size: 0.9rem;
    line-height: 1.6; border-left: 3px solid var(--c-red); padding-left: 16px;
}
.interview-featured__meta { font-size: 0.75rem; color: var(--c-text-dim); display: flex; gap: 16px; }
.interview-featured__meta span { color: var(--c-red-bright); }

/* ═══ SEC 3: ESCENA MX + TOURS ═══ */
.escena-tours-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--gap) * 2);
}

.bands-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); }
.band-chip {
    display: flex; align-items: center; gap: 14px;
    padding: 14px; background: var(--c-surface-2);
    border: 1px solid var(--c-border); transition: var(--transition);
}
.band-chip:hover { border-color: var(--c-red); transform: translateX(4px); }
.band-chip img { width: 56px; height: 56px; object-fit: cover; flex-shrink: 0; filter: saturate(0.6); }
.band-chip:hover img { filter: saturate(1); }
.band-chip h3 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; }
.band-chip span { font-size: 0.75rem; color: var(--c-text-dim); }

.tours-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: var(--gap); margin-top: 20px; }
.tour-row {
    display: flex; align-items: center; gap: 16px;
    padding: 24px 20px; border: 1px solid var(--c-border);
    background: var(--c-surface-2);
    transition: var(--transition);
}
.tour-row:hover { border-color: var(--c-red); transform: translateY(-3px); }

.tour-row__date { text-align: center; flex-shrink: 0; width: 50px; }
.tour-row__day { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--c-red-bright); line-height: 1; }
.tour-row__month { display: block; font-family: var(--font-accent); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--c-text-dim); }
.tour-row__info { flex: 1; }
.tour-row__info h3 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }
.tour-row__info p { font-size: 0.75rem; color: var(--c-text-dim); }
.tour-row__badge {
    flex-shrink: 0; font-family: var(--font-accent);
    font-size: 0.65rem; letter-spacing: 0.1em; padding: 4px 10px;
}
.tour-row__badge--live { background: var(--c-red); color: #fff; }
.tour-row__badge--low { background: rgba(255,165,0,0.2); color: #FFA500; border: 1px solid rgba(255,165,0,0.3); }
.tour-row__badge--soon { background: var(--c-surface-3); color: var(--c-text-dim); border: 1px solid var(--c-border); }

/* ═══ SEC 4: ARTICLES ═══ */
.articles-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--gap); }
.article-card {
    background: var(--c-surface); border: 1px solid var(--c-border);
    overflow: hidden; transition: var(--transition);
}
.article-card:hover { border-color: var(--c-border-hover); transform: translate(-2px,-2px); box-shadow: var(--shadow-accent); }
.article-card a { display: flex; flex-direction: column; height: 100%; }
.article-card__img { position: relative; overflow: hidden; }
.article-card--main .article-card__img { height: 220px; }
.article-card:not(.article-card--main) .article-card__img { height: 160px; }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; filter: saturate(0.7); }
.article-card:hover .article-card__img img { transform: scale(1.04); filter: saturate(0.9); }
.article-card__gradient { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.8) 100%); }
.article-card__time {
    position: absolute; top: 10px; right: 10px;
    font-family: var(--font-accent); font-size: 0.65rem;
    padding: 3px 8px; background: rgba(10,10,10,0.8);
    color: var(--c-text-muted); letter-spacing: 0.1em;
}
.article-card__body { padding: 16px; flex: 1; }
.article-card__body .tag { margin-bottom: 8px; }
.article-card__body h3 {
    font-family: var(--font-display); font-size: 0.9rem;
    font-weight: 600; text-transform: uppercase; line-height: 1.3;
}
.article-card--main .article-card__body h3 { font-size: 1.1rem; }
.article-card__body p { font-size: 0.8rem; color: var(--c-text-muted); line-height: 1.5; margin-top: 8px; }

/* ═══ NEWSLETTER ═══ */
.section--newsletter {
    max-width: 100%;
    background: linear-gradient(135deg, var(--c-blood) 0%, var(--c-red) 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.newsletter__inner {
    max-width: var(--container-max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.newsletter__title {
    font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700; text-transform: uppercase;
}
.newsletter__desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.newsletter__form { flex: 1; min-width: 300px; }
.newsletter__input-group { display: flex; }
.newsletter__input {
    flex: 1; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.15);
    border-right: none; color: #fff; font-family: var(--font-body);
    font-size: 0.9rem; padding: 12px 16px; outline: none;
}
.newsletter__input:focus { border-color: rgba(255,255,255,0.4); }
.newsletter__input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter__btn {
    background: var(--c-bg) !important; color: var(--c-red-bright) !important;
    box-shadow: none !important; white-space: nowrap;
}
.newsletter__btn:hover { background: #000 !important; }
.newsletter__note { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ═══ RSS LIVE FEED ═══ */
.rss-feed { margin-top: var(--gap); }
.rss-feed__header {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 0; border-top: 1px solid var(--c-border);
    font-family: var(--font-accent); font-size: 0.7rem;
    letter-spacing: 0.15em; color: var(--c-text-muted);
}
.rss-feed__live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--c-red-bright);
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%,100%{ opacity: 1; box-shadow: 0 0 0 0 rgba(204,0,0,0.5); }
    50%{ opacity: 0.6; box-shadow: 0 0 0 6px rgba(204,0,0,0); }
}
.rss-feed__source { margin-left: auto; color: var(--c-text-dim); font-size: 0.6rem; }
.rss-feed__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap);
}
.rss-feed__grid:empty::after {
    content: 'Cargando noticias...';
    grid-column: 1 / -1; text-align: center;
    padding: 40px; color: var(--c-text-dim);
    font-family: var(--font-accent); letter-spacing: 0.1em;
}

/* RSS Card */
.rss-card {
    background: var(--c-surface-2); border: 1px solid var(--c-border);
    overflow: hidden; transition: var(--transition);
}
.rss-card:hover { border-color: var(--c-border-hover); transform: translateY(-2px); }
.rss-card a { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.rss-card__img { height: 120px; overflow: hidden; background: var(--c-surface-3); }
.rss-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: saturate(0.6); }
.rss-card:hover .rss-card__img img { transform: scale(1.05); filter: saturate(0.8); }
.rss-card__body { padding: 12px; flex: 1; display: flex; flex-direction: column; }
.rss-card__body h4 {
    font-family: var(--font-display); font-size: 0.75rem;
    font-weight: 500; text-transform: uppercase; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: 8px;
}
.rss-card__meta {
    margin-top: auto;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.65rem; color: var(--c-text-dim);
}
.rss-card__source {
    font-family: var(--font-accent); letter-spacing: 0.08em;
    color: var(--c-red-bright); font-size: 0.6rem;
}

/* ═══ FACEBOOK SECTION ═══ */
.section--facebook { max-width: var(--container-max); }
.fb-embed-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--gap) * 2);
    align-items: center;
}
.fb-embed-container {
    background: var(--c-surface); border: 1px solid var(--c-border);
    padding: 16px; min-height: 400px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.fb-embed-container .fb-page { width: 100%; }
.fb-cta { display: flex; flex-direction: column; }
.fb-cta__stats { display: flex; gap: 32px; margin-bottom: 24px; }
.fb-cta__stat { text-align: center; }
.fb-cta__num {
    display: block; font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 700; color: var(--c-red-bright); line-height: 1;
}
.fb-cta__label {
    font-family: var(--font-accent); font-size: 0.7rem;
    letter-spacing: 0.15em; color: var(--c-text-dim); margin-top: 4px;
}
.fb-cta__title {
    font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 600; text-transform: uppercase; line-height: 1.3;
    margin-bottom: 12px;
}
.fb-cta__desc { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 24px; }

/* ═══ FOOTER ═══ */
.footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    padding: var(--section-pad) var(--gap) 24px;
}
.footer__top {
    max-width: var(--container-max); margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
    padding-bottom: 40px; border-bottom: 1px solid var(--c-border);
}
.footer__logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer__tagline { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.6; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social-link {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--c-border); color: var(--c-text-muted);
    transition: var(--transition);
}
.footer__social-link:hover { border-color: var(--c-red); color: var(--c-red-bright); }

.footer__nav { display: flex; gap: 60px; }
.footer__col-title {
    font-family: var(--font-accent); font-size: 0.8rem;
    letter-spacing: 0.15em; color: var(--c-red-bright); margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul a { font-size: 0.85rem; color: var(--c-text-muted); transition: var(--transition); }
.footer__col ul a:hover { color: var(--c-text); }

.footer__bottom {
    max-width: var(--container-max); margin: 24px auto 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.75rem; color: var(--c-text-dim);
}
.footer__credit { color: var(--c-red-bright); }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .news-layout { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: repeat(3, 1fr); }
    .escena-tours-layout { grid-template-columns: 1fr; gap: var(--gap); }
    .video-grid { grid-template-columns: 1fr 1fr; }
    .articles-grid { grid-template-columns: 1fr 1fr; }
    .article-card--main { grid-column: 1 / -1; }
    .rss-feed__grid { grid-template-columns: repeat(3, 1fr); }
    .fb-embed-layout { grid-template-columns: 1fr; gap: var(--gap); }
    .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-menu-btn { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--c-border);
    }
    .nav-link { padding: 16px var(--gap); }

    .hero { min-height: 75vh; }
    .hero__title-line { font-size: clamp(2.5rem, 12vw, 4rem); }
    .hero__title-line--accent { font-size: clamp(3rem, 14vw, 5rem); }
    .hero__scroll { display: none; }

    .media-grid { grid-template-columns: 1fr 1fr; }
    .interview-featured a { grid-template-columns: 1fr; }
    .interview-featured__img { min-height: 180px; }
    .interview-featured__gradient { background: linear-gradient(180deg, transparent 40%, rgba(17,17,17,0.95) 100%); }

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

    .newsletter__inner { flex-direction: column; text-align: center; }
    .newsletter__form { min-width: 0; width: 100%; }

    .footer__nav { flex-direction: column; gap: 24px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero { min-height: 70vh; padding-bottom: 2rem; }
    .media-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .rss-feed__grid { grid-template-columns: 1fr; }
    .news-card img { width: 70px; height: 50px; }
    .newsletter__input-group { flex-direction: column; }
    .newsletter__input { border-right: 1px solid rgba(255,255,255,0.15); }
    .newsletter__btn { width: 100%; justify-content: center; }
}
