*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:
    radial-gradient(circle at top left,#ff74c81f 0%,transparent 35%),
    radial-gradient(circle at right,#8f4cff14 0%,transparent 25%),
    linear-gradient(90deg,#ffb2dc 0%,#ffd9ef 40%,#fff7fb 100%);
    overflow-x:hidden;
    position:relative;
}

/* BACKGROUND */

.bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:-1;
}

.circle-1{
    width:350px;
    height:350px;
    background:#ff2d8d6e;
    top:0;
    left:-100px;
}

.circle-2{
    width:400px;
    height:400px;
    background:#4c00ff2f;
    top:300px;
    right:-120px;
}

.circle-3{
    width:250px;
    height:250px;
    background:#d9f43b4f;
    bottom:150px;
    left:30%;
}

/* CONTAINER */

.container-custom{
    width:94%;
    max-width:1650px;
    margin:auto;
}

/* NAVBAR */

/* NAVBAR */

.custom-navbar{
    width:100%;
    padding:28px 0;
    position:relative;
    z-index:100;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    height:94px;
}

.logo{
    display:flex;
    align-items:center;
    height:125px;
}

.logo img{
    max-height:125px;
    width:auto;
}

.menu{
    display:flex;
    gap:36px;
}

.menu a{
    text-decoration:none;
    color:#2E0F4F;
    font-size:20px;
    font-weight:500;
    position:relative;
}

.menu a.active::after{
    content:'';
    width:100%;
    height:3px;
    background:#d9f43b;
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:50px;
}

.nav-buttons{
    display:flex;
    align-items:center;
    gap:14px;
}

.btn-nav{
    background:#d9f43b;
    color:#2E0F4F;
    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
}

.btn-login{
    background:#4510D0;
    color:#fff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* HERO */

.artists-hero{
    padding:70px 0 120px;
}

.hero-grid{
    display:grid;
    grid-template-columns:45% 55%;
    align-items:center;
    gap:40px;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    background:#d9f43b;
    border-radius:50px;
    color:#29004b;
    font-size:.85rem;
    font-weight:700;
    margin-bottom:24px;
}

.hero-text h1{
    font-size:5.5rem;
    line-height:.95;
    color:#29004b;
    margin-bottom:28px;
    font-weight:900;
}

.hero-text h1 span{
    color:#ff2d8d;
}

.hero-text p{
    font-size:1.1rem;
    line-height:1.9;
    color:#4a3c5d;
    margin-bottom:34px;
    max-width:580px;
}

.hero-button{
    background:#4510D0;
    color:#fff;
    padding:18px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
    width:max-content;
    box-shadow:0 15px 30px rgba(69,16,208,.25);
}

.hero-image-wrapper{
    position:relative;
    min-height:760px;
}

.hero-image{
    width:100%;
    max-width:760px;
    height:760px;
    object-fit:cover;
    border-radius:40px;
    position:absolute;
    right:0;
    z-index:2;
}

.hero-shape{
    position:absolute;
    border-radius:50%;
}

.shape-yellow{
    width:180px;
    height:180px;
    background:#d9f43b;
    top:-20px;
    left:20px;
}

.shape-pink{
    width:140px;
    height:140px;
    background:#ff2d8d;
    bottom:40px;
    left:-20px;
}

.shape-blue{
    width:220px;
    height:220px;
    background:#2B67FF;
    top:80px;
    right:-30px;
    opacity:.3;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:4rem;
    font-weight:900;
    color:#29004b;
    margin-bottom:14px;
}

.section-title p{
    font-size:1.1rem;
    color:#4d3a63;
    line-height:1.8;
}

/* FILTROS */

.artists-filters{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:55px;
}

.filter-btn{
    border:none;
    background:#ffffff;
    color:#29004b;
    padding:14px 24px;
    border-radius:50px;
    font-size:.95rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.filter-btn:hover{
    transform:translateY(-4px);
}

.filter-btn.active{
    background:#4510D0;
    color:#fff;
}

/* ARTISTS */

.artists-section{
    padding-bottom:120px;
}

.artists-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.artist-card{
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.artist-card:hover{
    transform:translateY(-10px);
}

.artist-image{
    position:relative;
    height:360px;
}

.artist-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.artist-category{
    position:absolute;
    left:18px;
    top:18px;
    background:#d9f43b;
    color:#29004b;
    padding:10px 18px;
    border-radius:50px;
    font-size:.8rem;
    font-weight:700;
}

.artist-content{
    padding:28px;
}

.artist-content h3{
    font-size:1.6rem;
    color:#29004b;
    margin-bottom:14px;
}

.artist-content p{
    color:#4b3c5f;
    line-height:1.8;
    font-size:.96rem;
}

/* GALERIA SLIDER */

.gallery-section{
    padding-bottom:120px;
}

.gallery-slider{
    position:relative;
    max-width:1000px;
    margin:auto;
}

.gallery-track{
    position:relative;
    overflow:hidden;
    border-radius:35px;
}

.gallery-slide{
    display:none;
    animation:fade .5s ease;
}

.gallery-slide.active{
    display:block;
}

.gallery-slide img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:35px;
}

.gallery-caption{
    background:#fff;
    margin-top:18px;
    padding:24px 32px;
    border-radius:22px;
    text-align:center;

    font-size:1.35rem;
    font-weight:700;
    line-height:1.8;
    letter-spacing:.5px;

    color:#4510D0;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#4510D0;
    color:#fff;
    font-size:2rem;
    cursor:pointer;
    z-index:20;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.gallery-arrow:hover{
    transform:translateY(-50%) scale(1.08);
}

.gallery-arrow.prev{
    left:-30px;
}

.gallery-arrow.next{
    right:-30px;
}

@keyframes fade{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@media(max-width:768px){

    .gallery-slide img{
        height:420px;
    }

    .gallery-arrow{
        width:50px;
        height:50px;
        font-size:1.4rem;
    }

    .gallery-arrow.prev{
        left:10px;
    }

    .gallery-arrow.next{
        right:10px;
    }

    .nav-buttons{
        gap:10px;
    }
    
    .btn-nav,
    .btn-login{
        padding:14px 22px;
        font-size:.9rem;
    }

}

/* FOOTER */
 
.kok-footer-artimola{
    font-family:'Poppins',sans-serif;
    color:#fff;
}
 
/* PRIMEIRA CAMADA */
 
.kok-footer-top{
    background:linear-gradient(
        135deg,
        #6A00FF,
        #9B00FF,
        #FF008A
    );
    padding:70px 0;
}
 
.kok-footer-top .kok-container{
    width:90%;
    max-width:1300px;
    margin:auto;
 
    display:grid;
    grid-template-columns:
    2fr 1fr 1fr 1fr;
 
    gap:50px;
}
 
.kok-footer-logo img{
    max-width:220px;
    margin-bottom:20px;
}
 
.kok-footer-col p{
    line-height:1.8;
    color:rgba(255,255,255,.85);
    margin-bottom:25px;
}
 
.kok-footer-col h4{
    margin-bottom:25px;
    font-size:1.2rem;
    font-weight:700;
}
 
.kok-footer-col ul{
    list-style:none;
}
 
.kok-footer-col ul li{
    margin-bottom:12px;
}
 
.kok-footer-col ul li a{
    text-decoration:none;
    color:rgba(255,255,255,.85);
    transition:.3s;
}
 
.kok-footer-col ul li a:hover{
    color:#fff;
    padding-left:5px;
}
 
/* REDES */
 
.kok-social-links{
    display:flex;
    gap:15px;
}
 
.kok-social-links a{
    width:45px;
    height:45px;
 
    display:flex;
    align-items:center;
    justify-content:center;
 
    border-radius:50%;
    background:rgba(255,255,255,.15);
 
    color:#fff;
    text-decoration:none;
    transition:.3s;
}
 
.kok-social-links a:hover{
    background:#fff;
    color:#7d00ff;
    transform:translateY(-4px);
}
 
/* SEGUNDA CAMADA */
 
.kok-footer-bottom{
    background:#490188;
    padding:25px 0;
}
 
.kok-footer-bottom-content{
    width:90%;
    max-width:1300px;
    margin:auto;
 
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}
 
.kok-copyright{
    color:rgba(255,255,255,.75);
    font-size:.95rem;
}
 
.kok-footer-logos{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}
 
.kok-footer-logos a{
    display:flex;
    align-items:center;
}
 
.kok-footer-logos img{
    height:38px;
    opacity:.8;
    transition:.3s;
}
 
.kok-footer-logos img:hover{
    opacity:1;
    transform:scale(1.05);
}

/* RESPONSIVO */

@media(max-width:1200px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .artists-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .menu{
        display:none;
    }

    .hero-text h1{
        font-size:3.8rem;
    }

    .artists-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item.video{
        grid-column:span 1;
    }

    .section-title h2{
        font-size:2.8rem;
    }

    .artists-filters{
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:10px;
    }

    .filter-btn{
        white-space:nowrap;
    }

}