/* CORES */
:root {
    --cor1: #DA2295;
    --cor2: #C20B7E;
    --cortexto: #333333;
    --bg1: #efefef; 
    --bg2: #f6f6f6;
    --bg3: #e5e5e5;
    
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Kanit', sans-serif;
    color: var(--cortexto);
    background-color: var(--bg1);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
}
.overflow-hidden {
    overflow: hidden;
}
main {
    overflow: hidden;
}
section {
    position: relative;
}
h1, h2, h3, h4, h5 {
    font-weight: 300;
    line-height: 1.2;
}
h1 {
    font-size: 32px;
}
h2 {
    font-size: 24px;
}
h3 {
    font-size: 20px;
}
h4 {
    font-size: 16px;
    font-weight: 500;
}
p, ul, ol {
    margin-bottom: 1.2em;
}
.p-small {
    font-size: 14px;
}
p:last-child, ul:last-child, ol:last-child {
    margin-bottom: 0;
}
ul li,
ol li {
    position: relative;
    list-style: none;
    padding-left: 22px;
    margin-bottom: 0.25em;
}
li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: var(--cor1);
}
li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: var(--cor1);
}
[class*="col-"] video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.aspect-ratio-1-1 {
    aspect-ratio: 1/1;
}
.aspect-ratio-4-3 {
    aspect-ratio: 4/3;
}
.aspect-ratio-5-4 {
    aspect-ratio: 5/4;
}
.list-mais li::before {
    content: '+';
    font-weight: 500;
    font-size: 20px;
    background: none;
    line-height: 1;
    top: 2px;
    color: var(--cor1);
}
strong {
    font-weight: 500;
}
img {
    max-width: 100%;
    height: auto;
}
i {
    display: inline-block;
}
i svg,
i img {
    display: block;
    width: 100%;
    height: 100%;
}
hr {
    height: 1px;
}
@media (min-width: 768px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 32px;
    }
    h2.h2-small {
        font-size: 24px;
    }
}
@media (min-width: 992px) {
    h1 {
        font-size: 44px;
    }
    h2 {
        font-size: 36px;
    }
}

/* .container {
    position: relative;
} */

.text-white,
.text-white a {
    color: #fff;
}
.font-weight-500 {
    font-weight: 500;
}
.cor-1 {
    color: var(--cor1);
}
.cor-2 {
    color: var(--cor2);
}
.bg-cor-1 {
    background-color: var(--cor1);
}
.bg-1 {
    background-color: var(--bg1);
}
.bg-2 {
    background-color: var(--bg2);
}
.acao {
    display: flex;
    align-items: center;
    gap: 36px;
}
.text-align-left {
    text-align: left;
}
.text-align-right {
    text-align: right;
}
.text-align-center {
    text-align: center;
}
@media (min-width: 768px) {
    .text-align-md-left {
        text-align: left;
    }
    .text-align-md-right {
        text-align: right;
    }
    .text-align-md-center {
        text-align: center;
    }
}
@media (min-width: 992px) {
    .text-align-lg-left {
        text-align: left;
    }
    .text-align-lg-right {
        text-align: right;
    }
    .text-align-lg-center {
        text-align: center;
    }
}
@media (min-width: 1200px) {
    .text-align-xl-left {
        text-align: left;
    }
    .text-align-xl-right {
        text-align: right;
    }
    .text-align-xl-center {
        text-align: center;
    }
}
@media (min-width: 1400px) {
    .text-align-xxl-left {
        text-align: left;
    }
    .text-align-xxl-right {
        text-align: right;
    }
    .text-align-xxl-center {
        text-align: center;
    }
}
/* BOTÃO */
.btn {
    display: inline-block;
    font-size: 16px;
    padding: 12px 48px;
    background-color: var(--cor1);
    border-radius: 100px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}
.btn:hover {
    background-color: var(--cor2);
}
.btn.btn-md {
    font-size: 24px;
    padding: 16px 20px;
    border-bottom-width: 4px;
}
.btn.btn-lg {
    font-size: 28px;
    padding: 20px 28px;
    border-bottom-width: 5px;
}
.btn-next {
    display: block;
    text-decoration: none;
    color: #727272;
    line-height: 1;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}
.btn-next i {
    height: 16px;
    transform: translateY(4px);
    transition: transform 0.3s ease;
}
.btn-next i svg path {
    fill: #727272;
    transition: fill 0.3s ease;
}
.btn-next:hover {
    color: #000;
}
.btn-next:hover i {
    transform: translateY(6px);
}
.btn-next:hover i svg path {
    fill: #000;
}
.btn-border {
    background: none;
    box-shadow: none;
    border: 1px solid var(--cor1);
    color: var(--cor1);
    border-radius: 10px;
    padding: 12px 24px;
}
.btn-border:hover {
    color: #fff;
    background-color: var(--cor1);
}
.btn-border.active {
    color: #fff;
    background-color: var(--cor2);
}
.link {
    font-weight: 500;
    color: #333;
}
.link:hover {
    color: var(--cor1);
}
@media (min-width: 768px) {

}
@media (min-width: 1400px) {

}

/* HEADER */
header {
    background-color: #fff;
    z-index: 2;
}
header ul.menu {
    margin: 0 24px 0 0;
}
header ul.menu li {
    list-style: none;
    margin: 0 12px;
    padding: 0;
}
header ul.menu li::before {
    display: none;
}
header ul.menu li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
header ul.menu li a:hover {
    color: var(--cor1);
}
header .btn {
    font-size: 14px;
    padding: 8px 32px;
}
@media (min-width: 1400px) {
    header ul.menu li a {
        font-size: 16px;
    }
}
header .btn-menu-mobile {
    display: block;
    position: relative;
    z-index: 100;
    width: 20px;
    height: 15px;
}
header .btn-menu-mobile span {
    width: 20px;
    height: 1.5px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}
header .btn-menu-mobile span:nth-child(1) {
    top: 0;
}
header .btn-menu-mobile span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
header .btn-menu-mobile span:nth-child(3) {
    bottom: 0;
    width: 15px;
}
header .btn-menu-mobile.open span:nth-child(1),
header .btn-menu-mobile.open span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: #fff;
}
header .btn-menu-mobile.open span:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}
header .btn-menu-mobile.open span:nth-child(3) {
    opacity: 0;
}
@media (max-width: 1199px) {
    /* .overflow-hidden {
        height: auto;
        transition: height 0s linear 0.8s;
    }
    .overflow-hidden.open {
        height: 100vh;
        padding-right: 17px;
    } */
    .container-menu-mobile {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 99;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0);
        display: block!important;
        visibility: hidden;
        opacity: 0;
        padding: 0;
        transition: all 0.5s ease;
    }
    .container-menu-mobile.open {
        background-color: rgba(0,0,0,0.3);
        visibility: visible;
        opacity: 1;
    }
    .menu-mobile {
        position: absolute;
        top: 0;
        right: 0;
        width: 90%;
        height: 100%;
        max-width: 400px;
        background-color: var(--cor1);
        box-shadow: 0 0 50px rgba(0,0,0,0.3);
        padding: 50px;
        transform: translateX(100%);
        transition: transform 0.5s ease;
    }
    .container-menu-mobile.open .menu-mobile {
        transform: translateX(0);
    }
    header ul.menu li {
        margin: 0;
    }
    .menu-mobile .menu a {
        font-size: 20px;
        color: #fff;
        padding: 10px 20px;
        display: block;
        border-radius: 10px;
        transition: background-color 0.3s ease;
    }
    .menu-mobile .menu a:hover {
        color: #fff;
        background-color: var(--cor2);
    }
    .menu-mobile .btn {
        background-color: #fff;
        color: var(--cor1);
        padding: 12px 48px;
        font-size: 16px;
        transition: opacity 0.3s ease;
    }
    .menu-mobile .btn:hover {
        opacity: 0.7;
    }
}
@media (max-width: 1023px) {
    .overflow-hidden.open {
        padding-right: 0;
    }
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #EFEFEF 100%);
}
.hero .image img {
    display: block;
}
@media (min-width: 768px) {
    .hero::after {
        display: none;
        
    }
    .hero p {
        font-size: 18px;
    }
    .hero .acao {
        position: static;
    }
    .hero .image {
        position: relative;
    }
    .hero .image img {
        position: absolute;
        bottom: 0;
        left: 12px;
        max-width: none;
    }
}
@media (min-width: 992px) {
    .hero p {
        font-size: 24px;
    }
}




/* CARROSSEL */
.flickity-viewport {
    overflow: visible!important;
}
.flickity-page-dots li {
    padding: 0;
    background-color: var(--cor1)!important;
}
.flickity-page-dots li::before {
    display: none;
}
.flickity-page-dots li:only-child{
	display: none;
}

/* ICONES TEXTO */
.img-texto {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}
.img-texto .item,
.carousel-img-texto .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 68px;
}
.carousel-img-texto {
    width: 100%;
}
.carousel-img-texto .item {
    margin-right: 24px;
}
.img-texto .item i,
.carousel-img-texto .item i {
    width: 68px;
    height: 68px;
    background-color: #fff;
    border-radius: 100px;
    overflow: hidden;
}
.img-texto .item h3,
.carousel-img-texto .item h3 {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .img-texto {
        gap: 40px;
    }
    .img-texto .item,
    .carousel-img-texto .item {
        width: 124px;
    }
    .carousel-img-texto .item {
        margin-right: 40px;
    }
    .img-texto .item i,
    .carousel-img-texto .item i {
        width: 124px;
        height: 124px;
    }
    .img-texto .item h3,
    .carousel-img-texto .item h3 {
        font-size: 18px;
        margin-top: 16px;
    }
}

/* BOX ÍCONE-TÍTULO */
.box-icone-tit {
    width: 100%;
}
.box-icone-tit .item {
    height: 100%;
}
.box-icone-tit h3 {
    font-size: 16px;
}
.box-icone-tit .item h3 .icone {
    width: 68px;
    height: 68px;
    background-color: var(--bg1);
    border-radius: 100px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-icone-tit .item h3 .tit {
    width: calc(100% - 68px - 28px);
}
@media (min-width: 768px) {
    .box-icone-tit .item h3 i {
        display: none;
    }
    .box-icone-tit .item .content {
        display: block!important;
        height: auto!important;
        padding-top: 16px!important;
    }
}
/* ACCORDION */
.accordion .item {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}
.accordion .item .content {
    padding-top: 16px;
}
.accordion .item h3 {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding-right: 28px;
    color: var(--cortexto);
}

.accordion .item h3 i {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
.accordion .item.active h3 i {
    transform: translateY(-50%) rotate(90deg);
}
.accordion .item.active h3 i svg path {
    fill: var(--cor1);
}

/* TABS */
.tabs .btn-border {
    margin-right: 12px;
}

/* depoimento */
.rating {
    display: inline-flex;
    color: #9B9B9B;
    align-items: center;
    gap: 12px;
}
.rate {
    position: relative;
    width: calc(36px * 5);
    height: 36px;
    background-color: #CACACA;
    -webkit-mask-image: url(../images/avaliacao-stars.svg);
    mask-image: url(../images/avaliacao-stars.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
.rate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--cor1);
}
.rate[data-nota="0.0"]::before {
    width: 0;
}
.rate[data-nota="0.5"]::before {
    width: 10%;
}
.rate[data-nota="1.0"]::before {
    width: 20%;
}
.rate[data-nota="1.5"]::before {
    width: 30%;
}
.rate[data-nota="2.0"]::before {
    width: 40%;
}
.rate[data-nota="2.5"]::before {
    width: 50%;
}
.rate[data-nota="3.0"]::before {
    width: 60%;
}
.rate[data-nota="3.5"]::before {
    width: 70%;
}
.rate[data-nota="4.0"]::before {
    width: 80%;
}
.rate[data-nota="4.5"]::before {
    width: 90%;
}
.rate[data-nota="5.0"]::before {
    width: 100%;
}

.depoimento {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #8F8F8F;
    border-radius: 10px;
    margin-right: 24px;
    min-height: 100%;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    padding: 20px;
}
.depoimento .image-like {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
}
.depoimento .image-like img {
    border-radius: 10px;
    object-fit: cover;
    width: auto;
}
[data-tab="depoimentos-antes_depois"] .depoimento .image-like,
[data-tab="depoimentos-antes_depois"] .depoimento .image-like img {
    height: 80px;
}
[data-tab="depoimentos-recebidos"] .depoimento .image-like,
[data-tab="depoimentos-recebidos"] .depoimento .image-like img {
    height: 60px;
    width: auto;
}
.depoimento .image-like .like {
    display: flex;
    align-items: center;
    line-height: 1;
    margin-left: auto;
    cursor: pointer;
}
.depoimento .image-like .like.disabled {
    cursor: default;
}
.depoimento .image-like .like::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    margin: -6px 8px 0 0;
    background-image: url(../images/depoimentos-icon-like.svg);
    transition: transform 0.3s ease;
}
.depoimento .image-like .like:not(.disabled):hover::before {
    transform: scale(1.2);
}
.depoimento h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}
.depoimento .content {
    font-size: 16px;
}
.depoimento .rate {
    width: calc(20px * 5);
    height: 20px;
}

.carousel-depoimentos:after {
    content: 'flickity';
    display: none; /* hide :after */
}

@media (min-width: 768px) {
    .depoimento {
        width: calc(50% - 12px);
    }
}
@media (min-width: 992px) {
    .depoimento {
        width: calc(40% - 12px);
    }
}
@media (min-width: 1200px) {
    .carousel-depoimentos:after {
        content: '';
    }
    .depoimentos {
        width: calc(100% + 24px);
        display: flex;
        flex-wrap: wrap;
        margin: -12px;
    }
    .depoimento {
        width: calc(33.33% - 24px);
        margin: 12px;
    }
}

/* IMAGEM-TEXTO */
.image-texto {
    display: flex;
    gap: 20px;
}
.image-texto .image {
    width: 92px;
    height: 92px;
    overflow: hidden;
    border-radius: 100px;
}
.image-texto .texto {
    width: calc(100% - 92px - 20px);
    font-size: 14px;
}
.image-texto .texto h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}
.image-texto .texto p {
    margin-bottom: 8px;
}
.image-texto .texto p a {
    color: var(--cor1);
    font-weight: 500;
}



/* ESPECIALISTAS */
.boxes-especialistas .item {
    width: 100%;
    min-height: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-right: 24px;
}
.boxes-especialistas .item .image {
    width: 90px;
    height: 90px;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 12px;
    background-color: var(--bg2);
}
.boxes-especialistas .item h3 {
    font-size: 24px;
    font-weight: 500;
}
.boxes-especialistas .item p {
    font-size: 14px;
}
@media (min-width: 768px) {
    .boxes-especialistas {
        margin-top: 64px;
    }
    .boxes-especialistas .item {
        width: calc(75% - 12px);
        text-align: center;
    }
    .boxes-especialistas .item .image {
        width: 128px;
        height: 128px;
        margin: -84px auto 24px auto;
    }
    .boxes-especialistas .item h3 + p {
        font-size: 18px;
    }
    .boxes-especialistas .item p {
        font-size: 16px;
    }
}
@media (min-width: 992px) {
    .boxes-especialistas .item {
        width: calc(50% - 12px);
    }
}

/* APLICAÇÃO */
.aplicacao {
    z-index: 2;
}
.aplicacao .icones {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.aplicacao .icones img {
    width: 112px;
}
.aplicacao .image img {
    width: 224px;
    max-width: none;
}
@media (min-width: 768px) {
    .aplicacao .icones {
        display: flex;
        flex-direction: row;
    }
    .aplicacao .image {
        position: relative;
    }
    .aplicacao .image img {
        position: absolute;
        bottom: -100px;
        width: 190px;
    }
}
@media (min-width: 992px) {
    .aplicacao .image img {
        bottom: -150px;
    }
}
@media (min-width: 1200px) {
    .aplicacao .icones {
        gap: 24px;
    }
}

/* GARANTIA */
#garantia .image {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}
#garantia .image img {
    object-fit: cover;
}
@media (min-width: 768px) {
    #garantia .image {
        position: relative;
        height: 100%;
    }
    #garantia .image img {
        position: absolute;
        width: 100%;
        height: 100%;
    }
}
/* PRODUTOS */
.produto {
    position: relative;
    background-color: var(--bg3);
    border-radius: 10px;
    padding: 0 28px 110px 28px;
    height: 100%;
}
.produto h3 {
    position: relative;
    display: table;
    background-color: #333;
    margin: 0 auto;
    width: auto;
    color: #fff;
    font-weight: 500;
    border-radius: 0 0 20px 20px;
    line-height: 1;
    padding: 12px 40px;
    font-size: 24px;
}
.produto .selo {
    position: absolute;
    top: 16px;
    right: -32px;
    z-index: 2;
    width: 72px;
    height: 72px;
    background-color: #d9d9d9;
    box-shadow: 5px 0 0 rgba(0,0,0,0.15);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--cor1);
    line-height: 1;
    transform: rotate(30deg);
}
.produto .p-content .p-image {
    grid-area: image;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.produto .p-content .p-image img {
    max-height: 230px;
}
.produto .p-content .p-items {
    grid-area: items;
    padding-left: 28px;
    padding-right: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}
.produto .p-content .p-items p {
    margin: 0;
}
.produto .p-content .p-items ul li {
    padding-left: 24px;
}
.produto .p-content .p-items ul li::before {
    content: '';
    top: 2px;
    left:3px;
    width: 16px;
    height: 16px;
    background: url(../images/produto-icone-check.svg);
}

.produto .p-content .p-items ul li.plus::before {
    content: '';
    top: 2px;
    left:3px;
    width: 16px;
    height: 16px;
    background: url(../images/plus.svg);
}

.produto .p-content .p-infos {    
    grid-area: infos;
    align-items: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
    padding-right: 28px;
}
.produto .p-content .p-infos p {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
}
.produto .p-content .p-infos .preco-antigo {
    opacity: 0.5;
    text-decoration: line-through;
    margin-bottom: 2px;
}
.produto .p-content .p-infos .preco-parcela {
    margin-bottom: 4px;
}
.produto .p-content .p-infos .preco {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 4px;
}
.produto .p-content .p-infos .icone-info {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-top: 16px;
}
.produto .p-content .p-infos .icone-info i {
    width: 22px;
    height: 22px;
    margin-right: 12px;
}
.produto .p-content .p-infos .p-acao {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.produto .p-content {
    width: calc(100% + 60px);
    margin: 20px -30px 0 -30px;
    display: grid;
	grid-template-areas:
		"items items"
		"image infos"
	;
    grid-template-columns: 50% 50%;
}
.produto.produto-alternativo .p-content {
    width: calc(100% + 60px);
    margin: 20px -30px 0 -30px;
    display: grid;
	grid-template-areas:
		"items"
		"image"
        "infos"
	;
    grid-template-columns: 100%;
}
.produto.produto-alternativo .p-content .p-image {
    padding-left: 24px;
    padding-right: 24px;
}
.produto.produto-alternativo .p-content .p-infos {
    align-items: center;
    padding-left: 28px;
    padding-right: 28px;
    margin-top: 16px;
    text-align: center;
}
.produto.produto-alternativo .p-content .p-infos .preco {
    font-size: 32px;
}
.mais-vendido {
    padding-top: 28px;
}
.mais-vendido .produto {
    border: 1px solid var(--cor1);
    box-shadow: 0 10px 40px rgba(218, 34, 149, 0.3);
}
.mais-vendido .produto h3 span {
    position: absolute;
    left: 0;
    top: -28px;
    width: 100%;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    background-color: var(--cor1);
    color: #fff;
    border-radius: 20px 20px 0 0;
    padding-top: 2px;
}
.mais-vendido .produto h3 span::before,
.mais-vendido .produto h3 span::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: url(../images/produto-icone-estrela.svg);
    background-size: contain;
}
.mais-vendido .produto h3 span::before {
    margin-right: 6px;
}
.mais-vendido .produto h3 span::after {
    margin-left: 6px;
}
@media (min-width: 768px) {
    .produto .selo {
        top: 0;
        right: -20px;
    }
    .produto .p-content .p-image img {
        max-height: 175px;
    }
    .produto.produto-alternativo {
        padding-bottom: 48px;
    }
    .produto.produto-alternativo .p-content {
        grid-template-areas:
		"image items"
		"image infos"
        ;
        grid-template-columns: 50% 50%;
    }
    .produto.produto-alternativo .p-content .p-image {
        padding-right: 0;
        padding-left: 28px;
    }
    .produto.produto-alternativo .p-content .p-image img {
        max-height: 368px;
    }
    .produto.produto-alternativo .p-content .p-items {
        padding-left: 28px;
        padding-right: 28px;
        display: flex;
        align-items: flex-start;
        padding-top: 40px;
    }
    .produto.produto-alternativo .p-content .p-infos {
        align-items: flex-start;
        padding-left: 28px;
        padding-right: 80px;
        margin-top: 16px;
        text-align: left;
        margin-top: 0;
    }
    .produto.produto-alternativo .p-content .p-infos .preco {
        font-size: 40px;
        margin-bottom: 0px;
    }
    .produto.produto-alternativo .p-content .p-infos .p-acao {
        position: static;
        transform: none;
        margin-top: 30px;
    }
}
@media (min-width: 992px) {
    .produto {
        padding-bottom: 30px;
    }
    .produto .p-content {
        grid-template-columns: 40% 60%;
    }
    .produto .p-content .p-image img {
        max-height: 265px;
    }
    .col-lg-7 .produto .p-content {
        grid-template-columns: 50% 50%;
    }
    .col-lg-7 .produto .p-content .p-infos {
        padding-right: 80px;
    }
    .produto .p-content .p-infos .preco {
        font-size: 32px;
    }
    .produto .p-content .p-infos .p-acao {
        position: static;
        transform: none;
        margin-top: 30px;
    }
}
@media (min-width: 1200px) {
    .produto .p-content {
        grid-template-columns: 50% 50%;
    }
    .produto .selo {
        top: 20px;
        right: 20px;
    }
    .produto .p-content .p-infos .preco-antigo,
    .produto .p-content .p-infos .preco-parcela {
        font-size: 18px;
    }
    .produto .p-content .p-infos .preco {
        font-size: 48px;
    }
    .produto.produto-alternativo .p-content .p-infos .preco {
        font-size: 52px;
    }
}

/* RESULTADOS */
.resultados-grafico {
    gap: 24px;
}

/* FAQ */
.faq .item {
    margin-bottom: 24px;
}
.faq .item h3 {
    font-weight: 400;
    transition: color 0.3s ease;
}
.faq .item h3:hover {
    color: var(--cor1);
}
.faq p a {
    color: #000;
}
.faq p a:hover {
    color: var(--cor1);
}
@media (min-width: 768px) {
    .faq .item h3 {
        font-size: 18px;
    }
}

/* LOJAS MAPA */
.lojas-mapa {
    position: relative;
}
.lojas-mapa h2 {
    font-size: 18px;
    max-width: 350px;

}
.lojas-mapa .lojas-qtd {
    max-width: 350px;
}
.lojas-mapa h3 {
    font-size: 14px;
}
.lojas-mapa .mapa {
    position: relative;
    background: url(../images/mapa-lojas.png) no-repeat center center / 450px 450px;
    width: 450px;
}
.lojas-mapa .mapa .loja {
    position: absolute;
    right: 0;
    width: 18%;
}
.lojas-mapa .mapa .loja h3 {
    font-size: 12px;
    line-height: 1;
    position: absolute;
    background-color: var(--cor1);
    color: #fff;
    border-radius: 100px;
    padding: 5px 8px 4px 8px;
    font-weight: 500;
    right: 0;
    top: 0;
    transform: translateY(-50%);
}
.lojas-mapa .mapa .loja.loja-rj {
    bottom: 37%;
}
.lojas-mapa .mapa .loja.loja-sp {
    right: 22%;
    bottom: 33%;
}
.lojas-mapa .mapa .loja.loja-mg {
    right: 35%;
    bottom: 52%;
}
.lojas-mapa .mapa .loja.loja-ne {
    right: 12%;
    bottom: 56%;
}
.lojas-mapa .mapa .loja video {
    border-radius: 5px;
}
@media (min-width: 768px) {
    .lojas-mapa .mapa {
        width: 545px;
        background-size: 545px 545px;
    }
    .lojas-mapa h2,
    .lojas-mapa .lojas-qtd {
        position: absolute;
        z-index: 2;
    }
    .lojas-mapa h2 {
        max-width: 200px;
        font-size: 16px;
        padding: 8px 12px;
        background-color: var(--bg1);
        bottom: 73.3%;
        right: 35.8%;
    }
    .lojas-mapa .lojas-qtd {
        bottom: 20%;
        left: -10%;
    }
}
@media (min-width: 1200px) {
    .lojas-mapa .mapa {
        width: 700px;
        background-size: 700px 700px;
    }
    .lojas-mapa h2 {
        max-width: 260px;
        font-size: 20px;
        padding: 8px 16px 12px;
        bottom: 72%;
    }
    .lojas-mapa h3 {
        font-size: 16px;
    }
    .lojas-mapa .lojas-qtd {
        bottom: 29.8%;
        left: -5%;
    }
}

/* FOOTER */
footer {
    font-size: 14px;
}
footer h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
}
footer .menu-social {
    display: flex;
    gap: 16px;
}
footer .menu-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #8A8A8A;
    border-radius: 100px;
    transition: background-color 0.3s ease;
}
footer .menu-social a:hover {
    background-color: #333;
}
footer .menu-social a svg {
    width: 28px;
    height: 28px;
}
footer .menu-social a svg path {
    fill: #fff;
}
footer .icon-info {
    display: flex;
    gap: 16px;
}
footer .icon-info i {
    width: 42px;
    height: 42px;
}
footer .icon-info .info {
    width: calc(100% - 42px - 16px);
}
footer .icon-info p {
    font-size: 14px;
    margin: 0;
}
footer .icon-info a {
    color: #000;
    font-size: 18px;
}
footer .icon-info .info a.email {
    font-size: 14px;
}
footer .btn {
    font-weight: 400;
    font-size: 13px;
    border: none;
    border-radius: 100px;
    padding: 12px 12px 12px 28px;
    text-transform: uppercase;
    background-color: #3E8B2C;
}
footer .selos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
footer .selos a {
    display: inline-flex;
}
footer .copy {
    background-color: #303030;
    color: #B6B6B6;
}
footer ul li {
    padding: 0;
}
footer ul li a {
    color: #5C5C5C;
    text-decoration: none;
}
footer ul li a:hover {
    text-decoration: underline;
}
footer ul li::before {
    display: none;
}

.promo-badge{
    display: block; width: 20%; margin-top:-5px; position: relative; border-radius: 10px;
}

@media (max-width: 768px){

.promo-badge{
    display: block; width: 35%; margin-top:-5px; position: relative; 
    border-radius: 10px;
}}


/* BOXES EXPLICATIVOS */
.box-explicativo-content {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    height: 100%;
    /* align-content: space-between; */
}
.box-explicativo:nth-child(odd) .box-explicativo-content {
    flex-direction: row-reverse;
}
.box-explicativo-content .destaque {
    width: 100%;
    text-align: center;
    align-self: flex-start;
}
.box-explicativo-content .destaque span {
    display: inline-block;
    color: #FFD9EE;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--cor1);
    border-radius: 0 0 20px 20px;
    padding: 8px 42px 12px;
    line-height: 1;
}
.box-explicativo-content .imagem {
    width: calc(35% - 24px);
    position: relative;
    margin: 24px 12px 24px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-explicativo-content .imagem img {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 100%; */
}
.box-explicativo-content .content {
    width: 65%;
    padding: 32px 24px 24px 12px;
    font-size: 14px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.box-explicativo:nth-child(odd) .box-explicativo-content .content {
    padding: 32px 12px 24px 24px;
}
.box-explicativo-content .content h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--cor1);
    margin-bottom: 12px;
}
.box-explicativo-content .content ul {
    padding-right: 20px;
}
.box-explicativo-content .content ul li {
    position: relative;
    display: flex;
    padding-left: 42px;
    margin-bottom: 12px;
    min-height: 30px;
    align-items: center;
}
.box-explicativo-content .content ul li:last-child {
    margin-bottom: 0;
}
.box-explicativo-content .content ul li::before {
    display: none;
}
.box-explicativo-content .content ul li i {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
}
@media (min-width: 992px) {
    .box-explicativo:nth-child(odd) .box-explicativo-content {
        flex-direction: row;
    }
    .box-explicativo:nth-child(odd) .box-explicativo-content .content {
        padding: 32px 12px 24px 24px;
    }
}

.bg-3 {
    background-color: var(--bg3);
}