/* Redes sociales en tarjetas de tiendas */
.tienda-redes {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.tienda-redes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #f7f7fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s, box-shadow 0.2s;
}
.tienda-redes a:hover {
    background: #ece9f6;
    box-shadow: 0 4px 16px rgba(124,58,237,0.10);
}
.tienda-redes svg {
    display: block;
}
/* Portada de tienda destacada: cubre todo el contenedor */
.tienda-portada-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    z-index: 0;
}
.evento-card:hover .evento-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0, 242, 254, 0.18), 0 0 20px rgba(255,255,255,0.25);
    transition: color 0.2s, text-shadow 0.2s;
}
/* Tags como columna en la esquina superior derecha sobre la imagen */
.evento-tags-overlay {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    z-index: 3;
    pointer-events: none;
}

.evento-tags-overlay .tag {
    background: linear-gradient(135deg, 
        rgba(15, 15, 35, 0.85) 0%, 
        rgba(25, 25, 50, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(100, 170, 255, 0.15);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
    border: 1px solid rgba(100, 170, 255, 0.25);
    pointer-events: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.evento-tags-overlay .tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.evento-card:hover .evento-tags-overlay .tag::before {
    left: 100%;
}
/* Fecha sobre la imagen en la tarjeta de evento */
.evento-date-overlay {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 2;
    background: linear-gradient(135deg, rgba(6,182,212,0.85) 0%, rgba(6,182,212,0.65) 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(6,182,212,0.18);
    text-shadow: 0 0 8px rgba(0,0,0,0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(6,182,212,0.35);
    pointer-events: none;
}
/* ===========================
   VARIABLES Y RESET
   =========================== */

:root {
    /* Colores principales - Paleta geek moderna */
    --primary-color: #7c3aed;        /* Púrpura vibrante */
    --primary-dark: #5b21b6;
    --secondary-color: #ec4899;      /* Rosa geek */
    --accent-color: #06b6d4;         /* Cyan tech */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    
    /* Neutros */
    --bg-dark: #0f0f1e;
    --bg-darker: #0a0a14;
    --bg-card: #1a1a2e;
    --bg-card-hover: #252540;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b85;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Bordes */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.3);
    
    /* Tipografía */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Press Start 2P', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Espacio para la navbar fija */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===========================
   NAVEGACIÓN
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--gradient-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    overflow: hidden;
    padding: 2rem 1rem 3rem;
    margin-top: -80px; /* Compensar el padding-top del body */
    padding-top: calc(80px + 2rem); /* Navbar height + padding adicional */
}

@media (min-width: 768px) {
    .hero {
        padding-top: 80px;
    }
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) { animation-delay: 1s; }
.floating-element:nth-child(3) { animation-delay: 2s; }
.floating-element:nth-child(4) { animation-delay: 3s; }
.floating-element:nth-child(5) { animation-delay: 4s; }
.floating-element:nth-child(6) { animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-title-sub {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: var(--spacing-md) auto;
    max-width: 600px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: none;
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ===========================
   BOTONES
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.btn-text strong {
    font-size: 1rem;
}

.btn-text small {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-pulse {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(124, 58, 237, 0);
    }
}

.btn-secondary {
    background: var(--bg-card);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline-large {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    gap: 1rem;
}

.btn-outline-large:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-outline-large:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-subtext {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

.btn-white {
    background: white;
    color: var(--bg-dark);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   SECCIONES GENERALES
   =========================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ===========================
   SECCIÓN EVENTOS
   =========================== */

.section-eventos {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.eventos-destacados {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.eventos-destacados .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 50%, #c0c0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Carousel controls */
.eventos-carousel,
.tiendas-carousel {
    position: relative;
    width: 100%; /* Ocupa el 100% del contenedor padre */
    max-width: 100%;
    overflow: hidden;
    margin: 2rem 0;
}

.eventos-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 24px 1.5rem 24px; /* espacio visual desde los bordes del viewport */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .eventos-grid {
        gap: 1.75rem;
        padding: 1rem 40px 1.5rem 40px;
    }
}

@media (min-width: 968px) {
    .eventos-grid {
        gap: 2rem;
        padding: 1rem 60px 1.5rem 60px;
    }
}

.evento-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 0 0 340px; /* Width fijo de 340px */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.evento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.evento-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.evento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evento-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.evento-content {
    position: relative;
    padding: 1.5rem 1.5rem 3.5rem 1.5rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.evento-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #e0e0ff 50%,
        #c0c0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.evento-location {
    display: flex;
    flex-direction: row !important;
    gap: 0.2rem;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.location-venue {
    color: var(--text-primary);
    font-weight: 600;
}

a.location-venue {
    text-decoration: none;
    transition: color 0.2s ease;
}

a.location-venue:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.location-ciudad {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.evento-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
    line-height: 1.5;
    flex: 1;
}

.carrousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(20,20,40,0.95), rgba(40,40,70,0.95));
    color: #fff;
    font-size: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}
.carrousel-btn:hover {
    background: linear-gradient(135deg, rgba(40,40,70,0.98), rgba(60,60,100,0.98));
    transform: translateY(-50%) scale(1.08);
}
.carrousel-prev { left: 20px; }
.carrousel-next { right: 20px; }

/* hide native scrollbar */
.eventos-grid::-webkit-scrollbar { height: 10px; }
.eventos-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 999px; }
.eventos-grid { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.06) transparent; }

.btn-evento-wrapper {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    pointer-events: auto;
}

.btn-evento {
    margin: 0 !important;
    box-shadow: 0 2px 12px rgba(0, 242, 254, 0.12);
}

/* Social buttons on event cards */
.evento-socials {
    position: absolute;
    left: 15px;
    bottom: 15px;
    display: flex;
    gap: 0.6rem;
    z-index: 2;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(15,15,35,0.9) 0%, rgba(30,30,50,0.95) 100%);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5), 0 0 18px rgba(76,175,254,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social-btn svg { width: 18px; height: 18px; color: #fff; }

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.55), 0 0 30px rgba(118,75,162,0.12);
}

.evento-content {
    position: relative;
    padding: 1.5rem 1.5rem 3.5rem 1.5rem;
    min-height: 180px;
}

.evento-date {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.2) 0%, 
        rgba(6, 182, 212, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

.evento-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    margin-top: 0.3rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #e0e0ff 50%,
        #c0c0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.evento-location {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.location-venue {
    color: var(--text-primary);
    font-weight: 600;
}

a.location-venue {
    text-decoration: none;
    transition: color 0.2s ease;
}

a.location-venue:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.location-ciudad {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.evento-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.4) 0%, 
        rgba(236, 72, 153, 0.3) 100%);
    color: #ffffff;
    border-radius: 16px;
    font-weight: 700;
    border: 1.5px solid rgba(236, 72, 153, 0.6);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 15px rgba(236, 72, 153, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 20px rgba(236, 72, 153, 0.5);
}

.btn-evento {
    align-self: center;
    color: #ffffff;
    font-weight: 700;
    margin-top: auto;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.8) 0%, 
        rgba(236, 72, 153, 0.8) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-evento:hover {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 1) 0%, 
        rgba(124, 58, 237, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 30px rgba(236, 72, 153, 0.5);
}

/* ===========================
   SECCIÓN TIENDAS
   =========================== */

.section-tiendas {
    padding: var(--spacing-xl) 0;
    background: var(--bg-darker);
}

.tiendas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tiendas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .tiendas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Tiendas carousel grid override */
.tiendas-carousel .tiendas-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 24px 1.5rem 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: unset;
}

@media (min-width: 640px) {
    .tiendas-carousel .tiendas-grid {
        gap: 1.75rem;
        padding: 1rem 40px 1.5rem 40px;
    }
}

@media (min-width: 968px) {
    .tiendas-carousel .tiendas-grid {
        gap: 2rem;
        padding: 1rem 60px 1.5rem 60px;
    }
}

/* Tienda card dentro del carrusel */
.tiendas-carousel .tienda-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
}

/* Scrollbar styling para tiendas carousel */
.tiendas-carousel .tiendas-grid::-webkit-scrollbar { height: 10px; }
.tiendas-carousel .tiendas-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 999px; }
.tiendas-carousel .tiendas-grid { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.06) transparent; }

.tienda-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tienda-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tienda-image {
    position: relative;
    height: 180px;
}

.tienda-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.tienda-type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.tienda-content {
    padding: 1.5rem;
}

.tienda-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tienda-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tienda-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.tienda-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tienda-categories span {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background: rgba(236, 72, 153, 0.2);
    color: var(--secondary-color);
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.btn-tienda {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-tienda:hover {
    color: var(--accent-color);
}

/* ===========================
   SECCIÓN BENEFICIOS
   =========================== */

.section-beneficios {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.beneficio-card {
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.beneficio-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Mobile Menu */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title-main {
        font-size: 2.2rem;
    }
    
    .hero-title-sub {
        font-size: 1.8rem;
    }
}

/* ===========================
   ANIMACIONES ADICIONALES
   =========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling para navegación */
html {
    scroll-padding-top: 80px;
}

/* ===========================
   EVENTOS PAGE
   =========================== */

.eventos-page .hero-eventos {
    min-height: 320px;
    padding: 3rem 0 2rem;
    background: var(--gradient-primary);
    color: #fff;
    text-align: center;
    margin-top: -80px; /* Compensar el padding-top del body */
    padding-top: calc(80px + 3rem); /* Navbar height + padding adicional */
}

.eventos-page .hero-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    background: none;
    -webkit-text-fill-color: #fff;
    margin-bottom: 0.2em;
}

.eventos-page .hero-title-sub {
    font-size: 1.5rem;
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: #fff;
}

.eventos-page .hero-description {
    color: #e0e0ff;
    margin: 1.5rem auto 2.5rem;
    max-width: 500px;
    line-height: 1.6;
}

.filtros-bar {
    background: var(--bg-card);
    padding: 1.5rem 0.5rem;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    margin: -2.5rem auto 2rem;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.filtros-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-end;
    justify-content: center;
}

.filtro-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 120px;
}

.filtro-categorias {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
}

.filtro-categorias label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.filtros-form button {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.eventos-main {
    margin-bottom: 3rem;
}

.eventos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.eventos-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Perspectiva 3D para el contenedor */
.eventos-grid-3d-container {
    perspective: 1000px;
}

.evento-card {
    background: linear-gradient(145deg, 
        rgba(30, 30, 60, 0.95) 0%, 
        rgba(20, 20, 40, 0.98) 100%);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    min-height: 420px;
    position: relative;
    transform: translateZ(0);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Borde holográfico exterior - DESACTIVADO para evitar scroll horizontal */
.evento-card::before {
    display: none;
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Reflejo holográfico - DESACTIVADO para evitar scroll horizontal */
.evento-card::after {
    display: none;
}

.evento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.6),
                0 0 0 1px rgba(236, 72, 153, 0.3);
    border-color: rgba(236, 72, 153, 0.6);
}

/* Efecto de cada tarjeta */
.evento-card:nth-child(odd) {
    transform: translateZ(0);
}

.evento-card:nth-child(even) {
    transform: translateZ(0);
}

.evento-card:nth-child(3n) {
    transform: translateZ(0);
}
.evento-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    box-shadow: inset 0 -30px 60px rgba(0, 0, 0, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

/* Patrón holográfico dinámico */
.evento-image::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.08) 20px,
            rgba(255, 255, 255, 0.08) 40px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.05) 20px,
            rgba(255, 255, 255, 0.05) 40px
        );
    animation: holographicMove 15s linear infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Brillo superior */
.evento-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.3) 0%,
        transparent 100%);
    border-radius: 22px 22px 0 0;
}

.evento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evento-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
                 0 0 40px rgba(124, 58, 237, 0.8);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.evento-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff 0%, #e0e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(124, 58, 237, 0.8) 50%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
}
.evento-content {
    padding: 1.2rem 1.2rem 1rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.evento-date {
    font-size: 0.95rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.3) 0%, 
        rgba(236, 72, 153, 0.2) 100%);
    color: #e0e0ff;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(124, 58, 237, 0.4);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.3rem;
}
.evento-location {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.location-venue {
    color: var(--text-primary);
    font-weight: 600;
}

a.location-venue {
    text-decoration: none;
    transition: color 0.2s ease;
}

a.location-venue:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.location-ciudad {
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.evento-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.7rem;
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary-color);
    border-radius: var(--radius-lg);
    font-weight: 600;
}
.evento-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
    flex: 1;
}
.btn-evento {
    align-self: center;
    color: #ffffff;
    font-weight: 700;
    margin-top: auto;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.8) 0%, 
        rgba(236, 72, 153, 0.8) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-evento:hover {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 1) 0%, 
        rgba(124, 58, 237, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 30px rgba(236, 72, 153, 0.5);
}
.no-eventos {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    grid-column: 1/-1;
}

/* Calendario */
.calendario-eventos {
    margin: 2rem 0 3rem 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem 1rem 2.5rem 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.calendario-mes-block {
    margin-bottom: 2.5rem;
}
.calendario-mes-block:last-child {
    margin-bottom: 0;
}
.calendario-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    text-align: center;
}
.calendario-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}
.calendario-dia {
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    min-height: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0.5rem 0.5rem 0.2rem 0.2rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.2s;
}
.calendario-dia-evento {
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(6,182,212,0.12);
}
.calendario-dia:focus {
    outline: 2px solid var(--primary-color);
}
.calendario-tooltip {
    position: absolute;
    left: 50%;
    top: 110%;
    transform: translateX(-50%);
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    min-width: 180px;
    z-index: 10;
    display: none;
}
.calendario-dia-evento:hover .calendario-tooltip,
.calendario-dia-evento:focus .calendario-tooltip {
    display: block;
}

/* CTA organizador */
.cta-organizador {
    background: var(--gradient-secondary);
    padding: 3rem 0 2rem 0;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 3rem auto 2rem auto;
    max-width: 900px;
    box-shadow: var(--shadow-md);
}
.cta-organizador-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.cta-organizador-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.cta-organizador-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.cta-organizador-text p {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
@media (max-width: 640px) {
    .filtros-form {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    .eventos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .calendario-grid {
        grid-template-columns: repeat(7, 1fr);
        font-size: 0.95rem;
    }
}

/* ===========================
   SELECT (DROPDOWN) CUSTOM
   =========================== */

.filtros-form select,
.filtros-form input[type="date"] {
    background: var(--bg-darker);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    margin-top: 0.2rem;
}

.filtros-form select:focus,
.filtros-form input[type="date"]:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}

.filtros-form select {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23a0a0b8" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5em;
}

.filtros-form option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Ajuste para date picker en dark mode */
.filtros-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
}

/* ===========================
   CHECKBOX CUSTOM
   =========================== */

.filtros-form input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg-darker);
    border: 2px solid var(--primary-color);
    width: 1.2em;
    height: 1.2em;
    border-radius: 6px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-right: 0.4em;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    outline: none;
    box-shadow: var(--shadow-sm);
}

.filtros-form input[type="checkbox"]:checked {
    background: var(--gradient-primary);
    border-color: var(--accent-color);
}

.filtros-form input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 0.32em;
    top: 0.12em;
    width: 0.35em;
    height: 0.7em;
    border: solid #fff;
    border-width: 0 0.18em 0.18em 0;
    transform: rotate(45deg);
    display: block;
}

.filtros-form input[type="checkbox"]:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}

.filtro-categorias label {
    display: flex;
    align-items: center;
    gap: 0.3em;
    padding: 0.2em 0.7em 0.2em 0.2em;
    border-radius: var(--radius-lg);
    background: rgba(236, 72, 153, 0.08);
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.98em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.filtro-categorias label:hover {
    background: var(--gradient-secondary);
    color: #fff;
}

/* Ocultar cualquier botón de 'Ver detalles' dentro de las tarjetas de la landing */
.eventos-grid .btn-evento,
.eventos-grid .btn-evento-wrapper {
    display: none !important;
}

/* =======================================
   PÁGINA DE TIENDAS - ESTILOS
   ======================================= */

/* Hero de página */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -80px; /* Compensar el padding-top del body */
    padding-top: calc(80px + 6rem); /* Navbar height + padding adicional */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.page-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Sección de tiendas */
.tiendas-section {
    padding: 4rem 0;
}

.tiendas-otras-section {
    background: var(--bg-secondary);
}

.section-header-simple {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-simple h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.section-header-simple p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Lista simple de tiendas */
.tiendas-list-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.tienda-simple {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tienda-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.tienda-simple-icon {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.tienda-simple-icon .tienda-portada-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Filtros de tiendas */
.tiendas-filters {
    background: var(--bg-card);
    padding: 1.5rem 0.5rem;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    margin: -2.5rem auto 2rem;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.tiendas-filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-end;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 140px;
}

.filter-group.filter-categorias {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
    min-width: auto;
}

.filter-group.filter-categorias > span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.categorias-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
}

.categorias-checkboxes label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.4em;
    cursor: pointer;
    margin: 0;
}

.categorias-checkboxes input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg-darker);
    border: 2px solid var(--primary-color);
    width: 1.2em;
    height: 1.2em;
    border-radius: 6px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    outline: none;
    box-shadow: var(--shadow-sm);
    margin: 0;
}

.categorias-checkboxes input[type="checkbox"]:checked {
    background: var(--gradient-primary);
    border-color: var(--accent-color);
}

.categorias-checkboxes input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 0.32em;
    top: 0.12em;
    width: 0.35em;
    height: 0.7em;
    border: solid #fff;
    border-width: 0 0.18em 0.18em 0;
    transform: rotate(45deg);
    display: block;
}

.categorias-checkboxes input[type="checkbox"]:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.filter-select {
    background: var(--bg-darker);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    margin-top: 0.2rem;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23a0a0b8" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5em;
}

.filter-select:hover {
    border-color: var(--accent-color);
}

.filter-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}

.filter-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.btn-reset {
    padding: 0.7rem 1.5rem;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-reset:active {
    transform: translateY(0);
}

.no-results {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-secondary);
}

.no-results p {
    font-size: 1.1rem;
    margin: 0;
}

/* Contador de tiendas */
.tiendas-counter {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.tiendas-counter p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.tiendas-counter strong {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .tiendas-filters {
        padding: 1.5rem 1rem;
    }
    
    .tiendas-filters-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .btn-reset {
        width: 100%;
        margin-left: 0;
    }
}

.tienda-simple-info {
    flex: 1;
}

.tienda-simple-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.3rem;
}

.tienda-simple-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 0.6rem;
}

.tienda-simple-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tipo-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ubicacion-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.btn-simple {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-simple:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .tienda-simple {
        flex-direction: column;
        text-align: center;
    }
    
    .tienda-simple-meta {
        justify-content: center;
    }
    
    .btn-simple {
        width: 100%;
        justify-content: center;
    }
}

/* Ocultar contadores visibles solo en el hero (no afectar los stats de sección) */
#hero-tiendas-count,
#hero-eventos-count {
    display: none !important;
}

/* Quitar los textos pequeños bajo los CTA del hero y compactar el hero */
.hero-cta .btn-text small {
    display: none !important;
}

/* Reducir altura/padding del hero para eliminar espacio en blanco extra */
.hero {
    min-height: auto !important;
    padding-bottom: 1rem !important;
    padding-top: calc(80px + 1.5rem) !important;
}

.hero-cta {
    margin: 1rem 0 !important;
}

/* Si hay un contenedor de stats invisible que genera espacio, asegurarse que no ocupe lugar */
.hero .hero-stats {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ===========================
   VISTA DE EVENTOS - BOTONES DE TOGGLE
   =========================== */
.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 0.3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.btn-view {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-view svg {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.btn-view:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--text-primary);
}

.btn-view:hover svg {
    opacity: 1;
}

.btn-view.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-view.active svg {
    opacity: 1;
}

/* ===========================
   LISTA DE EVENTOS
   =========================== */
.eventos-list-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

.evento-simple {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.evento-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    border-color: var(--primary-color);
}

.evento-simple-icon {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.evento-simple-icon .evento-portada-img,
.evento-simple-icon .evento-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.evento-simple-icon .evento-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.evento-simple-info {
    flex: 1;
}

.evento-simple-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.evento-simple-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0 0 0.8rem;
    line-height: 1.5;
}

.evento-simple-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.fecha-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.venue-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.venue-link {
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.venue-link:hover {
    color: var(--accent-color);
    transform: translateX(2px);
}

.evento-simple-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.tag-simple {
    display: inline-block;
    background: rgba(102, 126, 234, 0.15);
    color: var(--accent-color);
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.evento-redes {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.evento-redes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #f7f7fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s, box-shadow 0.2s;
}

.evento-redes a:hover {
    background: #ece9f6;
    box-shadow: 0 4px 16px rgba(124,58,237,0.10);
}

.evento-redes svg {
    display: block;
}

/* Responsive para vista de lista */
@media (max-width: 768px) {
    .eventos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .view-toggle {
        width: 100%;
    }
    
    .btn-view {
        flex: 1;
        justify-content: center;
    }
    
    .evento-simple {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .evento-simple-icon {
        width: 100px;
        height: 100px;
    }
    
    .evento-simple-meta {
        justify-content: center;
    }
    
    .evento-simple-tags {
        justify-content: center;
    }
    
    .evento-redes {
        justify-content: center;
    }
}

/* ===========================
   MODAL DE EVENTOS DEL DÍA
   =========================== */
.eventos-dia-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.eventos-dia-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.eventos-dia-modal-container {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s ease;
}

.eventos-dia-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.eventos-dia-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: capitalize;
}

.eventos-dia-modal-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.eventos-dia-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.eventos-dia-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.evento-dia-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.evento-dia-item:hover {
    transform: translateX(4px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.evento-dia-item:last-child {
    margin-bottom: 0;
}

.evento-dia-icon {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.evento-dia-icon .evento-portada-img,
.evento-dia-icon .evento-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.evento-dia-icon .evento-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.evento-dia-info {
    flex: 1;
}

.evento-dia-info h4 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.evento-dia-info p {
    margin: 0 0 0.6rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.evento-dia-meta {
    margin-bottom: 0.5rem;
}

.evento-dia-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

/* Badge en días del calendario */
.calendario-badge {
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    z-index: 2;
}

.calendario-dia-evento {
    cursor: pointer;
    position: relative;
}

.calendario-dia-evento:hover {
    background: rgba(102, 126, 234, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive para modal de eventos del día */
@media (max-width: 768px) {
    .eventos-dia-modal-container {
        width: 95%;
        max-height: 85vh;
    }
    
    .eventos-dia-modal-header {
        padding: 1rem;
    }
    
    .eventos-dia-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .eventos-dia-modal-body {
        padding: 1rem;
    }
    
    .evento-dia-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .evento-dia-icon {
        width: 100px;
        height: 100px;
    }
    
    .evento-dia-meta,
    .evento-dia-tags,
    .evento-redes {
        justify-content: center;
    }
}
