/* Esconde o botão de tela cheia nos navegadores Webkit */
video::-webkit-media-controls-fullscreen-button {
    display: none;
}


/* ---------------- PRIMEIRA DOBRA ---------------- */
.primeira_dobra {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 85rem;
    background: 
        linear-gradient(var(--bg-color), var(--bg-color)), 
        url('/src/bg_primeira_dobra.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.box_primeira_dobra {
    width: 100%;
    max-width: 124rem;
    height: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 0 0 0;
    z-index: 999;
}

.left_items,
.right_items {
    width: 100%;
    height: 100%;
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 5rem;
}

.left_items {
    padding: 10rem;
}

.left_items img {
    width: 100%;
    height: auto;
}

.text_right_items {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}

.title_box_right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.title_box_right h1 {
    font-size: 4.5rem;
    line-height: 5rem;
    color: var(--text-color);
    margin-top: 1rem;
}

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

.description_right_box p {
    color: var(--text-color);
    font-size: 1.5rem;
    text-align: justify;
    hyphens: auto;
    line-height: 2rem;
    margin-top: 1.5rem;
}

.btn_apresentacao {
    display: flex;
    justify-content: space-between;
    align-content: center;
    gap: 2rem;
    border: none;
    background-color: var(--apoio-color);
    padding: 1.4rem 1.4rem 1.4rem 2.5rem;
    box-shadow: 1px 1px 2px 2px var(--box-shadow);
    width: 18rem;
    border-radius: 20rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: .7s ease-out;
    cursor: pointer;
}

.btn_apresentacao:hover {
    background-color: var(--bg-white);
    width: 20rem;
}

.btn_apresentacao i {
    position: absolute;
    color: var(--primary-color);
    font-size: 3rem;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    height: auto;
    transition: .7s ease-in-out;
}

.btn_apresentacao:hover i {
    transform: translateX(2rem), translateY(-50%);
}

.btn_apresentacao::before {
    content: "";
    width: 100%;
    top: 0;
    left: -100%;
    height: 100%;
    position: absolute;
    display: block;
    background-color: var(--bg-white);
    transition: .3s ease-in-out;
}

.btn_apresentacao:hover::before {
    left: 0;
    opacity: 0;
}

.text_btn_orc_first,
.text_btn_orc {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* box video */
.container_video_body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-video-full);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

.btn_close_video {
    position: absolute;
    top: 5rem;
    right: 5rem;
    cursor: pointer;
}

.btn_close_video i {
    font-size: 4.5rem;
    transition: .3s ease-out;
    color: var(--apoio-color);
}

.btn_close_video:hover i {
    color: var(--bg-body);
}

.box_iframe {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 128rem;
    height: 100%;
    max-height: 72rem;
}

.box_iframe iframe {
    width: 100%;
    height: 100%;
}

/* Segunda dobra */
.no_margin {
    margin-top: 0rem !important;
    padding: 0 0 10rem 0 !important; 
}

.segunda_dobra {
    width: 100%;
    height: max-content;
    padding: 20rem 0 8rem 0;
    background-color: var(--bg-white);
    margin-top: -23.5rem;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.box_segunda_dobra {
    width: 100%;
    max-width: 102.4rem;
    height: max-content;
    padding: 8rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* funcionalidades */
.funcionalidades {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
    height: max-content;
    padding: 10rem 0;
    background-color: var(--bg-body);
}

.funcionalidades h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.box_funcionalidades {
    width: 100%;
    max-width: 125rem;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.func_items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
    padding: 5rem 4rem;
    background-color: var(--bg-white);
    border-radius: 1rem;
    transition: .4s ease-in-out;
    box-shadow: 0 0 10px 1px var(--box-shadow);
}

.box_funcionalidades:has(.func_items:hover) .func_items:not(:hover) {
    opacity: .6;
    scale: .9;
}

.title_func {
    font-weight: 600;
    font-size: 1.6rem !important;
    color: var(--primary-color);
}

.func_items p {
    text-align: center;
    font-size: 1.2rem;
}

.icon_box {
    width: 7rem;
    height: 7rem;
    background-color: var(--second-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.icon_box i {
    color: var(--text-color);
    font-size: 3rem;
}

/* Moldura do celular */
.cellphone-frame.tablet_frame {
    width: 32rem !important;
}

.cellphone-frame {
    width: 25rem; 
    height: auto; 
    background: #414141; 
    border: solid var(--apoio-color) .3rem;
    border-radius: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1rem;
    z-index: 999;
}

/* Tela interna para vídeo */
.cellphone-screen {
    width: 100%; /* Largura do vídeo */
    height: 100%; /* Altura do vídeo */
    background: #222; /* Fundo de segurança para a tela */
    border-radius: 1.5rem; /* Bordas arredondadas da tela */
    overflow: hidden; /* Garante que o vídeo fique dentro da tela */
}

.circle_top_display {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    z-index: 999;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #414141;
}

.circle_top_display_two {
    position: absolute;
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    z-index: 9999;
    top: 2.15rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #a0a0a0;
    opacity: 10%;
}

/* Estilo do vídeo */
.cellphone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta o vídeo para preencher a área */
}

/* Botão na parte inferior (detalhe extra) */
.home-button {
    position: absolute;
    bottom: 10px;
    width: 60px;
    height: 6px;
    background: var(--apoio-color);
    border-radius: 10px;
}

.btn_power {
    position: absolute;
    width: .32rem;
    height: 3rem;
    right: -.6rem;
    top: 7rem;
    background-color: #414141;
    z-index: 9999;
    border-radius: 0 .5rem .5rem 0;
}

.btn_volume {
    position: absolute;
    width: .32rem;
    height: 6rem;
    right: -.6rem;
    top: 12rem;
    background-color: #414141;
    border-radius: 0 .5rem .5rem 0;
}

/* TITLE */
.title_segunda_dobra,
.title_quarta_dobra {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
    width: 100%;
    height: max-content;
}

.title-segunda-dobra-p,
.title_quarta_dobra p {
    color: var(--second-color);
    font-weight: 600;
    font-size: 1.8rem;
    text-align: center;
}

.title_element {
    width: 100%;
    font-size: 3.3rem;
    line-height: 5rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
}

.title_element {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 5rem;
}

.title_element::after,
.title_element::before {
    content: "";
    display: block;
    background-color: var(--apoio-color);
    width: 20%;
    height: .5rem;
    border-radius: 2rem;
}

/* TESTE GRATIS */
.teste_gratis {
    width: 100%;
    height: max-content;
    padding: 8rem 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-body);
}

.box_teste_gratis {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 125rem;
    height: max-content;
    padding: 8rem 0 0 0;
    gap: 3rem;
}

.img_box_teste_gratis {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img_box_teste_gratis img {
    width: 100%;
    height: auto;
}

.text_box_teste_gratis {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 4rem;
}

.text_box_teste_gratis button {
    width: 100%;
    height: max-content;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 3rem;
    background-color: var(--apoio-color);
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    transition: .4s;
    position: relative;
}

.text_box_teste_gratis svg {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

.text_box_teste_gratis button:hover {
    background-color: var(--second-color);
    color: var(--text-color);
}

.box_steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.box_step {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.number_step {
    width: 5rem;
    height: 5rem;
    background-color: var(--apoio-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    transition: .4s ease-in-out;
}

.step:hover .number_step {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.title_step {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.text_step {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.text_step p {
    font-size: 1.3rem;
    line-height: 2rem;
    color: var(--second-color);
    text-align: left;
    hyphens: auto;
}

.no_content {
    width: 10rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.no_content div {
    width: .2rem;
    height: 5rem;
    background-color: var(--apoio-color);
}

/* terceira dobra */
.terceira_dobra {
    width: 100%;
    height: max-content;
    padding: 10rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_terceira_dobra {
    width: 100%;
    max-width: 102.4rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left_terceira_dobra,
.left_segunda_dobra {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left_terceira_dobra img,
.left_segunda_dobra img {
    z-index: 999;
}

.circle_left_segunda_dobra {
    background-color: var(--apoio-color);
    border-radius: 50%;
    position: absolute;
    width: 30rem;
    height: 30rem;
    top: 50%;
    left: 19%;
    transform: translateY(-50%);
    z-index: 99;
}

.circle_left_terceira_dobra {
    background-color: var(--apoio-color);
    border-radius: 50%;
    position: absolute;
    width: 30rem;
    height: 30rem;
    top: 50%;
    right: 19%;
    transform: translateY(-50%);
    z-index: 99;
}

.square_left_segunda_dobra {
    background-color: var(--second-color);
    border-radius: 50%;
    position: absolute;
    width: 40rem;
    height: 40rem;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 9;
}

.square_left_terceira_dobra {
    background-color: var(--second-color);
    border-radius: 50%;
    position: absolute;
    width: 40rem;
    height: 40rem;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 9;
}

.right_terceira_dobra,
.right_segunda_dobra {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
}

.text_right_terceira_dobra,
.text_right_segunda_dobra {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.text_right_terceira_dobra .title_top_terceira_dobra,
.text_right_segunda_dobra .title_top_segunda_dobra {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
}

.text_right_terceira_dobra .title_midle,
.text_right_segunda_dobra .title_midle {
    font-size: 6.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: -1rem;
}

.text_description_terceira_dobra,
.text_description_segunda_dobra {
    font-size: 1.4rem;
    color: var(--primary-color);
    text-align: justify;
    hyphens: auto;
    line-height: 2rem;
}

.right_terceira_dobra ul,
.right_segunda_dobra ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}

.right_terceira_dobra ul li,
.right_segunda_dobra ul li  {
    color: var(--primary-color);
    list-style: inside;
    font-size: 1.3rem;
    text-align: justify;
    hyphens: auto;
}

/* price table */
.price_table_title {
    width: 100%;
    height: max-content;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--second-color);
}

.box_price_table_title {
    width: 100%;
    height: 100%;
    max-width: 125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title_box_price_table  {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1rem;
    width: 100%;
}

.title_box_price_table p:nth-child(1) {
    font-size: 2rem;
    color: var(--apoio-color);
    font-size: 1.6rem;
    font-weight: 600;
}

.title_box_price_table p:nth-child(2) {
    font-size: 6rem;
    color: var(--text-color);
    font-weight: 700;
    margin-top: -1rem;
}

.key_recurrence {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.recurrence {
    color: var(--text-color);
    font-weight: 600;
    transition: .3s ease-in-out;
}

.recurrence.active {
    color: var(--apoio-color);
}

.box_circle_key {
    width: 7rem;
    height: 3rem;
    border: solid .2rem var(--bg-white);
    border-radius: 3rem;
    position: relative;
}

.circle_key {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: .3rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--apoio-color);
    transition: .4s ease-in-out;
}

.circle_key.active {
    left: 4.3rem
}

.price_table {
    width: 100%;
    height: max-content;
    padding: 10rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6rem;
}

.box_price_table {
    width: 100%;
    max-width: 110rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 3rem;
}

.content_item_price.full {
    padding: 10rem 1rem;
}

.content_item_price.full .title_price p,
.content_item_price.full .price .price_real,
.content_item_price.full .price .recurrence_price {
    color: var(--text-color);
}

.content_item_price {
    background-color: var(--bg-white);
    padding: 8rem 1rem;
    box-shadow: 0 0 10px 1px var(--box-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 2rem;
    gap: 3rem;
    position: relative;
    height: max-content;
}

.title_price {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
}

.title_price p:nth-child(1) {
    font-size: 3rem;
    color: var(--second-color);
    font-weight: 700;
}

.title_price p {
    color: var(--primary-color);
    text-align: center;
    font-size: 1.3rem;
    max-width: 85%;
}

.price {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.price_real {
    font-size: 8rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.price_real::after {
    content: "R$";
    position: absolute;
    top: 2rem;
    left: -2rem;
    font-size: 1.5rem;
}

.price_real::before {
    content: var(--before-content, "mensal");
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.price_real span {
    font-size: 2rem;
}

.tag_top {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 2rem;
    left: 0;
    width: 70%;
    height: max-content;
    padding: 1rem;
    background-color: var(--apoio-color);
    border-radius: 0 1rem 1rem 0;
    color: var(--second-color);
    font-weight: 700;
}

.content_item_price.full {
    background-color: var(--primary-color);
}

.description_price {
    display: flex;
    justify-content: center;
    align-items: center;    
    border-top: solid .1rem var(--second-color);
    width: 80%;
    padding-top: 3rem;
}

.description_price ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
}

.content_item_price.full .description_price {
    border-top: solid .1rem var(--text-color);
}

.content_item_price.full .description_price ul li {
    color: var(--text-color);
}

.description_price ul li {
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.description_price ul .no-check i {
    color: red;
}

.description_price ul .no-check {
    opacity: 50%;
}

.content_item_price button {
    width: max-content;
    height: max-content;
    padding: 1.2rem 6rem;
    border: none;
    border-radius: 3rem;
    background-color: var(--apoio-color);
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    transition: .4s;
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.content_item_price svg {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

.content_item_price button:hover {
    background-color: var(--second-color);
    color: var(--text-color);
}

.legenda,
.pdf_info a {
    color: var(--second-color);
    font-weight: 600;
}

.pdf_info {
    cursor: pointer;
    transition: .3s;
}

.pdf_info:hover {
    opacity: 70%;
}

/* quarta dobra */

.quarta_dobra {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: max-content;
    padding: 10rem 0;
}

.list_questions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    height: max-content;
    padding: 5rem 0;
    max-width: 102.4rem;
    list-style: none;
}

.list_questions li {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-direction: column;
    box-shadow: 1px 1px 2px 2px var(--box-shadow);
    border-radius: 1rem;
    padding: 2rem 3rem;
    overflow: hidden;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.list_questions li .title_question {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    width: 100%;
    transition: .3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list_questions li:hover .title_question {
    color: var(--second-color);
    opacity: 80%;
}

.list_questions li i {
    position: absolute;
    top: 50%;
    right: .5rem;
    transform: translateY(-50%);
    transform-origin: center;
}

.list_questions li .content_question {
    font-size: 1.3rem;
    line-height: 2rem;
    text-align: justify;
    hyphens: auto;
    width: 100%;
    display: none;
}

.list_questions li.active .content_question {
    display: block;
}

.list_questions li.active i {
    transform: rotate(90deg);
}

/* RESPONSIVIDADE */
@media(max-width: 1428px) {
    .box_video {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 1280px) {
    .box_video {
        max-width: 99%;
    }

    .video_container {
        width: 100%;
    }

    .box_primeira_dobra,
    .box_segunda_dobra,
    .box_swiper_products,
    .box_terceira_dobra,
    .list_questions,
    .box_teste_gratis,
    .box_price_table_title,
    .box_funcionalidades,
    .box_price_table {
        width: 90%;
    }
}

@media (max-width: 1104px) {
    .left_items {
        padding: 5rem;
    }
}

@media(max-width: 1024px) {

    .box_video {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 900px) {
    .primeira_dobra {
        min-height: max-content !important;
    }

    .box_segunda_dobra,
    .box_teste_gratis {
        flex-direction: column;
        gap: 5rem;
    }

    .box_primeira_dobra {
        flex-direction: column-reverse;
        gap: 5rem;
        padding-top: 10rem;
    }

    .box_segunda_dobra,
    .box_swiper_products,
    .box_terceira_dobra,
    .list_questions,
    .box_teste_gratis,
    .box_price_table_title,
    .box_funcionalidades,
    .box_price_table {
        flex-direction: column-reverse;
        gap: 5rem;
        width: 80%;
    }

    .left_terceira_dobra,
    .right_terceira_dobra,
    .left_segunda_dobra,
    .right_segunda_dobra,
    .img_box_teste_gratis,
    .text_box_teste_gratis {
        width: 100%;
    }

    .left_items {
        align-items: center;
        padding: 0 0 10rem 0;
    }

    .segunda_dobra {
        margin-top: 0;
        padding: 8rem 0 10rem 0;
    }

    .title_segunda_dobra {
        width: 85%;
    }

    .swiper-slide {
        flex-direction: column;
    }

    .box_swiper_products {
        width: 85%;
    }

    .box_left_swiper,
    .box_right_swiper {
        width: 100%;
    }

    .box_left_swiper {
        padding: 5rem!important;
    }

    .box_right_swiper {
        align-items: center;
    }

    .box_right_swiper img {
        width: 75%;
        height: auto    ;
    }

    .swiper-button-next, 
    .swiper-button-prev {
        display: none !important;
    }

    .circle_left_terceira_dobra,
    .square_left_terceira_dobra,
    .circle_left_segunda_dobra,
    .square_left_segunda_dobra {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .box_price_table {
        gap: 1rem;
        width: 95%;
    }

    .box_funcionalidades {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 834px) {
    .box_primeira_dobra {
        padding-top: 12rem;
    }

    .left_items img {
        width: 85%;
        height: auto;
    }
}

@media(max-width: 780px) {

    .box_video {
        grid-template-columns: repeat(1, 1fr);
    }

    .search_tuto {
        max-width: 90%;
    }

    

}

@media (max-width: 680px) {
    /* FORM */
    .form_contato {
        padding: 15rem 0 20rem 0 !important;
    }

    .text_bg_contato p:nth-child(1) {
        font-size: 1.8rem !important;
    }

    .text_bg_contato h2 {
        font-size: 4rem !important;
    }

    .container_form {
        max-width: 90% !important;
    }

    .title_element span {
        font-size: 4rem;
    }

    .box_left_swiper .text_right_items .title_box_right {
        gap: .8rem;
    }

    .title_midle {
        font-size: 4rem !important;
    }

    .title_bottom_terceira_dobra {
        font-size: 2rem !important;
    }

    .circle_left_terceira_dobra,
    .circle_left_segunda_dobra {
        width: 28rem;
        height: 28rem;
    }

    .square_left_terceira_dobra,
    .square_left_segunda_dobra {
        width: 33rem;
        height: 33rem;
    }

    .box_price_table {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .box_price_table_title {
        flex-direction: column;
        gap: 2rem;
    }

    .key_recurrence {
        justify-content: flex-start;
    }

    .box_funcionalidades {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .title_box_right {
        gap: 1rem;
    }


    .funcionalidades h2,
    .legenda,
    .pdf_info {
        text-align: center;
        width: 85%;
    }
}
