/* main.css - BoletosTAR - Negro, Blanco y Dorado */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --gold-dark: #aa8c2c;
    --border-radius: 16px;
    --header-height: 70px;
    --footer-height: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
#main-content { padding-bottom: calc(var(--footer-height) + 20px); }

/* HERO */
.hero-fullscreen { width: 100%; height: 100vh; min-height: 600px; max-height: 900px; position: relative; overflow: hidden; background: #000; }
.hero-swiper { width: 100%; height: 100%; }
.hero-slide { position: relative; width: 100%; height: 100%; }
.hero-image-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-bg-image { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); }
.hero-content { position: absolute; bottom: 15%; left: 10%; max-width: 600px; z-index: 10; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-title { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 800; color: var(--gold); margin-bottom: 0.5rem; line-height: 1.2; text-transform: uppercase; }
.hero-meta { display: flex; gap: 20px; margin-bottom: 1.5rem; color: var(--text-light); font-size: 1.1rem; opacity: 0.9; }
.btn-gold { background: var(--gold); color: #000; font-weight: 700; padding: 14px 36px; border-radius: 50px; text-decoration: none; transition: 0.3s; display: inline-block; }
.btn-gold:hover { background: var(--gold-light); transform: scale(1.05); box-shadow: 0 0 20px rgba(212,175,55,0.5); }
.hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.5); opacity: 1; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--gold); }

@media (max-width: 768px) {
    .hero-fullscreen { height: 70vh; min-height: 500px; }
    .hero-content { left: 5%; bottom: 10%; right: 5%; }
    .hero-title { font-size: 2.5rem; }
    .hero-meta { flex-direction: column; gap: 8px; }
}

/* GENERAL */
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 2.2rem; font-weight: 700; color: var(--gold); margin-bottom: 2rem; display: inline-block; position: relative; }
.section-title::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 60%; height: 3px; background: var(--gold); }
.swiper { padding: 10px 0 40px; overflow: visible !important; }
.swiper-slide { height: auto; }

/* CARDS */
.evento-card { background: var(--bg-card); border-radius: var(--border-radius); overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.5); transition: 0.3s; border: 1px solid #333; height: 100%; display: flex; flex-direction: column; }
.evento-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.7); border-color: var(--gold); }
.evento-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
.evento-info { padding: 20px; flex-grow: 1; }
.evento-info h3 { margin: 0 0 10px; font-size: 1.3rem; }
.evento-info h3 a { color: var(--text-light); text-decoration: none; }
.evento-info h3 a:hover { color: var(--gold); }
.fecha, .lugar { color: var(--text-muted); margin: 8px 0; font-size: 0.95rem; }
.lugar a { color: var(--gold); text-decoration: none; }
.precio { font-size: 1.8rem; font-weight: 800; color: var(--gold); margin: 15px 0; }
.moneda { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.btn-comprar { display: block; background: var(--gold); color: #000; text-align: center; padding: 12px; border-radius: 30px; font-weight: 700; text-decoration: none; margin-top: 15px; transition: 0.2s; }
.btn-comprar:hover { background: var(--gold-light); transform: scale(1.02); }

/* CATEGORÍAS */
.categoria-card { height: 200px; border-radius: 20px; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; color: white; text-decoration: none; transition: 0.3s; box-shadow: inset 0 -100px 80px -20px rgba(0,0,0,0.8); }
.categoria-card:hover { transform: scale(1.02); box-shadow: inset 0 -120px 100px -20px #000, 0 0 20px var(--gold); }
.categoria-card h3 { font-size: 1.8rem; margin-bottom: 5px; color: var(--gold); }
.cat-count { font-size: 1rem; opacity: 0.9; }

/* FILTROS */
.filtros-form { display: flex; gap: 15px; flex-wrap: wrap; margin: 30px 0; background: var(--bg-card); padding: 20px; border-radius: 50px; }
.filtros-form select { background: #222; color: white; border: 1px solid #444; padding: 14px 24px; border-radius: 40px; font-size: 1rem; flex: 1; }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); padding: 14px 30px; border-radius: 40px; font-weight: 600; cursor: pointer; }
.btn-outline:hover { background: var(--gold); color: #000; }

/* FOOTER */
.site-footer { background: #000; border-top: 1px solid #222; }
.footer-container { padding: 0; }
.mobile-bottom-nav { display: none; } /* OCULTA LA BARRA MÓVIL FUERA DEL RANGO MÓVIL */
.footer-widgets, .footer-bottom { display: none; }

@media (max-width: 768px) {
    .site-footer { position: fixed; bottom: 0; left: 0; width: 100%; height: var(--footer-height); z-index: 1000; background: rgba(10,10,10,0.95); backdrop-filter: blur(10px); border-top: 1px solid #333; display: flex; align-items: center; justify-content: center; }
    .footer-container { width: 100%; height: 100%; display: flex; align-items: center; justify-content: space-around; padding: 0 10px; }
    .mobile-bottom-nav { display: flex; width: 100%; justify-content: space-around; align-items: center; } /* SE VUELVE A MOSTRAR SOLO EN MÓVIL */
    .mobile-bottom-nav a { color: #888; display: flex; flex-direction: column; align-items: center; text-decoration: none; font-size: 12px; transition: color 0.2s; }
    .mobile-bottom-nav a.active { color: var(--gold); }
    .mobile-bottom-nav svg { width: 24px; height: 24px; margin-bottom: 4px; fill: currentColor; }
}

@media (min-width: 769px) {
    .site-footer { background: #0a0a0a; color: #888; padding: 40px 0 20px; border-top: 1px solid #222; }
    .footer-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
    .footer-widgets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 30px; }
    .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #222; }
}

/* SEARCH OVERLAY */
.search-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.search-overlay.active { display: flex; }
.search-container { width: 90%; max-width: 600px; padding: 20px; }
.search-overlay input { width: 100%; padding: 20px; font-size: 1.5rem; background: transparent; border: none; border-bottom: 2px solid var(--gold); color: white; outline: none; }
.search-results { margin-top: 30px; max-height: 60vh; overflow-y: auto; }
.search-result-item { display: flex; align-items: center; padding: 15px; border-bottom: 1px solid #333; color: white; text-decoration: none; }
.search-result-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; margin-right: 20px; }
.search-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* HEADER */
.site-header { background: rgba(10,10,10,0.95); backdrop-filter: blur(10px); padding: 0 20px; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #222; height: var(--header-height); display: flex; align-items: center; }
.header-container { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1400px; margin: 0 auto; }
.site-logo-text { font-size: 1.8rem; font-weight: 800; text-decoration: none; }
.logo-gold { color: var(--gold); }
.logo-white { color: white; }
.main-navigation ul { display: flex; list-style: none; gap: 30px; }
.main-navigation a { color: white; text-decoration: none; font-weight: 500; }
.main-navigation a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.search-toggle, .mobile-menu-toggle { background: none; border: none; color: white; cursor: pointer; padding: 8px; border-radius: 50%; }
.search-toggle:hover, .mobile-menu-toggle:hover { background: #222; }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; }
.mobile-menu-toggle span { width: 25px; height: 2px; background: white; }

/* MENÚ OVERLAY */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,10,10,0.98); backdrop-filter: blur(15px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-close { position: absolute; top: 25px; right: 25px; background: none; border: none; color: var(--gold); font-size: 3rem; cursor: pointer; z-index: 10; }
.mobile-menu-nav ul { list-style: none; text-align: center; padding: 0; }
.mobile-menu-nav li { margin: 25px 0; }
.mobile-menu-nav a { color: white; font-size: 2rem; font-weight: 600; text-decoration: none; }
.mobile-menu-nav a:hover { color: var(--gold); }

@media (max-width: 768px) {
    .main-navigation { display: none; }
    .mobile-menu-toggle { display: flex; }
}

/* SINGLE EVENTO */
.single-evento { padding: 40px 0; }
.evento-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.evento-hero-img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; border: 2px solid var(--gold); }
.evento-title { font-size: 2.5rem; color: var(--gold); }
.meta-item { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; color: var(--text-muted); }
.meta-item a { color: var(--gold); text-decoration: none; }
.precio-destacado { font-size: 2rem; color: var(--gold); font-weight: bold; }
.btn-comprar-grande { display: inline-block; background: var(--gold); color: #000; font-weight: 700; padding: 16px 40px; border-radius: 50px; text-decoration: none; font-size: 1.3rem; transition: 0.3s; margin-top: 20px; }
.btn-comprar-grande:hover { background: var(--gold-light); transform: scale(1.03); box-shadow: 0 0 20px rgba(212,175,55,0.4); }
.evento-description { background: var(--bg-card); padding: 30px; border-radius: var(--border-radius); margin: 30px 0; }
.evento-mapa iframe { border-radius: var(--border-radius); border: 2px solid var(--gold); }
.tax-list { background: #111; padding: 15px 20px; border-radius: 8px; margin: 10px 0; color: var(--text-muted); }

/* VERIFICACIÓN QR */
.qr-verification-page { padding: 40px 0; min-height: 70vh; }
#qr-reader { max-height: 280px; overflow: hidden; border-radius: var(--border-radius); background: #000; }
#qr-reader video { max-height: 280px; object-fit: cover; }
#camera-error-message { background: #2a1f1f; border-left: 4px solid var(--gold); }
.qr-or { margin: 20px 0; color: var(--gold); text-align: center; }
.manual-input-group { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.manual-input-group input { flex: 1 1 250px; background: #222; border: 1px solid #444; padding: 14px 20px; border-radius: 40px; color: white; font-size: 1rem; }
.btn-primary { background: var(--gold); color: #000; border: none; padding: 14px 30px; border-radius: 40px; font-weight: 700; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); }
.result-box { margin-top: 30px; padding: 20px; background: #1a1a1a; border-radius: var(--border-radius); }
.ticket-valid, .ticket-invalid, .ticket-used-success { padding: 20px; border-radius: 12px; background: #1e2a1e; border-left: 5px solid #2e7d32; }
.ticket-invalid { background: #2a1e1e; border-left-color: #c62828; }
.ticket-used-success { background: #1e2a2a; border-left-color: var(--gold); }
.mark-used-btn { background: var(--gold); color: #000; border: none; padding: 10px 25px; border-radius: 30px; font-weight: 700; margin-top: 15px; cursor: pointer; }

/* MÓVIL: SCROLL NATIVO EN LUGAR DE SWIPER */
@media (max-width: 640px) {
    .categoria-card { height: 140px; }
    .filtros-form { flex-direction: column; }
    .eventos-destacados-swiper .swiper-wrapper,
    .proximos-swiper .swiper-wrapper {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 0 20px !important;
        transform: none !important;
    }
    .eventos-destacados-swiper .swiper-slide,
    .proximos-swiper .swiper-slide {
        flex: 0 0 calc(50% - 7.5px) !important;
        scroll-snap-align: start !important;
        width: auto !important;
        margin-right: 0 !important;
    }
    .eventos-destacados-swiper .swiper-pagination,
    .proximos-swiper .swiper-button-next,
    .proximos-swiper .swiper-button-prev {
        display: none !important;
    }
}

/* =============================================
   MAPA DE ASIENTOS - ESTILOS COMPLETOS
   ============================================= */

/* Contenedor de ancho completo en single */
.seat-map-fullwidth {
    width: 100%;
    background: var(--bg-dark);
    padding: 40px 0;
    margin: 40px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.seat-map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Overlay de mapa de asientos */
.seat-map-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 20px;
}

.seat-map-overlay.active {
    display: flex;
}

.overlay-content {
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.overlay-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 3.5rem;
    cursor: pointer;
    z-index: 3001;
    transition: transform 0.2s;
}

.overlay-close:hover {
    transform: scale(1.1);
    color: var(--gold-light);
}

/* Contenedor principal del mapa */
.bt-seat-map-container {
    width: 100%;
    color: var(--text-light);
}

.bt-seat-map-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bt-seat-map-title {
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0;
}

/* Leyenda */
.bt-seat-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.bt-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.bt-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #444;
}

/* Contenedor SVG */
.bt-seat-map-svg-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #050505;
    border-radius: var(--border-radius);
    padding: 20px 0;
    border: 1px solid #333;
}

.bt-seat-map-svg {
    display: block;
    width: 100%;
    min-width: 600px;
    height: auto;
    margin: 0 auto;
    background: #050505;
}

/* Panel de asientos seleccionados */
.bt-selected-seats {
    margin-top: 25px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--gold);
}

.bt-selected-seats h4 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.bt-selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    max-height: 150px;
    overflow-y: auto;
    padding: 5px;
}

.bt-selected-seat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #222;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid #444;
}

.bt-remove-seat {
    background: none;
    border: none;
    color: #c62828;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s;
}

.bt-remove-seat:hover {
    color: #ff5252;
}

.bt-total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.bt-btn-reserve {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 300px;
}

.bt-btn-reserve:hover {
    background: var(--gold-light);
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Asientos en SVG */
.bt-seat {
    cursor: pointer;
    transition: transform 0.1s, filter 0.1s;
}

.bt-seat:hover {
    transform: scale(1.15);
    filter: brightness(1.3);
}

.bt-seat.selected {
    stroke: #fff !important;
    stroke-width: 3 !important;
}

.bt-seat.occupied {
    cursor: not-allowed;
    opacity: 0.5;
}

.bt-seat.occupied:hover {
    transform: none;
    filter: none;
}

/* Botón para abrir overlay desde cards */
.btn-open-seat-overlay {
    cursor: pointer;
}

/* Ajustes responsivos para el mapa */
@media (max-width: 768px) {
    .seat-map-overlay {
        padding: 10px;
    }
    
    .overlay-content {
        padding: 20px 15px;
        max-height: 95vh;
    }
    
    .overlay-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
    
    .bt-seat-map-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .bt-seat-map-title {
        font-size: 1.5rem;
    }
    
    .bt-seat-map-legend {
        gap: 10px;
    }
    
    .bt-legend-item {
        font-size: 0.8rem;
    }
    
    .bt-seat-map-svg {
        min-width: 500px;
    }
    
    .bt-selected-seats {
        padding: 15px;
    }
    
    .bt-selected-list {
        max-height: 120px;
    }
    
    .bt-selected-seat {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .bt-total-price {
        font-size: 1.3rem;
    }
    
    .bt-btn-reserve {
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .seat-map-fullwidth {
        padding: 20px 0;
    }
    
    .seat-map-container {
        padding: 0 15px;
    }
}

/* En pantallas muy pequeñas, asientos más grandes */
@media (max-width: 480px) {
    .bt-seat-map-svg {
        min-width: 450px;
    }
    
    /* Los asientos se agrandan vía JS (r=9), esto es solo refuerzo visual */
    .bt-selected-seat {
        width: 100%;
        justify-content: space-between;
    }
}

/* Animación de carga */
.bt-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.bt-loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Sin resultados */
.bt-no-map {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    background: var(--bg-card);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
}

/* HEADER */
.site-header {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #222;
    height: var(--header-height);
    display: flex;
    align-items: center;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.site-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
}
.logo-gold { color: var(--gold); }
.logo-white { color: white; }

/* ===== NUEVOS ESTILOS DEL MENÚ PRINCIPAL ===== */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 10px;  /* reducido para que los items se agrupen mejor */
}
.main-navigation a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.main-navigation a:hover,
.main-navigation a:focus {
    background: #1e1e1e;
    color: var(--gold);
}
/* Estilo especial para el elemento activo */
.main-navigation .current-menu-item a,
.main-navigation .current_page_parent a {
    color: var(--gold);
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.search-toggle, .mobile-menu-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
}
.search-toggle:hover, .mobile-menu-toggle:hover { background: #222; }
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
}

@media (max-width: 768px) {
    .main-navigation { display: none; }
    .mobile-menu-toggle { display: flex; }
}

/* MENÚ OVERLAY (MÓVIL) */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-close {
    position: absolute;
    top: 25px; right: 25px;
    background: none; border: none;
    color: var(--gold);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
}
.mobile-menu-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
}
.mobile-menu-nav li { margin: 25px 0; }
.mobile-menu-nav a {
    display: inline-block;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus {
    background: #1e1e1e;
    color: var(--gold);
}
.mobile-menu-nav .current-menu-item a,
.mobile-menu-nav .current_page_parent a {
    color: var(--gold);
    font-weight: 800;
}

/* ===== ABOUT LINK DISCRETO ===== */
.site-branding { position: relative; }
.about-link {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.about-link:hover { opacity: 1; }

/* ===== GRID EXTRAVAGANTE EN MENÚ MÓVIL ===== */
.mobile-widget-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid var(--gold);
    margin-top: 30px;
}
/* Estilo base para todos los ítems (div o a) */
.grid-item,
a.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;   /* quita subrayado en enlaces */
}
a.grid-item:hover,
a.grid-item:focus {
    color: var(--gold);
}
.grid-item i {
    font-size: 2rem;
    color: var(--gold);
}
/* Los enlaces conservan el mismo padding/efecto */
.grid-item-link {
    transition: color 0.2s;
}

/* Redes sociales en línea horizontal */
.grid-item.social-icons {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 25px;
    font-size: 1.8rem;
}
.grid-item.social-icons a {
    color: var(--gold);
    transition: transform 0.2s;
}
.grid-item.social-icons a:hover {
    transform: scale(1.2);
}

/* ===== FOOTER (ESCRITORIO MEJORADO) ===== */
@media (min-width: 769px) {
    .site-footer {
        background: #0a0a0a;
        color: #888;
        padding: 60px 0 20px;
        border-top: 1px solid #222;
    }
    .footer-widgets {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }
    .footer-col h4 {
        color: var(--gold);
        margin-bottom: 15px;
    }
    .footer-col a {
        color: var(--text-muted);
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
        transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }
    .social-links {
        display: flex;
        gap: 15px;
        font-size: 1.5rem;
    }
    .social-links a { color: var(--text-muted); }
    .social-links a:hover { color: var(--gold); }
}

/* Limpio en móvil */
@media (max-width: 768px) {
    .footer-widgets,
    .footer-bottom { display: none !important; }
    .site-footer { background: transparent; border-top: none; padding: 0; }
}