/* ====================================================
   ROBERTO GONZÁLEZ — PAGES.CSS
   Styles for all sub-pages + YouTube section
   ==================================================== */

/* ============================================================
   PAGE HERO (banner superior de todas las sub-páginas)
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: blobPulse 6s ease-in-out infinite;
}

.glow-purple { background: radial-gradient(circle, rgba(91,45,163,0.08) 0%, transparent 70%); top: 20%; left: 10%; }
.glow-gold { background: radial-gradient(circle, rgba(184,154,72,0.07) 0%, transparent 70%); bottom: 10%; right: 10%; }

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 24px;
}

.page-breadcrumb {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.page-breadcrumb a { color: var(--gold); text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-breadcrumb span { margin: 0 8px; }

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #efefef;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.page-hero-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.22em;
    font-weight: 400;
    text-transform: uppercase;
}

.page-hero-wave {
    display: none; /* User requested straight hero layout */
}
.page-hero-wave svg { width: 100%; height: 60px; display: block; }

/* ============================================================
   PAGE MAIN LAYOUT
   ============================================================ */
.page-main {
    background: #000;
    padding: 80px 0 100px;
    min-height: 600px;
}

/* ============================================================
   BIOGRAPHY PAGE
   ============================================================ */

/* Intro block */
.bio-intro {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 90px;
}

.bio-portrait {
    position: relative;
}

.bio-portrait-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    border: 1px solid rgba(201,168,76,0.2);
}

.bio-portrait-frame {
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 2px solid rgba(201,168,76,0.3);
    pointer-events: none;
}

.bio-portrait-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gold);
    color: #000;
    border-radius: 6px;
    padding: 12px 18px;
    text-align: center;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 6px 24px rgba(184,154,72,0.3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.bio-badge-year {
    display: block;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.bio-intro-text { padding-top: 8px; }

.bio-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.bio-text {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 16px;
}

.bio-stats-row {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.bio-stat {
    text-align: left;
    padding: 12px 0 12px 16px;
    background: transparent;
    border: none;
    border-left: 2px solid rgba(184,154,72,0.4);
    min-width: 80px;
}

.bio-stat-num {
    display: block;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.02em;
    line-height: 1;
}

.bio-stat-label {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
}

/* Timeline */
.bio-section {
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    padding: 40px 0;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), rgba(168,85,247,0.4), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--purple);
    border: 3px solid rgba(168,85,247,0.4);
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.3s;
}
.timeline-dot-gold { background: var(--gold); border-color: rgba(201,168,76,0.5); box-shadow: 0 0 20px rgba(201,168,76,0.5); }

.timeline-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.4);
    width: calc(50% - 40px);
    text-align: right;
    padding-top: 4px;
}

.timeline-item:nth-child(even) .timeline-year { text-align: left; }

.timeline-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px 24px;
    width: calc(50% - 40px);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.timeline-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(168,85,247,0.3);
    transform: translateY(-3px);
}
.timeline-card-gold { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
.timeline-card-gold:hover { border-color: rgba(201,168,76,0.5); }

.timeline-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; color: var(--text-primary); }
.timeline-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Two-col cards */
.bio-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 80px;
}

.bio-col-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s;
}
.bio-col-card:hover { border-color: rgba(201,168,76,0.25); background: rgba(255,255,255,0.05); }

.bio-col-icon { font-size: 2.5rem; margin-bottom: 16px; }
.bio-col-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 14px; color: var(--text-primary); }
.bio-col-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* Quote */
.bio-quote {
    position: relative;
    text-align: center;
    padding: 60px 40px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, rgba(201,168,76,0.04), rgba(168,85,247,0.04));
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 24px;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.4;
}

.bio-quote blockquote {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 700px;
    margin-inline: auto;
}

.bio-quote cite { color: var(--gold); font-size: 0.9rem; font-style: normal; }

/* Bio CTA */
.bio-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(168,85,247,0.06));
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.07);
}

.bio-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 12px; }
.bio-cta p { color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.bio-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONCERTS PAGE
   ============================================================ */

.filter-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 24px;
}

.filter-label { font-size: 0.7rem; color: rgba(255,255,255,0.3); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.14em; }

.filter-btns { display: flex; gap: 6px; flex-wrap: wrap; }

.filter-btn {
    padding: 6px 16px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.filter-btn:hover { border-color: rgba(184,154,72,0.4); color: rgba(184,154,72,0.9); }
.filter-btn.active { background: rgba(184,154,72,0.12); color: rgba(184,154,72,1); border-color: rgba(184,154,72,0.4); font-weight: 600; }

.event-featured-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
    transition: all 0.3s;
    position: relative;
}
.event-featured-card:hover { border-color: rgba(201,168,76,0.25); }

.event-featured-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    padding: 32px 28px;
    border-right: 1px solid rgba(255,255,255,0.06);
    min-width: 120px;
}
.ef-month { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.18em; font-weight: 600; text-transform: uppercase; }
.ef-day { font-size: 3rem; font-family: 'Playfair Display', serif; font-weight: 900; color: #efefef; line-height: 1; }
.ef-year { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; }

.event-featured-img {
    position: relative;
    width: 280px;
    flex-shrink: 0;
    overflow: hidden;
}
.event-featured-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

.event-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: #000;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-featured-info { padding: 32px; }
.event-featured-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 6px; }
.event-featured-sub { color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-bottom: 24px; }

.event-meta-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.event-meta-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.event-tickets-preview { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.etp-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 10px 16px; text-align: center; }
.etp-item span { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.etp-item strong { font-size: 1rem; color: var(--text-primary); }
.etp-vip { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); }
.etp-vip strong { color: var(--gold); }

.event-featured-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.event-avail-mini { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: pulse 1.5s infinite; flex-shrink: 0; }

/* Events Table */
.events-table { background: rgba(255,255,255,0.02); border-radius: 20px; border: 1px solid rgba(255,255,255,0.07); overflow: hidden; }

.events-table-header {
    display: grid;
    grid-template-columns: 80px 1fr 200px 100px 140px 130px;
    gap: 16px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.35);
}

.event-row {
    display: grid;
    grid-template-columns: 80px 1fr 200px 100px 140px 130px;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    align-items: center;
    transition: background 0.2s;
}
.event-row:last-child { border-bottom: none; }
.event-row:hover { background: rgba(255,255,255,0.03); }

.er-date { display: flex; flex-direction: column; align-items: center; }
.er-month { font-size: 0.6rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.er-day { font-size: 1.4rem; font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1; }

.er-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.er-info p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.er-city { font-size: 0.85rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }

.er-price { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.er-price strong { color: var(--text-primary); }

.info-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 16px;
    padding: 24px;
    margin-top: 48px;
}
.info-box-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-box h4 { font-size: 1rem; margin-bottom: 8px; }
.info-box p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 20px;
}

.gtab {
    padding: 7px 18px;
    border-radius: 3px;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.gtab:hover { border-color: rgba(184,154,72,0.3); color: rgba(184,154,72,0.85); }
.gtab.active { border-color: rgba(184,154,72,0.5); color: rgba(184,154,72,1); background: rgba(184,154,72,0.08); font-weight: 600; }

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 450px;
    gap: 12px;
    margin-bottom: 60px;
}

.gm-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}
.gm-item.gm-large { grid-row: span 2; }
.gm-item.gm-wide { grid-column: span 2; }
.gm-item:hover { transform: scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.6); }

.gm-placeholder {
    width: 100%;
    height: 100%;
    background-position: top !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.4s ease;
}
.gm-item:hover .gm-placeholder { transform: scale(1.05); }

.gm-ph-icon { font-size: 2rem; opacity: 0.4; }
.gm-ph-text { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.gm-ph-sub { font-size: 0.7rem; color: rgba(255,255,255,0.2); }

.gm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}
.gm-item:hover .gm-overlay { opacity: 1; }
.gm-overlay h5 { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.gm-overlay p { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-bottom: 10px; }
.gm-expand {
    align-self: flex-end;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.gm-expand:hover { background: rgba(201,168,76,0.3); border-color: var(--gold); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); }

.lightbox-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lightbox-content {
    width: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.4);
    padding: 40px;
}
.lightbox-placeholder span { font-size: 4rem; display: block; margin-bottom: 16px; }

.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.lightbox-nav:hover { background: rgba(201,168,76,0.3); border-color: var(--gold); }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }

.lightbox-caption {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-align: center;
}

/* ============================================================
   MUSIC PAGE
   ============================================================ */

.featured-album {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px;
    margin-bottom: 80px;
    transition: border-color 0.3s;
}
.featured-album:hover { border-color: rgba(201,168,76,0.2); }

.featured-album-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 12px; }
.featured-album-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.featured-album-meta { display: flex; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-bottom: 28px; flex-wrap: wrap; }

.tracklist { display: flex; flex-direction: column; gap: 4px; }

.track-item {
    display: grid;
    grid-template-columns: 30px 1fr 50px 36px;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.2s;
    cursor: pointer;
}
.track-item:hover { background: rgba(255,255,255,0.06); }
.track-locked { opacity: 0.5; }

.track-num { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: right; }
.track-name { font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.track-duration { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-align: right; }
.track-play {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold); font-size: 0.65rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; opacity: 0;
}
.track-item:hover .track-play { opacity: 1; }
.track-play:hover { background: var(--gold); color: #000; }

.track-play-link {
    font-size: 0.8rem;
    color: var(--gold);
    text-decoration: none;
}
.track-play-link:hover { text-decoration: underline; }

/* ============================================================
   BOLETOS PAGE
   ============================================================ */

.security-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 16px 24px;
    background: rgba(16,185,129,0.05);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 14px;
}

.sb-item {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticket-hero-card {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
    transition: border-color 0.3s;
}
.ticket-hero-card:hover { border-color: rgba(201,168,76,0.2); }

.thc-left {
    display: flex;
    gap: 32px;
    padding: 40px;
    align-items: flex-start;
}

.thc-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 20px 22px;
    text-align: center;
    flex-shrink: 0;
}
.thc-date-block span:first-child {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
}
.thc-date-block span:last-child {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
}

.thc-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; margin-bottom: 8px; }
.thc-venue { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.thc-time { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.thc-avail { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; }

.thc-right {
    background: rgba(255,255,255,0.03);
    border-left: 1px solid rgba(255,255,255,0.07);
    padding: 36px;
}

.ticket-selector h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.ticket-option {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 12px;
    transition: all 0.2s;
    position: relative;
}
.ticket-option:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.03); }
.ticket-option-vip { border-color: rgba(201,168,76,0.2); background: rgba(201,168,76,0.04); }
.ticket-option-vip:hover { border-color: rgba(201,168,76,0.4); }

.ticket-option-info { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.to-type { font-weight: 600; font-size: 0.92rem; display: block; margin-bottom: 3px; }
.to-desc { font-size: 0.77rem; color: rgba(255,255,255,0.4); line-height: 1.4; }
.ticket-option-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--text-primary); white-space: nowrap; }

.ticket-option-qty { display: flex; align-items: center; gap: 16px; }

.qty-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.qty-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold); }

.qty-num { font-size: 1.1rem; font-weight: 600; min-width: 20px; text-align: center; }

.ticket-summary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px 18px;
    margin: 16px 0;
}

.ts-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.55); padding: 5px 0; }
.ts-total { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 10px; margin-top: 5px; font-weight: 700; font-size: 1rem; color: var(--text-primary); }

.btn-full { display: block; width: 100%; text-align: center; box-sizing: border-box; }
.ticket-note { font-size: 0.73rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: 10px; line-height: 1.5; }
.ticket-note a { color: var(--gold); text-decoration: none; }
.ticket-note a:hover { text-decoration: underline; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(201,168,76,0.2); }
.faq-item[open] { border-color: rgba(201,168,76,0.25); }

.faq-item summary {
    padding: 18px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.3rem; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 22px 18px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* Ticket VIP badge on option */
.ticket-option .ticket-vip-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), #b8960c);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Modal variant for boletos page */
.btn-secondary-modal {
    padding: 14px 28px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}
.btn-secondary-modal:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ============================================================
   YOUTUBE SECTION (index.html)
   ============================================================ */

.videos-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, var(--bg-purple) 0%, var(--bg-black) 100%);
    overflow: hidden;
}

.video-featured {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.video-featured-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    padding: 8px;
}
.video-featured-frame iframe {
    border-radius: 8px;
}

.video-featured-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.video-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 14px;
    line-height: 1.3;
}

.video-featured-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 28px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.video-card {
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
    cursor: pointer;
}
.video-card:hover { transform: translateY(-4px); border-color: rgba(184,154,72,0.25); box-shadow: 0 10px 30px rgba(0,0,0,0.4); background: rgba(255,255,255,0.02); }

.video-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0a0a14;
}

.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.video-card:hover .video-card-thumb img { transform: scale(1.07); }

.video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.video-card:hover .video-thumb-overlay { opacity: 1; }

.yt-play-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.video-card:hover .yt-play-btn { background: rgba(255,0,0,0.85); border-color: rgba(255,0,0,0.9); transform: scale(1.05); }

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.72rem;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
}

.video-card-info {
    padding: 14px 16px;
}

.video-card-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-views {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

.videos-cta { text-align: center; }

/* ============================================================
   NAV LOGO AS LINK (hijo pages)
   ============================================================ */
.logo { text-decoration: none; display: flex; align-items: center; gap: 14px; }

/* ============================================================
   ACTIVE NAV BUTTON
   ============================================================ */
.active-nav-btn { box-shadow: 0 0 20px rgba(201,168,76,0.4) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .bio-intro { grid-template-columns: 1fr; }
    .bio-portrait { max-width: 400px; margin: 0 auto; }
    .bio-portrait-img { height: 340px; }
    .bio-portrait-badge { bottom: -12px; right: 20px; }

    .event-featured-card { grid-template-columns: 1fr; }
    .event-featured-img { width: 100%; height: 400px; }

    .timeline::before { left: 24px; }
    .timeline-item { flex-direction: row !important; padding-left: 56px; }
    .timeline-dot { left: 16px; }
    .timeline-year { width: auto; text-align: left !important; min-width: 60px; font-size: 1.2rem; }
    .timeline-card { width: auto; flex: 1; }

    .bio-two-col { grid-template-columns: 1fr; }

    .ticket-hero-card { grid-template-columns: 1fr; }
    .thc-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }

    .video-featured { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }

    .events-table-header { display: none; }
    .event-row { grid-template-columns: 70px 1fr; grid-template-rows: auto auto auto; gap: 8px; padding: 16px; }
    .er-city { grid-column: 2; }
    .er-price { grid-column: 2; }
    .er-status { grid-row: 1; grid-column: 2; text-align: right; }
    .er-action { grid-column: 1/-1; }
}

@media (max-width: 768px) {
    .page-hero { min-height: 260px; }
    .bio-stats-row { gap: 12px; }
    .bio-stat { padding: 12px 16px; }

    .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
    .gm-item.gm-wide { grid-column: span 1; }

    .videos-grid { grid-template-columns: 1fr; }

    .filter-bar { flex-direction: column; align-items: flex-start; }
    .thc-left { flex-direction: column; padding: 24px; }

    .featured-album { flex-direction: column; }
    .featured-album-cover { width: 200px !important; height: 200px !important; margin: 0 auto; }

    .lightbox-prev { left: -12px; }
    .lightbox-next { right: -12px; }
}

@media (max-width: 480px) {
    .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 400px; }
    .gm-item.gm-large { grid-row: span 1; }
    .bio-quote { padding: 40px 20px; }
    .bio-cta { padding: 40px 20px; }
    .bio-cta-btns { flex-direction: column; align-items: center; }
}
