* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    /* outline: 2px solid red; */
}

@font-face {
    font-family: 'montserrat';
    src: url(../assets/fonts/Montserrat-VariableFont_wght.ttf);
    font-display: swap;
}

body,
html {
    overflow-x: hidden;
}

:root {
    --bk-color: #000000;
    --font-color: #fff;
    --prim-color: #5735B7;
    --sec-color: #1D1040;
    --gray: #3F3F3F;
}

body {
    font-family: 'montserrat';
    background-color: var(--bk-color);
    color: var(--font-color);
}

label,
p {
    font-size: clamp(18px, 5vw, 22px);
}

h1 {
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 600;
}

h2 {
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 400;
}

h3 {
    font-size: clamp(20px, 5vw, 28px);
}

/* animações */

.fade-right {
    transform: translateX(-80px);
}

.fade-left {
    transform: translateX(80px);
}

.fade-up {
    transform: translateY(80px);
}

.fade-down-left {
    transform: translateX(-160px) scale(.6);
}

.fade-down-rigth {
    transform: translateX(160px) scale(.6);
}

.fade-up-rigth {
    transform: translateY(160px) scale(.6);
}

.flip {
    transform: rotatex(90deg);
}

.flip-left {
    transform: rotateY(90deg);
}

.flip-right {
    transform: rotateY(-90deg);
}

.ef {
    opacity: 0;
    transition: opacity .8s ease, transform .8s ease;
}

.df {
    opacity: 1;
    transition: opacity .8s ease, transform .8s ease;
}

.show {
    opacity: 1;
    transform: translateX(0);
}


/* auxiliares */

.gray {
    color: var(--gray);
}

.red {
    color: #FF2424;
}

.green {
    color: green;
}

.purple {
    color: var(--prim-color);
}

.container {
    padding: 5% 0;
    max-width: min(1200px, 90vw);
    margin: 0 auto;
    height: 100%;
}

.all--center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.d--flex {
    display: flex;
    gap: 30px;
}

.f--column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bd-top {
    border-top: 1px solid #fff;
}

.button {
    padding: 20px;
    background-color: var(--prim-color);
    color: var(--font-color);
    width: 600px;
    border-radius: 50px;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: bold;
    font-family: 'montserrat';
    display: inline-block;
    text-align: center;
    transition: padding 500ms ease-in-out;
    transition: .5s;
    cursor: pointer;
    border: none;
}

.button:hover {
    color: var(--font-color);
    transition: .5s;
    box-shadow: 5px 5px 60px 5px rgba(87, 53, 183, 0.30);
}

.button--II {
    padding: 20px;
    background-color: transparent;
    color: var(--font-color);
    width: 300px;
    border-radius: 50px;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: bold;
    font-family: 'montserrat';
    display: inline-block;
    text-align: center;
    transition: padding 500ms ease-in-out;
    transition: .5s;
    cursor: pointer;
    border: none;
    border: var(--prim-color) solid 1px;
}

.button--II:hover {
    color: var(--font-color);
    transition: .5s;
    box-shadow: 5px 5px 60px 5px rgba(87, 53, 183, 0.30);
}


.grow {
    font-size: clamp(30px, 4vw, 40px);
}

.grower {
    font-size: clamp(50px, 5vw, 60px);
}

.big .semi--tittle {
    padding: 10px;
    border-radius: 50px;
    border: var(--sec-color) 2px solid;
    width: 480px;
}

.border {
    border-radius: 30px;
    border: var(--prim-color) solid 1px;
    padding: 20px;
}

/* blurs do bg  */
.bg-red,
.bg-green,
.bg-center,
.bg-glow-left,
.bg-glow-rigth {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bg-red>*,
.bg-green>*,
.bg-center>*,
.bg-glow-left>*,
.bg-glow-rigth>* {
    position: relative;
    z-index: 2;
}


.bg-glow-left::before,
.bg-glow-rigth::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    background: radial-gradient(circle,
            rgba(150, 0, 255, 0.55) 0%,
            rgba(80, 0, 200, 0.3) 35%,
            transparent 80%);
    filter: blur(90px);

    z-index: 0;
    pointer-events: none;
}

.bg-glow-left::before {
    left: -25%;
    width: 50%;
}

.bg-glow-rigth::before {
    right: -25%;
    width: 50%;
}

.bg-center::before {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    left: 25%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(150, 0, 255, 0.55) 0%,
            rgba(80, 0, 200, 0.3) 35%,
            transparent 80%);
    filter: blur(90px);

    z-index: 0;
    pointer-events: none;
}


.bg-green::before {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    right: 0%;
    height: 30%;
    background: radial-gradient(circle,
            rgba(49, 224, 128, 0.55) 0%,
            rgba(35, 118, 4, 0.3) 100%,
            transparent 80%);
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

.bg-red::before {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    left: 0%;
    height: 30%;
    background: radial-gradient(circle,
            rgba(224, 0, 0, 0.55) 0%,
            rgba(118, 4, 4, 0.3) 100%,
            transparent 80%);
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

/* timer */

.contador-display h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 22px;
}

.contador-display {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4d4d;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.6rem 1.2rem;
    text-transform: uppercase;
    animation: brilho-vermelho 2s infinite;
}

#timer {
    padding: 15px;
    margin: 0;
    background-color: var(--sec-color);
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}

#timer .container {
    padding: 0;
}

#timer .button {
    width: 300px;
}

#timer .box {
    justify-content: space-between;
}

/* hero */

#hero {
    text-align: center;
    overflow: hidden;
}

#hero .container {
    gap: 30px;
}

#hero .strip {
    background-color: var(--prim-color);
    padding: 20px;
    font-weight: 500;
    z-index: 999;
}

#hero .strip p {
    font-size: clamp(8px, 5vw, 16px);
}

#hero .box__text {
    width: 80%;
    gap: 30px;
}

#hero .box__video {
    width: 100%;
}

#hero .box__video video {
    width: 50%;
    border-radius: 30px;
}

#hero .box__item {
    gap: 20px;
}

/* contadores */

#contadores .container {
    gap: 30px;
}

#contadores .purple {
    gap: 10px;
    font-weight: 700;
}

/*spin*/

#spin {
    gap: 30px;
}


#spin .box__text {
    width: 60%;
    text-align: center;
    gap: 30px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.text-slider {
    overflow: hidden;
    background: rgba(0, 0, 0, 0.10);
    padding: 1rem 0;
}

.text-slider__inner {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 80s linear infinite;
}

/* what */



#what .box__text {
    width: 60%;
    gap: 30px;
    text-align: center;
}

#what .card {
    text-align: center;
    width: 400px;
    height: 400px;
}

/* why */
#why ul {
    margin-left: 40px;
    gap: 15px;
}

/* you */

#you ul {
    list-style: none;
}

#you .border {
    padding: 50px;
    width: 50%;
    height: fit-content;
}

#you .box {
    width: 50%;
    align-items: center;
}

#you .box .border {
    padding: 50px;
    width: 100%;
    height: fit-content;
}

#you .button {
    width: 80%;
}

/* people */
#best,
#fabrizio,
#erick {
    padding: 50px;
}

#best {
    text-align: center;
}

#combination {
    width: 60%;
    text-align: center;
}

#combination .border {
    padding: 50px;
}

#combination .box__text .border {
    padding: 30px;
    text-align: left;
}


/* depoimentos */


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    height: 300px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--prim-color)) !important;
}


/* divulgue */

#divulge .box__text {
    width: 50%;
}

#divulgue .box {
    text-align: center;
}

#divulgue .button {
    width: 100%;
}

#divulgue .box__text ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 50px;
    text-align: left;
}

/* price */

#price .box__text {
    text-align: center;
    width: 60%;
}

#price.bg-center::before {
    width: 25%;
    left: 40%;
}

/* works */

#works .box__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}

#works .card {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: top;
}

#works h3 {
    color: var(--prim-color);
}

#works .box__text {
    width: 40%;
    text-align: center;
}

/* plans */

#plans {
    text-align: center;
}

#plans .border {
    overflow: hidden;
    padding: 0px;
    width: 40%;
    text-align: center;
}

#plans ul {
    list-style: none;
    text-align: left;
    gap: 15px;
}

#plans .box {
    position: relative;
    padding: 50px;
    bottom: 100px;
}

#plans .box{
 height: auto;
}

.test {
    width: 25%;
}

.border2 {
    padding: 50px;
    border-radius: 30px;
    width: 60%;
    border: var(--prim-color) 1px solid;
}

.border2 img {
    width: 30%;
}

/* ofert */

#ofert ul {
    list-style: none;
    text-align: left;
}

#ofert .border {
    width: 50%;
    height: 500px;
    text-align: center;
    overflow: hidden;
}


#crow .border {
    border: none;
    height: auto;
    width: 100%;
}

.test {
    top: 0;
}

#crow {
    width: 50%;
    height: 500px;
    border: var(--prim-color) solid 1px;
    border-radius: 30px;
    overflow: hidden;
}

/* faq */

#faq p {
    margin-top: 20px;
}

#faq .box__text {
    text-align: center;
    width: 70%;
    margin-bottom: 50px;
}

.accordions {
    width: 100%;
    margin: 0 auto;
}

.accordion-item input {
    display: none;
}

.accordion-item label {
    display: flex;
    cursor: pointer;
    padding: 5px 3px;
    transition: .6s;
    font-weight: 600;
}

.accordion-item label:hover {
    color: var(--prim-color);
    transition: .6s;
    font-weight: bold;
}

.accordion-content {
    height: 0px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    margin-left: 50px;
}

.accordion-content p {
    font-weight: 300;
}

[id^=accordion]:checked~.accordion-content {
    height: 120px;
}

.caixa {
    display: inline-block;
    border-bottom: 1px solid #999;
    position: relative;
    transition: border-color 0.3s ease;
    width: 100%;
    padding: 20px;
    font-weight: 500;
}


.caixa::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--prim-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}


.caixa:hover {
    border-bottom-color: transparent;
}

.caixa:hover::after {
    transform: scaleX(1);
}

/* carrer */

#carrer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#carrer .border {
    padding: 50px;
    width: 50%;
    height: 600px;
}

/* choice */

#choice {
    text-align: center;
}

#choice .border {
    width: 50%;
    text-align: left;
    padding: 30px;
}

@media (max-width:1240px) {

    .button {
        width: 100%;
    }

    .swiper-slide {
        width: 300px !important;
        height: 300px !important;
    }

    /* timer */

    #timer .box {
        flex-direction: column;
        justify-content: center;
        gap: 0px;
    }

    #timer p {
        font-size: 10px;
    }

    #countdown {
        font-size: 20px;
    }

    #timer .button {
        padding: 10px;
        width: 80%;
        font-size: smaller;
    }

    /*hero  */

    #hero .box__item {
        flex-direction: column;
    }

    #contadores .container {
        flex-direction: column;
    }

    #contadores .all--center {
        gap: 10px;
    }

    /* spin */

    #spin .box__text {
        width: 90%;
    }

    /* what */

    #what .box__text {
        width: 100%;
    }

    #what .box__cards {
        display: flex;
        flex-direction: column;
    }

    #what .card {
        width: 100%;
    }

    /* why */

    #why .container {
        flex-direction: column;
    }

    #why img {
        width: 100%;
    }

    /* you */

    #you .container {
        flex-direction: column;
    }

    #you .box,
    #you .border {
        width: 100%;
    }

    /* people */

    #people img,
    #people .border {
        width: 100%;
    }

    #erick,
    #fabrizio,
    #best {
        flex-direction: column;
        text-align: center;
    }

    /* divulgue */

    #divulgue .box {
        flex-direction: column;
    }

    #divulgue img {
        width: 100%;
    }

    /* price */

    #price .box__text {
        width: 100%;
    }

    /* works */

    #works .box__cards {
        display: flex;
        flex-direction: column;
    }

    #works .box__text {
        width: 100%;
    }

    /* plans */

    #plans .border {
        width: 100%;
        height: 800px;
    }

    #plans img {
        width: 35%;
    }

    #plans .border2 {
        width: 100%;
    }

    #plans .border2 img {
        width: 60%;
    }

    /* ofert */

    #ofert .box__text {
        text-align: center;
    }

    #ofert .box {
        flex-direction: column;
    }

    #crow,
    #ofert .border {
        width: 100%;
    }

    #crow {
        height: 350px;
    }

    /* faq */

    [id^=accordion]:checked~.accordion-content {
        height: auto;
    }

    #faq .d--flex {
        flex-direction: column;
    }


    /* carrer */

    #carrer .box {
        flex-direction: column;
    }

    #carrer .border {
        width: 100%;
        height: auto;
    }

    /* choice */

    #choice .border {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    #choice img {
        width: 50%;
    }

    /* footer */

    footer img {
        width: 60%;
    }
}