*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Space Grotesk',sans-serif;
}
 
body{
 
    background:
    radial-gradient(circle at top left, rgba(255,45,141,.15), transparent 30%),
    linear-gradient(
        135deg,
        #fff7fb 0%,
        #f5f0ff 45%,
        #eef8ff 100%
    );
 
    overflow-x:hidden;
}
 
/* NAVBAR */

/* CONTAINER */

.container-custom{
    width:94%;
    max-width:1650px;
    margin:auto;
}


/* NAVBAR */

.custom-navbar{
    width:100%;
    padding:28px 0;
    position:relative;
    z-index:100;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    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 */
 
.hero{
 
    min-height:100vh;
 
    padding:80px 8% 100px;
 
    display:flex;
 
    align-items:center;
}
 
.hero-content{
 
    width:100%;
 
    display:grid;
 
    grid-template-columns:1fr 1fr;
 
    align-items:center;
 
    gap:70px;
}
 
/* TEXTO */
 
.tag{
 
    display:inline-block;
 
    padding:12px 24px;
 
    border-radius:50px;
 
    background:#FF2D8D;
 
    color:#fff;
 
    font-size:.9rem;
 
    font-weight:700;
 
    margin-bottom:25px;
}
 
.hero-text h1{
 
    font-size:5rem;
 
    line-height:1;
 
    color:#2E0F4F;
 
    margin-bottom:30px;
}
 
.hero-text p{
 
    font-size:1.1rem;
 
    line-height:1.9;
 
    color:#4c4061;
 
    margin-bottom:25px;
}
 
/* BOTÕES */
 
.hero-buttons{
 
    display:flex;
 
    gap:20px;
 
    margin-top:35px;
}
 
.btn-primary{
 
    background:
    linear-gradient(
        135deg,
        #FF2D8D,
        #5A1E8C
    );
 
    color:#fff;
 
    padding:18px 34px;
 
    border-radius:50px;
 
    text-decoration:none;
 
    font-weight:700;
 
    transition:.3s;
}
 
.btn-primary:hover{
 
    transform:translateY(-4px);
}
 
.btn-outline{
 
    border:2px solid #5A1E8C;
 
    color:#5A1E8C;
 
    padding:18px 34px;
 
    border-radius:50px;
 
    text-decoration:none;
 
    font-weight:700;
 
    transition:.3s;
}
 
.btn-outline:hover{
 
    background:#5A1E8C;
 
    color:#fff;
}
 
/* IMAGEM HERO */
 
.hero-image{
 
    display:flex;
 
    justify-content:center;
}
 
.hero-image img{
 
    width:100%;
 
    max-width:620px;
 
    border-radius:40px;
 
    object-fit:cover;
 
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}
 
/* RESUMO */
 
.summary-section{
 
    width:100%;
 
    padding:40px 8% 120px;
}
 
/* CONTAINER */
 
.summary-container{
 
    display:flex;
 
    gap:25px;
 
    justify-content:center;
 
    align-items:stretch;
 
    flex-wrap:wrap;
}
 
/* CARD */
 
.summary-card{
 
    flex:1;
 
    min-width:300px;
 
    max-width:380px;
 
    background:#fff;
 
    padding:45px 35px;
 
    border-radius:35px;
 
    box-shadow:0 15px 35px rgba(0,0,0,.08);
 
    border:1px solid rgba(255,255,255,.4);
}
 
/* TITULO */
 
.summary-card h2{
 
    font-size:2rem;
 
    color:#2E0F4F;
 
    margin-bottom:20px;
}
 
/* TEXTO */
 
.summary-card p{
 
    line-height:1.9;
 
    color:#4c4061;
}
 
/* GALERIA */
 
.gallery-section{
 
    padding:0 8% 120px;
}
 
.gallery-grid{
 
    display:grid;
 
    grid-template-columns:repeat(2,1fr);
 
    gap:25px;
}
 
/* CARD GALERIA */
 
.gallery-card{
 
    overflow:hidden;
 
    border-radius:35px;
}
 
.gallery-card img{
 
    width:100%;
 
    height:100%;
 
    object-fit:cover;
 
    transition:.4s;
 
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}
 
.gallery-card img:hover{
 
    transform:scale(1.05);
}
 
/* BANNER */
 
.banner{
 
    margin:0 8% 120px;
 
    padding:100px 60px;
 
    border-radius:45px;
 
    background:
    linear-gradient(
        135deg,
        #FF2D8D,
        #5A1E8C,
        #2BA6D9
    );
 
    text-align:center;
 
    color:#fff;
 
    box-shadow:0 20px 50px rgba(90,30,140,.2);
}
 
.banner-content h2{
 
    font-size:4rem;
 
    margin-bottom:25px;
}
 
.banner-content p{
 
    max-width:850px;
 
    margin:auto;
 
    line-height:1.9;
 
    margin-bottom:35px;
}
 
/* BOTÃO BANNER */
 
.btn-banner{
 
    display:inline-block;
 
    background:#fff;
 
    color:#2E0F4F;
 
    padding:18px 38px;
 
    border-radius:50px;
 
    text-decoration:none;
 
    font-weight:700;
 
    transition:.3s;
}
 
.btn-banner:hover{
 
    transform:translateY(-4px);
}
 

/* 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:1100px){
 
    .hero-content{
 
        grid-template-columns:1fr;
 
        text-align:center;
    }
 
    .hero-buttons{
 
        justify-content:center;
    }
 
    .gallery-grid{
 
        grid-template-columns:1fr;
    }
 
}
 
@media(max-width:900px){
 
    .summary-container{
 
        flex-direction:column;
 
        align-items:center;
    }
 
}
 
@media(max-width:768px){
 
    .menu{
 
        display:none;
    }
 
    .hero-text h1{
 
        font-size:3rem;
    }
 
    .banner-content h2{
 
        font-size:2.5rem;
    }
 
    .hero{
 
        padding-top:80px;
    }
 
    .nav-buttons{
        gap:10px;
    }
    
    .btn-nav,
    .btn-login{
        padding:14px 22px;
        font-size:.9rem;
    }

}
 