
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0f;
            color: #ffffff;
        }
        
        .font-serif {
            font-family: 'Playfair Display', serif;
        }
        
        /* Botones de categoría CON EFECTOS */
        .category-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: #1a1a25;
            border: 1px solid #3a3a4a;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
            border-color: #06b6d4;
        }
        
        .category-btn:hover .category-icon-box {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .category-icon-box {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        
        /* COLORES SÓLIDOS */
        .bg-musica { background: #ec4899; }
        .bg-deportes { background: #22c55e; }
        .bg-teatro { background: #a855f7; }
        .bg-ferias { background: #f59e0b; }
        .bg-conferencias { background: #3b82f6; }
        .bg-turismo { background: #14b8a6; }
        .bg-cine { background: #ef4444; }
        
        /* Color principal */
        .bg-primary24 { background: #06b6d4; }
        .text-primary24 { color: #06b6d4; }
        
        /* Botones con efecto */
        .btn-primary {
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
        }
        
        .btn-secondary {
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            background: #353545;
            border-color: #06b6d4;
        }
        
        /* Tarjetas de eventos CON EFECTOS */
        .event-card {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
            border-color: #06b6d4;
        }
        
        .event-card:hover img {
            transform: scale(1.1);
        }
        
        .event-card img {
            transition: transform 0.5s ease;
        }
        
        .event-card:hover .event-price {
            color: #06b6d4;
        }
        
        .event-price {
            transition: color 0.3s ease;
        }
        
        /* Filtros de categoría */
        .filter-btn {
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover {
            transform: translateY(-2px);
            background: rgba(6, 182, 212, 0.2);
            border-color: #06b6d4;
        }
        
        .filter-btn.active {
            background: #06b6d4;
            border-color: transparent;
        }
        
        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 100;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .modal-overlay.active {
            display: flex;
        }
        
        .modal-content {
            background: #1a1a25;
            border-radius: 20px;
            max-width: 1050px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            background: #ef4444;
            transform: rotate(90deg);
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #12121a;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #06b6d4;
            border-radius: 4px;
        }
        
        .form-input {
            background: #1a1a25;
            border: 1px solid #3a3a4a;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            border-color: #06b6d4;
            box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
            outline: none;
        }
        
        /* Load more button */
        .btn-load {
            transition: all 0.3s ease;
        }
        
        .btn-load:hover {
            transform: translateY(-3px);
            background: #353545;
            border-color: #06b6d4;
        }
        
        /* Social icons */
        .social-icon {
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-3px) scale(1.1);
            background: #06b6d4;
            border-color: #06b6d4;
        }
         /* NOTICIAS */
        .news-card {
            background: #1a1a25; border: 1px solid #3a3a4a; border-radius: 20px; overflow: hidden;
            transition: all 0.3s ease; cursor: pointer;
        }
        .news-card:hover {
            transform: translateY(-8px);
            border-color: #06b6d4;
            box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
        }
        .news-card:hover .news-img {
            transform: scale(1.1);
        }
        .news-img { transition: transform 0.5s ease; }
        .news-card .news-tag {
            transition: all 0.3s ease;
        }
        .news-card:hover .news-tag {
            background: #06b6d4;
        }
         /* FILTROS CON ÍCONOS Y COLORES */
        .filter-btn {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 500;
            border: 2px solid transparent; transition: all 0.3s ease;
            background: #1a1a25; color: #9ca3af; border-color: #3a3a4a;
        }
        .filter-btn svg { width: 16px; height: 16px; transition: all 0.3s ease; }
        
        /* Estado activo para cada filtro */
        .filter-btn.active.filter-todos { background: #06b6d4; border-color: #06b6d4; color: white; }
        .filter-btn.active.filter-musica { background: #ec4899; border-color: #ec4899; color: white !important; }
        .filter-btn.active.filter-deportes { background: #22c55e; border-color: #22c55e; color: white; }
        .filter-btn.active.filter-teatro { background: #a855f7; border-color: #a855f7; color: white; }
        .filter-btn.active.filter-ferias { background: #f59e0b; border-color: #f59e0b; color: white; }
        .filter-btn.active.filter-conferencias { background: #3b82f6; border-color: #3b82f6; color: white; }
        .filter-btn.active.filter-turismo { background: #14b8a6; border-color: #14b8a6; color: white; }
        .filter-btn.active.filter-cine { background: #ef4444; border-color: #ef4444; color: white; }
        
        /* Hover para cada filtro */
        .filter-btn.filter-todos:hover { border-color: #06b6d4; color: #06b6d4; }
        .filter-btn.filter-musica:hover { border-color: #ec4899; color: #ec4899; }
        .filter-btn.filter-deportes:hover { border-color: #22c55e; color: #22c55e; }
        .filter-btn.filter-teatro:hover { border-color: #a855f7; color: #a855f7; }
        .filter-btn.filter-ferias:hover { border-color: #f59e0b; color: #f59e0b; }
        .filter-btn.filter-conferencias:hover { border-color: #3b82f6; color: #3b82f6; }
        .filter-btn.filter-turismo:hover { border-color: #14b8a6; color: #14b8a6; }
        .filter-btn.filter-cine:hover { border-color: #ef4444; color: #ef4444; }
    .modal-evento{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:9999;
}

.modal-contenido{
background:white;
padding:20px;
border-radius:10px;
max-width:400px;
}


.menu-link{
display:flex;
flex-direction:column;
align-items:center;
gap:6px;
color:white;
font-size:14px;
font-weight:500;
transition:0.3s;
position:relative;
}

.menu-icon{
transition:0.3s;
}

.menu-text{
transition:0.3s;
}

/* Animación al pasar el cursor */

.menu-link:hover{
color:#f59e0b;
transform:translateY(-2px);
}

.menu-link:hover .menu-icon{
transform:scale(1.2);
}

/* Línea animada */

.menu-link::after{
content:"";
position:absolute;
bottom:-6px;
width:0%;
height:2px;
background:#f59e0b;
transition:0.3s;
}

.menu-link:hover::after{
width:100%;
}