/**
 * Eventos Busqueda - Estilos CSS para página de búsqueda de eventos
 * Colores del sistema: #3bf357 (verde), #fb1156 (rojo), #cc07f7 (morado), #0F1014 (fondo)
 */

/* ============================
   CONTENEDOR PRINCIPAL
   ============================ */
.container-eventos {
    background-color: #0F1014;
    min-height: 100vh;
    padding-bottom: 50px;
}

/* ============================
   HEADER DE BÚSQUEDA
   ============================ */
.busqueda-header-section {
    background: linear-gradient(135deg, #0F1014 0%, #1a1a1f 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.titulo-seccion {
    font-family: 'Anton', sans-serif;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitulo-seccion {
    font-family: 'Montserrat', sans-serif;
    color: #696969;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Input de búsqueda principal */
.busqueda-principal .input-group {
    background-color: #1d1d1f;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.busqueda-principal .input-group:focus-within {
    border-color: #fb1156;
    box-shadow: 0 0 15px rgba(251, 17, 86, 0.3);
}

.busqueda-principal .input-group-text {
    border: none;
    background-color: transparent;
    color: #696969;
    padding-left: 20px;
}

.busqueda-principal .form-control {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding-left: 10px;
}

.busqueda-principal .form-control:focus {
    background-color: transparent;
    box-shadow: none;
    color: #ffffff;
}

.busqueda-principal .form-control::placeholder {
    color: #696969;
    font-weight: 400;
}

/* ============================
   EVENTO DESTACADO (BANNER)
   ============================ */
.evento-destacado-section {
    padding: 30px 0;
}

.evento-destacado-card {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.evento-destacado-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 16, 20, 0.95) 0%, rgba(15, 16, 20, 0.7) 50%, transparent 100%);
    padding: 40px;
}

.badge-destacado {
    display: inline-block;
    background-color: #cc07f7;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.titulo-destacado {
    font-family: 'Anton', sans-serif;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
}

.fecha-destacado {
    font-family: 'Montserrat', sans-serif;
    color: #fb1156;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.fecha-destacado i {
    margin-right: 8px;
}

.descripcion-destacado {
    font-family: 'Montserrat', sans-serif;
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

.btn-comprar-destacado {
    display: inline-block;
    background-color: #fb1156;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fb1156;
}

.btn-comprar-destacado:hover {
    background-color: transparent;
    color: #fb1156;
    text-decoration: none;
    transform: translateX(5px);
}

.btn-comprar-destacado i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-comprar-destacado:hover i {
    transform: translateX(5px);
}

/* ============================
   CONTENIDO PRINCIPAL
   ============================ */
.contenido-principal {
    padding-top: 30px;
}

/* ============================
   SIDEBAR DE FILTROS
   ============================ */
.filtros-sidebar {
    margin-bottom: 30px;
}

.filtros-container {
    background-color: #1d1d1f;
    border-radius: 15px;
    padding: 25px;
    position: sticky;
    top: 80px;
}

.filtros-titulo {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #fb1156;
}

.filtros-titulo i {
    color: #fb1156;
    margin-right: 8px;
}

.filtro-grupo {
    margin-bottom: 25px;
}

.filtro-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #a0a0a0;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inputs de fecha */
.fecha-inputs input {
    background-color: #0F1014;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    border-radius: 8px;
}

.fecha-inputs input:focus {
    background-color: #0F1014;
    border-color: #fb1156;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(251, 17, 86, 0.25);
}

/* Checkboxes personalizados */
.categorias-lista .custom-control,
.formato-opciones .custom-control {
    margin-bottom: 10px;
}

.categorias-lista .custom-control-label,
.formato-opciones .custom-control-label {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    padding-left: 5px;
}

.categorias-lista .custom-control-label::before,
.formato-opciones .custom-control-label::before {
    background-color: #0F1014;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.categorias-lista .custom-control-input:checked ~ .custom-control-label::before,
.formato-opciones .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #fb1156;
    border-color: #fb1156;
}

.categorias-lista .custom-control-input:focus ~ .custom-control-label::before,
.formato-opciones .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(251, 17, 86, 0.25);
}

.formato-opciones .custom-control-label i {
    margin-right: 8px;
    color: #696969;
}

/* Sliders de precio */
.precio-slider-container {
    padding: 10px 0;
}

.precio-slider-container input[type="range"] {
    width: 100%;
    margin-bottom: 10px;
    -webkit-appearance: none;
    background: transparent;
}

.precio-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fb1156;
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 2px 6px rgba(251, 17, 86, 0.4);
}

.precio-slider-container input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.precio-slider-container input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fb1156;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(251, 17, 86, 0.4);
}

.precio-slider-container input[type="range"]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.precio-valores {
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Botón limpiar filtros */
#limpiar-filtros {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #a0a0a0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#limpiar-filtros:hover {
    background-color: #fb1156;
    border-color: #fb1156;
    color: #ffffff;
}

#limpiar-filtros i {
    margin-right: 5px;
}

/* ============================
   SECCIÓN DE RESULTADOS
   ============================ */
.resultados-section {
    min-height: 600px;
}

.resultados-header {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.resultados-count {
    font-family: 'Montserrat', sans-serif;
    color: #a0a0a0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================
   GRID DE EVENTOS - RESPONSIVE
   ============================ */
#eventos-grid {
    margin: 0 -10px;
}

#eventos-grid > [class*="col"] {
    padding: 10px;
}

/* Grid responsive - 3 columnas desktop, 2 tablet, 1 mobile */
@media (min-width: 1200px) {
    #eventos-grid.row-cols-xl-3 > * {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    #eventos-grid.row-cols-md-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ============================
   TARJETA DE EVENTO - BÚSQUEDA
   ============================ */
.tarjeta-evento-busqueda {
    background-color: #1d1d1f;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tarjeta-evento-busqueda:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.evento-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.evento-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Contenedor de imagen */
.evento-imagen-container {
    position: relative;
    width: 100%;
    padding-top: 155.45%; /* Ratio 220x342 */
    overflow: hidden;
}

.evento-imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Imágenes responsive - desktop vs mobile */
.evento-imagen-desktop {
    display: block;
}

.evento-imagen-mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .evento-imagen-desktop {
        display: none;
    }
    
    .evento-imagen-mobile {
        display: block;
        background-size: cover;
        background-position: center center;
    }
}

.tarjeta-evento-busqueda:hover .evento-imagen {
    transform: scale(1.05);
}

/* Badge de fecha en imagen */
.evento-fecha-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(15, 16, 20, 0.9);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 50px;
}

.evento-fecha-badge .dia {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1;
}

.evento-fecha-badge .mes {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fb1156;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Badges de estado */
.evento-badge {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-en-vivo {
    bottom: 15px;
    right: 15px;
    background-color: #3bf357;
    color: #0F1014;
    animation: pulse 2s infinite;
}

.badge-en-vivo i {
    font-size: 0.5rem;
    margin-right: 5px;
    animation: blink 1s infinite;
}

.badge-proximamente {
    bottom: 15px;
    right: 15px;
    background-color: #fb1156;
    color: #ffffff;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 243, 87, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(59, 243, 87, 0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Información del evento */
.evento-info {
    padding: 20px;
}

.evento-fecha-hora {
    font-family: 'Montserrat', sans-serif;
    color: #696969;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.evento-fecha-hora i {
    margin-right: 5px;
    color: #fb1156;
}

.evento-titulo {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 45px;
}

.evento-tipo {
    font-family: 'Montserrat', sans-serif;
    color: #a0a0a0;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.evento-tipo i {
    margin-right: 5px;
    color: #cc07f7;
}

.evento-precio {
    margin-bottom: 10px;
}

.precio-desde {
    font-family: 'Montserrat', sans-serif;
    color: #696969;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 5px;
}

.precio-valor {
    font-family: 'Montserrat', sans-serif;
    color: #3bf357;
    font-size: 1.2rem;
    font-weight: 800;
}

.precio-consultar {
    font-family: 'Montserrat', sans-serif;
    color: #a0a0a0;
    font-size: 0.85rem;
    font-style: italic;
}

.evento-formato {
    margin-top: 10px;
}

.formato-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 15px;
    text-transform: uppercase;
}

.formato-tag i {
    margin-right: 4px;
}

.formato-streaming {
    background-color: rgba(59, 243, 87, 0.2);
    color: #3bf357;
    border: 1px solid rgba(59, 243, 87, 0.3);
}

.formato-presencial {
    background-color: rgba(251, 17, 86, 0.2);
    color: #fb1156;
    border: 1px solid rgba(251, 17, 86, 0.3);
}

.formato-hibrido {
    background-color: rgba(204, 7, 247, 0.2);
    color: #cc07f7;
    border: 1px solid rgba(204, 7, 247, 0.3);
}

/* ============================
   LOADING SPINNER
   ============================ */
#loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25rem;
    color: #fb1156 !important;
}

#loading-spinner p {
    font-family: 'Montserrat', sans-serif;
    color: #a0a0a0;
}

/* ============================
   SIN RESULTADOS
   ============================ */
.sin-resultados {
    background-color: #1d1d1f;
    border-radius: 15px;
    padding: 40px;
}

.sin-resultados i {
    color: #fb1156;
}

.sin-resultados h5 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.sin-resultados p {
    font-family: 'Montserrat', sans-serif;
    color: #696969;
}

#btn-limpiar-sin-resultados {
    background-color: #fb1156;
    border-color: #fb1156;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#btn-limpiar-sin-resultados:hover {
    background-color: transparent;
    color: #fb1156;
}

/* ============================
   MOBILE - BARRA DE BÚSQUEDA Y FILTROS
   ============================ */
.mobile-filtros-bar {
    padding: 15px 0;
    background-color: #0F1014;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.mobile-busqueda-container {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-busqueda-container .input-group {
    border: none;
    background: transparent;
}

.mobile-busqueda-container .input-group-text {
    background: transparent;
    border: none;
    color: #696969;
    padding: 0 15px;
}

.mobile-busqueda-container .form-control {
    background: transparent;
    border: none;
    color: #0F1014;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    padding: 8px 0;
}

.mobile-busqueda-container .form-control:focus {
    background: transparent;
    box-shadow: none;
    color: #0F1014;
}

.mobile-busqueda-container .form-control::placeholder {
    color: #999;
}

.btn-filtros-mobile {
    background-color: #fb1156;
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 15px;
    border-radius: 20px;
    white-space: nowrap;
}

.btn-filtros-mobile:hover {
    background-color: #d90e4a;
    color: #ffffff;
}

.btn-filtros-mobile i {
    margin-right: 5px;
}

/* Modal de filtros para mobile */
#filtrosMobileModal .modal-content {
    background-color: #0F1014;
    border: none;
    border-radius: 20px 20px 0 0;
    min-height: 80vh;
}

#filtrosMobileModal .modal-header {
    background-color: #0F1014;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

#filtrosMobileModal .modal-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
}

#filtrosMobileModal .close {
    color: #ffffff;
    opacity: 0.8;
}

#filtrosMobileModal .close:hover {
    opacity: 1;
}

#filtrosMobileModal .modal-body {
    padding: 20px;
    background-color: #0F1014;
}

#filtrosMobileModal .modal-footer {
    background-color: #0F1014;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
}

#filtrosMobileModal .btn-primary {
    background-color: #fb1156;
    border-color: #fb1156;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 25px;
}

#filtrosMobileModal .btn-primary:hover {
    background-color: #d90e4a;
    border-color: #d90e4a;
}

#filtrosMobileModal .btn-outline-secondary {
    color: #a0a0a0;
    border-color: rgba(255, 255, 255, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

#filtrosMobileModal .btn-outline-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* ============================
   MOBILE - LISTA DE EVENTOS
   ============================ */
.eventos-lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .eventos-lista {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1200px) {
    .eventos-lista {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tarjeta de evento en mobile (formato lista) */
@media (max-width: 767.98px) {
    .eventos-lista .tarjeta-evento-busqueda {
        display: flex;
        flex-direction: row;
        background-color: #1d1d1f;
        border-radius: 12px;
        overflow: hidden;
        min-height: 130px;
    }

    .eventos-lista .evento-link {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .eventos-lista .evento-imagen-container {
        width: 40%;
        min-width: 140px;
        max-width: 180px;
        padding-top: 0;
        height: auto;
        min-height: 130px;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

    .eventos-lista .evento-imagen {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
    }
    
    .eventos-lista .evento-fecha-badge {
        top: 8px;
        left: 8px;
        padding: 5px 8px;
        min-width: 40px;
    }
    
    .eventos-lista .evento-fecha-badge .dia {
        font-size: 1rem;
    }
    
    .eventos-lista .evento-fecha-badge .mes {
        font-size: 0.6rem;
    }
    
    .eventos-lista .evento-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
    }
    
    .eventos-lista .badge-en-vivo,
    .eventos-lista .badge-proximamente {
        bottom: 8px;
        right: 8px;
    }
    
    .eventos-lista .evento-info {
        padding: 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .eventos-lista .evento-fecha-hora {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .eventos-lista .evento-titulo {
        font-size: 0.95rem;
        margin-bottom: 8px;
        min-height: auto;
        line-height: 1.2;
    }
    
    .eventos-lista .evento-tipo {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .eventos-lista .evento-precio {
        margin-bottom: 5px;
    }
    
    .eventos-lista .precio-desde {
        font-size: 0.7rem;
    }
    
    .eventos-lista .precio-valor {
        font-size: 1rem;
    }
    
    .eventos-lista .formato-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
}

/* ============================
   RESPONSIVE ADJUSTMENTS
   ============================ */
@media (max-width: 767.98px) {
    .busqueda-header-section {
        padding: 20px 0;
    }
    
    .titulo-seccion {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .subtitulo-seccion {
        text-align: center;
        margin-bottom: 15px;
        font-size: 0.9rem;
    }
    
    .busqueda-principal {
        display: none; /* Ocultar búsqueda principal en mobile, usar la barra sticky */
    }
    
    .evento-destacado-section {
        padding: 15px 0;
    }
    
    .evento-destacado-card {
        height: 250px;
        border-radius: 12px;
    }
    
    .evento-destacado-overlay {
        padding: 15px;
        background: linear-gradient(to top, rgba(15, 16, 20, 0.95) 0%, rgba(15, 16, 20, 0.7) 50%, transparent 100%);
    }
    
    .badge-destacado {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .titulo-destacado {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .fecha-destacado {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .descripcion-destacado {
        display: none;
    }
    
    .btn-comprar-destacado {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .contenido-principal {
        padding-top: 15px;
    }
    
    .resultados-header {
        padding: 10px 0;
        margin-bottom: 15px;
    }
    
    .resultados-count {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .evento-destacado-card {
        height: 350px;
    }
    
    .titulo-destacado {
        font-size: 2rem;
    }
}

/* ============================
   UTILIDADES
   ============================ */
/* Nota: No definir .d-none aquí, usar la clase de Bootstrap */

/* Scrollbar personalizado para el sidebar */
.filtros-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filtros-sidebar::-webkit-scrollbar-track {
    background: #0F1014;
}

.filtros-sidebar::-webkit-scrollbar-thumb {
    background: #fb1156;
    border-radius: 3px;
}

.filtros-sidebar::-webkit-scrollbar-thumb:hover {
    background: #d90e4a;
}
