@import url('https://fonts.googleapis.com/css2?family=Average+Sans&family=Bebas+Neue&family=Cal+Sans&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
   
    height: 100dvh;
    background-color: #2d2d2d;
    background-image:linear-gradient(rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)), url('https://images.hdqwalls.com/wallpapers/3d-cyan-blue-digital-art-4k-ki.jpg');
    /*link-background > https://images.hdqwalls.com/wallpapers/dark-blue-green-gradient-4k-i4.jpg*/
    background-size:cover ;
    height: 100%;
    backdrop-filter: blur(20px);
}

.flex {
    display: flex;
}

a {
    text-decoration: none;
    color: white;
    cursor: pointer;
}


button {
    align-items: center;
    background-image: linear-gradient(144deg, #304ed4, #2326da 50%, #008cff);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

button:active,
button:hover {
    outline: 0;
    filter: drop-shadow(1px 1px 100px rgb(10, 221, 236));
}

button span {
    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

button:hover span {
    background: none;
}

button:active {
    transform: scale(0.9);
}


/* GERAIS*/

/*FRETE GRATIS*/
header {
   
    display: flex;
    background-color: rgb(43, 131, 48);
    justify-content: center;

    & h1 {
        font-size: 1.5rem;
        font-family: "Poppins", sans-serif;
        color: aliceblue;
    }
}

/*topo-do-site*/

article.topo-site {
    padding: 40px 4%;
}

article.topo-site .flex {
    align-items: center;
    justify-content: center;
}

.flex .txt-1 {
    
    h1 {
        font-size: 1.8rem;
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;
    }

    p {
        font-size: 1.1rem;
        color: white;
        font-family: "Roboto", sans-serif;
        margin: 20px 0;
    }

    span {
        display: block;

    }

    ul {
        margin: 20px 0;
        font-family: "Noto Sans", sans-serif;
        list-style: none;

        li {
            color: #ffdfa1;
            line-height: 1.5;
        }
    }

}

.flex .img-1 {
    
    img {
        height: 100%;
        width: 28rem;
    }
}

.bnt-1 {
    display: flex;
    width: 18rem;
    background-color: rgb(14, 0, 95);
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 2.5rem;
    border-radius: 10px;
    transition: 0.5s;
    animation: bnt-1 3s ease-in-out infinite;

    a {
        font-family: "Cal Sans", sans-serif;
    }
}

.bnt-1:hover {
    background-color: rgb(7, 0, 105);
    filter: drop-shadow(5px 5px 5px rgb(0, 32, 216));
}

@keyframes bnt-1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/*BENEFICIOS*/

article.bennefts {
    padding: 40px 4%;

    h2 {
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 50px 0;
        margin-top: -50px;
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;
        font-size: 1.5rem;
    }

    p {
        font-family: "Roboto", sans-serif;
        font-size: 1.1rem;
        color: #fff;
        text-align: center;
        margin: 20px 0;
        margin-top: -20px;
    }

    span {
        display: block;
        color: white;
    }
}

article.bennefts .flex {
    justify-content: center;
    align-items: center;
}

.flex .img-2 {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;

    img {
        border-radius: 50%;
        width: 150px;
        height: 150px;
        object-fit: cover;
        animation: voar 2s ease-in-out infinite alternate;
        position: relative;
        transition: 0.3s;
    }

    h3 {
        font-family: "Average Sans", sans-serif;
        color: #ffdfa1;
        margin: 10px 0;
    }

    p {
        margin: 1px 0;
        font-family: "Roboto", sans-serif;
        font-size: 0.9rem;
        color: #fff;
    }
}

.bnt-2 {
    display: flex;
    width: 18rem;
    background-color: rgb(14, 0, 95);
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 2.5rem;
    border-radius: 10px;
    transition: 0.5s;
    animation: bnt-1 3s ease-in-out infinite;
    margin: 0 auto;

    a {
        font-family: "Cal Sans", sans-serif;
    }
}

.bnt-2:hover {
    background-color: rgb(7, 0, 105);
    filter: drop-shadow(5px 5px 5px rgb(0, 32, 216));
}

#segura {
    color: #a5f581;
    margin-top: 10px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*PODER*/

article.powerful {
    padding: 40px 4%;

    h2 {
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;
        text-align: center;
        margin-top: -20px;
    }

    span {
        display: block;
        color: white;
    }
}

article.powerful .flex {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flex .txt-3 {

    p {
        font-size: 1.1rem;
        color: white;
        font-family: "Roboto", sans-serif;
        margin: 20px 0;
        line-height: 1.6;
    }

    span {
        display: block;
    }
}

.flex .img-3 {
    img {
        height: 100%;
        width: 28rem;
        
    }
}

/*NATURAL*/

article.natural {
    padding: 40px 4%;

    h2 {
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;
        text-align: center;
        margin-top: -20px;
    }

    span {
        display: block;
        color: white;
    }
}


article.natural .flex {
    align-items: center;
    justify-content: center;
}

.flex .img-4 {
    img {
        
        height: 100%;
        width: 28rem;
    }
}

.flex .txt-4 {
    h3 {
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;
        text-align: center;
        margin-top: -20px;
    }

    p {
        text-align: center;
        font-size: 1.1rem;
        color: white;
        font-family: "Roboto", sans-serif;
        margin: 20px 0;
        line-height: 1.5;
    }

    b {
        color: #95eb6e;
        font-weight: 700;
    }
}

/*MODE*/

article.mode {
    padding: 40px 4%;
    background-color: #030325;
    width: 57%;
    margin: 0 auto;
    border-radius: 50px 0;
}

article.mode .flex {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.flex .txt-5 {
    h2 {
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;

        margin-top: -20px;
    }

    p {

        font-size: 1.1rem;
        color: white;
        font-family: "Roboto", sans-serif;
        margin: 20px 0;
        line-height: 1.5;
    }

    span {
        display: block;
    }
}

/*guarantee*/

article.guarantee {
    padding: 40px 4%;
}

article.guarantee .flex {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flex .txt-6 {
    h2 {
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;
    }

    p {
        text-align: center;
        font-size: 1.1rem;
        color: white;
        font-family: "Roboto", sans-serif;
        margin: 20px 0;
        line-height: 1.5;
    }

    b {
        color: #95eb6e;
    }

    span {
        display: block;
    }
}

.flex .img-5 {
    img {
        height: 100%;
        width: 28rem;
        
    }
}

/*SECRETS*/

article.secrets {
    text-align: center;
    padding: 40px 4%;

    h2 {
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;
    }

    p {
        font-size: 1.1rem;
        color: white;
        font-family: "Roboto", sans-serif;
        margin: 20px 0;
    }

    span {
        display: block;
    }

    b {
        color: #95eb6e;
    }
}


article.secrets .flex {
    justify-content: center;
    align-items: center;
}

.flex .img-6 {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;

    img {
        border-radius: 50%;
        width: 150px;
        height: 150px;
        object-fit: cover;
        animation: voar 2s ease-in-out infinite alternate;
        position: relative;
        transition: 0.3s;
        
    }

    h3 {
        font-family: "Average Sans", sans-serif;
        color: #ffdfa1;
        margin: 10px 0;
    }

    p {
        margin: 1px 0;
        font-family: "Roboto", sans-serif;
        font-size: 0.9rem;
        color: #fff;
    }
}

/*ANVISA*/

article.anvisa {
    padding: 40px 4%;
}


article.anvisa .flex {
    justify-content: center;
    align-items: center;

}

.flex .img-7 {
    img {
        margin-top: -20px;
        height: 100%;
        width: 28rem;
    }
}

.flex .txt-7 {
    background-color: #030325;
    border-radius: 50px 0;
    padding: 20px;

    p {
        text-align: center;
        font-size: 1.1rem;
        color: white;
        font-family: "Roboto", sans-serif;
        margin: 20px 0;
        line-height: 1.5;
    }

    span {
        display: block;
    }

    b {
        color: #95eb6e;
    }
}

/*SECURITY*/

article.security {
    padding: 40px 4%;
}

.security .doubts {
    margin-top: -60px;
    text-align: center;
    font-family: "Poppins", sans-serif;

    h2 {
        color: #ffdfa1;
        font-size: 1.4rem;
    }

    p {
        font-family: "Roboto", sans-serif;
        font-size: 0.9rem;
        color: white;
        margin-bottom: 20px;
    }
}

article.security .flex {
    justify-content: center;
    GAP: 20px;

    span {
        display: block;
    }
}

.security .icons {
    justify-content: center;
    align-items: center;
    text-align: center;

    p {
        font-family: "Roboto", sans-serif;
        font-size: 0.6rem;
        color: rgb(255, 255, 255);
    }

    i {
        color: #ffffff;
        transition: 0.2s;
    }
}

/*BUY*/

article.buy {
    padding: 40px 4%;

    h1 {
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 50px 0;
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;
        font-size: 1.7rem;
    }

    b {
        color: #95eb6e;
        font-weight: 800;
    }
}

article.buy .flex {
    justify-content: center;
    gap: 30px;

}

.qtd {
    h2 {
        color: white;
        border-radius: 10px 10px 0 0px;
        background-color: #030325;
        font-family: "Poppins", sans-serif;
        transform: translateY(-20px);
    }
}


.flex .txt-5-img-5 {
    backdrop-filter: blur(10px);
    animation: animation 1s ease-in-out infinite;
    transition: 1s;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px 0;
    width: 270px;
    background-image: url('https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExNDJqZmZoMm82anFyMHVzZmsxMm52MWNudGM1dGcwaG9icmgzc29sMyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/3q3SUqPnxZGQpMNcjc/giphy.gif');
    background-size: cover;

    h3 {
        transform: translateY(-10PX);
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        color: #fff;
    }

    img {
        width: 100%;
        max-width: 270px;
        
    }

    #X {
        font-family: "Poppins", sans-serif;
        color: #ffffff;

        span {
            font-size: 2.5rem;
            color: #2fe757;
        }
    }

    .Preço {
        font-weight: 600;
        color: #fda015;
        font-size: 1rem;
        font-family: "Noto Sans", sans-serif;
        padding: 5px 0;
    }

    button {
        margin: 0 auto;
        margin-top: 5px;
    }
}

.freight {
    font-family: "Roboto", sans-serif;
    margin-top: 15px;
    color: #2fe757;
}

.flex .txt-5-img-5:hover {
    filter: drop-shadow(1px 1px 100px rgb(0, 193, 252));
}

@keyframes animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.005);
    }
}

/*TESTIMONIALS*/

article.testimonials {
    padding: 40px 4%;
    margin-top: -50px;
    h2 {
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 50px 0;
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;
        font-size: 1.7rem;
        margin-left: 20px;
    }
}

article.testimonials .flex {
    align-items: center;
    justify-content: center;
}

.slider {
    filter: drop-shadow(15px 15px 10px black);
    width: 25%;
    overflow: hidden;
    color: #fff;
    border-radius: 20px;
    
}

.slides {
    
    display: flex;
    animation: slide 18s infinite;
}


.slides img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    
}


@keyframes slide {
    0% {
        transform: translateX(0);
    }

    16.66% {
        transform: translateX(-100%);
    }

    33.33% {
        transform: translateX(-200%);
    }

    50% {
        transform: translateX(-300%);
    }

    66.66% {
        transform: translateX(-400%);
    }

    83.33% {
        transform: translateX(-500%);
    }

    100% {
        transform: translateX(0);
    }
}

.txt-slide {
    text-align: center;

    h2 {
        font-family: "Average Sans", sans-serif;
        margin: 10px 0;

    }

    span {
        display: block;

    }

    p {
        margin: 20px 50px;
        font-family: "Roboto", sans-serif;
        font-size: 1.2rem;
        color: #fff;
        text-align: center;
    }

    b {

        font-weight: 800;
    }
}

/*VIDEO*/

article.video {
    padding: 40px 4%;
}

article.video .flex {
    align-items: center;
    justify-content: center;
}

.flex .video-1 {

    video {
        filter: drop-shadow(15px 15px 10px black);
        width: 50rem;
        border-radius: 20px;
       
    }

    p {
        text-align: center;
        margin: 20px 50px;
        font-family: "Roboto", sans-serif;
        font-size: 1.2rem;
        color: #fff;

    }

    span {
        display: block;
    }

}

/*CORREIO*/

article.mail {
    padding: 40px 4%;
}

article.mail .flex {
    margin-top: -50px;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    h2 {
        font-family: "Poppins", sans-serif;
        text-align: center;
        color: white;
        margin-top: -100px;

        span {
            color: #ffdfa1;
        }
    }

    span {

        display: block;
    }

    p {
        font-family: "Roboto", sans-serif;
        font-size: 0.9rem;
        color: #fff;
        text-align: center;
        margin: 20px 0;
    }

    img {
        margin-top: -100px;
        width: 25rem;
        
    }

    b {
        color: #95eb6e;
    }
}

/*WHATSAPP*/

article.whatsapp {
    padding: 40px 4%;
}

article.whatsapp .flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flex .whats {
    img {
        width: 10rem;
        position: relative;
        
    }
}

.whats img:hover {
    transform: rotate(360deg);
    transition: 1s;
}

.txt-whats {
    h2 {
        font-family: "Poppins", sans-serif;
        color: #ffdfa1;
        font-size: 1.6rem;
    }

    p {
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        color: rgb(255, 255, 255);
        margin: 10px 0;

    }

    button {
        color: rgb(255, 255, 255);
        background-color: #218838;
        border: none;
        width: 250px;
        height: 4rem;
        font-weight: 600;
        margin: 0 auto;
    }

    b {
        color: #95eb6e;
    }
}

.support-box button {
    background: #32CD32;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 auto;
}

/*FAQ*/

article.faq {
    padding: 40px 4%;
}

article.faq .flex {
    flex-direction: column;
    margin-top: -25px;
}

.flex .txt-faq {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;

    b {
        color: #95eb6e;
    }

    h2 {
        color: #ffdfa1;
        font-family: "Poppins", sans-serif;
        font-size: 1.6rem;
    }

    p {
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        color: #fff;
        margin: 10px 0;
    }

    p span {
        display: block;
    }
}

.faq-container {
    width: 600px;
    max-width: 600px;
    margin: auto;
    background: #030325;
    border-radius: 8px;
    padding: 10px;
}

.faq-item {
    background: #0e034b;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;

    h3 {
        font-family: "Roboto", sans-serif;
    }
}

.faq-item h3 {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.faq-item .content {
    display: none;
    padding: 10px;
    background: #050224;
    border-radius: 5px;
    margin-top: 5px;
    color: white;
    font-family: "Roboto", sans-serif;
}

/*footer*/

.footer-1 {
    background: #000;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.support-box {

    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;

    span {
        display: block;
    }

    h3 {
        font-family: "Average Sans", sans-serif;
    }

    p {
        margin: 10px 0;
        font-size: 0.8rem;
        font-family: "Roboto", sans-serif;
    }
}

.support-box button {
    background: #32CD32;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 auto;
}

.links ul {
    list-style: none;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

.links ul li::before {
    margin: 5px 0;
    color: #ff6600;
    content: "";
    font-family: "";
    font-weight: 200;
    padding-right: 10px;

}

.links ul li a {
    color: white;
    text-decoration: none;
}

.payments {
    img {
        width: 18rem;
        margin: 5px;
        
    }

    h3 {
        margin-left: 38px;
    }
}

hr {

    margin: auto;
}

.copyright {
    color: white;
    text-align: center;
    padding: 10px;
    background: #000;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
}




































@media screen and (max-width: 1366px) {
    .slider {
        width: 40%;
    }
}


@media screen and (max-width: 1020px) {
    /*GENERALS*/

    body {
        height: 100%;
        background-size: contain;
    }

    .flex {
        flex-direction: column;
    }

    /*TOP*/
    .flex .txt-1 {

        h1 {
            font-size: 1.3rem;
        }

        p {
            font-size: 0.9rem
        }

    }
    .flex .img-1 {
       
        img {
            width: 100%;
        }
    }

    .bnt-1 {
        margin: 0 auto;
    }

    /*bennefts*/
    article.bennefts {
        margin-top: -50px;
        p {
            font-size: 0.9rem;
        }

        span {
            display: contents;
        }
    }

    .flex .img-2 {

        p {
            text-align: center;
        }
    }

    /*POWERFUL*/
    .flex .img-3 {
        img {
            width: 100%;
        }
    }
    article.powerful {
        h2 {
            color: #ffdfa1;
            text-align: center;
            font-size: 1.2rem;
        }
    }

    article.powerful .flex {
        flex-direction: column-reverse;
    }

    .flex .txt-3 {
        p {
            font-size: 0.9rem;
            margin-top: -40px;
        }
    }

    .flex .img-3 {
        img {
            width: 100%;
        }
    }

    /*NATURAL*/
    article.natural {
        padding: 40px 0%;
    }

    .flex .txt-4 {
        p {
            font-size: 0.9rem;
        }
    }

    .flex .img-4 {
        img {
            width: 100%;
        }
    }

    /*MODE*/
    article.mode {
        width: 98%;
    }

    .flex .txt-5 {
        span {
            display: contents;
        }
    }

    /*guarantee*/
    article.guarantee .flex {

        flex-direction: column-reverse;
    }

    .flex .txt-6 {
        span {
            display: contents;
        }
    }

    .flex .img-5 {
        img {
            margin-top: -50px;
            width: 100%;
        }
    }

    /*SECRETS*/
    article.secrets {
        span {
            display: contents;
        }
    }

    /*ANVISA*/
    article.anvisa {
        margin-top: -40px;
    }
    .flex .img-7 {
        img {
            width: 100%;
        }
    }

    .flex .txt-7 {
        background-color: #030325;
        border-radius: 50px 0;
        margin-top: -50px;

        span {
            display: contents;
        }
    }

    /*SECURITY*/

    article.security .flex {
        flex-direction: row;
    }

    /*BUY*/
    article.buy {
margin-top: -50px;
    }
    article.buy .flex {
        flex-direction: column;
        align-items: center;
    }

    /*slide*/
    .slider {
        width: 100%;
        overflow: hidden;
    }

    /*TESTIMONIALS*/

    article.testimonials {
        margin-top: -50px;

        h2 {

            font-size: 1.5rem;
        }
    }

    .txt-slide {
        span {
            display: contents;

        }

        p {
            font-size: 1.2rem;
        }
    }

    /*WHATS*/

    article.whatsapp .flex {
        margin-top: -50px;
    }

    /*VIDEO*/
    .flex .video-1 {
        margin-top: -50px;

        video {
            width: 100%;
        }

        p {
            display: none;
        }

        span {
            display: block;
        }
    }


    /*CORREIO*/
    article.mail .flex {
        margin-top: -80px;
    }

    /*GUARANTEE*/

    article.guarantee .flex {
        margin-top: -30px;
    }

    /*FAQ*/
    .faq-container {
        width: 100%;
    }
}