* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100vh;
    background-color: black;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

/*------------------------------------------------------------[ Variáveis ]------------------------------------------------------------*/

:root {
    /*---[ Cores ]---*/
    --color-primary: #E50914;
    --color-secondary: rgba(229, 9, 20, 0.2);
    --color-description: rgba(255, 255, 255, 0.5);
    --color-shadow: rgba(229, 9, 20, 0.70);

    /*---[ Tipografia Desktop ]---*/
    --font-size-badge-desktop: 10px;
    --font-size-hero-desktop: 32px;
    --font-size-title-desktop: 24px;
    --font-size-description-desktop: 18px;
    --font-size-description-card-desktop: 15px;

    /*---[ Tipografia Mobile ]---*/
    --font-size-badge-mobile: 8px;
    --font-size-hero-mobile: 24px;
    --font-size-title-mobile: 20px;
    --font-size-description-mobile: 16px;
    --font-size-description-card-mobile: 13px;

    /*---[ Border ]---*/
    --radius-medium: 20px;
    --radius-high: 20px;
}

/*------------------------------------------------------------[ Classes Reutilizáveis ]------------------------------------------------------------*/

.container {
    width: 100%;
    max-width: 1300px;
    min-height: 100vh;

    flex-shrink: 0;
    flex-grow: 0;
}

.hat {
    width: fit-content;

    padding: 7px 16px;

    color: white;
    font-size: var(--font-size-badge-desktop);
    font-weight: 500;
    letter-spacing: 1px;

    border: 1px solid rgba(229, 9, 20, 0.45);
    border-radius: var(--radius-medium);
    background-color: rgba(229, 9, 20, 0.10);
}

.hat .icon {
    width: 16px;
    height: 16px;
}

.title {
    font-size: var(--font-size-title-desktop);
    margin-bottom: 20px;
}

.description {
    color: var(--color-description);
    font-size: var(--font-size-description-desktop);
    line-height: 1.7;
}

.marker {
    color: var(--color-primary);
}

.buttonCTA {
    width: 300px;
    min-height: 52px;

    padding: 10px 16px;

    color: white;
    background-color: var(--color-primary);

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    border: none;
    border-radius: var(--radius-medium);

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.buttonCTA:hover {
    transform: translateY(-2px);

    background-color: #f20d18;

    box-shadow:
        0 10px 35px rgba(229, 9, 20, 0.35),
        0 0 20px rgba(229, 9, 20, 0.25);
}

.buttonCTA:active {
    transform: translateY(0);
}

.icon {
    width: 20px;
    height: 20px;
    margin: 0 5px;

    flex-shrink: 0;
}

/*------------------------------------------------------------[ Background de Estrelas ]------------------------------------------------------------*/

#starBackground {
    width: 100%;
    height: 100%;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;

    pointer-events: none;
}

/*------------------------------------------------------------[ Container Main ]------------------------------------------------------------*/

#containerMain {
    width: 100%;
    padding: 20px;

    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*------------------------------------------------------------[ Container Hero ]------------------------------------------------------------*/

.containerHero {
    padding: 60px 40px;

    color: white;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    gap: 90px;
}

/*---[ Conteúdo da Hero ]---*/

.heroContent {
    width: 100%;
    max-width: 650px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    text-align: left;
}

.hatHeadline {
    margin-bottom: 22px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.headline {
    width: 100%;
    max-width: 650px;

    margin-bottom: 24px;

    color: white;
    font-size: var(--font-size-hero-desktop);
    line-height: 1.3;
}

.heroContent .description {
    width: 100%;
    max-width: 550px;

    margin-bottom: 32px;

    font-size: var(--font-size-description-desktop);
    line-height: 1.7;
}

.containerInfoHero {
    max-width: 560px;
    min-height: 50px;

    margin-bottom: 30px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.modalInfoHero {
    width: 120px;
    height: 100%;

    display: flex;
    flex-direction: row;

    align-items: center;

    margin: 0 10px;
    flex-shrink: 0;
    flex-grow: 0;
    transition: transform 0.2s ease;
}

.modalInfoHero:hover {
    transform: translateY(-3px);
}

.modalIconHero {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-high);
    padding: 5px;
}

.descModalHero {
    font-size: 13px;
}

.heroContent .buttonCTA {
    margin: 0;
}

/*---[ Vídeo da Hero ]---*/

.heroVideo {
    position: relative;
    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.heroVideo::before {
    content: "";

    width: 360px;
    height: 500px;

    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;

    background-color: var(--color-primary);
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.22;

    transform: translate(-50%, -50%);
}

.videoVSLWrapper {
    width: 300px;
    aspect-ratio: 9 / 16;

    padding: 2px;

    position: relative;
    overflow: hidden;

    border-radius: var(--radius-high);
    box-shadow: 0 0 18px var(--color-primary);
}

.videoVSLWrapper::before {
    content: "";

    width: 180%;
    height: 180%;

    position: absolute;
    top: 50%;
    left: 50%;

    background: conic-gradient(transparent 0deg,
            transparent 260deg,
            var(--color-primary) 310deg,
            white 330deg,
            var(--color-primary) 345deg,
            transparent 360deg);

    transform: translate(-50%, -50%);
    animation: rotateVideoGlow 6s linear infinite;
}

.videoVSL {
    width: 100%;
    height: 100%;

    position: relative;
    z-index: 1;

    display: block;
    object-fit: cover;

    background-color: black;
    border-radius: calc(var(--radius-high) - 2px);
}

@keyframes rotateVideoGlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/*------------------------------------------------------------[ Responsividade Container Hero ]------------------------------------------------------------*/

@media (max-width: 900px) {
    #containerMain {
        padding: 20px;
    }

    .containerHero {
        padding: 70px 20px;

        flex-direction: column;
        gap: 50px;
    }

    .heroContent {
        max-width: 700px;

        align-items: center;
        text-align: center;
    }

    .hatHeadline {
        margin-bottom: 15px;
    }

    .headline {
        font-size: var(--font-size-hero-mobile);
        line-height: 1.35;
    }

    .containerInfoHero {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .modalInfoHero {
        margin-right: 25px;
        margin-bottom: 30px;
    }

    .heroContent .description {
        max-width: 600px;

        font-size: var(--font-size-description-mobile);
    }

    .videoVSLWrapper {
        width: 280px;
    }
}

@media (max-width: 480px) {
    #containerMain {
        padding: 15px;
    }

    .containerHero {
        padding: 50px 5px;
        gap: 40px;
    }

    .hat {
        max-width: 100%;

        padding: 5px 10px;

        font-size: var(--font-size-badge-mobile);
        text-align: center;
    }

    .headline {
        font-size: var(--font-size-hero-mobile);
    }

    .heroContent .description {
        font-size: var(--font-size-description-mobile);
    }

    .buttonCTA {
        width: 100%;
        max-width: 300px;

        font-size: 13px;
    }

    .videoVSLWrapper {
        width: min(280px, 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .videoVSLWrapper::before {
        animation: none;
    }

    .buttonCTA {
        transition: none;
    }
}

/*------------------------------------------------------------[ Container Oportunidade do TikTok Shop ]------------------------------------------------------------*/
.containerOportunity {
    text-align: center;
    padding: 60px 40px;

    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.containerCardsOportunity {
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.cardOportunity {
    width: 300px;
    height: 300px;
    margin: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;

    border: 1px solid var(--color-secondary);
    border-radius: var(--radius-medium);
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(2px);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    flex-grow: 0;
}

.cardOportunity:hover {
    transform: translateY(-2px);
    box-shadow: 2px 2px 20px var(--color-shadow);
}

.imgCard {
    width: 100px;
    height: 100px;

    margin-bottom: 20px;
}

.descriptionCard {
    color: var(--color-description);
    font-size: var(--font-size-description-card-desktop);
}

/*------------------------------------------------------------[ Responsividade Container Oportunidade do TikTok Shop ]------------------------------------------------------------*/

@media screen and (max-width:900px) {
    .containerOportunity {
        padding: 15px;
    }

    .descriptionCard {
        font-size: var(--font-size-description-card-mobile);
    }
}

/*------------------------------------------------------------[ Container Problema ]------------------------------------------------------------*/

.containerProblem {
    padding: 100px 40px;

    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headerProblem {
    width: 100%;
    max-width: 850px;

    margin-bottom: 55px;

    text-align: center;
}

.headerProblem .description {
    width: 100%;
    max-width: 780px;

    margin: 0 auto;
}

.containerCardsProblem {
    width: 100%;
    max-width: 950px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 18px;
}

.cardProblem {
    width: 100%;
    min-height: 125px;

    padding: 22px 30px;

    display: flex;
    flex-direction: row;
    align-items: center;

    border: 1px solid rgba(229, 9, 20, 0.22);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-medium);

    background-color: rgba(10, 10, 10, 0.12);
    backdrop-filter: blur(2px);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.cardProblem:hover {
    transform: translateX(5px);

    border-color: rgba(229, 9, 20, 0.55);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(229, 9, 20, 0.12);
}

.iconProblem {
    width: 75px;
    height: 75px;

    margin-right: 25px;

    object-fit: contain;

    flex-shrink: 0;
}

.contentCardProblem {
    width: 100%;
}

.titleCardProblem {
    margin-bottom: 7px;

    color: white;
    font-size: 18px;
}

.descriptionCardProblem {
    max-width: 700px;

    color: var(--color-description);
    font-size: var(--font-size-description-card-desktop);
    line-height: 1.6;
}

.closingProblem {
    width: 100%;
    max-width: 800px;

    margin-top: 50px;

    color: white;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}

/*------------------------------------------------------------[ Responsividade Container Problema ]------------------------------------------------------------*/

@media screen and (max-width: 900px) {
    .containerProblem {
        padding: 80px 20px;
    }

    .brProblem {
        display: none;
    }

    .headerProblem {
        margin-bottom: 45px;
    }

    .containerProblem .title {
        font-size: var(--font-size-title-mobile);
    }

    .containerProblem .description {
        font-size: var(--font-size-description-mobile);
    }

    .containerCardsProblem {
        max-width: 700px;
    }

    .cardProblem {
        min-height: 120px;

        padding: 20px 24px;
    }

    .iconProblem {
        width: 65px;
        height: 65px;

        margin-right: 20px;
    }

    .descriptionCardProblem {
        font-size: var(--font-size-description-card-mobile);
    }

    .closingProblem {
        font-size: var(--font-size-description-mobile);
    }
}

@media screen and (max-width: 480px) {
    .containerProblem {
        padding: 65px 10px;
    }

    .headerProblem {
        margin-bottom: 35px;
    }

    .brProblem {
        display: none;
    }

    .cardProblem {
        min-height: auto;

        padding: 20px 18px;

        align-items: flex-start;
    }

    .cardProblem:hover {
        transform: translateY(-2px);
    }

    .iconProblem {
        width: 52px;
        height: 52px;

        margin-right: 15px;
    }

    .titleCardProblem {
        margin-bottom: 6px;

        font-size: 15px;
    }

    .descriptionCardProblem {
        line-height: 1.5;
    }

    .closingProblem {
        margin-top: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cardProblem {
        transition: none;
    }

    .cardProblem:hover {
        transform: none;
    }
}

/*------------------------------------------------------------[ Container Solução ]------------------------------------------------------------*/

.containerSolution {
    padding: 100px 40px;

    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headerSolution {
    width: 100%;
    max-width: 850px;

    margin-bottom: 80px;

    text-align: center;
}

.headerSolution .description {
    width: 100%;
    max-width: 780px;

    margin: 0 auto;
}

.flowSolution {
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.stepSolution {
    width: 210px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    transition: transform 0.25s ease;
}

.stepSolution:hover {
    transform: translateY(-5px);
}

.numberStepSolution {
    margin-bottom: 12px;

    color: rgba(229, 9, 20, 0.6);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.iconStepSolution {
    width: 110px;
    height: 110px;

    margin-bottom: 20px;
    padding: 12px;

    position: relative;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid rgba(229, 9, 20, 0.45);
    border-radius: 50%;

    background-color: rgba(229, 9, 20, 0.08);

    box-shadow:
        0 0 25px rgba(229, 9, 20, 0.12),
        inset 0 0 20px rgba(229, 9, 20, 0.05);
}

.iconStepSolution img {
    width: 75px;
    height: 75px;

    object-fit: contain;
}

.titleStepSolution {
    margin-bottom: 10px;

    color: white;
    font-size: 17px;
}

.descriptionStepSolution {
    color: var(--color-description);

    font-size: var(--font-size-description-card-desktop);
    line-height: 1.6;
}

.connectorSolution {
    width: 85px;
    height: 110px;

    margin-top: 37px;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;
}

.connectorSolution::before {
    content: "";

    width: 28px;
    height: 28px;

    position: absolute;
    z-index: 0;

    border: 1px solid rgba(229, 9, 20, 0.55);
    border-radius: 8px;

    box-shadow:
        0 0 8px rgba(229, 9, 20, 0.35),
        0 0 18px rgba(229, 9, 20, 0.18);

    transform: rotate(45deg);

    animation: pulseArrowGlow 2.4s ease-in-out infinite;
}

.connectorSolution::after {
    display: none;
}

.connectorSolution span {
    position: relative;
    z-index: 1;

    color: var(--color-primary);

    font-size: 22px;
    line-height: 1;

    text-shadow:
        0 0 6px rgba(229, 9, 20, 0.65),
        0 0 12px rgba(229, 9, 20, 0.35);
}

.summarySolution {
    margin-top: 70px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
}

.summarySolution span {
    margin: 0 12px;

    color: var(--color-primary);
}

@keyframes pulseArrowGlow {

    0%,
    100% {
        opacity: 0.45;
        box-shadow:
            0 0 6px rgba(229, 9, 20, 0.25),
            0 0 12px rgba(229, 9, 20, 0.12);
    }

    50% {
        opacity: 1;
        box-shadow:
            0 0 10px rgba(229, 9, 20, 0.55),
            0 0 20px rgba(229, 9, 20, 0.28);
    }
}

/*------------------------------------------------------------[ Responsividade Container Solução ]------------------------------------------------------------*/

@media screen and (max-width: 1050px) {
    .flowSolution {
        max-width: 700px;

        flex-wrap: wrap;

        row-gap: 55px;
    }

    .stepSolution {
        width: 260px;
    }

    .connectorSolution {
        width: 80px;
    }

    .connectorSolution:nth-child(4) {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .containerSolution {
        padding: 80px 20px;
    }

    .headerSolution {
        margin-bottom: 55px;
    }

    .containerSolution .title {
        font-size: var(--font-size-title-mobile);
    }

    .containerSolution .description {
        font-size: var(--font-size-description-mobile);
    }

    .descriptionStepSolution {
        font-size: var(--font-size-description-card-mobile);
    }
}

@media screen and (max-width: 700px) {
    .containerSolution {
        padding: 65px 10px;
    }

    .flowSolution {
        max-width: 320px;

        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;

        row-gap: 0;
    }

    .stepSolution {
        width: 100%;
        max-width: 270px;
    }

    .connectorSolution,
    .connectorSolution:nth-child(4) {
        width: 44px;
        height: 70px;

        margin: 0;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .connectorSolution::before {
        width: 28px;
        height: 28px;

        top: 50%;
        left: 50%;

        transform: translate(-55%, -50%) rotate(45deg);
    }

    .connectorSolution span {
        position: absolute;
        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%) rotate(90deg);

        font-size: 20px;
        line-height: 1;
    }

    .summarySolution {
        max-width: 220px;

        margin-top: 50px;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 8px;

        font-size: 11px;
        line-height: 1.4;
    }

    .summarySolution span {
        margin: 0;

        transform: rotate(90deg);

        font-size: 14px;
        line-height: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stepSolution {
        transition: none;
    }

    .stepSolution:hover {
        transform: none;
    }

    .connectorSolution::before {
        animation: none;
    }
}

/*------------------------------------------------------------[ Container Como Funciona ]------------------------------------------------------------*/

.containerHowWorks {
    padding: 100px 80px;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: white;
}

.headerHowWorks {
    width: 100%;
    max-width: 850px;

    margin-bottom: 80px;

    text-align: center;
}

.headerHowWorks .description {
    width: 100%;
    max-width: 780px;

    margin: 0 auto;
}

.contentHowWorks {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 60px;
}

.columnHowWorks {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 80px;
}

.stepHowWorks {
    position: relative;

    padding: 18px;

    border: 1px solid var(--color-secondary);
    border-radius: var(--radius-medium);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.stepHowWorks:hover {
    transform: translateY(-3px);

    border-color: rgba(229, 9, 20, 0.45);

    box-shadow: 2px 2px 20px var(--color-shadow);
}

.stepHowWorks::before {
    content: "";

    width: 45px;
    height: 3px;

    position: absolute;
    top: -1px;
    left: 18px;

    border-radius: 999px;

    background-color: var(--color-primary);
}

.numberHowWorks {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--color-primary);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.titleHowWorks {
    margin-bottom: 12px;

    font-size: 20px;
}

.descriptionHowWorks {
    color: var(--color-description);

    line-height: 1.7;

    font-size: var(--font-size-description-card-desktop);
}

.imageHowWorks {
    width: 380px;
    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.imageWrapperHowWorks {
    width: 320px;
    height: 320px;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 30px;

    background: rgba(229, 9, 20, 0.05);

    box-shadow:
        0 0 60px rgba(229, 9, 20, .18),
        inset 0 0 40px rgba(229, 9, 20, .08);
}

.imageWrapperHowWorks::before {
    content: "";

    width: 115%;
    height: 115%;

    position: absolute;

    border: 1px solid rgba(229, 9, 20, .12);
    border-radius: 35px;
}

.imageWrapperHowWorks img {
    width: 310px;
    height: 310px;

    object-fit: contain;
}

/*------------------------------------------------------------[ Responsividade Container Como Funciona ]------------------------------------------------------------*/

@media screen and (max-width:1000px) {

    .containerHowWorks {
        padding: 80px 20px;
    }

    .contentHowWorks {

        flex-direction: column;

        gap: 50px;
    }

    .imageHowWorks {
        order: -1;
    }

    .imageWrapperHowWorks {

        width: 250px;
        height: 250px;
    }

    .imageWrapperHowWorks img {
        width: 240px;
        height: 240px;
    }

    .columnHowWorks {

        width: 100%;

        gap: 45px;
    }

    .stepHowWorks {

        text-align: center;
    }

    .descriptionHowWorks {

        font-size: var(--font-size-description-card-mobile);
    }

}



/*------------------------------------------------------------[ Container O que vai aprender ]------------------------------------------------------------*/

.containerLearn {
    padding: 100px 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;

    color: white;
}

.headerLearn {
    width: 100%;
    max-width: 850px;

    padding: 0 20px;
    margin-bottom: 60px;

    text-align: center;
}

.headerLearn .description {
    width: 100%;
    max-width: 780px;

    margin: 0 auto;
}

.marquee {
    width: 100%;

    margin: 4px 0;
    padding: 8px 0;

    position: relative;
    overflow: hidden;
}

/*---[ Fade nas laterais ]---*/

.marquee::before,
.marquee::after {
    content: "";

    width: 120px;
    height: 100%;

    position: absolute;
    top: 0;
    z-index: 2;

    pointer-events: none;
}

.marquee::before {
    left: 0;

    background: linear-gradient(to right,
            black,
            transparent);
}

.marquee::after {
    right: 0;

    background: linear-gradient(to left,
            black,
            transparent);
}

.marqueeTrack {
    width: max-content;

    display: flex;

    gap: 18px;
}

.speedOne {
    animation: marqueeOne 28s linear infinite;
}

.speedTwo {
    animation: marqueeTwo 36s linear infinite;
}

.speedThree {
    animation: marqueeThree 22s linear infinite;
}

.marquee:hover .marqueeTrack {
    animation-play-state: paused;
}

.skillItem {
    padding: 14px 24px;

    display: flex;
    align-items: center;

    gap: 8px;

    color: white;
    white-space: nowrap;

    border: 1px solid var(--color-secondary);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.skillItem:hover {
    transform: translateY(-3px);

    border-color: rgba(229, 9, 20, 0.45);

    box-shadow: 0 0 18px rgba(229, 9, 20, 0.18);
}

.checkSkill {
    color: #22C55E;

    font-size: 17px;
    font-weight: 700;

    text-shadow: 0 0 10px rgba(34, 197, 94, 0.35);
}

.buttonCTALearn {
    margin-top: 50px;
}

/*---[ Animações ]---*/

@keyframes marqueeOne {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeTwo {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes marqueeThree {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*------------------------------------------------------------[ Responsividade Container O que vai aprender ]------------------------------------------------------------*/

@media screen and (max-width: 900px) {
    .containerLearn {
        padding: 80px 0;
    }

    .headerLearn {
        padding: 0 15px;
        margin-bottom: 45px;
    }

    .containerLearn .title {
        font-size: var(--font-size-title-mobile);
    }

    .containerLearn .description {
        font-size: var(--font-size-description-mobile);
    }

    .skillItem {
        padding: 12px 18px;

        font-size: 14px;
    }

    .checkSkill {
        font-size: 16px;
    }

    .marquee::before,
    .marquee::after {
        width: 60px;
    }

    .buttonCTALearn {
        margin-top: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marqueeTrack {
        animation-play-state: paused;
    }

    .skillItem {
        transition: none;
    }
}


/*------------------------------------------------------------[ Container Benefícios ]------------------------------------------------------------*/

.containerBenefits {
    padding: 100px 40px;

    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headerBenefits {
    width: 100%;
    max-width: 850px;

    margin-bottom: 65px;

    text-align: center;
}

.headerBenefits .description {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;
}

.containerComparisonBenefits {
    width: 100%;
    max-width: 1050px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;

    gap: 30px;
}

.comparisonBenefits {
    width: 100%;
    min-height: 430px;

    padding: 40px;

    display: flex;
    flex-direction: column;

    border-radius: var(--radius-medium);
}

.comparisonWithoutMethod {
    border: 1px solid rgba(229, 9, 20, 0.35);

    background-color: rgba(229, 9, 20, 0.05);

    box-shadow:
        inset 0 0 35px rgba(229, 9, 20, 0.03);
}

.comparisonWithMethodWrapper {
    width: 100%;

    padding: 1px;

    border: 1px solid rgba(34, 197, 94, 0.42);
    border-radius: var(--radius-medium);

    background-color: rgba(34, 197, 94, 0.08);

    box-shadow:
        0 0 14px rgba(34, 197, 94, 0.10),
        0 0 28px rgba(34, 197, 94, 0.05);

    animation: pulseBenefitBorder 3.5s ease-in-out infinite;
}

.comparisonWithMethod {
    height: 100%;

    border-radius: calc(var(--radius-medium) - 2px);

    background-color: rgba(2, 18, 10, 0.92);

    box-shadow:
        inset 0 0 35px rgba(34, 197, 94, 0.035);
}

.titleComparisonBenefits {
    margin-bottom: 35px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: white;
    font-size: 22px;
}

.iconComparisonBenefits {
    width: 38px;
    height: 38px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 700;

    flex-shrink: 0;
}

.comparisonWithoutMethod .iconComparisonBenefits {
    color: var(--color-primary);

    border: 1px solid rgba(229, 9, 20, 0.35);

    background-color: rgba(229, 9, 20, 0.12);
}

.comparisonWithMethod .iconComparisonBenefits {
    color: #22C55E;

    border: 1px solid rgba(34, 197, 94, 0.35);

    background-color: rgba(34, 197, 94, 0.12);

    box-shadow: 0 0 14px rgba(34, 197, 94, 0.12);
}

.listComparisonBenefits {
    display: flex;
    flex-direction: column;

    gap: 22px;

    list-style: none;
}

.listComparisonBenefits li {
    position: relative;

    padding-left: 28px;

    color: var(--color-description);

    font-size: var(--font-size-description-card-desktop);
    line-height: 1.6;
}

.listComparisonBenefits li::before {
    position: absolute;
    top: 0;
    left: 0;

    font-size: 16px;
    font-weight: 700;
}

.comparisonWithoutMethod .listComparisonBenefits li::before {
    content: "✕";

    color: var(--color-primary);
}

.comparisonWithMethod .listComparisonBenefits li::before {
    content: "✓";

    color: #22C55E;

    text-shadow: 0 0 8px rgba(34, 197, 94, 0.30);
}

.buttonCTABenefits {
    margin-top: 55px;
}

@keyframes pulseBenefitBorder {

    0%,
    100% {
        border-color: rgba(34, 197, 94, 0.30);

        box-shadow:
            0 0 12px rgba(34, 197, 94, 0.08),
            0 0 24px rgba(34, 197, 94, 0.04);
    }

    50% {
        border-color: rgba(34, 197, 94, 0.62);

        box-shadow:
            0 0 20px rgba(34, 197, 94, 0.18),
            0 0 38px rgba(34, 197, 94, 0.08);
    }
}

/*------------------------------------------------------------[ Responsividade Container Benefícios ]------------------------------------------------------------*/

@media screen and (max-width: 900px) {
    .containerBenefits {
        padding: 80px 20px;
    }

    .headerBenefits {
        margin-bottom: 50px;
    }

    .containerBenefits .title {
        font-size: var(--font-size-title-mobile);
    }

    .containerBenefits .description {
        font-size: var(--font-size-description-mobile);
    }

    .containerComparisonBenefits {
        max-width: 600px;

        flex-direction: column;

        gap: 24px;
    }

    .comparisonBenefits {
        min-height: auto;

        padding: 32px;
    }

    .listComparisonBenefits li {
        font-size: var(--font-size-description-card-mobile);
    }

    .buttonCTABenefits {
        margin-top: 45px;
    }
}

@media screen and (max-width: 480px) {
    .containerBenefits {
        padding: 65px 10px;
    }

    .comparisonBenefits {
        padding: 26px 20px;
    }

    .titleComparisonBenefits {
        margin-bottom: 28px;

        font-size: 19px;
    }

    .listComparisonBenefits {
        gap: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .comparisonWithMethodWrapper {
        animation: none;
    }
}

/*------------------------------------------------------------[ Container Provas Sociais ]------------------------------------------------------------*/

.containerSocialProof {
    padding: 100px 40px;

    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headerSocialProof {
    width: 100%;
    max-width: 850px;

    margin-bottom: 65px;

    text-align: center;
}

.headerSocialProof .description {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;
}

.containerTestimonials {
    width: 100%;
    max-width: 850px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    gap: 45px;
}

.testimonialCard {
    width: 100%;
    max-width: 360px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    transition: transform 0.25s ease;
}

.testimonialCard:hover {
    transform: translateY(-4px);
}

.testimonialVideoWrapper {
    width: 100%;

    aspect-ratio: 9 / 16;

    padding: 2px;

    position: relative;
    overflow: hidden;

    border: 1px solid rgba(229, 9, 20, 0.35);
    border-radius: var(--radius-high);

    background-color: rgba(229, 9, 20, 0.08);

    box-shadow:
        0 0 18px rgba(229, 9, 20, 0.15),
        0 0 35px rgba(229, 9, 20, 0.06);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.testimonialCard:hover .testimonialVideoWrapper {
    border-color: rgba(229, 9, 20, 0.60);

    box-shadow:
        0 0 22px rgba(229, 9, 20, 0.22),
        0 0 45px rgba(229, 9, 20, 0.09);
}

.testimonialVideo {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    background-color: black;

    border-radius: calc(var(--radius-high) - 2px);
}

.testimonialName {
    margin-top: 18px;

    color: white;

    font-size: 18px;
    font-weight: 600;
}

.testimonialDescription {
    margin-top: 4px;

    color: var(--color-description);

    font-size: var(--font-size-description-card-desktop);
}

.buttonCTASocialProof {
    margin-top: 60px;
}

/*------------------------------------------------------------[ Responsividade Container Provas Sociais ]------------------------------------------------------------*/

@media screen and (max-width: 900px) {
    .containerSocialProof {
        padding: 80px 20px;
    }

    .headerSocialProof {
        margin-bottom: 50px;
    }

    .containerSocialProof .title {
        font-size: var(--font-size-title-mobile);
    }

    .containerSocialProof .description {
        font-size: var(--font-size-description-mobile);
    }

    .containerTestimonials {
        max-width: 700px;

        gap: 35px;
    }

    .testimonialCard {
        max-width: 300px;
    }

    .testimonialDescription {
        font-size: var(--font-size-description-card-mobile);
    }

    .buttonCTASocialProof {
        margin-top: 50px;
    }
}

@media screen and (max-width: 680px) {
    .containerSocialProof {
        padding: 65px 10px;
    }

    .containerTestimonials {
        flex-direction: column;
        align-items: center;

        gap: 45px;
    }

    .testimonialCard {
        max-width: 290px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .testimonialCard,
    .testimonialVideoWrapper {
        transition: none;
    }

    .testimonialCard:hover {
        transform: none;
    }
}

/*------------------------------------------------------------[ Container Oferta ]------------------------------------------------------------*/

.containerOffer {
    padding: 100px 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
}

.cardOffer {
    width: 100%;
    max-width: 850px;

    padding: 55px;

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid rgba(34, 197, 94, 0.42);
    border-radius: var(--radius-medium);

    background-color: rgba(2, 18, 10, 0.88);

    box-shadow:
        0 0 18px rgba(34, 197, 94, 0.10),
        0 0 38px rgba(34, 197, 94, 0.05),
        inset 0 0 50px rgba(34, 197, 94, 0.025);

    animation: pulseOfferBorder 3.5s ease-in-out infinite;
}

.badgeOffer {
    width: fit-content;

    margin-bottom: 30px;
    padding: 8px 18px;

    color: #1A1300;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;

    border: 1px solid rgba(255, 196, 0, 0.55);
    border-radius: 999px;

    background: linear-gradient(135deg,
            #FFD86B,
            #F4B900);

    box-shadow:
        0 0 16px rgba(255, 196, 0, 0.18);
}

.headerOffer {
    width: 100%;
    max-width: 720px;

    margin-bottom: 45px;

    text-align: center;
}

.headerOffer .description {
    max-width: 680px;

    margin: 0 auto;
}

.contentOffer {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 30px;
}

.includedOffer {
    width: 100%;
}

.subtitleOffer {
    margin-bottom: 25px;

    color: white;

    font-size: 20px;
}

.listOffer {
    display: flex;
    flex-direction: column;

    gap: 17px;

    list-style: none;
}

.listOffer li {
    position: relative;

    padding-left: 30px;

    color: var(--color-description);

    font-size: var(--font-size-description-card-desktop);
    line-height: 1.6;
}

.listOffer li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    color: #22C55E;

    font-size: 17px;
    font-weight: 700;

    text-shadow: 0 0 9px rgba(34, 197, 94, 0.30);
}

.bonusOffer {
    width: 100%;

    padding: 26px;

    border: 1px solid rgba(255, 196, 0, 0.30);
    border-radius: var(--radius-medium);

    background-color: rgba(255, 196, 0, 0.06);

    box-shadow:
        inset 0 0 30px rgba(255, 196, 0, 0.025);
}

.labelBonusOffer {
    margin-bottom: 12px;

    color: #F4C542;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.titleBonusOffer {
    margin-bottom: 10px;

    color: white;

    font-size: 18px;
}

.descriptionBonusOffer {
    color: var(--color-description);

    font-size: var(--font-size-description-card-desktop);
    line-height: 1.7;
}

.priceOffer {
    width: 100%;

    margin-top: 45px;

    text-align: center;
}

.labelPriceOffer {
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mainPriceOffer {
    color: white;

    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
}

.mainPriceOffer span {
    margin-right: 5px;

    color: #22C55E;

    font-size: 25px;
    font-weight: 700;
}

.installmentOffer {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
}

.accessOffer {
    margin-top: 12px;

    color: #22C55E;

    font-size: 12px;
    font-weight: 600;
}

.buttonCTAOffer {
    width: 100%;
    max-width: 360px;

    margin-top: 35px;
}

.securityOffer {
    width: 100%;

    margin-top: 28px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;

    gap: 20px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;
}

@keyframes pulseOfferBorder {

    0%,
    100% {
        border-color: rgba(34, 197, 94, 0.30);

        box-shadow:
            0 0 14px rgba(34, 197, 94, 0.08),
            0 0 28px rgba(34, 197, 94, 0.04),
            inset 0 0 50px rgba(34, 197, 94, 0.02);
    }

    50% {
        border-color: rgba(34, 197, 94, 0.62);

        box-shadow:
            0 0 22px rgba(34, 197, 94, 0.18),
            0 0 42px rgba(34, 197, 94, 0.08),
            inset 0 0 55px rgba(34, 197, 94, 0.035);
    }
}

/*------------------------------------------------------------[ Responsividade Container Oferta ]------------------------------------------------------------*/

@media screen and (max-width: 900px) {
    .containerOffer {
        padding: 80px 20px;
    }

    .cardOffer {
        padding: 45px 35px;
    }

    .containerOffer .title {
        font-size: var(--font-size-title-mobile);
    }

    .containerOffer .description {
        font-size: var(--font-size-description-mobile);
    }

    .listOffer li,
    .descriptionBonusOffer {
        font-size: var(--font-size-description-card-mobile);
    }

    .mainPriceOffer {
        font-size: 50px;
    }
}

@media screen and (max-width: 480px) {
    .containerOffer {
        padding: 65px 10px;
    }

    .cardOffer {
        padding: 38px 20px;
    }

    .badgeOffer {
        margin-bottom: 25px;

        font-size: 9px;
    }

    .headerOffer {
        margin-bottom: 35px;
    }

    .bonusOffer {
        padding: 22px 18px;
    }

    .mainPriceOffer {
        font-size: 42px;
    }

    .mainPriceOffer span {
        font-size: 21px;
    }

    .installmentOffer {
        font-size: 13px;
    }

    .securityOffer {
        flex-direction: column;
        align-items: center;

        gap: 10px;

        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cardOffer {
        animation: none;
    }
}

/*------------------------------------------------------------[ Container FAQ ]------------------------------------------------------------*/

.containerFAQ {
    padding: 100px 40px;

    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headerFAQ {
    width: 100%;
    max-width: 850px;

    margin-bottom: 60px;

    text-align: center;
}

.headerFAQ .description {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;
}

.containerQuestionsFAQ {
    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

.itemFAQ {
    width: 100%;

    overflow: hidden;

    border: 1px solid var(--color-secondary);
    border-radius: var(--radius-medium);

    background-color: rgba(10, 10, 10, 0.16);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.itemFAQ.active {
    border-color: rgba(229, 9, 20, 0.48);

    box-shadow:
        0 0 18px rgba(229, 9, 20, 0.10);
}

.questionFAQ {
    width: 100%;

    padding: 22px 25px;

    color: white;
    background: transparent;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;

    border: none;

    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.iconFAQ {
    width: 32px;
    height: 32px;

    color: var(--color-primary);

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid rgba(229, 9, 20, 0.35);
    border-radius: 50%;

    background-color: rgba(229, 9, 20, 0.08);

    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    flex-shrink: 0;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.itemFAQ.active .iconFAQ {
    transform: rotate(45deg);

    background-color: rgba(229, 9, 20, 0.16);
}

.answerFAQ {
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows 0.35s ease;
}

.itemFAQ.active .answerFAQ {
    grid-template-rows: 1fr;
}

.contentAnswerFAQ {
    min-height: 0;

    overflow: hidden;
}

.contentAnswerFAQ p {
    padding: 0 75px 22px 25px;

    color: var(--color-description);

    font-size: var(--font-size-description-card-desktop);
    line-height: 1.7;
}

/*------------------------------------------------------------[ Responsividade Container FAQ ]------------------------------------------------------------*/

@media screen and (max-width: 900px) {
    .containerFAQ {
        padding: 80px 20px;
    }

    .headerFAQ {
        margin-bottom: 50px;
    }

    .containerFAQ .title {
        font-size: var(--font-size-title-mobile);
    }

    .containerFAQ .description {
        font-size: var(--font-size-description-mobile);
    }

    .questionFAQ {
        font-size: 15px;
    }

    .contentAnswerFAQ p {
        font-size: var(--font-size-description-card-mobile);
    }
}

@media screen and (max-width: 480px) {
    .containerFAQ {
        padding: 65px 10px;
    }

    .containerQuestionsFAQ {
        gap: 12px;
    }

    .questionFAQ {
        padding: 18px;

        font-size: 14px;
        line-height: 1.5;
    }

    .iconFAQ {
        width: 28px;
        height: 28px;

        font-size: 20px;
    }

    .contentAnswerFAQ p {
        padding: 0 18px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .itemFAQ,
    .iconFAQ,
    .answerFAQ {
        transition: none;
    }
}

/*------------------------------------------------------------[ Container CTA Final ]------------------------------------------------------------*/