@font-face {
    font-family: 'Museo 700';
    src: url('../font/Museo-700.woff2') format('woff2'),
        url('../font/Museo-700.woff') format('woff'),
        url('../font/Museo-700.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo 900';
    src: url('../font/Museo900-Regular.woff2') format('woff2'),
        url('../font/Museo900-Regular.woff') format('woff'),
        url('../font/Museo900-Regular.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo 500';
    src: url('../font/Museo500-Regular.woff2') format('woff2'),
        url('../font/Museo500-Regular.woff') format('woff'),
        url('../font/Museo500-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



body {
    font-size: 16px;
    color: #fff;
    box-sizing: border-box;
    font-family: 'Museo 500';
    overflow-x: hidden;
}

body h1,
body h2,
body h3,
body h4 {
    font-family: 'Museo 700';
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.flex {
    clear: both;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.center {
    justify-content: center;
}

.between {
    justify-content: space-between;
}

footer {
    background-color: #002649;
}

#footer-social {
    background: #063057;
    height: 150px;
}

#footer-social .container {
    position: relative;
}

#footer-social ul {
    width: 250px;
    margin: 0 auto;
}

#footer-social li {
    line-height: 150px;
    float: left;
    width: 20%;
    text-align: center;
}

#logo-kabum-rodape {
    position: absolute;
    top: 45px;
    right: 0;
}

#footer-social li span {
    padding: 8px;
    background-color: #fff;
    border-radius: 50%;
    color: #063057;
    transition: all 0.3s;
}

#footer-social li span:hover {
    background-color: #44bdfb;
    color: #063057;

}

footer p {
    color: #ccc;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0;
}

section{
    padding: 50px 0;
    text-align: center;
}

header{
    background: rgba(25, 39, 73, 0.4);
    padding: 20px 0;
}

header nav .flex{
    gap: 2rem;
}

header nav a{
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s;
}

header nav a:hover{
    color: #44bdfb;
}

main{
    background: url(../img/bg-azul-listras.webp) center top no-repeat;
    background-size: cover;
    padding: 0 0 50px;
    text-align: center;
}

main .principal{
    margin: 50px auto 0;
}



h1{
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 3rem;
    transform: skew(0deg, -5deg);
}

h1 strong{
    color: #44bdfb;
    font-size: 5rem;
    display: block;
}

section h2{
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Museo 900';    
}

.porcentagem a{
    display: block;
    background: #e79523;
    color: #063057;
    padding: 1rem 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.porcentagem a:hover{
    background: #44bdfb;
}

#ofertas{
    background: url(../img/bg-pictos-2.webp) center top no-repeat;
    background-size: cover;
}

#ofertas h2{
    color: #063057;
}

#ofertas hr{
    max-width: 300px;
    height: 4px;
    background: #063057;
    margin: 0 auto 1rem;
    border: 0;
}

#dicas{
    background: url(../img/bg-azul-listras.webp) center top no-repeat;
    background-size: cover;
}

#dicas h2{
    color: #fff;
}

#dicas hr{
    border: 0;
    margin: 0 auto 2rem;
    width: 206;
    height: 19px;
    background: url(../img/hr.webp) center top no-repeat;
}

.dica{
    display: flex;
    justify-content: center;
    align-items: center;
    translate: 14rem 0;
}

.dica:nth-child(odd){
    flex-direction: row-reverse;
    translate: -14rem 0;
}

.dica .icone{
    background: #e79523;
    padding: 1rem;
    border-radius: 2rem;
    width: 16rem;
    position: relative;
    z-index: 2;
}

.dica .icone p{
    font-family: 'Museo 900';
    color: #063057;  
    text-transform: uppercase;  
}

.dica .icone img{
    margin-bottom: 1rem;
}

.dica .descricao{
    position: relative;
    width: 20rem;
    border-radius: 2rem;
    padding: 4rem;
    background: url(../img/bg-dicas.jpg) center bottom no-repeat;
    background-size: cover;
    text-align: left;
    translate: -2rem 0;
}

.dica:nth-child(odd) .descricao{
    translate: 2rem 0;
}

.descricao h3{
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2rem;
}

.descricao p{
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.descricao a{
    background: #e79523;
    color: #063057;
    padding: 1rem 1.4rem;
    border-radius: 2rem;
    margin: 2rem auto 0;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    width: fit-content;
    transition: all 0.3s;
}

.descricao a:hover{
    background: #44bdfb;
}



#giftcard{
    background: url(../img/bg-pictos.webp) center top no-repeat;
    background-size: cover;
    color: #063057;
}

#giftcard h3{
    font-size: 1.3rem;
}

#giftcard p{
    font-size: 1.2rem;
}

#giftcard h2, #giftcard h3{
    color: #063057;
}



#giftcard a{
    display: block;
    background: #063057;
    color: #44bdfb;
    padding: 1rem 2rem;
    border-radius: 1rem;
    margin: 0 auto 2rem;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    transition: all 0.3s;
}

#giftcard a:hover{
    background: #e79523;
    color: #063057;
}

#app{
    background: url(../img/bg-app.jpg) center top no-repeat;
    background-size: cover;
    padding: 3rem 0 0;
    
}

.boxazul{
    max-width: 60vw;
    margin: 0 0 0 auto;
    background: rgba(68, 189, 251, 0.8 );
    border-top-left-radius: 2rem;
    padding: 2rem;
    position: relative;
}

.ninja{
    position: absolute;
    bottom: -1px;
    height: 120%;
    left: -400px;
}

#app h2{
    color: #fff;
}

.appvantagens{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.vantagem{
    width: 40%;
    background:rgba(6, 48, 87, 0.9);
    padding: 2rem;
    border-radius: 1rem;
    z-index: 2;
}

.vantagem h3{
    color: #44bdfb;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

#app a{
    display: block;
    background: #063057;
    color: #44bdfb;
    padding: 1rem 2rem;
    border-radius: 1rem;
    margin: 0 auto 2rem;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    transition: all 0.3s;
}

#app a:hover{
    background: #e79523;
    color: #063057;
}

#comprasegura h2{
    color: #063057;
    margin-bottom: 2rem;
}

#comprasegura .flex{
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

#faq{
    background: #44bdfb;
}

#faq h2{
    color: #fff;
}

#faq li{
    background: #002649;
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 1rem;
    margin-bottom: 1rem;

}

#faq li h3{
    color: #fff;
    text-align: left;
}

#faq li p{
    color: #fff;
    text-align: left;
    margin-bottom: 1rem;
}

#faq li a{
    color: #e79523;
}

#tags, #sobre{
    background: #002649;
}

#tags h2, #sobre h2{
    background: #002649;
    color: #fff
}

#tags a{
    color:#063057;
    background: #44bdfb;
    padding: 2px 5px;
    margin: 4px;
    display: inline-block;
    transition: all 0.3s;
}

#tags a:hover{
    color:#063057;
    background: #fff;
}

#sobre p{
    max-width: 1200px;
    margin: 0 auto 1rem;
}

#sobre a{
    font-weight: 900;
    color: #fff;
}

.produtos ul{
    align-items: stretch;
}

.produtos li{
    padding: 1rem 0 0 ;
}

.box-produto{
    width: 200px;
    margin: 0 auto;
    background: #063057;
    padding: 0 1rem 1rem;
    border-radius: 1rem;
    height: calc(100% - 1rem);
    position: relative;
}

.box-produto img{
    overflow: hidden;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    padding: 1rem;
    translate: 0 -1rem;
}

.box-produto .cta{
    background: #e79523;
    color: #063057;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 1rem;
    transition: all 0.3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    margin: 1rem 0;
    text-transform: uppercase;
}

.box-produto:hover .cta{
    background: #44bdfb;
}

.titulo{
    padding-bottom: 3rem;
}

.uk-dotnav{
    gap: 5px;
}

.uk-dotnav>*>*{
    border: 1px solid #002649;
}

.uk-dotnav>.uk-active>*{
    background: #002649;
}

p.chamada{
    font-size: 3rem;
    line-height: 1;
    background: #063057;
    padding: 2rem;
    border-radius: 1rem;
}

p.chamada strong{
    color: #44bdfb;
    font-weight: 900;
}

p.chamada span{
    color: #e79523;
}









@media screen and (max-width: 1480px) {
    .container {
        margin: 0 30px;
    }
}


@media screen and (max-width: 1200px) {
    .dica, .dica:nth-child(odd) {
        translate: 0 0;
        margin-bottom: 2rem;
    }

    .boxazul{
        width: auto;
        margin: 0 20px;
        padding: 2rem 2rem 0;
        border-top-right-radius: 2rem;
        max-width: none;
    }

    .ninja{
        position: static;
        height: auto;
        max-height: 400px;
    }

    main .principal{
        margin: 50px 30px 0;
        gap: 3rem;
    }
}


@media screen and (max-width: 750px) {
    .vantagem{
        width: 100%;
    }

    main .principal{
        flex-wrap: wrap;
        gap: 3rem;
        margin: 30px 30px 0;
    }
}


@media screen and (max-width: 550px) {
    .dica, .dica:nth-child(odd){
        flex-direction: column;
    }

    .dica .icone{
        position: relative;
        z-index: 2;
        width: 70%;
    }

    .dica .icone img{
        max-width: 100px;
    }

    .dica .descricao, .dica:nth-child(odd) .descricao  {
        translate: 0 -30px;
        position: relative;
        z-index: 1;
        width: auto;
        text-align: center;
        padding: 4rem 2rem 2rem;
    }

    .descricao a img, .porcentagem a img, #giftcard a img, #app a img{
        display: none;
    }

    .descricao a, .porcentagem a, #giftcard a, #app a{
        font-size: 1rem;
    }

    section h2{
        font-size: 1.2rem;
    }

    #logo-kabum-rodape{
        display: none;
    }

    h1{
        font-size: 1.5rem;
    }

    h1 strong{
        font-size: 2.5rem;
    }

    p.chamada{
        font-size: 1.2rem;
    }


}




