header {
  position: relative;
  padding: 0 !important;
}

.header__container {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 1.5rem 1rem;
  z-index: 1000;
}

.header__container.relative {
  position: relative;
  left: unset;
  transform: unset;
}

.header__menu {
  display: flex;
  gap: 1rem;
  font-weight: 500;
  color: var(--white-first-87);
}

.header__menu a {
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.header__menu a:hover {
  cursor: pointer;
  color: var(--orange-first);
}

@media (min-width: 661px) {
  .header__menu a::before {
    content: "";
    position: absolute;
    background: var(--orange-first);
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
  }

  .header__menu a:hover::before {
    width: 100%;
  }
}

#menu__closed {
  display: none;
}

.header__mobile__btn {
  display: none;
  z-index: 99;
}

@media (max-width: 661px) {
  .header__mobile__btn {
    display: block;
  }
}

/* MOBILE MENU */
@media (max-width: 660px) {
  .header__menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: -340%;
    /* top: 0; */
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: var(--black-second);
  }
}

.home__section {
  background-size: cover;
  background-position: center;
  padding: 9rem 1rem;
  background-image: url("../img/bg_home.webp");
  /* min-height: 700px; */
}

.home__section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -150px;

  width: 450px;
  height: 450px;
  filter: blur(300px);
  z-index: 0;

  background-color: var(--orange-first);
}

@media (max-width: 425px) {
  .home__section {
    padding: 6rem 1rem;
  }

  .home__section::before {
    top: -100px;
    left: -150px;

    width: 250px;
    height: 250px;
    filter: blur(150px);
  }
}

.home__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.home__data {
  z-index: 9;
}

.home__data h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  max-width: 550px;
  color: var(--white-first-87);
}

.home__data__item__wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.data__item__Wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.data__item__Wrapper p {
  font-weight: 500;
  font-size: 20px;
  color: var(--white-first-87);
}

.data__btn {
  margin-top: 2rem;
}

.home__img {
  position: relative;
}

.home__img img {
  width: 100%;
  max-width: 426px;
  position: relative;
  z-index: 9;
}

.home__img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 230px;
  height: 230px;
  filter: blur(150px);
  z-index: 1;

  background-color: var(--orange-first);
}

.home__img .data__btn.mobile {
  display: none;
}

@media (max-width: 768px) {
  .home__container {
    flex-direction: column;
    align-items: center;
  }

  .home__data h1 {
    text-align: center;
    max-width: 550px;
  }

  .home__data__item__wrapper {
    gap: 0.5rem;
  }

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

  .data__btn.desktop {
    display: none;
  }

  .home__img .data__btn.mobile {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    display: block;
    position: relative;
    z-index: 99;
    padding: 16px 48px;
    margin-top: 0.5rem;
  }
}

@media (max-width: 550px) {
  .home__section {
    padding: 6rem 1rem;
  }

  .home__container {
    gap: 1rem;
  }

  .home__data h1 {
    font-size: 36px;
  }

  .data__item__Wrapper p {
    font-size: 18px;
  }

  .home__img img {
    max-width: 250px;
  }
}

@media (max-width: 320px) {
  .home__data h1 {
    font-size: 32px;
  }

  .data__item__Wrapper p {
    font-size: 16px;
  }
}

.beneficio__section {
  border-top: 1px solid var(--white-first-15);
  border-bottom: 1px solid var(--white-first-15);
}

.beneficio__grid {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-areas:
    "motivo1 img motivo4"
    "motivo2 img motivo5"
    "motivo3 img motivo6";
}

.beneficio__grid .grid__item.item__data {
  max-width: 500px;
  display: flex;
  align-items: center;
  align-items: flex-start;
  gap: 0.5rem;
}

.beneficio__grid .grid__item .item__text p {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 3px;
  color: var(--white-first-87);
}

.beneficio__grid .grid__item .item__text span {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: var(--white-first-65);
}

.motivo1 {
  grid-area: motivo1;
}

.motivo2 {
  grid-area: motivo2;
}

.motivo3 {
  grid-area: motivo3;
}

.motivo4 {
  grid-area: motivo4;
}

.motivo5 {
  grid-area: motivo5;
}

.motivo6 {
  grid-area: motivo6;
}

.beneficio__grid .img {
  z-index: 9;
  position: relative;
  grid-area: img;
}

.beneficio__grid .img img {
  width: 100%;
  max-width: 300px;
  /* max-width: 452px; */
}

.beneficio__grid .img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 200px;
  height: 200px;
  filter: blur(200px);
  z-index: -1;

  background-color: var(--orange-first);
}

.beneficios__btn {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .beneficio__grid {
    justify-content: center;
    gap: 1rem;
    grid-template-areas:
      "motivo1 motivo4"
      "motivo2 motivo5"
      "motivo3 motivo6"
      "img img";
  }

  .beneficio__grid .img {
    text-align: center;
  }
}

@media (max-width: 650px) {
  .beneficio__grid {
    gap: 2rem;
    margin-bottom: 2rem;
    grid-template-areas:
      "motivo1"
      "motivo2"
      "motivo3"
      "img"
      "motivo4"
      "motivo5"
      "motivo6";
  }
  .beneficio__grid .grid__item.item__data {
    margin-left: auto;
    margin-right: auto;
    /* max-width: 400px; */
  }

  .img img {
    max-width: 250px;
  }
}

.para__section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--white-first-15);
}

.para__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;

  width: 300px;
  height: 300px;
  filter: blur(250px);
  z-index: 0;

  background-color: var(--orange-first);
}

.para__section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -200px;

  width: 300px;
  height: 300px;
  filter: blur(250px);
  z-index: 0;

  background-color: var(--orange-first);
}

.para__section .para__grid {
  display: grid;
  gap: 1rem;
  margin: 4rem 0;

  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.para__grid__item {
  position: relative;
  width: fit-content;
  transition: all 0.3s ease;
}

.para__grid__item img {
  object-fit: cover;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(80%);

  transition: all ease 0.3s;
}

.grid__item__shadow {
  z-index: 2;
  width: 260px;
  height: 300px;
  border-radius: 8px;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 109.33%);
}

.para__grid__item:hover .grid__item__shadow {
  background: linear-gradient(180deg, #00000000 30%, #000000 100%);
}

.para__grid__item:hover {
  border-radius: 8px;
  box-shadow: 0px 0px 70px rgba(216, 51, 31, 0.3);
}

.para__grid__item:hover img {
  /* transform: scale(1.1); */
  filter: grayscale(0%) brightness(100%);
}

.para__grid__item .grid__item__wrapper {
  position: absolute;
  bottom: 1rem;
  padding: 0 1rem;
  z-index: 99;
}

.para__grid__item .grid__item__wrapper h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--orange-first);
}

.para__grid__item .grid__item__wrapper p {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--white-first-87);
}

@media (max-width: 1140px) {
  .para__section .para__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .para__section .para__grid .para__grid__item.left {
    margin-left: auto;
  }

  .para__section .para__grid .para__grid__item.right {
    margin-right: auto;
  }
}

@media (max-width: 590px) {
  .para__section .para__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .para__section .para__grid .para__grid__item {
    margin-left: auto;
    margin-right: auto;
  }
}

.depoimentos__flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.depoimentos__flex a {
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease;
}

.depoimentos__flex a:hover {
  transform: scale(1.1);
}

.depoimentos__grid {
  margin: 4rem 0;
  max-width: 940px;
}

@media (max-width: 768px) {
  .depoimentos__grid {
    margin: 2rem 0;
  }
}

.depoimentos__grid .grid__item__wrapper {
  padding: 2rem 1rem;
  border-radius: 8px;
  background-color: var(--black-second);
  width: fit-content;
  max-width: 300px;
  min-height: 300px;
  position: relative;
  margin: 0 auto;
}

.depoimentos__grid .depoimentos__grid__item .grid__item__id {
  margin-bottom: 1rem;
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.depoimentos__grid .depoimentos__grid__item .grid__item__id__text h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-first-87);
}

.depoimentos__grid .depoimentos__grid__item .grid__item__id__text span {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-first-65);
}

.depoimentos__grid .depoimentos__grid__item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white-first-65);
}

.text__section {
  background-color: var(--orange-first);
  /* padding: 3rem 1rem; */
}

.text__section h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 130%;
  color: var(--white-second);
}

.text__section .text__btn {
  margin: 1.5rem auto 0 auto;
  background-color: var(--black-first);
}

.text__section .text__btn:hover {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .text__section h2 {
    font-size: 36px;
  }
}

@media (max-width: 660px) {
  .text__section h2 {
    font-size: 32px;
  }
}

@media (max-width: 425px) {
  .text__section h2 {
    font-size: 28px;
  }
}

@media (max-width: 325px) {
  .text__section h2 {
    font-size: 24px;
  }
}

.porque__section {
  position: relative;
  border-bottom: 1px solid var(--white-first-15);
  /* overflow: hidden; */
}

.porque__section::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);

  width: 200px;
  height: 200px;
  filter: blur(150px);
  z-index: -1;

  background-color: var(--orange-first);
}

@media (max-width: 425px) {
  .porque__section::after {

    width: 100px;
    height: 100px;
  }
}

.porque__flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0;
}

.porque__flex .porque__flex__img {
  position: sticky;
  top: 10%;
}

.porque__flex .porque__flex__img img {
  max-width: 400px;
  width: 100%;
}

.porque__flex .porque__flex__data p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  max-width: 460px;
  margin-bottom: 2rem;
  color: var(--white-first-65);
}

.porque__flex .flex__data__item {
  display: flex;
  align-items: center;
  gap: 1rem;

  max-width: 500px;
  padding: 2rem 1rem;
  border-radius: 8px;
  background: linear-gradient(
    111.25deg,
    rgba(25, 24, 25, 0.7) 12.47%,
    rgba(36, 36, 34, 0.7) 98.27%
  );
  margin-bottom: 24px;
}

.porque__flex .flex__data__item .data__item__icon {
  border-radius: 50%;
  display: flex;
  padding: 1rem;
  background-color: var(--white-first-8);
}

.porque__flex .flex__data__item .data__item__text h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white-first-87);
}

.porque__flex .flex__data__item .data__item__text span {
  font-size: 16px;
  font-weight: 500;
  display: block;
  color: var(--white-first-65);
}

/* .porque__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;

  width: 300px;
  height: 300px;
  filter: blur(250px);
  z-index: 0;

  background-color: var(--orange-first);
}

.porque__section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -200px;

  width: 300px;
  height: 300px;
  filter: blur(250px);
  z-index: 0;

  background-color: var(--orange-first);
} */

@media (max-width: 768px) {
  .porque__flex {
    flex-direction: column;
    align-items: center;
  }

  .porque__flex .porque__flex__img {
    position: relative;
    top: unset;
  }
}

.oferta__section {
  position: relative;
  overflow-x: hidden;
  border-bottom: 1px solid var(--white-first-15);
}

.oferta__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;

  width: 200px;
  height: 200px;
  filter: blur(150px);
  z-index: -1;

  background-color: var(--orange-first);
}

.oferta__section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100px;

  width: 200px;
  height: 200px;
  filter: blur(150px);
  z-index: -1;

  background-color: var(--orange-first);
}

.oferta__banner {
  border-radius: 6px;
  width: 100%;
}

@media(min-width: 769px){
  .oferta__banner.mobile {
    display: none;
  }
  
}

@media(max-width: 768px){
  .oferta__banner.desktop {
    display: none;
  }
  
}

.oferta__grid {
  gap: 1rem;
  display: grid;
  margin: 4rem 0;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
}

.oferta__item {
  width: fit-content;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  background-color: var(--black-second);
}

.oferta__item .frete {
  width: 100%;
  padding: 6px 0;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: var(--orange-first);
}

.oferta__item .frete p {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-first-87);
}

.oferta__item__wrapper {
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
}

.oferta__item.semfrete {
  padding-top: 33px;
}

.oferta__img {
  margin: 0.5rem 0;
  position: relative;
}

.oferta__img img{
  max-width: 212px;
  max-height: 188px;
}

.oferta__img__popup {
  position: absolute;
  right: 0;

  /* width: fit-content; */
  /* padding: .8rem; */
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  background-color: var(--orange-first);
}

.oferta__img__popup .popup__qtd {
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 700;
}

.oferta__img__popup .popup__off {
  font-size: 12px;
  font-weight: 500;
}

.oferta__capsulas {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 8px;
  color: var(--white-first-65);
}

.oferta__desconto {
  padding: .3rem .5rem;
  margin: auto;
  width: fit-content;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
  background-color: var(--orange-first);
}

.oferta__preco {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}

.oferta__preco h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;

  color: var(--black-first);
}

.oferta__preco span {
  font-weight: 400;
  font-size: 16px;
  text-align: start;
  width: -webkit-fill-available;
  display: block;
  margin-bottom: -25px;
  color: var(--black-first);
}

.oferta__preco__completo {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 1rem;
  color: var(--black-first);
}

@media (max-width: 850px) {
  .oferta__grid {
    grid-template-columns: 1fr 1fr;
  }

  .oferta__item {
    width: unset;
    margin-left: unset;
    margin-right: unset;
  }
}

@media (max-width: 570px) {
  .oferta__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.garantia__section {
  border-bottom: 1px solid var(--white-first-15);
}

.garantia__grid {
  gap: 1rem;
  margin: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.garantia__grid__item {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 670px) {
  .garantia__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 375px) {
  .garantia__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.garantia__grid__item {
  text-align: center;
  max-width: 200px;
}

.garantia__grid__item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  margin-top: 8px;
  color: var(--white-first-65);
}

.faq__wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 4rem auto 4rem auto;
}

.faq__section .faq__wrapper .faq__item {
  border-radius: 8px;
  background-color: var(--black-second);
  border: 1px solid var(--white-first-8);
}

.faq__section .faq__wrapper .faq__item .item__title__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
}

.faq__section .faq__wrapper .faq__item .item__title__wrapper:hover {
  background-color: var(--black-10);
  border-radius: 8px;
}

.faq__section .faq__wrapper .faq__item .item__title__wrapper h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: var(--white-first-87);
}

.faq__section .faq__wrapper .faq__item .item__title__wrapper svg {
  transition: transform 0.5s ease;
}

.faq__section .faq__wrapper .faq__item .item__description__wrapper {
  transition: max-height 0s ease;
  overflow: hidden;
  max-height: 0;
}

.faq__section .faq__wrapper .faq__item .item__description__wrapper p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  padding: 0.5rem 1rem;
  color: var(--white-first-65);
}

.faq__section .faq__wrapper .faq__item.activeFaq .item__title__wrapper svg {
  transform: rotate(180deg);
}

.faq__section .faq__wrapper .faq__item.activeFaq .item__description__wrapper {
  max-height: 300px;
  transition: max-height 1.5s ease;
}

.buy__section {
  padding: 2rem 1rem;
  background-color: var(--orange-first);
}

.buy__section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.buy__section .container h2 {
  color: var(--white-second);
}

.buy__button {
  min-width: fit-content;
  background-color: var(--black-first);
}

.buy__button:hover {
  background-color: var(--black-second);
}

@media (max-width: 576px) {
  .buy__section .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer__section {
  background-color: var(--black-second);
}

.footer__grid {
  align-items: flex-start;
  gap: 1rem;
  display: grid;
  justify-content: space-between;
  grid-template-areas:
    "img uteis atendimento envio"
    ". . . pagamento";
}

@media (max-width: 800px) {
  .footer__grid {
    grid-template-areas:
      "img uteis atendimento"
      " envio pagamento pagamento";
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 615px) {
  .footer__grid {
    grid-template-areas:
      "img uteis"
      "envio atendimento"
      "pagamento pagamento";
    justify-content: space-between;
    gap: 1rem;
  }
}

@media (max-width: 400px) {
  .footer__grid {
    grid-template-areas:
      "img"
      "uteis"
      "atendimento"
      "envio"
      "pagamento";
    justify-content: space-between;
  }
}

.footer__grid .img {
  grid-area: img;
}

.footer__grid .uteis {
  grid-area: uteis;
}

.footer__grid .atendimento {
  grid-area: atendimento;
}

.footer__grid .envio {
  max-width: 330px;
  grid-area: envio;
}

.footer__grid .pagamento {
  grid-area: pagamento;
}

.footer__grid .grid__item {
  width: fit-content;
}

.footer__grid .pagamento img {
  max-width: 412px;
  width: 100%;
}

.footer__grid .grid__item p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--orange-first);
}

.footer__grid .grid__item nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer__grid .grid__item nav a,
.footer__grid .grid__item span {
  line-height: 150%;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  width: fit-content;
  color: var(--white-first-65);
}

.footer__grid .grid__item nav a:hover {
  color: var(--orange-first);
}

/*LEGAL SECTION: POLITICA, AVISO, TERMOS, TROCAS*/

.footer__section.aviso {
  padding: 6rem 1rem 12rem;
}

.legal__section h2 {
  margin-bottom: 0.5rem;
  line-height: 130%;
  font-size: 28px;
  text-align: center;
  color: var(--orange-first);
}

.legal__section h4 {
  font-size: 18px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white-first-87);
}

.legal__section p {
  font-size: 16px;
  line-height: 150%;
  text-align: justify;
  color: var(--white-first-65);
}

/*OBRIGADO, RESERVADO, PROCESSANDO, PROCESSANDO PIX*/

.pos__frase__section {
  padding: 1.3rem 1rem;
  text-align: center;
  z-index: 99;
  position: relative;
}

.pos__frase__section h2 {
  margin-bottom: 0.5rem;
}

.pos__frase__section p {
  font-size: 16px;
  line-height: 130%;
}

.pos__frase__section.obrigado {
  background-color: #02944e;
}

.pos__frase__section.reservado {
  color: var(--black-first);
  background-color: #ffc107;
}

.etapas__section {
  padding: 1.3rem 1rem;
  z-index: 99;
  position: relative;
  background-color: var(--black-second);
}

.etapas__section .container {
  justify-content: space-evenly;
  align-items: flex-start;
  display: flex;
}

.etapas__section .etapas__item {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.etapas__section .etapas__item h2 {
  background-color: #02b547;
  border: 3px solid #4fd454;
  color: #fff;

  font-size: 18px;
  font-weight: bold;
  border-radius: 300px;
  width: 35px;
  height: 35px;
  display: grid;
  text-align: center;
  align-items: center;
  margin-right: 6px;
}

.etapas__section .etapas__item.amarelo h2 {
  color: var(--black-first);
  background-color: #ffc108;
  border: 3px solid #e6ae0a;
}

.etapas__section .etapas__item p {
  font-size: 0.75em;
  line-height: 130%;
  margin: 0;
  font-weight: 500;
  color: var(--white-first-87);
}

.pos__home__section {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-bottom: 1px solid var(--white-first-15);
  background-image: url("../img/bg_home.webp");
}

.pos__home__section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -150px;

  width: 450px;
  height: 450px;
  filter: blur(300px);
  z-index: 0;

  background-color: var(--orange-first);
}

.pos__home__section .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.pos__home__section .pos__home__img img {
  max-width: 400px;
  width: 100%;
}

.pos__home__section .pos__home__data h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  margin-bottom: 1rem;
  color: var(--white-first-87);
}

.pos__home__section .pos__home__data p {
  max-width: 800px;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: var(--white-first-65);
}

@media (max-width: 425px) {
  .pos__home__section .pos__home__img img {
    max-width: 250px;
    width: 100%;
  }

  .pos__home__section .pos__home__data h1 {
    font-size: 28px;
  }

  .pos__home__section .pos__home__data p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .etapas__section .etapas__item h2 {
    margin-right: unset;
  }

  .etapas__section .etapas__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }
}

.libere__section {
  text-align: center;
  color: var(--black-first);
  background-color: var(--orange-first);
}

.libere__section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.libere__section p {
  max-width: 600px;
  margin: 0 auto 0 auto;
  font-weight: 500;
  font-size: 18px;
}

.libere__section .cartao__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  background-color: var(--black-first);
}

.libere__section .cartao__btn:hover {
  background-color: var(--black-second);
}

/*OFERTA*/

.oferta__header .header__container {
  justify-content: center;
  margin-bottom: 2rem;
}

.oferta__section .container {
  /* justify-content: center;
  display: flex; */
}

.oferta__section.oferta {
  padding-top: 6rem;
}

.depoimentos__section.depoimentos {
  padding-top: 6rem;
}

/*OBRIGADO, RESERVADO, PROCESSANDO, PROCESSANDO PIX*/

header.legal__header {
  padding: 2rem 1rem 0;
  text-align: center;
  background-color: var(--blue-first);
}

header.legal__header {
  margin: auto;
}

.pos__frase__section {
  padding: 1.3rem 1rem;
  text-align: center;
  z-index: 99;
  position: relative;
  color: var(--white-first);
}

.pos__frase__section h2 {
  margin-bottom: 0.5rem;
}

.pos__frase__section p {
  font-size: 16px;
  line-height: 130%;
}

.pos__frase__section.obrigado {
  background-color: #02944e;
}

.pos__frase__section.reservado {
  color: var(--black-first);
  background-color: #ffc107;
}

.etapas__section {
  padding: 1.3rem 1rem;
  z-index: 99;
  position: relative;
  background-color: var(--black-second);
}

.etapas__section .container {
  justify-content: space-evenly;
  align-items: flex-start;
  display: flex;
}

.etapas__section .etapas__item {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.etapas__section .etapas__item h2 {
  background-color: #02b547;
  border: 3px solid #4fd454;
  color: #fff;

  font-size: 18px;
  font-weight: bold;
  border-radius: 300px;
  width: 35px;
  height: 35px;
  display: grid;
  text-align: center;
  align-items: center;
  margin-right: 6px;
}

.etapas__section .etapas__item.amarelo h2 {
  color: var(--black-first);
  background-color: #ffc108;
  border: 3px solid #e6ae0a;
}

.etapas__section .etapas__item p {
  font-size: 0.75em;
  line-height: 130%;
  margin: 0;
  font-weight: 500;
  color: var(--white-first-87);
}

.pos__home__section {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-image: url("../img/bg_home.webp");
  border-bottom: 1px solid var(--white-first-15);
}

.pos__home__section .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

/* .pos__home__section .pos__home__img img {
  max-width: 200px;
  width: 100%;
} */

.pos__home__section .pos__home__data h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  margin-bottom: 1rem;
  color: var(--white-first);
}

.pos__home__section .pos__home__data p {
  max-width: 800px;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: var(--white-first-87);
}

@media (max-width: 425px) {
  .pos__home__section .pos__home__img img {
    max-width: 200px;
    width: 100%;
  }

  .pos__home__section .pos__home__data h1 {
    font-size: 28px;
  }

  .pos__home__section .pos__home__data p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .etapas__section .etapas__item h2 {
    margin-right: unset;
  }

  .etapas__section .etapas__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }
}

/*OFERTA*/

.oferta__header .header__container {
  justify-content: center;
  margin-bottom: 2rem;
}

/* .oferta__section .container { */
/* justify-content: center;
  display: flex; */
/* } */

.oferta__section.oferta {
  padding-top: 6rem;
}

.depoimentos__section.depoimentos {
  padding-top: 6rem;
}

/* UPSELL */

.bg__header__upsell {
  padding: 1rem !important;
  text-align: center;
  background-color: #ffc107;
}

.bg__header__upsell h4 {
  font-size: 24px;
  color: var(--black-first);
}

.section__etapas__compra {
  background-color: #f8f9fa;
  border-bottom: 3px solid #eee;
  padding: 1rem;
}

.section__etapas__compra .container {
  max-width: 650px;
}

.section__etapas__compra .itens__etapas {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.itens__etapas .item__etapa {
  display: flex;
  align-items: center;
  color: var(--black-first);
}

@media (max-width: 545px) {
  .itens__etapas .item__etapa {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }

  .itens__etapas {
    justify-content: center !important;
    gap: 1rem !important;
  }

  .itens__etapas .item__etapa span {
    margin-right: unset !important;
  }
}

@media (max-width: 320px) {
  .section__etapas__compra {
    display: none;
  }
}

.itens__etapas .item__etapa p {
  font-size: 13px;
  margin: 0;
  font-weight: 400;
}

.itens__etapas .item__etapa span {
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 300px;
  background-color: #efefef;
  width: 30px;
  height: 30px;
  display: grid;
  text-align: center;
  align-items: center;
  margin-right: 6px;
  border: 3px solid #d8d8d8;
}

.item__etapa.concluido span {
  background-color: #02b547;
  border: 3px solid #4fd454;
  color: #fff;
}

.item__etapa.andamento span {
  background-color: #ffc108;
  border: 3px solid #e6ae0a;
}

/* Paginas de Upsell*/
.upsell {
  padding: 4rem 1rem;
  color: var(--black-first);
  /* background-color: var(--orange-first); */
}

@media (max-width: 425px) {
  .upsell {
    padding: 2rem 1rem;
  }
}

.about__upsell {
  background-color: #ffffff28;
}

.upsell__header {
  margin-bottom: 2rem;
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.upsell__top {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.upsell__title {
  font-size: 28px;
  margin-bottom: 0.75rem;
  color: var(--orange-first);
}

.upsell__product {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
}

@media (max-width: 768px) {
  .upsell__product {
    grid-template-columns: repeat(1, 1fr);
  }
}
.upsell__subtitle {
  font-size: 1rem;
}

.img__upsell {
  width: 100%;
  max-width: 300px;
}

.upsell__product {
  text-align: center;
}

.upsell__antigo {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.upsell__antigo del {
  color: var(--blue-second);
}
.upsell__valor {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-compra-upsell {
  background: #eee;
  padding: 20px 24px 16px;
  border-radius: 8px;
  background: #01b547;
  color: #fff !important;
  display: inline-block;
  font-weight: bold;
  font-family: "Nunito", sans-serif;
  min-width: 260px;
  border-bottom: 6px solid rgb(0 0 0 / 18%);
  transition: background 0.2s ease-in-out;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
}

.cta-compra-upsell:hover {
  background: #0b8e3d;
}

.cta-downsell {
  display: inline-block;
  color: #f0f0f5;
  margin-top: 12px;
  background-color: #f73d3d;
  border: 3px solid #f44336;
  padding: 15px 12px;
  min-width: 260px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

.cta-downsell:hover {
  background-color: #f44336;
  color: var(--white-color);
}