@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.back-yellow {
    background: yellow;
}

.box-vermelho {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 700px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    background: rgb(255 230 0);
    border: dashed rgb(160, 5, 5) 3px;
    overflow: hidden;
}

.box-vermelho>p {
    margin: 0;
    color: black;
    padding: 0;
}

.box-vermelho>h1 {
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    color: yellow;
}

.box-vermelho #span1 {
    position: absolute;
    width: calc(100% + 100%);
    border-top: 3px dashed yellow;
    top: 0;
    left: 0;
    animation: right-left 10s linear infinite;
}

.box-vermelho #span2 {
    position: absolute;
    height: calc(100% + 100%);
    border-left: 3px dashed yellow;
    bottom: 0;
    left: 0;
    animation: top-bottom 3s linear infinite;
}

.box-vermelho #span3 {
    position: absolute;
    width: calc(100% + 100%);
    border-bottom: 3px dashed yellow;
    bottom: 0;
    right: 0;
    animation: left-right 10s linear infinite;
}

.box-vermelho #span4 {
    position: absolute;
    height: calc(100% + 100%);
    border-right: 3px dashed yellow;
    top: 0;
    right: 0;
    animation: bottom-top 3s linear infinite;
}

@keyframes right-left {
    0% {
        transform: translateX(0%);
    }

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

@keyframes top-bottom {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(50%);
    }
}

@keyframes left-right {
    0% {
        transform: translateX(0%);
    }

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

@keyframes bottom-top {
    0% {
        transform: translateY(0%);
    }

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


.blink {
    animation: blink 2s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

.uppercase {
    text-transform: uppercase;
}

.red {
    color: red;
}

.green {
    color: #397F4C;
}

.ry {
    background: yellow;
    color: red;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    color: #1b1b1b;
}

a {
    text-decoration: none;
    color: inherit;
}

.pulse {
    animation: pulse 2s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

* img {
    width: 100%;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
}

:root {}

.r {
    color: #ff0000;
}

.y {
    background-color: #fff000;
}

.ry {
    background-color: #fff000 !important;
    color: #ff0000 !important;
}

.g {
    color: #008000;
}

:root {
    --verde_claro: #37ACB5;
    --verde_medio: #2B959C;
    --verde_escuro: #34858B;
}

.page-content {
    width: 100%;
    background: #f6f6f6;
    margin: 0 auto;
    min-height: 100vh;
    padding: 0;
}

.header {}

.header>div:nth-of-type(1) {
    /* background-color: #397F4C; */
    background: white;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}

.o-0 {
    opacity: 0;
}

.fa-solid.fa-bars {
    font-size: 28px;

}

.brasil {
    width: 40px;
    border-radius: 100px;
}

.logo {
    width: auto;
    -webkit-filter: invert(1);
    filter: invert(1);
    height: 30px;
}

.sub-header {
    background-color: black;
    padding: 4px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-header p {
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
    color: white;
}

.page-content-main {
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 20px 16px;
    margin: 0 auto;
}

.page-content-main>p {
    width: 100%;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
}

.depo_comentario {
    border-left: 4px solid #275A37;
    font-size: 20px !important;
    padding: 2px 0 2px 12px;
}

.page-content-main>p+p {
    margin-top: 14px;
}

.page-content-main>h2 {
    color: #397F4C;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.2px;
    font-weight: 700;
    margin: 26px 0 18px;
    text-transform: uppercase;
}

.page-content-main>h2>span {
    display: flex;
    width: 100%;
    height: 1px;
    background: #e7e7e7;
}

.pageTopics {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.pageTopics>p:nth-of-type(1) {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    opacity: .56;
}

.pageTopics>p:nth-of-type(2) {
    color: #f6f6f6;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    opacity: 1;
}

.pageTopics>i {
    font-size: 12px;
    line-height: 12px;
    color: #f6f6f6;
}

#pageTitulo {
    font-size: 23px;
    font-weight: 400;
    line-height: 1.3;
    margin: 5px 0 14px;
}

#subtitulo {
    /* opacity: .6; */
}

.contentImg_case {
    width: 100%;
    margin: 14px 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

.contentImg {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

.contentImg a {
    width: 100%;
    display: flex;
}

.contentImg>img,
.contentImg>video {
    display: block;
    width: 100%;
    max-width: 100%;
}

.imgSubtitle {
    width: 100%;
    background: #fff;
    border: 1px solid rgb(51, 51, 51, 20%);
    border-top: 0;
    padding: 8px 12px;
}

.imgSubtitle>p:nth-of-type(1) {
    font-size: 16px;
    line-height: 1.3;
    word-break: break-word;
    font-weight: 500;
}

.imgSubtitle>p:nth-of-type(2) {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.36;
    opacity: .8;
    margin-top: 2px;
}

/* ________________ MINI PERGUNTAS ________________ */
.perguntasBox {
    margin: 20px 0;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.perguntasUn {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
}

.perguntasUnIcon {
    width: 30px;
    min-width: 30px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
}

.pergunrtasIconPergunta {
    background-color: #ff0000;
}

.pergunrtasIconCheck {
    background-color: #008000;
}

.perguntasUn>p {
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

/* ________________ COMPOSTOS ________________ */
.compostosBox {
    width: 100%;
    margin: 20px 0;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px 0;
}

.compostosUn {
    width: 48%;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    transition: all .3s ease;
}

.compostosImg {
    width: 50px;
    min-width: 50px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}

.compostosImg>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compostosText {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.compostosText>h3 {
    width: 100%;
    color: #222;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
}

.compostosText>p {
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    /* opacity: .6; */
}

.compostosText>p>b,
.compostosText>p>u {
    color: #008000;
}

@media only screen and (max-width: 768px) {
    .compostosBox {
        justify-content: center;
    }

    .compostosUn {
        width: 100%;
    }
}

/* ________________ DEPOIMENTOS ________________ */

.depoimento_case {
    width: 100%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
}

.depoimento_un {
    width: 100%;
    max-width: 520px;
}

.depoimento_un+.depoimento_un {
    margin-top: 30px;
}

.depoimento_info {
    border: 1px solid rgb(51, 51, 51, 20%);
    border-bottom: 0;
    width: 100%;
    padding: 16px 12px;
}

.depoimento_perfil {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 10px;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.videos .depoimento_perfil {
    margin-bottom: unset !important;
}

.depoimento_perfil>div:nth-child(1)>img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.depoimento_perfil>div:nth-child(2)>img {
    width: auto;
    height: 16px;
    object-fit: contain;
}

.depoimento_perfil p:nth-of-type(1) {
    font-size: 18px;
    line-height: 1.2;
    width: 100%;
}

.depoimento_perfil p:nth-of-type(2) {
    width: 100%;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    opacity: .6;
}

.depoimento_info>p {
    width: 100%;
    text-align: left;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
}

.depoimento_img {
    width: 100%;
    display: flex;
}

.depoimento_img img,
.depoimento_img video {
    width: 100%;
}

/* ________________ COMENTÁRIO DO ESPECIALISTA ________________ */

.especialista_comentario {
    width: 100%;
    border-left: 3px solid #1ba2aa;
    padding: 4px 0 4px 9px;
    margin: 16px 0;
}

.especialista_comentario>h3 {
    color: #1ba2aa;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    width: 100%;
    text-align: left;
}

.especialista_comentario>p {
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin: 20px 0;
}

.especialista_comentario>p:last-child {
    margin-bottom: unset;
}

/* ________________ BENEDICIOS ________________ */

.beneficios {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.beneficio {
    width: 100%;
    max-width: 520px;
}

.beneficio+.beneficio {
    margin-top: 30px;
}

.beneficio>h3 {
    width: 100%;
    text-align: left;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
    color: #397F4C;
    position: relative;
    z-index: 1;
}

.beneficio>h3::before {
    content: attr(data-indice);
    pointer-events: none;
    color: #1b1b1b;
    opacity: .15;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, 0%) scale(2);
    z-index: -1;
    font-weight: 900;
}

.beneficio_depo {
    width: 100%;
}

.beneficio_depo_top {
    width: 100%;
    border: 1px solid rgb(51, 51, 51, 20%);
    border-bottom: unset;
    padding: 16px 12px 10px;
}

.beneficio_perfil {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.beneficio_perfil>div:nth-of-type(1) {
    width: 40px;
    margin-right: 8px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficio_perfil>div:nth-of-type(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.beneficio_perfil>div:nth-of-type(2) {
    width: fit-content;
}

.beneficio_perfil>div:nth-of-type(2)>p:nth-of-type(1) {
    text-align: left;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 500;
}

.beneficio_perfil>div:nth-of-type(2)>p:nth-of-type(2) {
    text-align: left;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 400;
    opacity: .6;
}

.beneficio_depo_top>p {
    width: 100%;
    text-align: left;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    font-style: italic;
}

.beneficio_img {
    width: 100%;
    display: flex;
}

.beneficio_img img,
.beneficio_img video {
    width: 100%;
}

.beneficio_depo_bottom {
    padding: 10px 12px;
    background: #397F4C;
}

.beneficio_depo_bottom>p {
    width: 100%;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    color: #f6f6f6;
}

/* ________________ COMENTÁRIOS FACEBOOK ________________ */

.facebook-content {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 30px 0;
    margin: 20px 0;
}

.facebook-un {
    background: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #cecece;
}

.facebook-infos {
    width: 100%;
    padding: 12px 16px 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.facebook-img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.facebook-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fi-infos {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
    margin-top: 3px;
    gap: 2px;
}

.fi-infos>p {
    color: #050505;
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif !important;
}

.fi-infos>span {
    color: #216fdb;
    font-size: 13px;
    line-height: 13px;
    font-family: Arial, Helvetica, sans-serif !important;
}

.facebook-txt {
    padding: 4px 16px 16px;
    font-size: 15px;
    line-height: 19px;
    font-family: Arial, Helvetica, sans-serif !important;
}

.facebook-depo {
    display: flex;
    width: 100%;
}

.facebook-depo>img,
.facebook-depo>video {
    width: 100%;
}

.facebook-bottom {
    width: 100%;
    background-color: #fff;
}

.fb-top {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.facebook-reacoes {
    /* width: 100%; */
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 42px;
    margin: 0 16px;
    gap: 4px;
    /* border-bottom: 1px solid #ced0d4; */
}

.emojis {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
}

.emojis>img {
    width: 22px;
    aspect-ratio: 1;
    border: 2px solid #fff;
    border-radius: 50%;
}

.emojis>img:nth-child(1) {
    z-index: 3;
}

.emojis>img:nth-child(2) {
    z-index: 2;
}

.emojis>img:nth-child(3) {
    z-index: 1;
}

.emojis>img+img {
    margin-left: -4px;
}

.likes {
    font-size: 15px;
    line-height: 15px;
    color: #65676b;
    font-family: Arial, Helvetica, sans-serif !important;
}

.fb-bottom {
    height: 42px;
    padding: 0 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    display: none;
}

.facebook-curtir {
    width: 150px;
    height: 32px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s ease;
}

.facebook-curtir:hover {
    background-color: #f2f2f2;
    transition: .3s ease;
}

.fb-icon-case {
    width: 26px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-icon {
    background-image: url(./reacoes.webp);
    background-position: 0 -251px;
    background-size: auto;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    display: inline-block;
    filter: invert(39%) sepia(21%) saturate(200%) saturate(109.5%) hue-rotate(174deg) brightness(94%) contrast(86%);
}

.fb-curtir {
    font-size: 15px;
    line-height: 15px;
    color: #65676b;
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 600;
}

@media only screen and (max-width: 724px) {
    .facebook-content {
        justify-content: center;
    }

    .facebook-un {
        max-width: 500px;
    }

    .emojis>img {
        width: 18px;
        border: 1px solid #fff;
    }

    .likes {
        font-size: 14px;
        line-height: 14px;
    }
}


/* ________________ CTA ________________ */

.cta_case {
    width: 100%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
}

.cta_txt {
    width: 100%;
}

.cta_txt>p {
    width: 100%;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
}

.cta_txt>p+p {
    margin-top: 14px;
}

.cta_aviso {
    overflow: hidden;
    width: 100%;
    margin: 14px 0;
    border: solid 1px silver;
    text-align: center;
    border-radius: 5px;
}

.cta_aviso p:nth-of-type(1),
.cta_txt_offer>p {
    width: 100%;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    padding: 30px 15px;
    color: #ffffff;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://include-jspwn1s.space/include_main/sites/PR/_testovan/06_brnews/img/fundo-atencao.webp);
    background-size: cover;
    background-position: 100% 96%;
}

.cta_aviso p:nth-of-type(2) {
    width: 100%;
    text-align: left;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    margin-top: 4px;
    padding: 5px;
}

.cta_txt_offer {
    width: 100%;
    margin: 14px 0 0;
}

.cta_txt_offer_img {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    margin: 6px 0;
}

.cta_txt_offer_img>img {
    width: 100%;
}

.cta_txt_offer_img>div {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    margin-top: 4px;
}

.cta_txt_offer_img>div::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 0px;
    border-top: 1px dashed #c0c0c0;
}

.cta_txt_offer_img>div>p {
    font-size: 16px;
    line-height: 1;
    background: #fff;
    z-index: 1;
    padding: 0 4px;
    font-weight: 600;
    color: #397F4C;
}

.cta_txt_offer_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    margin-top: 14px;
}

.main_btn {
    width: 100%;
    max-width: 300px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to right top, #008000, #008800, #008f00, #009700, #009f00);
    border: 1px solid #006900;
    border-radius: 4px;
}

.main_btn p {
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.4px;
    color: #fff;
}

.clique_aqui {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: #0000ff;
    margin-top: 8px;
    gap: 0 5px;
}

.clique_aqui>img {
    width: auto;
    height: 13px;
    margin-top: -8px;
}

.clique_aqui>img:nth-of-type(1) {
    transform: scaleX(-1);
}

.cta_un {
    width: 100%;
    max-width: 520px;
}

.cta_img {
    width: 100%;
    position: relative;
    display: flex;
}

.off {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    padding: 5px 10px;
    background: #ff0;
    color: #f00;
    border-radius: 100px;
    border: solid 2px;
    text-align: center;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    width: max-content;
}

.cta_img::after {
    /* content: '100% OFF'; */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    background: #ff0;
    color: #f00;
    padding: 6px 14px;
    border-radius: 50px;
    pointer-events: none;
}

.cta_img img {
    width: 100%;
}

.cta_info s {
    text-decoration-color: red;
}

.cta_info {
    border: 1px solid rgb(51, 51, 51, 20%);
    border-top: unset;
    width: 100%;
    padding: 12px;
}

.cta_info>p:nth-of-type(1) {
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    opacity: .6;
}

.cta_info>p:nth-of-type(2) {
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.cta_info>p:nth-of-type(3) {
    background: linear-gradient(to right top, #008000, #008800, #008f00, #009700, #009f00);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: 50px;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    letter-spacing: -.8px;
    font-weight: 700;
}

.cta_info>p:nth-of-type(3) span {
    font-size: 24px;
    font-weight: 600;
    margin-top: 6px;
}

.cta_frete {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 12px 0;
    z-index: 2;
}

.cta_frete::after {
    content: '';
    width: calc(100% + 24px);
    height: 0px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-top: 1px dashed #008800;
}

.cta_frete>div {
    width: 200px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: double 1px transparent;
    border-radius: 50px;
    background-image: linear-gradient(white, white), linear-gradient(to right top, #008000, #008800, #008f00, #009700, #009f00);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.cta_frete>div p {
    width: 100%;
    max-width: fit-content;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.6px;
    background: linear-gradient(to right top, #008000, #008800, #008f00, #009700, #009f00);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.cta_btns {
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
}

/* ________________ FOOTER ________________ */
.footer-content-case {
    width: 100%;
    background: #397F4C;
    padding: 40px 16px 30px;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 770px;
}

.footer-content-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
    gap: 24px 0;
}

.footer-content-top>p {
    font-size: 11px;
    line-height: 11px;
    align-self: center;
    color: #f6f6f6;
}

.footer-logo {
    width: fit-content;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.footer-logo>img {
    width: auto;
    height: 30px;
}

.footer-content>span {
    width: 100%;
    height: 1px;
    background-color: #f6f6f6;
}

.footer-content-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
}

.footer-content-bottom>a {
    color: #f6f6f6;
    font-size: 11px;
    line-height: 11px;
    text-transform: uppercase;
    text-decoration: none;
}

@media only screen and (min-width: 769px) {
    .page-content-main>h2 {
        font-size: 24px;
    }

    #pageTitulo {
        font-size: 26px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-content-top {
        flex-flow: column nowrap;
        justify-content: center;
    }

    .footer-content-bottom {
        justify-content: center;
    }
}

@media only screen and (max-width: 425px) {
    .contentImg {
        width: calc(100% + 32px);
    }

    .imgSubtitle {
        border: unset;
        border-bottom: 1px solid rgb(51, 51, 51, 20%);
    }
}