/* === ultimo-pase.css — extraido LITERAL del prototipo ultimo-pase.html ===
   No editar a mano: regenerar desde el prototipo si cambia. */


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

        :root {
            --font-serif: 'Playfair Display', Georgia, serif;
            --font-sans:  'Inter', system-ui, sans-serif;
            --c-bg:       #050505;
            --c-surface:  #0c0c0c;
            --c-card:     #0f0f0f;
            --c-border:   rgba(255,255,255,0.07);
            --c-border-mid: rgba(255,255,255,0.14);
            --c-text:     #f0f0ee;
            --c-muted:    rgba(255,255,255,0.42);
            --c-red:      #7a0000;
            --c-blood:    #7a0000;
            --c-green:    #2ecc71;
            --c-green-dark: #1b8c45;
            --c-green-dim: rgba(46,204,113,0.08);
            --ease:       cubic-bezier(.25,.46,.45,.94);
        }

        body { background: var(--c-bg); color: var(--c-text); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; line-height: 1.5; }
        a { text-decoration: none; color: inherit; }
        img { display: block; }

        /* ─── TICKER ─── */
        .ticker-bar { background: var(--c-blood); color: #fff; display: flex; align-items: center; overflow: hidden; height: 32px; }
        .ticker-label { background: #000; color: #ccc; font-size: 0.58rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 0 18px; height: 100%; display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; gap: 8px; }
        .ticker-label::after { content: ''; width: 5px; height: 5px; background: #a00; border-radius: 50%; animation: blink 1.4s ease infinite; }
        @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
        .ticker-track { flex: 1; overflow: hidden; }
        .ticker-content { display: inline-flex; align-items: center; gap: 60px; white-space: nowrap; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2px; animation: ticker 34s linear infinite; padding-left: 40px; }
        .ticker-content span::before { content: '◆ '; opacity: 0.35; font-size: 0.45rem; }
        @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* ─── HEADER ─── */
        header { position: sticky; top: 0; z-index: 100; background: rgba(0,0,0,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); }
        .header-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; height: 80px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
        .header-left { display: flex; align-items: center; }
        .header-right { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
        .btn-icon { background: none; border: none; cursor: pointer; padding: 9px; display: flex; align-items: center; justify-content: center; opacity: 0.7; transition: opacity 0.2s, background 0.2s; }
        .btn-icon:hover { opacity: 1; background: rgba(255,255,255,0.08); }
        .logo-container { display: flex; justify-content: center; }
        .logo-container img { height: 60px; width: auto; }
        .logo-text { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 900; color: #fff; letter-spacing: 4px; text-transform: uppercase; }

        /* ─── NAV ─── */
        .nav-bar { background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.10); }
        .nav-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; height: 42px; }
        .nav-links { display: flex; align-items: center; list-style: none; }
        .nav-links a { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #6b6b6b; padding: 12px 14px; display: block; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
        .nav-links a:hover, .nav-links a.active { color: #111111; border-bottom-color: #111111; }

        /* ─── SUBSCRIBE BAR ─── */
        .subscribe-bar { background: #f2f2f0; border-bottom: 1px solid rgba(0,0,0,0.10); }
        .subscribe-bar-inner { max-width: 1260px; margin: 0 auto; padding: 9px 24px; display: flex; justify-content: space-between; align-items: center; }
        .btn-subscribe { background: #111111; color: #fff; font-size: 0.67rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 20px; border: none; cursor: pointer; transition: background 0.25s var(--ease); }
        .btn-subscribe:hover { background: var(--c-red); }

        /* ─── CONTAINER ─── */
        .container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }

        /* ─── SECTION HEADER (dark) ─── */
        .section-header { display: flex; align-items: center; gap: 16px; margin: 72px 0 36px 0; }
        .section-header h2 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; color: #fff; }
        .section-header::after { content: ''; flex: 1; height: 1px; background: var(--c-border-mid); }
        .section-header .tag-section { flex-shrink: 0; display: flex; align-items: center; color: var(--c-green); }

        /* ─── HERO PIZARRA ─── */
        .hero-section {
            position: relative;
            overflow: hidden;
            background: #050505;
            padding: 80px 0 90px;
            border-bottom: 1px solid rgba(46,204,113,0.10);
        }

        /* SVG pizarra de fondo */
        .pitch-bg {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 900px; height: 600px;
            opacity: 0.045;
            pointer-events: none;
        }

        .up-eyebrow { text-align: center; font-size: 0.6rem; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: var(--c-green); margin-bottom: 8px; }
        .up-title { font-family: var(--font-serif); font-style: italic; font-size: 3.8rem; color: #fff; text-align: center; margin-bottom: 50px; font-weight: 900; }
        .up-title em { color: var(--c-green); font-style: normal; }

        /* ─── SCOREBOARD ─── */
        .scoreboard { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 44px; }
        .match-card {
            background: #0a0a0a;
            padding: 18px 20px;
            border: 1px solid #181818;
            border-top: 2px solid var(--c-green);
            display: flex; flex-direction: column; gap: 10px;
            transition: border-color 0.2s, background 0.2s;
            cursor: pointer;
        }
        .match-card:hover { background: #0f0f0f; border-top-color: #fff; }
        .match-league { font-size: 0.54rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #3a3a3a; }
        .match-teams { display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 800; color: #ccc; }
        .match-score { display: flex; justify-content: center; align-items: center; gap: 14px; font-size: 1.6rem; font-weight: 900; color: var(--c-green); font-family: var(--font-serif); letter-spacing: -1px; }
        .match-score .sep { color: #2a2a2a; font-size: 1rem; }
        .match-status { font-size: 0.52rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #2a2a2a; text-align: center; }

        /* ─── NEWS GRID (dark) ─── */
        .up-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
        .up-item { background: #080808; border: 1px solid #151515; overflow: hidden; cursor: pointer; transition: border-color 0.25s; position: relative; }
        .up-item:hover { border-color: var(--c-green); }
        .up-item-img-wrap { overflow: hidden; }
        .up-item img { width: 100%; height: 260px; object-fit: cover; opacity: 0.65; transition: opacity 0.3s, transform 0.5s var(--ease); }
        .up-item:hover img { opacity: 0.9; transform: scale(1.04); }
        .up-content { padding: 22px; }
        .up-content h3 { font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.2; margin-top: 6px; color: #f0f0f0; font-weight: 900; }
        .up-tag { font-size: 0.56rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--c-green); }
        .up-meta { font-size: 0.64rem; color: #3a3a3a; margin-top: 10px; }
        .read-more-dark { display: inline-flex; align-items: center; gap: 4px; font-size: 0.64rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--c-green); margin-top: 14px; border-bottom: 1px solid rgba(46,204,113,0.35); padding-bottom: 1px; transition: border-color 0.2s; }
        .read-more-dark:hover { border-color: var(--c-green); }

        /* ─── FORMACIÓN (sección decorada) ─── */
        .formation-section {
            position: relative;
            overflow: hidden;
            padding: 80px 0 60px;
            background: #030303;
            border-top: 1px solid var(--c-border);
            border-bottom: 1px solid var(--c-border);
        }
        .formation-deco {
            position: absolute;
            right: -60px; top: 50%;
            transform: translateY(-50%);
            width: 480px; height: 480px;
            opacity: 0.055;
            pointer-events: none;
        }

        /* ─── MAIN STORY + SIDEBAR ─── */
        .featured-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2px; }
        .featured-card { position: relative; overflow: hidden; height: 460px; cursor: pointer; }
        .featured-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity 0.4s, transform 0.5s var(--ease); }
        .featured-card:hover img { opacity: 0.8; transform: scale(1.03); }
        .featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; }
        .featured-overlay h2 { font-family: var(--font-serif); font-size: 2rem; line-height: 1.1; font-weight: 900; color: #fff; margin-top: 10px; }
        .featured-overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 10px; line-height: 1.6; }

        .story-stack { display: flex; flex-direction: column; gap: 2px; }
        .story-item { background: #0a0a0a; border: 1px solid #151515; padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
        .story-item:hover { border-color: rgba(46,204,113,0.3); background: #0d0d0d; }
        .story-item h4 { font-family: var(--font-serif); font-size: 0.95rem; line-height: 1.25; font-weight: 900; color: #e0e0e0; }
        .story-item .story-meta { font-size: 0.62rem; color: #333; margin-top: 4px; }

        /* ─── AGENDA (dark) ─── */
        .agenda-section {
            position: relative;
            overflow: hidden;
            padding: 0 0 80px;
        }
        .corner-deco {
            position: absolute;
            left: -40px; bottom: -40px;
            width: 360px; height: 360px;
            opacity: 0.05;
            pointer-events: none;
        }
        .agenda-list { display: flex; flex-direction: column; gap: 0; border: 1px solid #181818; }
        .agenda-item { display: grid; grid-template-columns: 130px 1fr 200px 120px; gap: 24px; align-items: center; padding: 20px 24px; border-bottom: 1px solid #141414; transition: background 0.2s; cursor: pointer; }
        .agenda-item:last-child { border-bottom: none; }
        .agenda-item:hover { background: #0c0c0c; }
        .agenda-date { font-size: 0.75rem; font-weight: 800; color: var(--c-green); }
        .agenda-date span { display: block; font-size: 0.6rem; font-weight: 500; color: #333; margin-top: 3px; }
        .agenda-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 900; line-height: 1.2; color: #ddd; }
        .agenda-name p { font-family: var(--font-sans); font-size: 0.7rem; color: #3a3a3a; font-weight: 400; margin-top: 4px; }
        .agenda-location { font-size: 0.73rem; color: #444; }
        .agenda-tag { font-size: 0.52rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border: 1px solid #222; color: #444; width: fit-content; }

        /* ─── TABLAS & FINALES ─── */
        .tables-section { padding: 60px 0 40px; position: relative; }
        .tables-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }

        .stand-card { background: #0a0a0a; border: 1px solid #181818; overflow: hidden; }
        .stand-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid #181818; }
        .stand-head h3 { font-family: var(--font-serif); font-size: 1rem; font-weight: 900; color: #fff; letter-spacing: 0.5px; }
        .stand-head .stand-meta { font-size: 0.54rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #3a3a3a; }
        .stand-head .stand-meta span { color: var(--c-green); }

        .stand-table { width: 100%; border-collapse: collapse; }
        .stand-table th { font-size: 0.5rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #3a3a3a; text-align: center; padding: 12px 6px; border-bottom: 1px solid #181818; background: #050505; }
        .stand-table th.pos, .stand-table th.team { text-align: left; padding-left: 16px; }
        .stand-table th.pts { color: var(--c-green); }
        .stand-table td { font-size: 0.74rem; font-weight: 700; color: #ccc; text-align: center; padding: 11px 6px; border-bottom: 1px solid #141414; font-variant-numeric: tabular-nums; }
        .stand-table td.team { text-align: left; padding-left: 16px; font-weight: 800; color: #e0e0e0; }
        .stand-table td.pts { color: var(--c-green); font-weight: 900; font-size: 0.85rem; font-family: var(--font-serif); }
        .stand-table tr:last-child td { border-bottom: none; }
        .stand-table tr:hover td { background: #0d0d0d; }
        .stand-table td.pos { text-align: left; padding-left: 16px; position: relative; color: #555; }
        .stand-table tr.zone-lib td.pos::before,
        .stand-table tr.zone-sud td.pos::before,
        .stand-table tr.zone-rel td.pos::before {
            content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
        }
        .stand-table tr.zone-lib td.pos::before { background: var(--c-green); }
        .stand-table tr.zone-sud td.pos::before { background: #3498db; }
        .stand-table tr.zone-rel td.pos::before { background: #c0392b; }

        .stand-legend { display: flex; gap: 16px; padding: 14px 24px; border-top: 1px solid #181818; background: #050505; }
        .stand-legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.55rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #555; }
        .stand-legend-dot { width: 8px; height: 8px; border-radius: 50%; }
        .stand-legend-dot.lib { background: var(--c-green); }
        .stand-legend-dot.sud { background: #3498db; }
        .stand-legend-dot.rel { background: #c0392b; }

        /* Finales */
        .finals-card { background: #0a0a0a; border: 1px solid #181818; overflow: hidden; }
        .finals-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid #181818; }
        .finals-head h3 { font-family: var(--font-serif); font-size: 1rem; font-weight: 900; color: #fff; letter-spacing: 0.5px; }
        .finals-head .finals-meta { font-size: 0.54rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--c-green); }

        .final-item { padding: 20px 24px; border-bottom: 1px solid #141414; transition: background 0.2s; cursor: pointer; }
        .final-item:hover { background: #0d0d0d; }
        .final-item:last-child { border-bottom: none; }
        .final-tournament { font-size: 0.55rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--c-green); margin-bottom: 6px; display: block; }
        .final-tournament.uefa { color: #1e88e5; }
        .final-tournament.libertadores { color: #f1c40f; }
        .final-tournament.sudamericana { color: #e67e22; }
        .final-tournament.mundial { color: #9b59b6; }
        .final-match { font-family: var(--font-serif); font-size: 1rem; font-weight: 900; color: #f0f0f0; line-height: 1.2; margin-bottom: 8px; }
        .final-info { display: flex; align-items: center; gap: 14px; font-size: 0.66rem; color: #555; }
        .final-info-date { color: #ccc; font-weight: 800; }
        .final-info .dot { width: 3px; height: 3px; background: #333; border-radius: 50%; }
        .final-venue { font-size: 0.62rem; color: #444; margin-top: 4px; }

        /* ─── AD BANNER (dark) ─── */
        .ad-banner { background: #030303; border-top: 1px solid #181818; border-bottom: 1px solid #181818; padding: 18px 0; }
        .ad-banner-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
        .ad-label { font-size: 0.48rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #282828; }
        .ad-placeholder { width: 100%; max-width: 970px; height: 90px; background: #0a0a0a; border: 1.5px dashed #222; display: flex; align-items: center; justify-content: center; gap: 14px; cursor: pointer; transition: background .2s, border-color .2s; }
        .ad-placeholder:hover { background: #0f0f0f; border-color: var(--c-green); }
        .ad-cta-text { font-size: 0.65rem; font-weight: 800; color: #2a2a2a; letter-spacing: 2.5px; text-transform: uppercase; transition: color .2s; }
        .ad-placeholder:hover .ad-cta-text { color: var(--c-green); }
        .ad-cta-dim { font-size: 0.52rem; color: #222; letter-spacing: 1px; text-transform: uppercase; }

        /* ─── SPONSORS (dark) ─── */
        .sponsors-bar { border-top: 1px solid #141414; padding: 40px 0 44px; background: #030303; }
        .sponsors-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
        .sponsors-label { font-size: 0.54rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: #2a2a2a; white-space: nowrap; }
        .sponsors-header-line { flex: 1; height: 1px; background: #181818; }
        .sponsors-track-wrap { overflow: hidden; position: relative; }
        .sponsors-track-wrap::before, .sponsors-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
        .sponsors-track-wrap::before { left: 0; background: linear-gradient(to right, #030303, transparent); }
        .sponsors-track-wrap::after { right: 0; background: linear-gradient(to left, #030303, transparent); }
        .sponsors-track { display: flex; align-items: center; animation: sponsorScroll 24s linear infinite; width: max-content; }
        .sponsors-track:hover { animation-play-state: paused; }
        .sponsor-item { padding: 0 44px; border-right: 1px solid #181818; display: flex; align-items: center; justify-content: center; height: 56px; flex-shrink: 0; }
        .sponsor-logo { width: 110px; height: 32px; background: #0a0a0a; border: 1px solid #1c1c1c; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 800; color: #2a2a2a; letter-spacing: 2px; text-transform: uppercase; transition: border-color 0.2s, color 0.2s; }
        .sponsor-item:hover .sponsor-logo { border-color: var(--c-green); color: var(--c-green); }
        @keyframes sponsorScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* ─── FOOTER ─── */
        footer { background: #000; color: #fff; padding: 72px 0 32px 0; border-top: 1px solid #141414; }
        .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #1c1c1c; margin-bottom: 32px; }
        .footer-col h4 { font-size: 0.6rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: #555; margin-bottom: 20px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-col ul a { font-size: 0.82rem; color: #777; transition: color 0.2s; }
        .footer-col ul a:hover { color: #fff; }
        .footer-col p { font-size: 0.8rem; color: #555; line-height: 1.7; }
        .footer-logo { font-family: var(--font-serif); font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; display: block; }
        .footer-input { background: #111; border: 1px solid #2a2a2a; color: #fff; padding: 11px 14px; width: 100%; font-size: 0.8rem; margin-bottom: 10px; outline: none; transition: border-color 0.2s; }
        .footer-input:focus { border-color: #555; }
        .footer-input::placeholder { color: #444; }
        .footer-btn { width: 100%; background: #fff; color: #000; border: none; padding: 11px; font-size: 0.7rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: background 0.2s, color 0.2s; }
        .footer-btn:hover { background: var(--c-red); color: #fff; }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.66rem; color: #444; }
        .social-links { display: flex; gap: 12px; }
        .social-links a { width: 30px; height: 30px; border: 1px solid #2a2a2a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; color: #666; transition: border-color 0.2s, color 0.2s; }
        .social-links a:hover { border-color: #666; color: #fff; }

        /* ─── POPUPS ─── */
        .popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
        .popup-overlay.active { opacity: 1; visibility: visible; }
        .popup-modal { background: #0f0f0f url('popup-bg.svg') center / cover no-repeat; max-width: 460px; width: 92%; padding: 52px 48px 44px; position: relative; animation: popupIn .4s var(--ease); overflow: hidden; }
        .popup-modal::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0.62); pointer-events: none; }
        .popup-modal > * { position: relative; z-index: 1; }
        @keyframes popupIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
        .popup-close { position: absolute; top: 14px; right: 18px; z-index: 2; background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: rgba(255,255,255,0.5); transition: color .2s; }
        .popup-close:hover { color: #fff; }
        .popup-eyebrow { font-size: 0.54rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--c-red); margin-bottom: 14px; display: block; }
        .popup-title { font-family: var(--font-serif); font-size: 2rem; font-weight: 900; line-height: 1.05; letter-spacing: -1px; color: #fff; margin-bottom: 12px; }
        .popup-desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 28px; }
        .popup-logo { height: 32px; margin-bottom: 20px; filter: brightness(0) invert(1); }
        .popup-form { display: flex; flex-direction: column; gap: 10px; }
        .popup-input { padding: 13px 14px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.07); color: #fff; font-size: 0.85rem; outline: none; font-family: var(--font-sans); transition: border-color .2s; }
        .popup-input::placeholder { color: rgba(255,255,255,0.35); }
        .popup-input:focus { border-color: rgba(255,255,255,0.6); }
        .popup-btn { background: #fff; color: #0f0f0f; border: none; padding: 14px; font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: var(--font-sans); transition: background .2s; }
        .popup-btn:hover { background: var(--c-red); color: #fff; }
        .popup-fine { font-size: 0.6rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 12px; }

        .adpop-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 9100; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
        .adpop-overlay.active { opacity: 1; visibility: visible; }
        .adpop-modal { background: #fff; max-width: 560px; width: 94%; max-height: 92vh; overflow-y: auto; padding: 44px 48px 40px; position: relative; animation: popupIn .35s ease; }
        .adpop-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #bbb; transition: color .2s; }
        .adpop-close:hover { color: #111; }
        .adpop-logo { height: 28px; margin-bottom: 20px; display: block; filter: brightness(0); }
        .adpop-eyebrow { font-size: 0.52rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: #c0392b; margin-bottom: 10px; display: block; }
        .adpop-title { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 900; line-height: 1.05; color: #111; margin-bottom: 6px; }
        .adpop-subtitle { font-size: 0.78rem; color: #888; margin-bottom: 28px; line-height: 1.5; }
        .adpop-format-box { background: #f8f8f8; border-left: 3px solid #c0392b; padding: 14px 18px; margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; }
        .adpop-format-name { font-size: 0.75rem; font-weight: 800; color: #111; }
        .adpop-format-dim { font-size: 0.6rem; color: #999; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
        .adpop-price { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 900; color: #111; text-align: right; }
        .adpop-price small { display: block; font-family: var(--font-sans); font-size: 0.5rem; font-weight: 600; color: #aaa; letter-spacing: 1.5px; text-transform: uppercase; }
        .adpop-form { display: flex; flex-direction: column; gap: 12px; }
        .adpop-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .adpop-field { display: flex; flex-direction: column; gap: 5px; }
        .adpop-label { font-size: 0.55rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #999; }
        .adpop-input, .adpop-select { padding: 11px 13px; border: 1px solid #e0e0e0; font-size: 0.82rem; font-family: var(--font-sans); outline: none; transition: border-color .2s; background: #fff; color: #111; }
        .adpop-input:focus, .adpop-select:focus { border-color: #111; }
        .adpop-divider { border: none; border-top: 1px solid #eee; margin: 8px 0; }
        .adpop-submit { background: #111; color: #fff; border: none; padding: 15px; font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: var(--font-sans); transition: background .2s; margin-top: 4px; }
        .adpop-submit:hover { background: #c0392b; }
        .adpop-fine { font-size: 0.58rem; color: #bbb; text-align: center; margin-top: 10px; }
        /* ─── DRAWER MENU ─── */
        .menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9500; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
        .menu-overlay.active { opacity: 1; visibility: visible; }
        .menu-drawer { position: fixed; top: 0; left: 0; height: 100vh; width: 340px; max-width: 90vw; background: #0a0a0a; z-index: 9600; transform: translateX(-100%); transition: transform .35s cubic-bezier(.25,.46,.45,.94); display: flex; flex-direction: column; padding: 28px 36px 32px; overflow-y: auto; }
        .menu-drawer.active { transform: translateX(0); }
        .menu-close { background: none; border: none; cursor: pointer; padding: 8px; align-self: flex-end; color: rgba(255,255,255,0.55); transition: color .2s; margin-bottom: 8px; }
        .menu-close:hover { color: #fff; }
        .menu-logo { height: 32px; margin-bottom: 36px; filter: brightness(0) invert(1); }
        .menu-logo-fallback { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 36px; display: block; }
        .menu-eyebrow { font-size: 0.55rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
        .menu-nav { display: flex; flex-direction: column; list-style: none; padding: 0; margin: 0; }
        .menu-nav li { margin: 0; }
        .menu-nav a { display: block; padding: 16px 0; font-family: 'Playfair Display', Georgia, serif; font-size: 1.45rem; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: -0.5px; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color .2s, padding-left .2s; }
        .menu-nav a:hover { color: #c0392b; padding-left: 6px; }
        .menu-nav a.active { color: #c0392b; }
        .menu-footer { margin-top: auto; padding-top: 36px; }
        .menu-footer .menu-meta { font-size: 0.62rem; color: rgba(255,255,255,0.35); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
        .menu-social { display: flex; gap: 10px; }
        .menu-social a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.55); transition: border-color .2s, color .2s; text-decoration: none; }
        .menu-social a:hover { border-color: #fff; color: #fff; }
    
/* ── FIX grid de noticias: forzar grilla en TODOS los anchos ──
   site-global.css convierte .up-grid en flex-carrusel a ≤768px y las tarjetas
   se encogen (flex:0 0 80% no aplica). Esto fuerza grid limpio siempre. */
.up-grid-wrap > .up-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2px !important;
    overflow: visible !important;
}
.up-grid-wrap > .up-grid > .up-item {
    flex: initial !important;
    width: auto !important;
    min-width: 0 !important;
    scroll-snap-align: none !important;
}
@media (max-width: 900px) { .up-grid-wrap > .up-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) { .up-grid-wrap > .up-grid { grid-template-columns: 1fr !important; } }
