/* ==========================================
   RESET
========================================== */
 
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
 
html{
    scroll-behavior:smooth;
}
 
body{
    font-family:'Poppins',sans-serif;
 
    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #fff6fc 20%,
        #ffe8f5 50%,
        #ffd4ee 100%
    );
 
    color:#5c2a6d;
    overflow-x:hidden;
    min-height:100vh;
}
 
/* ==========================================
   CONTAINER
========================================== */
 
.container-custom{
    width:100%;
    max-width:1900px;
    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;
    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 COM FOTO DE FUNDO
========================================== */
 
.hero{
    padding-top:60px;
    padding-bottom:100px;
    position:relative;
    z-index:20;
    min-height:140vh;
 
    padding:120px 40px 80px;
 
    display:flex;
    align-items:center;
    justify-content:center;
 
    text-align:center;
 
    position:relative;
 
    overflow:hidden;
 
    background-image: url('../imagens/cabecario3.png');
   
    background-size:cover;
    background-position:top;
    background-repeat: no-repeat;
    background-image: top;
}
 
.hero-content{
    max-width:900px;
}
 
.hero h1{
    font-size:5rem;
    font-weight:900;
 
    color:#fff;
 
    margin-bottom:25px;
 
    text-shadow:
    0 5px 25px rgba(0,0,0,.25);
}
 
.hero p{
    color:#fff;
 
    font-size:1.2rem;
 
    line-height:1.9;
 
    text-shadow:
    0 2px 10px rgba(0,0,0,.2);
}
 
/* ==========================================
   BENEFÍCIOS
========================================== */
 
.beneficios{
    padding:80px 0 120px;
}
 
.cards{
    width:94%;
    max-width:1650px;
    margin:auto;
 
    display:grid;
 
    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));
 
    gap:28px;
}
 
/* ==================================
   CARD BASE
================================== */
 
.card{
    border-radius:30px;
 
    padding:35px;
 
    min-height:320px;
 
    position:relative;
 
    overflow:hidden;
 
    transition:.3s;
 
    box-shadow:
    0 15px 35px rgba(0,0,0,.12);
}
 
.card:hover{
    transform:translateY(-8px);
}
 
.card h2{
    font-size:1.6rem;
    font-weight:800;
    margin-bottom:20px;
}
 
.card p{
    font-size:1rem;
    line-height:1.8;
    margin-bottom:18px;
}
 
.card ul{
    list-style:none;
}
 
.card ul li{
    margin-bottom:12px;
    line-height:1.6;
}
 
/* ==================================
   CORES DOS CARDS
================================== */
 
.card:nth-child(1){
    background:#d9f43b;
    color:#29004b;
}
 
.card:nth-child(2){
    background:
    linear-gradient(
        135deg,
        #ff2d8d,
        #ff72ba
    );
    color:#fff;
}
 
.card:nth-child(3){
    background:
    linear-gradient(
        135deg,
        #4510D0,
        #2c0074
    );
    color:#fff;
}
 
.card:nth-child(4){
    background:
    linear-gradient(
        135deg,
        #2B67FF,
        #5da7ff
    );
    color:#fff;
}
 
.card:nth-child(5){
    background:#f7cde6;
    color:#29004b;
}
 
.card:nth-child(6){
    background:
    linear-gradient(
        135deg,
        #ff8c00,
        #ffb700
    );
    color:#fff;
}
 
.card:nth-child(7){
    background:
    linear-gradient(
        135deg,
        #8a42ff,
        #ff2d8d
    );
    color:#fff;
}
 
/* ==================================
   CARD DESTAQUE
================================== */
 
.destaque{
    border:4px solid #fff;
}
 
/* ==================================
   FRASE CARD
================================== */
 
.frase-card{
    margin-top:20px;
 
    background:rgba(255,255,255,.2);
 
    padding:18px;
 
    border-radius:18px;
 
    font-weight:600;
}
 
/* ==================================
   BOTÃO
================================== */
 
.btn{
    display:inline-flex;
 
    align-items:center;
 
    justify-content:center;
 
    margin-top:25px;
 
    padding:16px 30px;
 
    border-radius:60px;
 
    background:#fff;
 
    color:#4510D0;
 
    text-decoration:none;
 
    font-weight:800;
 
    transition:.3s;
}
 
.btn:hover{
    transform:translateY(-4px);
 
    box-shadow:
    0 15px 30px rgba(255,255,255,.3);
}
 
/* ==================================
   FRASE FINAL
================================== */
 
.frase-final{
    padding:20px 20px 120px;
    text-align:center;
}
 
.frase-final h2{
    font-size:4rem;
    font-weight:900;
    color:#29004b;
    max-width:1100px;
    margin:auto;
}
 
.frase-final h2::after{
    content:'';
    display:block;
 
    width:180px;
    height:8px;
 
    margin:25px auto 0;
 
    border-radius:50px;
 
    background:
    linear-gradient(
        90deg,
        #ff2d8d,
        #4510D0,
        #d9f43b
    );
}
 
/* ==================================
   RESPONSIVO
================================== */
 
@media(max-width:768px){
 
    .hero h1{
        font-size:4rem;
    }
 
    .hero p{
        font-size:1rem;
    }
 
    .frase-final h2{
        font-size:2.5rem;
    }
 
}
 
 
/* 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:992px){
 
    .kok-footer-top .kok-container{
        grid-template-columns:1fr 1fr;
    }
 
}
 
@media(max-width:768px){
 
    .kok-footer-top .kok-container{
        grid-template-columns:1fr;
    }
 
    .kok-footer-bottom-content{
        flex-direction:column;
        text-align:center;
    }
 
    .kok-footer-logos{
        justify-content:center;
    }
 
}