/* ---DEFINITIVOS---*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: #eeeeee;
    color: #D9D9D9;
}

html,
body {}



@font-face {
    font-family: 'Georgia';
    src: url(fonts/georgia.woff2) format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Georgia';
    src: url(fonts/georgiab.woff2) format('woff2');
    font-weight: 600;
    font-style: bold;
    font-display: swap;
}


@font-face {
    font-family: 'Krub';
    src: url(fonts/Krub-Regular.woff2);
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Krub';
    src: url(fonts/Krub-SemiBold.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Krub';
    src: url(fonts/Krub-Bold.woff2);
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Inter';
    src: url(fonts/Inter_18pt-Regular.woff2);
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url(fonts/Inter_18pt-Light.woff2);
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}


.blur-up,
.blur-down,
.blur-left,
.blur-right {
    opacity: 0;
    will-change: transform, opacity;
}



/* ---PRÉ-DEFINIDOS---*/

/* -MEIO DO CONTEÚDO-*/

.content {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}


@media (min-width: 1440px) {
    .content {
        height: 100%;
        width: 66%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }
}



/* -BOTÕES-*/

.bottom {
    background-color: #FEFEFE;
    width: 100%;
    max-width: 458px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Krub';
    text-decoration: none;
    color: #151515;
    font-size: 15px;
    border-radius: 80px;
    box-shadow:
        -5px -5px 0px 0px rgba(0, 220, 200, 0.85),
        5px 5px 0px 0px rgba(255, 40, 90, 0.85);
    transition: background-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

.bottom:hover {
    box-shadow:
        0px 0px 0px 0px rgba(0, 220, 200, 0.85),
        0px 0px 0px 0px rgba(255, 40, 90, 0.85);
}

/* hover azul */
.bottom.hover-blue:hover {
    background-color: #1DEFF0;
    color: #151515;
}

.bottom.hover-blue:hover .icon-badge {
    background-color: #151515;
}

.bottom.hover-blue:hover .icon-badge svg path,
.bottom.hover-blue:hover .icon-badge svg line,
.bottom.hover-blue:hover .icon-badge svg polyline {
    fill: none;
    stroke: #24F5EF;
}

/* exceção: o cifrão usa fill, não stroke */
.bottom.hover-blue:hover .icon-dollar svg path {
    fill: #24F5EF;
    stroke: none;
}

/* hover rosa */
.bottom.hover-pink:hover {
    background-color: #FE2B54;
    color: #ffffff;
}

.bottom.hover-pink:hover .icon-badge {
    background-color: #ffffff;
}

.bottom.hover-pink:hover .icon-badge svg path,
.bottom.hover-pink:hover .icon-badge svg line,
.bottom.hover-pink:hover .icon-badge svg polyline {
    fill: none;
    stroke: #FE2B54;
}

/* exceção: o cifrão usa fill, não stroke */
.bottom.hover-pink:hover .icon-dollar svg path {
    fill: #FE2B54;
    stroke: none;
}

.icon-badge {
    position: relative;
    width: 35px;
    height: 35px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #FE2B54;
    border-radius: 40px;
    transition: background-color 0.5s ease;
}

.icon-badge svg path,
.icon-badge svg line,
.icon-badge svg polyline {
    transition: fill 0.5s ease, stroke 0.5s ease;
}

.icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-dollar {
    animation: dollar 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.icon-arrow {
    animation: arrow 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes dollar {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    47% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-150%);
        opacity: 0;
    }

    50.001% {
        transform: translateY(150%);
        opacity: 0;
    }

    97% {
        transform: translateY(150%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes arrow {
    0% {
        transform: translateY(150%);
        opacity: 0;
    }

    47% {
        transform: translateY(150%);
        opacity: 0;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    97% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-150%);
        opacity: 0;
    }
}



@media (min-width: 1440px) {

    .bottom {
        background-color: #FEFEFE;
        width: 100%;
        max-width: 458px;
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        font-family: 'Krub';
        text-decoration: none;
        color: #151515;
        font-size: 20px;
        border-radius: 80px;
        box-shadow:
            -5px -5px 0px 0px rgba(0, 220, 200, 0.85),
            5px 5px 0px 0px rgba(255, 40, 90, 0.85);
        transition: background-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
    }

    .bottom:hover {
        box-shadow:
            0px 0px 0px 0px rgba(0, 220, 200, 0.85),
            0px 0px 0px 0px rgba(255, 40, 90, 0.85);
    }

    /* hover azul */
    .bottom.hover-blue:hover {
        background-color: #1DEFF0;
        color: #151515;
    }

    .bottom.hover-blue:hover .icon-badge {
        background-color: #151515;
    }

    .bottom.hover-blue:hover .icon-badge svg path,
    .bottom.hover-blue:hover .icon-badge svg line,
    .bottom.hover-blue:hover .icon-badge svg polyline {
        fill: none;
        stroke: #24F5EF;
    }

    /* exceção: o cifrão usa fill, não stroke */
    .bottom.hover-blue:hover .icon-dollar svg path {
        fill: #24F5EF;
        stroke: none;
    }

    /* hover rosa */
    .bottom.hover-pink:hover {
        background-color: #FE2B54;
        color: #ffffff;
    }

    .bottom.hover-pink:hover .icon-badge {
        background-color: #ffffff;
    }

    .bottom.hover-pink:hover .icon-badge svg path,
    .bottom.hover-pink:hover .icon-badge svg line,
    .bottom.hover-pink:hover .icon-badge svg polyline {
        fill: none;
        stroke: #FE2B54;
    }

    /* exceção: o cifrão usa fill, não stroke */
    .bottom.hover-pink:hover .icon-dollar svg path {
        fill: #FE2B54;
        stroke: none;
    }

    .icon-badge {
        position: relative;
        width: 35px;
        height: 35px;
        overflow: hidden;
        flex-shrink: 0;
        background-color: #FE2B54;
        border-radius: 40px;
        transition: background-color 0.5s ease;
    }

    .icon-badge svg path,
    .icon-badge svg line,
    .icon-badge svg polyline {
        transition: fill 0.5s ease, stroke 0.5s ease;
    }

    .icon {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-dollar {
        animation: dollar 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    .icon-arrow {
        animation: arrow 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    @keyframes dollar {
        0% {
            transform: translateY(0);
            opacity: 1;
        }

        47% {
            transform: translateY(0);
            opacity: 1;
        }

        50% {
            transform: translateY(-150%);
            opacity: 0;
        }

        50.001% {
            transform: translateY(150%);
            opacity: 0;
        }

        97% {
            transform: translateY(150%);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes arrow {
        0% {
            transform: translateY(150%);
            opacity: 0;
        }

        47% {
            transform: translateY(150%);
            opacity: 0;
        }

        50% {
            transform: translateY(0);
            opacity: 1;
        }

        97% {
            transform: translateY(0);
            opacity: 1;
        }

        100% {
            transform: translateY(-150%);
            opacity: 0;
        }
    }
}



/*------ TEXTOS CELULAR PEQUENO ------*/

h2 {
    font-family: 'Georgia';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
}

h2 span {
    color: #FE2B54;
}

h2 span.azul {
    color: #24F5EF;
}

h3 {
    font-family: 'Georgia';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
}

h3 span {
    color: #FE2B54;
}


h4 {
    font-family: 'Krub';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    color: #ffffff;
}


p {
    font-family: 'Krub';
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 20px;
    color: #B9B9B9;
}

p span {
    font-family: 'Krub';
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 20px;
    color: #B9B9B9;
}



/*------ TEXTOS MÁXIMO 1440PX ------*/

@media (min-width: 1440px) {

    h2 {
        font-family: 'Georgia';
        font-weight: 400;
        font-style: normal;
        font-size: 40px;
        line-height: 48px;
    }

    h2 span {
        color: #FE2B54;
    }

    h2 span.azul {
        color: #24F5EF;
    }

    h3 {
        font-family: 'Georgia';
        font-weight: 400;
        font-style: normal;
        font-size: 40px;
        line-height: 48px;
    }

    h3 span {
        color: #FE2B54;
    }


    h4 {
        font-family: 'Krub';
        font-weight: 400;
        font-style: normal;
        font-size: 40px;
        line-height: 48px;
        color: #ffffff;
    }


    p {
        font-family: 'Krub';
        font-weight: 300;
        font-style: normal;
        font-size: 18px;
        line-height: 28px;
        color: #B9B9B9;
    }

    p span {
        font-family: 'Krub';
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 28px;
        color: #B9B9B9;
    }

}



/*------ SEÇÃO 1 ------*/

.secao-1 {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.secao-1 .fundo1 {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 0;
    content: url(images/SECAO-1-M.png);
}

.secao-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #151515 0%, transparent 20%);
    pointer-events: none;
    z-index: 1;
}

.secao-1 .content .content-secao1 {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.secao-1 .content {
    position: relative;
    z-index: 2;
    flex-direction: column;
}

.secao-1 .content .content-secao1 img {
    width: 120px;
    max-width: 197px;
}

.secao-1 .content .content-secao1 h1 {
    font-family: 'Georgia';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    width: 100%;
    max-width: 434px;
    margin-top: 30px;
}

.secao-1 .content .content-secao1 p {
    font-family: 'Krub';
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    width: 100%;
    max-width: 434px;
    color: #B9B9B9;
    margin-top: 10px;
}

.secao-1 .content .content-secao1 a {
    margin-top: 30px;
}

.secao-1 .elements {
    width: 90%;
    max-width: 470px;
    height: fit-content;
    position: static;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 0;

}

.secao-1 .elements .laterais {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.secao-1 .elements .laterais ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.secao-1 .elements .laterais ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Inter';
    font-weight: 300;
    font-size: 11px;
    scale: 0.8;
}

.secao-1 .elements .laterais ul .curtida {
    filter: drop-shadow(0 0 8px #FF4E71);
    animation: curtida 2s ease infinite;
}

@keyframes curtida {
    0% {
        filter: drop-shadow(0 0 0px #FF4E71);
        scale: 1;
    }

    50% {
        filter: drop-shadow(0 0 8px #FF4E71);
        scale: 1.1;
    }

    100% {
        filter: drop-shadow(0 0 0px #FF4E71);
        scale: 1;
    }
}


.secao-1 .elements .baixo {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.secao-1 .elements .baixo .perfil {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.secao-1 .elements .baixo .perfil p {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 13px;
}

.secao-1 .elements .baixo .tags {
    color: #9F9F9F;
    font-family: 'Inter';
    font-weight: 200;
    font-size: 13px;
}


@media (min-width: 1440px) {

    .secao-1 {
        height: 100vh;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .secao-1 .fundo1 {
        height: 100vh;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        z-index: 0;
    }

    .secao-1::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, #151515 0%, transparent 20%);
        pointer-events: none;
        z-index: 1;
    }

    .secao-1 .content-secao1 {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 3;
    }

    .secao-1 .content {
        position: relative;
        z-index: 2;
    }

    .secao-1 .content .content-secao1 img {
        width: 197px;
    }

    .secao-1 .content .content-secao1 h1 {
        font-family: 'Georgia';
        font-style: normal;
        font-weight: 400;
        font-size: 40px;
        line-height: 48px;
        width: 434px;
        margin-top: 30px;
    }

    .secao-1 .content .content-secao1 p {
        font-family: 'Krub';
        font-style: normal;
        font-weight: 300;
        font-size: 18px;
        line-height: 28px;
        width: 434px;
        color: #B9B9B9;
        margin-top: 10px;
    }

    .secao-1 .content .content-secao1 a {
        margin-top: 30px;
    }

    .secao-1 .elements {
        width: 470px;
        height: fit-content;
        position: absolute;
        left: 55%;
        bottom: -49%;
        z-index: 0;

    }

    .secao-1 .elements .laterais {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .secao-1 .elements .laterais ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .secao-1 .elements .laterais ul li {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Inter';
        font-weight: 300;
        font-size: 11px;
    }

    .secao-1 .elements .laterais ul .curtida {
        filter: drop-shadow(0 0 8px #FF4E71);
        animation: curtida 2s ease infinite;
    }

    @keyframes curtida {
        0% {
            filter: drop-shadow(0 0 0px #FF4E71);
            scale: 1;
        }

        50% {
            filter: drop-shadow(0 0 8px #FF4E71);
            scale: 1.1;
        }

        100% {
            filter: drop-shadow(0 0 0px #FF4E71);
            scale: 1;
        }
    }


    .secao-1 .elements .baixo {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .secao-1 .elements .baixo .perfil {
        display: flex;
        flex-direction: row;
        gap: 5px;
        align-items: center;
    }

    .secao-1 .elements .baixo .perfil p {
        font-family: 'Inter';
        font-weight: 300;
    }

    .secao-1 .elements .baixo .tags {
        color: #9F9F9F;
        font-family: 'Inter';
        font-weight: 200;
    }
}



/*------ SEÇÃO 2 ------*/
.secao-2 {
    width: 100%;
    height: fit-content;
    background-color: #151515;
    padding: 40px 0px;
    position: relative;
    z-index: 0;
    margin-top: -1px;

}

.secao-2 .content {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.secao-2 .content .content-secao2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px 30px;
    gap: 30px;
    background: linear-gradient(125deg, #6b6b6b1f 0%, #6b6b6b00 30%);
    border-radius: 20px;
    border: solid #3D3D3D 1px;
    margin-top: 50px;
    z-index: 3;
    position: relative;
    overflow: hidden;
    transition: all 1s ease;
    backdrop-filter: blur(5px);
    width: 100%;
    flex-wrap: wrap;

}

.secao-2 .content .content-secao2 .foto {
    z-index: 2;
    width: 100%;
}

.secao-2 .content .content-secao2 p {
    font-family: 'Krub';
    font-size: 13px;
    line-height: 18px;
    font-weight: 300;
    color: #B9B9B9;
}

.secao-2 .content h2 {
    max-width: 712px;
    width: 100%;
    text-align: center;
}

.secao-2 .tiktok {
    display: none;
    position: absolute;
    z-index: 1;
    top: -1%;
    left: 0;
    width: 30em;
    transition: all 1s ease;
    opacity: 0.4;
}


.secao-2 .content .content-secao2:hover .tiktok {
    scale: 1.2;
    transition: all 1s ease;
    transform: rotate(5deg);
}




@property --x {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 20%;
}

@property --y {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 50%;
}

.secao-2 .fundo2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;

    mask-image: radial-gradient(ellipse 30% 50% at var(--x) var(--y),
            black 0%,
            transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 30% 50% at var(--x) var(--y),
            black 0%,
            transparent 100%);

    animation: reflexo 5s ease-in-out infinite;
}

@keyframes reflexo {
    0% {
        --x: 20%;
        --y: 50%;
    }

    50% {
        --x: 90%;
        --y: 80%;
    }

    100% {
        --x: 20%;
        --y: 50%;
    }
}


@media (min-width: 1440px) {

    .secao-2 {
        width: 100%;
        height: fit-content;
        background-color: #151515;
        padding: 80px 0px;
        position: relative;
        z-index: 0;
        margin-top: -1px;

    }

    .secao-2 .content {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .secao-2 .content .content-secao2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 64px 77px;
        gap: 80px;
        background: linear-gradient(125deg, #6b6b6b1f 0%, #6b6b6b00 30%);
        border-radius: 20px;
        border: solid #3D3D3D 1px;
        margin-top: 50px;
        z-index: 3;
        position: relative;
        overflow: hidden;
        transition: all 1s ease;
        backdrop-filter: blur(5px);

    }

    .secao-2 .content .content-secao2 .foto {
        z-index: 2;
    }

    .secao-2 .content .content-secao2 p {
        font-family: 'Krub';
        font-size: 18px;
        line-height: 28px;
        font-weight: 300;
        color: #B9B9B9;
    }

    .secao-2 .content h2 {
        max-width: 712px;
        width: 100%;
        text-align: center;
    }

    .secao-2 .tiktok {
        position: absolute;
        z-index: 1;
        top: -1%;
        left: 0;
        width: 30em;
        transition: all 1s ease;
        opacity: 0.4;
    }


    .secao-2 .content .content-secao2:hover .tiktok {
        scale: 1.2;
        transition: all 1s ease;
        transform: rotate(5deg);
    }




    @property --x {
        syntax: '<percentage>';
        inherits: false;
        initial-value: 20%;
    }

    @property --y {
        syntax: '<percentage>';
        inherits: false;
        initial-value: 50%;
    }

    .secao-2 .fundo2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;

        mask-image: radial-gradient(ellipse 30% 50% at var(--x) var(--y),
                black 0%,
                transparent 100%);
        -webkit-mask-image: radial-gradient(ellipse 30% 50% at var(--x) var(--y),
                black 0%,
                transparent 100%);

        animation: reflexo 5s ease-in-out infinite;
    }

    @keyframes reflexo {
        0% {
            --x: 20%;
            --y: 50%;
        }

        50% {
            --x: 90%;
            --y: 80%;
        }

        100% {
            --x: 20%;
            --y: 50%;
        }
    }
}



/*------ SEÇÃO 3 ------*/

.secao-3 {
    width: 100%;
    height: fit-content;
    padding: 40px 0px;
    background-color: #151515;
    margin-top: -1px;

}

.secao-3 .content {
    align-items: center;
}


.secao-3 .content .comparacao {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: fit-content;
    gap: 50px;
    flex-wrap: wrap;
}

.secao-3 .content .comparacao .lista-comparacao {
    height: 100%;
    width: 100%;
    max-width: 548px;
    background: linear-gradient(125deg, #6b6b6b1f 0%, #6b6b6b00 30%);
    border-radius: 20px;
    border: solid #3D3D3D 1px;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.secao-3 .content .comparacao .lista-comparacao .azul {
    color: #24F5EF;
}

.secao-3 .content .comparacao .lista-comparacao ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.secao-3 .content .comparacao .lista-comparacao ul li {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.secao-3 .content .comparacao .lista-comparacao ul li span svg {
    width: 30px;
    height: 30px;
}


.secao-3 .content .comparacao .lista-comparacao ul .separacao {
    border-top: solid 1px #3D3D3D;
}

.secao-3 .content a {
    margin-top: 50px;
}


@media (min-width: 1440px) {

    .secao-3 {
        width: 100%;
        height: fit-content;
        padding: 80px 0px;
        background-color: #151515;
        margin-top: -1px;

    }

    .secao-3 .content {
        align-items: center;
    }


    .secao-3 .content .comparacao {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: 680px;
        gap: 50px;
    }

    .secao-3 .content .comparacao .lista-comparacao {
        height: 100%;
        width: 100%;
        max-width: 548px;
        background: linear-gradient(125deg, #6b6b6b1f 0%, #6b6b6b00 30%);
        border-radius: 20px;
        border: solid #3D3D3D 1px;
        display: flex;
        flex-direction: column;
        padding: 60px;
    }

    .secao-3 .content .comparacao .lista-comparacao .azul {
        color: #24F5EF;
    }

    .secao-3 .content .comparacao .lista-comparacao ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .secao-3 .content .comparacao .lista-comparacao ul li {
        list-style: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
    }


    .secao-3 .content .comparacao .lista-comparacao ul .separacao {
        border-top: solid 1px #3D3D3D;
    }

    .secao-3 .content a {
        margin-top: 50px;
    }
}



/*------ SEÇÃO 4 ------*/

.secao-4-wrapper {
    height: 300vh;
    /* altura extra para capturar o scroll */
    position: relative;
}

.secao-4 {
    width: 100%;
    height: 100vh;
    padding: 40px 0px;
    background: linear-gradient(75deg, #0F9D99 50%, #24F5EF 130%);
}

.secao-4 .content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.secao-4 .content h2 {
    font-family: 'Krub';
    font-size: 25px;
    line-height: 35px;
    width: 100%;
    max-width: 931px;
    text-align: left;
    color: #0E7875;
    /* cor original */
}

/* Cada palavra vira um span */
.secao-4 .content h2 .palavra {
    display: inline;
    color: #0E7875;
    transition: color 0.1s ease;
}

.secao-4 .content h2 .palavra.ativa {
    color: #ffffff;
}


@media (min-width: 1440px) {

    .secao-4-wrapper {
        height: 300vh;
        /* altura extra para capturar o scroll */
        position: relative;
    }

    .secao-4 {
        width: 100%;
        height: 100vh;
        padding: 40px 0px;
        background: linear-gradient(75deg, #0F9D99 50%, #24F5EF 130%);
    }

    .secao-4 .content {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .secao-4 .content h2 {
        font-family: 'Krub';
        font-size: 50px;
        line-height: 65px;
        width: 931px;
        text-align: center;
        color: #0E7875;
        /* cor original */
    }

    /* Cada palavra vira um span */
    .secao-4 .content h2 .palavra {
        display: inline;
        color: #0E7875;
        transition: color 0.1s ease;
    }

    .secao-4 .content h2 .palavra.ativa {
        color: #ffffff;
    }
}



/*------ SEÇÃO 5 ------*/

.secao-5 {
    width: 100%;
    height: fit-content;
    padding: 80px 0px;
    background-color: #151515;
}

.secao-5 .content .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.secao-5 .content .header h2 {
    width: 100%;
    text-align: center;
    max-width: 425px;
}

.secao-5 .content .header .line {
    border-top: solid 1px #3D3D3D;
    width: 100%;
    display: none;
}

.secao-5 .content .header .botoes {
    display: flex;
    flex-direction: row;
    gap: 22px;
}

.secao-5 .content .header .botoes .seta {
    background-color: #FE2B54;
    height: 30px;
    width: 30px;
    border-radius: 40px;
    transition: all 0.5s ease;
    cursor: pointer;
    border: none;
}

.secao-5 .content .header .botoes .seta .esquerda {
    margin-left: -2px;

}

.secao-5 .content .header .botoes .seta .direita {
    margin-right: -2px;
}

.secao-5 .content .header .botoes .seta:hover {
    background-color: #CD2042;
}

.secao-5 .content .carrossel {
    margin-top: 64px;
}

.secao-5 .content .carrossel ul {
    display: flex;
    flex-direction: row;
    gap: 20px;

}

.secao-5 .content .carrossel ul li {
    list-style: none;
}

.secao-5 .content .carrossel ul li img {
    list-style: none;
    border-radius: 15px;
    width: 250px;
    height: 375px;
    flex-shrink: 0;
}


@media (min-width: 1440px) {

    .secao-5 {
        width: 100%;
        height: fit-content;
        padding: 80px 0px;
        background-color: #151515;
    }

    .secao-5 .content .header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }

    .secao-5 .content .header h2 {
        width: 425px;
    }

    .secao-5 .content .header .line {
        border-top: solid 1px #3D3D3D;
        width: 60%;
        margin-left: -80px;
        margin-bottom: 15px;
    }

    .secao-5 .content .header .botoes {
        display: flex;
        flex-direction: row;
        gap: 22px;
    }

    .secao-5 .content .header .botoes .seta {
        background-color: #FE2B54;
        height: 32px;
        width: 32px;
        border-radius: 40px;
        transition: all 0.5s ease;
        cursor: pointer;
        border: none;
    }

    .secao-5 .content .header .botoes .seta .esquerda {
        margin-left: -2px;

    }

    .secao-5 .content .header .botoes .seta .direita {
        margin-right: -2px;
    }

    .secao-5 .content .header .botoes .seta:hover {
        background-color: #CD2042;
    }

    .secao-5 .content .carrossel {
        margin-top: 64px;
    }

    .secao-5 .content .carrossel ul {
        display: flex;
        flex-direction: row;
        gap: 20px;

    }

    .secao-5 .content .carrossel ul li {
        list-style: none;
    }

    .secao-5 .content .carrossel ul li img {
        list-style: none;
        border-radius: 15px;
        width: 250px;
        height: 375px;
        flex-shrink: 0;
    }


}



/*------ SEÇÃO 6 ------*/

.secao-6 {
    width: 100%;
    height: fit-content;
    padding: 40px 0px;
    margin-top: -1px;
    background-color: #151515;
}

.secao-6 .content {
    align-items: center;

}

.secao-6 .content h2 {
    margin-bottom: 10px;
    text-align: center;
}

.secao-6 .content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    margin-top: 32px;
}

.secao-6 .content ul li {
    width: 100%;
    max-width: 383px;
    height: 80px;
    background-color: #1E1E1E;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 25px;
    gap: 20px;
    border-radius: 10px;
}


@media (min-width: 1440px) {

    .secao-6 {
        width: 100%;
        height: fit-content;
        padding: 80px 0px;
        margin-top: -1px;
        background-color: #151515;
    }

    .secao-6 .content {
        align-items: center;

    }

    .secao-6 .content h2 {
        margin-bottom: 10px;
        text-align: center;
    }

    .secao-6 .content ul {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        width: 65%;
        margin-top: 32px;
    }

    .secao-6 .content ul li {
        width: 383px;
        height: 80px;
        background-color: #1E1E1E;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0px 25px;
        gap: 20px;
        border-radius: 10px;
    }

}



/*------ SEÇÃO 7 ------*/

.secao-7 {
    width: 100%;
    height: fit-content;
    padding: 80px 0px;
    background-color: #151515;
    margin-top: -1px;
    position: relative;

}

.secao-7 .fundo7 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;

    mask-image: radial-gradient(ellipse 30% 50% at var(--x) var(--y),
            black 0%,
            transparent 100%);

    -webkit-mask-image: radial-gradient(ellipse 30% 50% at var(--x) var(--y),
            black 0%,
            transparent 100%);

    animation: reflexo2 3s ease-in-out infinite;
}

@keyframes reflexo2 {
    0% {
        --x: 20%;
        --y: 40%;
    }

    50% {
        --x: 20%;
        --y: 80%;
    }

    100% {
        --x: 20%;
        --y: 40%;
    }
}


@property --x2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 90%;
}

@property --y2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 80%;
}



.secao-7 .fundo7v2 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;

    mask-image: radial-gradient(ellipse 30% 50% at var(--x2) var(--y2),
            black 0%,
            transparent 100%);

    -webkit-mask-image: radial-gradient(ellipse 30% 50% at var(--x2) var(--y2),
            black 0%,
            transparent 100%);

    animation: reflexo3 3s ease-in-out infinite;
}

@keyframes reflexo3 {
    0% {
        --x2: 90%;
        --y2: 80%;
    }

    50% {
        --x2: 90%;
        --y2: 20%;
    }

    100% {
        --x2: 90%;
        --y2: 80%;
    }
}



.secao-7 .content {
    align-items: center;

}

.secao-7 .content img {
    width: 90%;
}


.secao-7 .content .comparacao {
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 60px;
}

.secao-7 .content .comparacao ul {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.secao-7 .content .comparacao .errado li svg rect {
    fill: #3D3D3D;
}

.secao-7 .content .comparacao .correto li svg rect {
    fill: #24F5EF;
}


.secao-7 .content .comparacao ul .line {
    border-top: solid 1px #282828;
}

.secao-7 .content .comparacao ul li {
    display: flex;
    flex-direction: row;
    list-style: none;
    align-items: center;
    gap: 20px;
    padding: 0px;
    height: 130px;
}

.secao-7 .content .comparacao ul li p {
    width: 334px;
}

.secao-7 .content .comparacao ul li svg {
    width: 40px;
    height: 40px;
}

.secao-7 .content a {
    margin-top: 60px;
}


@media (min-width: 1440px) {

    .secao-7 {
        width: 100%;
        height: fit-content;
        padding: 80px 0px;
        background-color: #151515;
        margin-top: -1px;
        position: relative;

    }

    .secao-7 .fundo7 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;

        mask-image: radial-gradient(ellipse 30% 50% at var(--x) var(--y),
                black 0%,
                transparent 100%);

        -webkit-mask-image: radial-gradient(ellipse 30% 50% at var(--x) var(--y),
                black 0%,
                transparent 100%);

        animation: reflexo2 3s ease-in-out infinite;
    }

    @keyframes reflexo2 {
        0% {
            --x: 20%;
            --y: 40%;
        }

        50% {
            --x: 20%;
            --y: 80%;
        }

        100% {
            --x: 20%;
            --y: 40%;
        }
    }


    @property --x2 {
        syntax: '<percentage>';
        inherits: false;
        initial-value: 90%;
    }

    @property --y2 {
        syntax: '<percentage>';
        inherits: false;
        initial-value: 80%;
    }



    .secao-7 .fundo7v2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;

        mask-image: radial-gradient(ellipse 30% 50% at var(--x2) var(--y2),
                black 0%,
                transparent 100%);

        -webkit-mask-image: radial-gradient(ellipse 30% 50% at var(--x2) var(--y2),
                black 0%,
                transparent 100%);

        animation: reflexo3 3s ease-in-out infinite;
    }

    @keyframes reflexo3 {
        0% {
            --x2: 90%;
            --y2: 80%;
        }

        50% {
            --x2: 90%;
            --y2: 20%;
        }

        100% {
            --x2: 90%;
            --y2: 80%;
        }
    }



    .secao-7 .content {
        align-items: center;

    }

    .secao-7 .content .comparacao {
        margin-top: 70px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 104px;
    }

    .secao-7 .content .comparacao ul {
        width: 400px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }


    .secao-7 .content .comparacao .errado li svg rect {
        fill: #3D3D3D;
    }

    .secao-7 .content .comparacao .correto li svg rect {
        fill: #24F5EF;
    }


    .secao-7 .content .comparacao ul .line {
        border-top: solid 1px #282828;
    }

    .secao-7 .content .comparacao ul li {
        display: flex;
        flex-direction: row;
        list-style: none;
        align-items: center;
        gap: 30px;
        padding: 20px;
        height: 139px;
    }

    .secao-7 .content .comparacao ul li p {
        width: 334px;
    }

    .secao-7 .content .comparacao ul li svg {
        width: 30px;
        height: 30px;
    }

    .secao-7 .content a {
        margin-top: 60px;
    }
}



/*------ SEÇÃO 8 ------*/

.secao-8 {
    width: 100%;
    height: fit-content;
    padding: 40px 0px;
    background-color: #151515;
    margin-top: -1px;
}

.secao-8 .content {
    align-items: center;
    justify-content: center;

}

.secao-8 .content h2 {
    width: 100%;
    max-width: 626px;
    text-align: center;
}

.secao-8 .depoimentos ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.secao-8 .depoimentos ul li {
    height: 345px;
    background-color: #1E1E1E;
    border: solid 1px #3D3D3D;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 30px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 90%;
}

.secao-8 .depoimentos ul li:hover {
    background-color: #3D3D3D;
}


.secao-8 .depoimentos ul li h4 {
    font-size: 55px;
    line-height: 58px;
}

.secao-8 .depoimentos ul li p {
    margin-top: 10px;
    max-width: 384px;
}

.secao-8 .depoimentos ul li .perfil p {
    color: #ffffff;
    font-weight: 400;
}

@media (min-width: 1440px) {

    .secao-8 {
        width: 100%;
        height: fit-content;
        padding: 80px 0px;
        background-color: #151515;
        margin-top: -1px;
    }

    .secao-8 .content {
        align-items: center;
        justify-content: center;

    }

    .secao-8 .content h2 {
        width: 626px;
        text-align: center;
    }

    .secao-8 .depoimentos ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 60px;
    }

    .secao-8 .depoimentos ul li {
        height: 345px;
        background-color: #1E1E1E;
        border: solid 1px #3D3D3D;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 60px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .secao-8 .depoimentos ul li:hover {
        background-color: #3D3D3D;
    }


    .secao-8 .depoimentos ul li h4 {
        font-size: 55px;
        line-height: 58px;
    }

    .secao-8 .depoimentos ul li p {
        margin-top: 10px;
        max-width: 384px;
    }

    .secao-8 .depoimentos ul li .perfil p {
        color: #ffffff;
        font-weight: 400;
    }
}



/*------ SEÇÃO 9 ------*/

.secao-9 {
    width: 100%;
    height: fit-content;
    padding: 40px 0px;
    background-color: #151515;
    margin-top: -1px;
}

.secao-9 .content {
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 30px;
}

.secao-9 .content img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

.secao-9 .content .conteudo {
    width: 100%;
    max-width: 546px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secao-9 .content .conteudo p {
    margin-top: 10px;
    max-width: 513px;
    width: 100%;
}

.secao-9 .content .conteudo .destaque {
    background: linear-gradient(125deg, #6b6b6b1f 0%, #6b6b6b00 30%);
    border-radius: 20px;
    border: solid #3D3D3D 1px;
    padding: 20px;
    margin-top: 35px;
}

.secao-9 .content .conteudo .destaque p {
    width: 100%;
    margin: 0;
}

.secao-9 .content .conteudo a {
    margin-top: 40px;
    flex-shrink: 0;
}

@media (min-width: 1440px) {

    .secao-9 {
        width: 100%;
        height: fit-content;
        padding: 80px 0px;
        background-color: #151515;
        margin-top: -1px;
    }

    .secao-9 .content {
        justify-content: space-between;
        flex-direction: row;
    }

    .secao-9 .content img {
        max-width: 500px;
        border-radius: 20px;
    }

    .secao-9 .content .conteudo {
        width: 546px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .secao-9 .content .conteudo p {
        margin-top: 10px;
        width: 513px;
    }

    .secao-9 .content .conteudo .destaque {
        background: linear-gradient(125deg, #6b6b6b1f 0%, #6b6b6b00 30%);
        border-radius: 20px;
        border: solid #3D3D3D 1px;
        padding: 40px;
        margin-top: 35px;
    }

    .secao-9 .content .conteudo .destaque p {
        width: 100%;
        margin: 0;
    }

    .secao-9 .content .conteudo a {
        margin-top: 40px;
        flex-shrink: 0;
    }
}



/*------ SEÇÃO 10 ------*/

.secao-10 {
    height: fit-content;
    width: 100%;
    padding: 80px 0px;
    background-color: #151515;
    margin-top: -1px;
}

.secao-10 .content {
    align-items: center;
}

.secao-10 .content h2 {
    text-align: center;
}

.secao-10 .content .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    margin-top: 40px;
}

.secao-10 .content .grid ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
}

.secao-10 .content .grid ul.ultimo {
    margin: 0;
}

.secao-10 .content .grid ul li {
    list-style: none;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    border: solid 1px #3D3D3D;
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    transition: background-size 0.5s ease;

}

.secao-10 .content .grid ul li:hover {
    background-size: 110%;
}

.secao-10 .content ul li.modo2 {
    height: 500px;
}

.secao-10 .content ul li.modo3 {
    height: 500px;
    width: 100%;
    max-width: 1265px;
}

.secao-10 .content .grid ul li.bonus1 {
    background-image: url(images/BONUS-1.png);
}

.secao-10 .content .grid ul li.bonus2 {
    background-image: url(images/BONUS-2.png);
}

.secao-10 .content .grid ul li.bonus3 {
    background-image: url(images/BONUS-3.png);
}

.secao-10 .content .grid ul li.bonus4 {
    background-image: url(images/BONUS-4.png);
}

.secao-10 .content .grid ul li.bonus5 {
    background-image: url(images/BONUS-5.png);
}

.secao-10 .content ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #151515 10%, transparent 140%);
    pointer-events: none;
    border-radius: 20px;
}



.secao-10 .content ul li p {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    color: #9D9D9D;
}

.secao-10 .content ul li .header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.secao-10 .content ul li .header span {
    border-radius: 50%;
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    position: relative;
    /* necessário */
    z-index: 0;
    /* necessário */
}

.secao-10 .content ul li .header span::before {
    content: '';
    position: absolute;
    inset: -2px;
    /* espessura da borda */
    padding: 2px;
    /* <- estava faltando aqui */
    border-radius: inherit;
    /* herda o 50% */
    background: linear-gradient(180deg,
            #6B6B6B -10%,
            #6b6b6b00 60%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.secao-10 .content ul li .header p {
    font-weight: 400;
    margin: 0;
    color: #D9D9D9;
}


.secao-10 .content ul li .preco {
    margin-top: 20px;
    color: #D9D9D9;
}

.secao-10 .content ul li .preco span {
    color: #FE2B54;
    text-decoration: line-through;
}


@media (min-width: 1440px) {

    .secao-10 {
        height: fit-content;
        width: 100%;
        padding: 80px 0px;
        background-color: #151515;
        margin-top: -1px;
    }

    .secao-10 .content {
        align-items: center;
    }

    .secao-10 .content .grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px;
    }

    .secao-10 .content .grid ul {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 25px;
        width: 49%;
        margin-top: 40px;
    }

    .secao-10 .content .grid ul.ultimo {
        margin: 0;
    }

    .secao-10 .content .grid ul li {
        list-style: none;
        width: 100%;
        height: 520px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
        padding: 20px;
        border-radius: 20px;
        border: solid 1px #3D3D3D;
        background-size: 100%;
        background-position: top center;
        transition: background-size 0.5s ease;

    }

    .secao-10 .content .grid ul li:hover {
        background-size: 110%;
    }

    .secao-10 .content ul li.modo2 {
        height: 400px;
    }

    .secao-10 .content ul li.modo3 {
        height: 500px;
        width: 1265px;
    }

    .secao-10 .content .grid ul li.bonus1 {
        background-image: url(images/BONUS-1.png);
    }

    .secao-10 .content .grid ul li.bonus2 {
        background-image: url(images/BONUS-2.png);
    }

    .secao-10 .content .grid ul li.bonus3 {
        background-image: url(images/BONUS-3.png);
    }

    .secao-10 .content .grid ul li.bonus4 {
        background-image: url(images/BONUS-4.png);
    }

    .secao-10 .content .grid ul li.bonus5 {
        background-image: url(images/BONUS-5.png);
    }

    .secao-10 .content ul li::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, #151515 10%, transparent 140%);
        pointer-events: none;
        border-radius: 20px;
    }



    .secao-10 .content ul li p {
        position: relative;
        z-index: 1;
        margin-top: 20px;
        color: #9D9D9D;
    }

    .secao-10 .content ul li .header {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }

    .secao-10 .content ul li .header span {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(20px);
        position: relative;
        /* necessário */
        z-index: 0;
        /* necessário */
    }

    .secao-10 .content ul li .header span::before {
        content: '';
        position: absolute;
        inset: -2px;
        /* espessura da borda */
        padding: 2px;
        /* <- estava faltando aqui */
        border-radius: inherit;
        /* herda o 50% */
        background: linear-gradient(180deg,
                #6B6B6B -10%,
                #6b6b6b00 60%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
    }

    .secao-10 .content ul li .header p {
        font-weight: 400;
        margin: 0;
        color: #D9D9D9;
    }


    .secao-10 .content ul li .preco {
        margin-top: 20px;
        color: #D9D9D9;
    }

    .secao-10 .content ul li .preco span {
        color: #FE2B54;
        text-decoration: line-through;
    }
}



/*------ SEÇÃO 11 ------*/

.secao-11 {
    width: 100%;
    height: fit-content;
    padding: 40px 0px;
    background-color: #151515;
    margin-top: -1px;
}

.secao-11 .content {
    align-items: center;
}


.secao-11 .content h4 {
    text-align: center;
    max-width: 672px;
    width: 100%;

}

.secao-11 .content h4 span {
    color: #FE2B54;
}


.secao-11 .content p {
    text-align: center;
    margin-top: 5px;
}


@media (min-width: 1440px) {

    .secao-11 {
        width: 100%;
        height: fit-content;
        padding: 80px 0px;
        background-color: #151515;
        margin-top: -1px;
    }

    .secao-11 .content {
        align-items: center;
    }


    .secao-11 .content h4 {
        text-align: center;
        width: 672px;

    }

    .secao-11 .content h4 span {
        color: #FE2B54;
    }


    .secao-11 .content p {
        text-align: center;
        margin-top: 5px;
    }

}



/*------ SEÇÃO 12 ------*/

.secao-12 {
    background-color: #151515;
    width: 100%;
    height: fit-content;
    margin-top: -1px;
    padding: 80px 0px;
}

.secao-12 .content {
    align-items: center;
}

.secao-12 .content .valor {
    width: 100%;
    max-width: 612px;
    height: fit-content;
    border: solid 2px #3D3D3D;
    border-radius: 20px;
    overflow: hidden;
}

.secao-12 .content .valor .parte-1 {
    background-color: #1E1E1E;
    padding: 40px 20px;
}

.secao-12 .content .valor .parte-1 h2 {
    text-align: center;
}

.secao-12 .content .valor .parte-1 ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.secao-12 .content .valor .parte-1 ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.secao-12 .content .valor .parte-1 ul li span {
    height: 24px;
}

.secao-12 .content .valor .parte-1 ul li span svg {
    width: 25px;
    height: 25px;
}

.secao-12 .content .valor .parte-1 ul li p {
    font-size: 13px;
}

.secao-12 .content .valor .parte-1 .separation {
    border-top: solid 1px #3D3D3D;
}

.secao-12 .content .valor .parte-2 {
    background-color: #1A1A1A;
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.secao-12 .content .valor .parte-2 p {
    color: #D9D9D9;
    font-size: 13px;
}

.secao-12 .content .valor .parte-2 h4 {
    color: #24F5EF;
    font-size: 65px;
    margin-top: 20px;
    font-weight: 400;
}

.secao-12 .content .valor .parte-2 a {
    margin-top: 40px;
    font-size: 14px;
}

.secao-12 .content .valor .parte-2 .gateway {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
}

.secao-12 .content .valor .parte-2 .gateway img {
    height: 100%;
}

.secao-12 .content .valor .parte-2 .gateway p {
    font-size: 12px;
}


@media (min-width: 1440px) {

    .secao-12 {
        background-color: #151515;
        width: 100%;
        height: fit-content;
        margin-top: -1px;
        padding: 80px 0px;
    }

    .secao-12 .content {
        align-items: center;
    }

    .secao-12 .content .valor {
        width: 612px;
        height: fit-content;
        border: solid 2px #3D3D3D;
        border-radius: 20px;
        overflow: hidden;
    }

    .secao-12 .content .valor .parte-1 {
        background-color: #1E1E1E;
        padding: 50px 90px;
    }

    .secao-12 .content .valor .parte-1 h2 {
        text-align: center;
    }

    .secao-12 .content .valor .parte-1 ul {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 35px;
    }

    .secao-12 .content .valor .parte-1 ul li {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .secao-12 .content .valor .parte-1 ul li p {
        font-size: 16px;
    }

    .secao-12 .content .valor .parte-1 .separation {
        border-top: solid 1px #3D3D3D;
    }

    .secao-12 .content .valor .parte-2 {
        background-color: #1A1A1A;
        padding: 50px 90px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .secao-12 .content .valor .parte-2 p {
        color: #D9D9D9;
        font-size: 16px;
    }

    .secao-12 .content .valor .parte-2 h4 {
        color: #24F5EF;
        font-size: 80px;
        margin-top: 15px;
        font-weight: 400;
    }

    .secao-12 .content .valor .parte-2 a {
        margin-top: 40px;
    }

    .secao-12 .content .valor .parte-2 .gateway {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 7px;
        margin-top: 20px;
    }

    .secao-12 .content .valor .parte-2 .gateway img {
        height: 100%;
    }

    .secao-12 .content .valor .parte-2 .gateway p {
        font-size: 12px;
    }
}



/*------ SEÇÃO 13 ------*/

.secao-13 {
    width: 100%;
    height: fit-content;
    padding: 40px 0px;
    background-color: #151515;
    margin-top: -1px;
}

.secao-13 .content {
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 60px;
}

.secao-13 .content img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.secao-13 .content .conteudo {
    width: 100%;
    max-width: 546px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secao-13 .content .conteudo h2 {
    width: 100%;
    max-width: 672px;
}

.secao-13 .content .conteudo p {
    margin-top: 10px;
    width: 100%;
    max-width: 513px;
}



@media (min-width: 1440px) {

    .secao-13 {
        width: 100%;
        height: fit-content;
        padding: 80px 0px;
        background-color: #151515;
        margin-top: -1px;
    }

    .secao-13 .content {
        justify-content: center;
        flex-direction: row;
        gap: 60px;
    }

    .secao-13 .content img {
        max-width: 400px;
        border-radius: 20px;
    }

    .secao-13 .content .conteudo {
        width: 546px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .secao-13 .content .conteudo h2 {
        width: 672px;
    }

    .secao-13 .content .conteudo p {
        margin-top: 10px;
        width: 513px;
    }
}



/*------ SEÇÃO 14 ------*/

.secao-14 {
    width: 100%;
    height: fit-content;
    padding: 40px 0px;
    background-color: #151515;
    margin-top: -1px;
}

.secao-14 .content {
    justify-content: center;
    flex-direction: column-reverse;
    gap: 60px;
}

.secao-14 .content img {
    max-width: 400px;
    border-radius: 20px;
}

.secao-14 .content .conteudo {
    width: 100%;
    max-width: 622px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secao-14 .content .conteudo h2 {
    width: 100%;
    max-width: 672px;
}

.secao-14 .content .conteudo p {
    margin-top: 10px;
    width: 100%;
    max-width: 513px;
}


@media (min-width: 1440px) {
    .secao-14 {
        width: 100%;
        height: fit-content;
        padding: 80px 0px;
        background-color: #151515;
        margin-top: -1px;
    }

    .secao-14 .content {
        justify-content: center;
        flex-direction: row;
        gap: 60px;
    }

    .secao-14 .content img {
        max-width: 400px;
        border-radius: 20px;
    }

    .secao-14 .content .conteudo {
        width: 622px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .secao-14 .content .conteudo h2 {
        width: 672px;
    }

    .secao-14 .content .conteudo p {
        margin-top: 10px;
        width: 513px;
    }
}



/*------ SEÇÃO 15 ------*/

.secao-15 {
    width: 100%;
    height: fit-content;
    background-color: #151515;
    padding: 40px 0px;
    position: relative;
    z-index: 0;
    margin-top: -1px;

}

.secao-15 .content {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.secao-15 .content .content-secao2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
    background: linear-gradient(125deg, #6b6b6b1f 0%, #6b6b6b00 30%);
    border-radius: 20px;
    border: solid #3D3D3D 1px;
    margin-top: 50px;
    z-index: 3;
    position: relative;
    overflow: hidden;
    transition: all 1s ease;
    backdrop-filter: blur(5px);
    width: 100%;

}

.secao-15 .content .content-secao2 .conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.secao-15 .content .content-secao2 .conteudo h2 {
    text-align: left;
}

.secao-15 .content .content-secao2 .foto {
    z-index: 2;
    width: 100%;
}

.secao-15 .content .content-secao2 p {
    font-family: 'Krub';
    font-size: 13px;
    line-height: 18px;
    font-weight: 300;
    color: #B9B9B9;
}

.secao-15 .content .content-secao2 a {
    font-size: 13px;
}

.secao-15 .content h2 {
    max-width: 712px;
    width: 100%;
    text-align: center;
}


@media (min-width: 1440px) {
    .secao-15 {
        width: 100%;
        height: fit-content;
        background-color: #151515;
        padding: 80px 0px;
        position: relative;
        z-index: 0;
        margin-top: -1px;

    }

    .secao-15 .content {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .secao-15 .content .content-secao2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 64px 77px;
        gap: 80px;
        background: linear-gradient(125deg, #6b6b6b1f 0%, #6b6b6b00 30%);
        border-radius: 20px;
        border: solid #3D3D3D 1px;
        margin-top: 50px;
        z-index: 3;
        position: relative;
        overflow: hidden;
        transition: all 1s ease;
        backdrop-filter: blur(5px);

    }

    .secao-15 .content .content-secao2 .conteudo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .secao-15 .content .content-secao2 .conteudo h2 {
        text-align: left;
    }

    .secao-15 .content .content-secao2 .foto {
        z-index: 2;
    }

    .secao-15 .content .content-secao2 p {
        font-family: 'Krub';
        font-size: 18px;
        line-height: 28px;
        font-weight: 300;
        color: #B9B9B9;
    }

    .secao-15 .content h2 {
        max-width: 712px;
        width: 100%;
        text-align: center;
    }

    .secao-15 .tiktok {
        position: absolute;
        z-index: 1;
        top: -1%;
        left: 0;
        width: 30em;
        transition: all 1s ease;
        opacity: 0.4;
    }


    .secao-15 .content .content-secao2:hover .tiktok {
        scale: 1.2;
        transition: all 1s ease;
        transform: rotate(5deg);
    }
}



/*------ SEÇÃO 16 ------*/

.secao-16 {
    width: 100%;
    height: fit-content;
    padding: 80px 0px;
    background-color: #151515;
    margin-top: -1px;
}

.secao-16 .content {
    align-items: center;
    justify-content: center;
}

.secao-16 .content h2 {
    color: #ffffff;
    margin-bottom: 40px;
}

.secao-16 .content a {
    margin-top: 40px;
}

.faq-toggle {
    display: none;
}

.faq-item {
    margin-bottom: 15px;
    width: 100%;
    max-width: 486px;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
    color: #D9D9D9;
    gap: 15px;
    font-family: 'Krub';
    background-color: transparent;
    border: solid 1px #3D3D3D;
    border-radius: 5px;
    transition: all 0.3s ease;

}

.faq-question:hover {
    background-color: #1E1E1E;
    transition: all 0.3s ease;
}

.faq-icon svg path {
    stroke: #24F5EF;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: all 0.3s ease;
    transform: rotate(90deg);
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out;
    background-color: #1b1b1b;
    margin-top: -5px;
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 18px;
    font-size: 13px;
    color: #D9D9D9;
    line-height: 1.5;
}

.faq-toggle:checked~.faq-answer-wrapper {
    grid-template-rows: 1fr;
    border: solid 1px #3D3D3D;
}

.faq-item .faq-question .faq-icon svg {
    transition: all 0.5s ease;
}

.faq-toggle:checked~.faq-question {
    background-color: #1b1b1b;
}

.faq-toggle:checked~.faq-question .faq-icon svg {
    transform: rotate(180deg);
    transition: all 0.5s ease;
}

.faq-toggle:checked~.faq-question .faq-icon svg path {
    stroke: #FE2B54;
}

.faq-toggle:hover~.faq-question .faq-icon svg path {
    stroke: #FE2B54;
}


@media (min-width: 1440px) {
    .secao-16 {
        width: 100%;
        height: fit-content;
        padding: 80px 0px;
        background-color: #151515;
        margin-top: -1px;
    }

    .secao-16 .content {
        align-items: center;
        justify-content: center;
    }

    .secao-16 .content h2 {
        color: #ffffff;
        margin-bottom: 40px;
    }

    .secao-16 .content a {
        margin-top: 40px;
    }

    .faq-toggle {
        display: none;
    }

    .faq-item {
        margin-bottom: 15px;
        width: 486px;
        transition: all 0.3s ease;
    }

    .faq-question {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between;
        padding: 20px;
        cursor: pointer;
        font-weight: 400;
        font-size: 18px;
        transition: color 0.3s ease;
        color: #D9D9D9;
        gap: 15px;
        font-family: 'Krub';
        background-color: transparent;
        border: solid 1px #3D3D3D;
        border-radius: 5px;
        transition: all 0.3s ease;

    }

    .faq-question:hover {
        background-color: #1E1E1E;
        transition: all 0.3s ease;
    }

    .faq-icon svg path {
        stroke: #24F5EF;
    }

    .faq-icon {
        font-size: 24px;
        font-weight: 300;
        transition: all 0.3s ease;
        transform: rotate(90deg);
    }

    .faq-answer-wrapper {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.4s ease-in-out;
        background-color: #1b1b1b;
        margin-top: -5px;
    }

    .faq-answer {
        overflow: hidden;
    }

    .faq-answer p {
        margin: 0;
        padding: 18px;
        font-size: 16px;
        color: #D9D9D9;
        line-height: 1.5;
    }

    .faq-toggle:checked~.faq-answer-wrapper {
        grid-template-rows: 1fr;
        border: solid 1px #3D3D3D;
    }

    .faq-item .faq-question .faq-icon svg {
        transition: all 0.5s ease;
    }

    .faq-toggle:checked~.faq-question {
        background-color: #1b1b1b;
    }

    .faq-toggle:checked~.faq-question .faq-icon svg {
        transform: rotate(180deg);
        transition: all 0.5s ease;
    }

    .faq-toggle:checked~.faq-question .faq-icon svg path {
        stroke: #FE2B54;
    }

    .faq-toggle:hover~.faq-question .faq-icon svg path {
        stroke: #FE2B54;
    }
}



/*------ RODAPÉ  ------*/

.rodape {
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    font-size: 12px;
    color: #888888;
    border-top: 1px solid #3D3D3D;
    background-color: #151515;
    padding: 10px;
}

.rodape p {
    font-size: 10px;
    text-align: center;
    color: #737373;
}


@media (min-width: 1440px) {
    .rodape {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        font-size: 12px;
        color: #888888;
        border-top: 1px solid #3D3D3D;
        background-color: #151515;
    }

    .rodape p {
        font-size: 10px;
        color: #737373;
    }
}