@import url(https://db.onlinewebfonts.com/c/7706838253ee4576c2622a94148f1a31?family=MicroSquare+Bold);
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Exo';
}

body {
    margin: 0px;
    padding: 0px;
    background-color: #070707;
}

.esconder {
    display: none !important;
}

@-webkit-keyframes pulse-verde {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #5DB816, 0 0 0 0 #2F8C03;
    }

    70% {
        transform: scale(1.01);
        box-shadow: 0 0 0 10px transparent, 0 0 0 20px transparent;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent;
    }
}

@-moz-keyframes pulse-verde {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #5DB816, 0 0 0 0 #2F8C03;
    }

    70% {
        transform: scale(1.01);
        box-shadow: 0 0 0 10px transparent, 0 0 0 20px transparent;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent;
    }
}

@-o-keyframes pulse-verde {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #5DB816, 0 0 0 0 #2F8C03;
    }

    70% {
        transform: scale(1.01);
        box-shadow: 0 0 0 10px transparent, 0 0 0 20px transparent;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent;
    }
}

@keyframes pulse-verde {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #5DB816, 0 0 0 0 #2F8C03;
    }

    70% {
        transform: scale(1.01);
        box-shadow: 0 0 0 10px transparent, 0 0 0 20px transparent;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent;
    }
}


.notification {
    position: fixed;
    bottom: 0.625rem;
    left: 0.625rem;
    display: flex;
    background-color: #FFF;
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
    border-radius: 0.25rem;
    gap: 0.625rem;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
    align-items: center;
    transform: translateY(200%);
    transition: all 0.2s ease-in-out;
    z-index: 1000;
}

.notification.active {
    transform: translateY(0);
}

.notification .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.3125rem;
    font-size: 0.75rem;
}

.notification .text .name {
    font-weight: 600;
    font-size: 0.75rem;
    margin: 0 0 0.125rem;
}

.notification .text .quantity {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5607843137);
    font-size: 0.75rem;
    margin: 0 0 0.125rem;
}

.notification .text h5 {
    margin: 0;
}

.notification .text .time {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5607843137);
    font-size: 0.625rem;
}

.notification .text .verified {
    font-weight: 700;
    color: #00A650;
    position: relative;
    margin-left: 1.875rem;
}

.notification .text .verified::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M5.5 11.5L2 8l1.5-1.5 2 2 4.5-4.5L13 5l-7.5 6z'/%3E%3C/svg%3E");
    position: absolute;
    left: -0.625rem;
    top: 50%;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #00A650;
    border-radius: 50%;
    padding: 0.0625rem;
    transform: translate(-50%, -50%);
}

.notification .close {
    position: absolute;
    right: 0.625rem;
    top: 0.625rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(0, 0, 0, 0.3490196078);
    display: flex;
    line-height: 1;
    align-items: center;
    justify-content: center;
    color: #FFF;
    border-radius: 50%;
    font-size: 0.875rem;
    cursor: pointer;
}

.area_top_strip {
    background: linear-gradient(269.36deg, #7B0707 -1.89%, #E91717 104.82%);
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 999999;
}

.top-strip {
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
    padding: 6px 0;
}

.top-strip b {
    font-weight: 900;
}

#container_1 {
    background-image: url(../img/Hero-trade.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 80px 0px 60px 0px;
}

a {
    text-decoration: none;
    width: 100%;
    max-width: 440px;
}

h1,
h2,
h3,
p {
    margin: 0px;
}

[data-animation] {
    opacity: 0;
    transition: all 200ms ease-in;
}

[data-delay-1] {
    transition-delay: 200ms;
}

[data-delay-2] {
    transition-delay: 300ms;
}

[data-delay-3] {
    transition-delay: 400ms;
}

[data-delay-4] {
    transition-delay: 500ms;
}

[data-animation="down"] {
    transform: translate3d(0, 20px, 0);
}

[data-animation="left"] {
    transform: translate3d(-20px, 0, 0);
}

[data-animation="right"] {
    transform: translate3d(20px, 0, 0);
}

[data-animation].animate {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}


.container_1 {
    display: flex;
    justify-content: center;
    width: 100%;
}

.container_1_int {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
}

.area_container_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 850px;
    gap: 40px;
}

.area_text_container_1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}



.title_container_1 h1 {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    font-size: 2.5em;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: #F5F5F5;
}

.title_container_1 h1 b {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    background: linear-gradient(269.36deg, #7B0707 -1.89%, #E91717 104.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub_title_container_1 p {
    font-family: 'Exo';
    font-weight: 400;
    font-size: 1.2em;
    line-height: 120%;
    color: #F5F5F5;
}

.sub_title_container_1 {
    background-color: #101010;
    padding: 15px 20px;
    border-radius: 100px;
}



.btn_principal {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    gap: 10px;
    max-width: 440px;
    background: linear-gradient(180deg, #5DB816 0%, #2F8C03 100%);
    border-radius: 100px;
    -webkit-animation: pulse-verde 2s infinite;
    -moz-animation: pulse-verde 2s infinite;
    -o-animation: pulse-verde 2s infinite;
    animation: pulse-verde 2s infinite;
}

.btn_principal h2 {
    font-weight: 600;
    font-size: 1.4em;
    line-height: 110%;
    color: #FFFFFF;
}


@-webkit-keyframes move_slide {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes move_slide {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.container_clientes {
    display: flex;
    justify-content: center;
    width: 100%;
}

.container_clientes_int {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 0px;
    background: #101010;
    border-top: 1px solid #818181;
    border-bottom: 1px solid #818181;
}

.area_clientes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow: hidden;
}

.slide_pro h2 {
    font-weight: 600;
    font-size: 1em;
    color: #F5F5F5;
    text-transform: uppercase;
}

.area_logos_clientes {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    -webkit-animation: move_slide 80s linear infinite;
    animation: move_slide 80s linear infinite;
}



.container_2 {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 0px 60px 0px;
}

.container_2_int {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    width: 100%;
}

.area_container_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.plataforma {
    max-width: 500px;
    height: auto;
    width: inherit;
}

.area_text_container_2 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    max-width: 520px;
    width: 100%;
}

.title_container_2 h2 {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    font-size: 2.5em;
    line-height: 110%;
    text-transform: uppercase;
    color: #F5F5F5;
}

.area_text_container_2 a {
    max-width: 520px;
}

.title_container_2 h2 b {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    background: linear-gradient(269.36deg, #7B0707 -1.89%, #E91717 104.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub_title_container_2 p {
    font-weight: 400;
    font-size: 1em;
    line-height: 116%;
    color: #F5F5F5;
}


.btn_principal_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    gap: 10px;
    max-width: 520px;
    background: linear-gradient(180deg, #5DB816 0%, #2F8C03 100%);
    border-radius: 100px;
    -webkit-animation: pulse-verde 2s infinite;
    -moz-animation: pulse-verde 2s infinite;
    -o-animation: pulse-verde 2s infinite;
    animation: pulse-verde 2s infinite;
}

.btn_principal_2 h2 {
    font-weight: 600;
    font-size: 1.4em;
    line-height: 110%;
    color: #FFFFFF;
}




/*Container Swiper*/

.container_swiper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 0px 60px 0px;
}

.container_swiper_int {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.area_swiper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.img_side {
    max-width: 500px;
    height: auto;
}

.swiper_1 {
    width: 100%;
    height: 100%;
    max-width: 2400px;
}

.swiper_2 {
    width: 100%;
    height: 100%;
    max-width: 2400px;
}


.area_swiper a {
    max-width: 520px;
}

.title_swiper {
    max-width: 650px;
}

.title_swiper h2 {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    font-size: 2.5em;
    line-height: 110%;
    text-transform: uppercase;
    color: #F5F5F5;
    text-align: center;
}

.title_swiper h2 b {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    background: linear-gradient(269.36deg, #7B0707 -1.89%, #E91717 104.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.swiper-slide {
    display: flex !important;
    justify-content: center;
}

.box_container img {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
    width: inherit;
}


.area_video {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}


.area_player {
    width: 100%;
    max-width: 330px;
    border: 1px solid #E91717;
    border-radius: 15px;
}

video {
    border-radius: 20px;
}

video::-webkit-media-controls-play-button {
    display: none !important;
}

.icon_video {
    transition: all ease;
}

@keyframes move_icon {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.icon_video {
    -webkit-animation: move_icon 700ms ease-in-out;
    -moz-animation: move_icon 700ms ease-in-out;
    -o-animation: move_icon 700ms ease-in-out;
    animation: move_icon 700ms ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    cursor: pointer;
    max-width: 69px !important;
    width: 100% !important;
    height: auto !important;
}


.thumb_1,
.thumb_1_video_2,
.thumb_1_video_3,
.thumb_1_video_4,
.thumb_1_video_5,
.thumb_1_video_6 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    margin: auto;
    background-position: center;
    cursor: pointer;
    z-index: 1;

}

.thumb_2,
.thumb_2_video_2,
.thumb_2_video_3,
.thumb_2_video_4,
.thumb_2_video_5,
.thumb_2_video_6 {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    margin: auto;
    background-position: center;
    cursor: pointer;
    z-index: 1;

}

/*
.hidden_controls {
    display: flex;
    width: 100% !important;
    height: 18% !important;
    position: absolute;
    left: 0%;
    right: 0%;
    bottom: 0%;
    backdrop-filter: blur(10px) contrast(100%);
    -webkit-backdrop-filter: blur(10px) contrast(100%);
}*/

.up_container {
    position: relative;
    padding-bottom: 160%;
    max-height: 90vh;
}

.up_container .player-wrapper {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.up_container .player-wrapper video,
.up_container .player-wrapper iframe,
.up_container .player-wrapper>div {
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
}

/*
.up_container.glass {
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    margin: auto;
    background-position: center;
}*/



.container_3 {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 0px 60px 0px;
}


.container_3_int {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    width: 100%;
}

.area_container_3 {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1140px;
    width: 100%;
}

.box_container_3 {
    width: 100%;
    background: #101010;
    border: 1px solid #818181;
}

.box_container_3_int {
    padding: 70px 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.box_container_3_int img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.area_text_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 760px;
    width: 100%;
    gap: 30px;
    text-align: center;
}

.title_container_3 h2 {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    font-size: 2.5em;
    line-height: 110%;
    text-transform: uppercase;
    color: #F5F5F5;
}

.title_container_3 h2 b {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    background: linear-gradient(269.36deg, #7B0707 -1.89%, #E91717 104.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub_title_container_3 p {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 130%;
    text-align: center;
    color: #F5F5F5;

}

.container_garantia {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 0px 60px 0px;
}

.container_garantia_int {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
}

.area_container_garantia {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 620px;
    text-align: center;
}

.garantia {
    max-width: 400px;
    height: auto;
    width: inherit;
}

.title_garantia h2 {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    font-size: 2.5em;
    line-height: 110%;
    text-transform: uppercase;
    color: #F5F5F5;
}

.title_garantia h2 b {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    background: linear-gradient(269.36deg, #7B0707 -1.89%, #E91717 104.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub_title_garantia p {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 130%;
    color: #EEFFFF;
}

.container_4 {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 0px 60px 0px;
}

.container_4_int {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
}

.area_container_4 {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.title_container_4 h2 {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    font-size: 2.5em;
    line-height: 110%;
    text-transform: uppercase;
    color: #F5F5F5;
    text-align: center;
}

.title_container_4 h2 b {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    background: linear-gradient(269.36deg, #7B0707 -1.89%, #E91717 104.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.area_box_container_4 {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.box_container_4 {
    width: 100%;
    max-width: 560px;
    background: #101010;
    border: 1px solid #F5F5F5;
    border-radius: 10px;

}


.box_container_4_int {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
}



.info_container_4 p {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 130%;
    color: #EEFFFF;
}


.container_preco {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 0px 60px 0px;
}

.container_preco_int {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
}

.area_preco {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.title_preco {
    max-width: 550px;
    width: 100%;
}

.title_preco h2 {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    font-size: 2.5em;
    line-height: 110%;
    text-transform: uppercase;
    color: #F5F5F5;
}

.title_preco h2 b {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    background: linear-gradient(269.36deg, #7B0707 -1.89%, #E91717 104.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.box_preco {
    max-width: 700px;
    width: 100%;
    background: #101010;
    border: 1px solid #F5F5F5;
    border-radius: 15px;

}

.box_preco_int {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 60px 100px;
}

.info_preco {
    border: 1px solid #F5F5F5;
    border-radius: 100px;
    padding: 20px 60px;
}

.info_preco p {
    font-weight: 700;
    font-size: 1.8em;
    line-height: 150%;
    color: #F5F5F5;
}

.area_beneficios {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.beneficios {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.info_beneficios p {
    font-weight: 400;
    font-size: 1.8em;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;

}

.preco h2 {
    font-weight: 700;
    font-size: 6.4em;
    line-height: 45%;
    text-align: center;
    color: #FFFFFF;
}

.sub_preco p {
    font-weight: 700;
    font-size: 2em;
    line-height: 45%;
    text-align: center;
    color: #FFFFFF;
}


/*Faq*/
.container_faq {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 0px 60px 0px;
    position: relative;
}

.bg_color {
    position: absolute;
    width: 100%;
    height: 500px;
    bottom: 0px;
    background: #fd1b1bcb;
    filter: blur(300px);
    z-index: -1;
}

.container_faq_int {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1280px;
}

.title_faq h2 {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    font-size: 2.5em;
    line-height: 110%;
    text-transform: uppercase;
    color: #F5F5F5;
    text-align: center;
}

.title_faq h2 b {
    font-family: "MicroSquare Bold";
    font-weight: bold;
    background: linear-gradient(269.36deg, #7B0707 -1.89%, #E91717 104.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.area_faq {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 960px;
    gap: 15px;
}

.faq_quests {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #101010;
    border: 1.2px solid #818181;
    border-radius: 6px;
    padding: 20px 35px 20px 35px;
    cursor: pointer;
}

.faq_quests h2 {
    font-weight: 600;
    font-size: 1.2em;
    line-height: 120%;
    color: #F5F5F5;
}

.quest {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    cursor: pointer;
}

.quest h2 {
    font-weight: 600;
    font-size: 1.2em;
    line-height: 120%;
    color: #F5F5F5;
}

.close {
    opacity: 1 !important;
}

.aswer {
    max-height: 0px;
    opacity: 0;
    transition: all ease-in-out 400ms;
    transform: scaleY(0.2);
    transform-origin: top;
    background: #101010;
    border: 1.2px solid #818181;
    border-radius: 6px;
    position: relative;
    z-index: -1;

}

.aswer.open {
    margin: -18px 0px 20px 0px;
    padding: 20px 35px 20px 35px;
}

.aswer h2 {
    font-size: 1.25em;
    line-height: 120%;
    color: #EEEEEE;
    font-weight: 400;
}

.open {
    display: flex;
    height: fit-content;
    max-height: 100% !important;
    transition: all ease-in-out 400ms;
    opacity: 1;
    transform: scaleY(1);
}

footer {
    width: 100%;
    background: #101010;
    border-top: 1px solid #818181;
    padding: 20px 0px;
}

.container_footer {
    display: flex;
    justify-content: center;
    width: 100%;
}

.container_footer_int {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    width: 100%;
}

.area_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.title_footer h2 {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 120%;
    text-transform: uppercase;
    color: #F5F5F5;
    text-align: center;
}

@media(max-width: 1024px) {

    .area_container_2 {
        flex-direction: column;
        gap: 40px;
        padding: 0px 20px;
    }

    .area_text_container_2 {
        text-align: center;
        align-items: center;
    }

    .area_container_3 {
        padding: 0px 20px;
    }

    .area_container_garantia {
        padding: 0px 20px;
    }

    .area_container_4 {
        gap: 60px;
        padding: 0px 20px;
    }

    .container_faq_int {
        padding: 0px 20px;
    }

}

@media(max-width:480px) {

    .top-strip {
        gap: 2px;
        padding: 6px 5px;
    }

    .sub_title_container_1 p {
        font-size: 0.9em;
    }

    .sub_title_container_1 {
        padding: 15px;
    }

    .img_side {
        height: auto;
        max-width: 100%;
        width: 100%;
    }

    .container_2,
    .container_3,
    .container_swiper,
    .container_garantia,
    .container_4,
    .container_preco {
        padding: 60px 0px 0px 0px;
    }


    .area_container_1 {
        padding: 0px 20px;
    }

    .title_container_1 h1,
    .title_container_2 h2,
    .title_container_3 h2,
    .title_swiper h2,
    .title_garantia h2,
    .title_container_4 h2,
    .title_faq h2 {
        font-size: 2em;
    }

    .box_container_3_int {
        padding: 40px 40px;
    }

    .box_preco_int {
        padding: 40px 20px;
    }

    .container_preco_int {
        padding: 0px 20px;
        width: -webkit-fill-available;
    }

    .info_preco p {
        font-size: 1.4em;
    }

    .info_preco {
        padding: 20px 20px;
    }

    .area_container_4 {
        gap: 40px;
    }

    .garantia {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .info_beneficios p {
        font-size: 1.4em;
    }

    .preco h2 {
        font-size: 4em;
    }

    .sub_preco p {
        font-size: 1.6em;
    }

    .area_swiper {
        padding: 0px 20px;
        width: -webkit-fill-available;
    }

    .btn_principal h2,
    .btn_principal_2 h2 {
        font-size: 0.9em;
    }

    .btn_principal_2 {
        padding: 20px 10px;
    }

    .title_footer h2 {
        font-size: 1em;
    }

    .plataforma {
        height: auto;
        max-width: 100%;
        width: 100%;
    }

}