@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background: #000;
}

body h1,
body h2,
body h3,
body h4 {
    font-family: 'Montserrat', sans-serif;
}

.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;
}

.gap{
    gap: 30px;
}

.wrap{
    flex-wrap: wrap;
}

.between {
    justify-content: space-between;
}

footer {
    background-color: #000;
}

#footer-social {
    background: #111;
    padding: 30px 0;
}

#footer-social h2{
    margin-bottom: 0.4rem;
}

#footer-social p{
    padding: 0;
    margin-bottom: 1rem;
}


#footer-social ul {
    display: flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
}

#logo-kabum{
    width: 140px;
}


#logo-kabum-rodape {
    position: absolute;
    top: 45px;
    right: 0;
}

#footer-social li span {
    padding: 8px;
    background-color: #fff;
    border-radius: 50%;
    color: #2E2E2E;
    transition: all 0.3s;
}

#footer-social li span:hover {
    background-color: #fc6b0f;
    color: #fff;

}

footer p {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
    padding: 20px 0;
    text-wrap: balance;
}

nav li a{
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    color: #132B58;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.8rem;
}

nav li a:hover{
    background: #fc6b0f;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    transition: all 0.3s;
    font-weight: 600;
}

section {
    padding: 30px 20px 50px;
    text-align: left;
}

main {
    margin: 0 auto;
    background: #000 url(../img/bg-topo.webp) center top no-repeat;
    background-size: cover;
    max-height: 372px;
    position: relative;
}

#ninja img{
    height: 372px;
}

main header {
    position: absolute;
    top: 20px;
    width: 100%;
}

h1 {
    color: #fff;
    text-wrap: balance;
    font-size: 2.6rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;

}

h1 strong{
    color: #FF6B17;
}

h1 span{
    font-size: 1.4rem;
    line-height: normal ;
    display: block;
    text-align: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: solid 1px #fff;
}

#comoutilizar{
    background: #111;
text-align: center;
padding: 50px 30px;
color: #fff;
border-radius: 20px;
margin-bottom: 30px;

}

#comoutilizar .flex{
    gap: 30px;
    justify-content: center;
    align-items: stretch;    
    display: flex;
    margin: 30px 0;
    flex-wrap: wrap;
}

#comoutilizar .flex p{
    max-width: 250px;
    background: #333;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: filter 0.2s;
}

#comoutilizar .flex p:hover{
    filter: drop-shadow(0px 0px 15px #333);
}

#comoutilizar .flex p span{
    border: 2px #fff solid;
    border-radius: 50%;
    padding: 15px;

    
}

p.chamada{
    color: #fff;
    text-align: center;
    width: 100%;
}

#breve p.chamada{
    margin-bottom: 2rem;
}

header .abas a {
    width: 300px;
    text-align: center;
    clip-path: polygon(90% 0, 100% 100%, 0 100%, 0 0);
    background: #fc6b0f;
    color: #fff;
    text-transform: uppercase;
    padding: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

header .abas a:nth-child(2) {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 10% 0);
    background: #333;
}

header .abas a:hover {
    background: #fff;
    color: #fc6b0f;
}

h2{
    color: #fc6b0f;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.cupons {
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.cupom {
    box-sizing: border-box;
    width: calc(50% - 1rem);
    background: #fc6b0f;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    color: #fff;
}



.cupom::after{
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    top: 50%;
    translate: 0 -20px;
    right: -20px;

}

.cupom.apagado {
    display: none;
}




.cupom.encerrado {
    background: #6a6a6a;
}

.cupom.encerrado .fotocupom img {
    filter: grayscale(1);
}


.cupom h2 {
    color: #fff;
    font-weight: 600;
}

#listacupons .cupom .nomecupom {
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem;
    color: #000;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0.5rem 0;
    cursor: pointer;
    position: relative;
}

.cupom.encerrado .nomecupom {
    cursor: auto;
    text-decoration: line-through;
}

.cupom .nomecupom::before {
    content: url(../img/copy.png);
    position: absolute;
    top: 0px;
    right: 7px;
}

.cupom.cupom.encerrado .nomecupom::before {
    display: none;
}

.cupom .vantagem{
    font-size: 1.5rem;
    font-weight: 600;
}

.cupom .descritivo {
    overflow: hidden;
}

hr {
    border-top: 5px #fff dotted;
    margin: 1rem 0;
    position: relative;
}

.cupom .cta {
    display: block;
    text-transform: uppercase;
    text-align: center;
    border-radius: 0.5rem;
    padding: 0.5rem;
    border: 2px #fff dotted;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.cupom.cupom.encerrado .cta {
    pointer-events: none;
}

.cupom .cta:hover {
    background: #fff;
    color: #fc6b0f;
}

.cupom .condicoes {
    color: #fff;
    display: block;
    text-decoration: underline;
    margin-bottom: 0rem;
}

.legal {
    background: #fff;
    padding: 40px;
    max-width: 450px;
    margin: 0 auto;
    translate: -8px 0;
    position: relative;
}

.legal h2 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #fc6b0f;
    margin-bottom: 10px;
}

.legal p {
    font-size: 0.8rem;
}

.legal a {
    color: #fc6b0f;
}

#notificacao {
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fc6b0f;
    border: dashed 2px #333;
    color: #fff;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

#notificacao p {
    font-weight: 600;
}

#notificacao.mostrar {
    opacity: 1;
}

#banner {
    background: 002C87;
    text-align: center;
    padding: 50px 0;
    position: relative;
}

#banner::before {
    content: "";
    display: block;
    background: #ff6200;
    width: 60px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

#banner h2 {
    color: #fff;
    font-size: 1.4rem;
    max-width: 80%;
    margin: 0 auto 30px;
    text-wrap: balance;
}

#banner img {
    max-width: 80%;
    border-radius: 1rem;
}

.separacupom{
    gap: 1rem;
    align-items: center;
}

.fotocupom{
    width: 150px;
    flex-shrink: 0;
}

.fotocupom img{
    border-radius: 1rem;
}

.dadoscupom{
    flex-grow: 1;
    padding-left: 1rem;
    border-left: 2px #fff dashed;
}

#naoencontrou{
    background: rgb(255,98,0);
background: radial-gradient(circle, rgba(255,98,0,1) 0%, rgba(255,92,0,1) 100%);
    padding: 50px 0;
    text-align: center;
}

#naoencontrou h2{
    color: #fff;
}

#naoencontrou p{
    color: #fff;
    text-wrap: balance;
    margin-bottom: 30px;
}

#naoencontrou a{
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    background: #fc6b0f;
    border-radius: 10px;
    border: dashed 1px #00133b;
    transition: all 0.3s;
}

#naoencontrou a:hover{
    background: #fff;
    color: #fc6b0f;
}

#faq {
    background: #005AFF;
    padding: 50px 0;
    text-align: center
}

#faq p{
    margin-bottom: 30px;
    color: #fff;
}

#faq li p{
    margin-bottom: 10px;
}

#faq li {
    background: #002C87;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: left
}

#faq li h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px
}

#faq li a {
    color: #fc6b0f;
    font-weight: 600
}

#faq li .uk-accordion-title::before {
    background: url(../img/seta-faq.webp) center center no-repeat;
    background-size: contain;
    rotate: 180deg;
    transition: all .3s
}

#faq .uk-open .uk-accordion-title::before {
    rotate: 0deg
}

#listacupons p{
    text-align: center;
    color: #fff;
}

#listacupons .cupom .vantagem, #listacupons .cupom .descritivo{
    text-align: left;
}

h2:has(strong){
    font-size: 3rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

h2:has(strong)::before{
    content: url(../img/relogio.webp);
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.7));
}

h2:has(strong)::after{
    content: url(../img/cupom-breve.webp);
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.7));
}

h2 strong{
    color: #FF6B17;
    font-weight: 600;
    display: block;
}

#breve .cupom{
    background: #005AFF;
    pointer-events: none;
    user-select: none;
}

#breve .cupom .nomecupom span{
    filter: blur(4px);
}

#breve .cupom .nomecupom::before{
    display: none;
}


#breve .cupom .cta{
    display: none;
}

#breve .condicoes{
    display: none;
}

#breve:not(:has(.cupom)){
    display: none;
}

#cupomencerrado:not(:has(.cupom)){
    display: none;
}

.dobrablack{
    background: url(../img/bg-black-friday-topo.webp) center center no-repeat;
    background-size: cover;
    text-align: center;
    padding: 50px 30px; 
    border-radius: 20px;
    margin-bottom: 30px;
}

.logoblack{
    margin-bottom: 50px;
}

#gatilho{
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

#gatilho::after{
    aspect-ratio: 379 / 60;
    display: block;
    animation-name: trocagatilho;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    width: 100%;
    background: url(../img/gatilho-01.webp) center center no-repeat;
    background-size: contain;
    content: "";
}

.dobrablack .chamada{
    max-width: 400px;
}

.textolegal{
    font-size: 0.8rem;
    color: #fff;
    text-align: center;
    padding: 10px 0;

}
    

@keyframes trocagatilho {
    0% {
        background: url(../img/gatilho-01.webp) center center no-repeat;
    background-size: contain;
    }

    33% {
        background: url(../img/gatilho-02.webp) center center no-repeat;
    background-size: contain;
    }

    66%{
        background: url(../img/gatilho-03.webp) center center no-repeat;
    background-size: contain;
    }
}





@media screen and (max-width: 1480px) {
    .container {
        margin: 0 30px;
    }

    .container.cupons {
        margin: 0 30px 4rem;
    }
}

@media screen and (max-width: 999px) {
    .separacupom{
        flex-direction: column;
    }

    .dadoscupom{
       border-top: 2px #fff dashed;
       border-left: none;
       padding-left: 0rem;
       padding-top: 1rem;
       width: 100%;
    }

    h1{
        font-size: 2rem;
        text-align: center;
        margin:  0 20px;
    }

    main{
        max-height: 250px;
    }

    #ninja img{
        height: 250px;
    }

}

@media screen and (max-width: 730px) {
    h2:has(strong)::before, h2:has(strong)::after{
        display: none;
    }

    h2:has(strong){
        font-size: 2rem;
    }
}


@media screen and (max-width: 670px) {

    .cupom {
        width: 100%;
        text-align: center;
    }

    .cupom .descritivo {
        height: auto;
        overflow: auto;
    }

    main{
        background-size: cover;
        padding-bottom: 30px ;
        max-height: none;
        text-align: center;
    }


    .encerrado .fotocupom, .encerrado .cta{
        display: none;
    }

    .encerrado .dadoscupom{
        border: 0;
        padding-top: 0;
    }

    #ninja{
        display: none;
    }

    main header{
        position: static;
    }


    h1 {
        margin: 20px 0 0;
        font-size: 2rem;
        line-height: 1;
    }


    main .flex {
        flex-wrap: wrap;
        flex-direction: column;

    }

    header .abas a {
        width: 100%;
        clip-path: none;
    }

    header .abas a:nth-child(2) {
        clip-path: none;
    }

    .instrucoes {
        text-align: center;
    }

    #logo-kabum {
        margin-top: 30px;
    }





}