*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#00080d;
    font-family:Arial, Helvetica, sans-serif;
    color:#fff;
}

/* TOPBAR */

.topbar{
    height:62px;
    background:#21262b;
    border-bottom:1px solid #3a3f44;
    z-index:1050;
}

.btn-menu{
    background:transparent;
    border:none;
    color:#cfd3d6;
    font-size:24px;
}

.logo{
    width:125px;
}

.btn-registro{
    font-weight:600;
    border-radius:8px;
    padding:7px 18px;
}

/* CONTENIDO */

.contenido{
    padding-top:62px;
}

/* BANNER */

.banner-section{
    padding:0 70px;
}

.banner-img{
    width:75%;
    max-height:390px;
    object-fit:cover;
}

.carousel-control-prev,
.carousel-control-next{
    width:8%;
}

/* ARTISTAS */

.artistas-section{
    margin-top:55px;
    padding:0 70px 60px;
}

.tab-title{
    display:inline-block;
    background:#242a31;
    color:#fff;
    padding:12px 22px;
    border:1px solid #46515a;
    border-bottom:none;
    border-radius:7px 7px 0 0;
    font-size:22px;
}

.contenido-artistas{
    background:#001f2d;
    border:1px solid #174057;
    border-radius:0 13px 13px 13px;
    padding:42px 32px;
}

/* FILTROS */

.filtros{
    background:#162934;
    border:1px solid #28485a;
    padding:25px;
    border-radius:6px;
    color:#dce7ed;
}

.filtros .form-select{
    background-color:#0d1c25;
    border:1px solid #35566a;
    color:#dce7ed;
    height:42px;
    font-size:14px;
}

.filtros .form-select option{
    background:#0d1c25;
    color:#fff;
}

.titulo-filtro{
    margin-bottom:12px;
}

.form-check{
    margin-bottom:8px;
}

.form-check-label{
    color:#dce7ed;
    font-size:15px;
    line-height:1.3;
}

.form-check-input{
    background-color:transparent;
    border:1px solid #8ca6b5;
    width:18px;
    height:18px;
    margin-top:2px;
}

.btn-filtrar{
    background:#0f202a;
    color:#fff;
    font-weight:700;
    border:1px solid #35566a;
    height:42px;
    font-size:15px;
    border-radius:8px;
}

.btn-filtrar:hover{
    background:#143547;
    color:#fff;
}

.btn-limpiar{
    background:#6f7880;
    color:#fff;
    font-weight:700;
    height:42px;
    font-size:15px;
    border-radius:8px;
}

.btn-limpiar:hover{
    background:#596168;
    color:#fff;
}

/* CARDS */

.artista-card{
    background:#3a4c58;
    border:none;
    border-radius:8px;
    overflow:hidden;
    color:#fff;
    transition:0.3s;
    min-height:100%;
    height:100%;
}

.artista-card:hover{
    transform:translateY(-7px);
    box-shadow:0 10px 25px rgba(0,188,255,.25);
}

.artista-card img{
    height:170px;
    width:100%;
    object-fit:cover;
}

.artista-card .card-body{
    min-height:110px;
    padding:10px;
}

.artista-card h5{
    font-size:14px;
    font-weight:700;
    margin-bottom:6px;
    line-height:1.2;
}

.artista-card p{
    color:#d6dce1;
    margin-bottom:6px;
    font-size:12px;
}

/* PROGRESS */

.progress-custom{
    width:100%;
    height:15px;
    background:#1d2a31;
    border-radius:30px;
    overflow:hidden;
}

.progress-custom span{
    display:block;
    height:100%;
    background:#37c7f3;
}

/* SIDEBAR */

.sidebar{
    position:fixed;
    top:0;
    left:-420px;
    width:420px;
    max-width:85%;
    height:100vh;
    background:rgba(18,22,25,.97);
    backdrop-filter:blur(10px);
    z-index:2000;
    transition:left .35s ease;
    padding:25px 32px;
}

.sidebar.active{
    left:0;
}

.sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.sidebar-logo{
    width:180px;
}

.cerrar-menu{
    background:transparent;
    border:none;
    color:#aaa;
    font-size:26px;
}

.btn-login{
    padding:10px 18px;
    border-radius:7px;
    font-size:18px;
}

.menu-lateral{
    list-style:none;
    padding:0;
    margin-top:60px;
}

.menu-lateral li{
    margin-bottom:25px;
}

.menu-lateral a{
    text-decoration:none;
    color:#fff;
    font-size:20px;
    transition:.3s;
}

.menu-lateral a:hover{
    color:#34c4f3;
}

/* OVERLAY */

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1500;
    display:none;
}

.overlay.active{
    display:block;
}

/* FOOTER */

.footer-central{
    width:100%;
    padding:25px 35px 18px;
    background:#00080d;
}

.footer-line{
    width:100%;
    height:1px;
    background:#2d3c47;
    margin:0 auto 18px auto;
}

.footer-content{
    width:100%;
    text-align:center;
    color:#d9d9d9;
    font-size:17px;
    padding-top:2px;
}

.titulo-desplegable{
    background:#2b3035;
    padding:10px 14px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
    font-size:17px;
    color:#fff;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.3s;
}

.titulo-desplegable:hover{
    background:#343a40;
}




/* RESPONSIVE */

@media(max-width:992px){

    .banner-section,
    .artistas-section{
        padding-left:20px;
        padding-right:20px;
    }

    .banner-img{
        width:100%;
    }
}

@media(max-width:576px){

    .logo{
        width:105px;
    }

    .btn-registro{
        padding:6px 10px;
        font-size:14px;
    }

    .contenido-artistas{
        padding:25px 18px;
    }

    .sidebar{
        width:340px;
    }
}


@media (min-width: 992px){
    .col-lg-20{
        flex:0 0 20%;
        max-width:20%;
    }
}

.artista-card .badge{
    font-size:11px;
    margin:2px;
}

.filtros .mb-4{
    margin-bottom:18px !important;
}





