* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
}

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

.mobile {
  display: none;
}
@media (max-width: 600px) {
  .mobile {
    display: block;
  }
}

.whatsapp-btn {
  z-index: 999;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  transition: 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .whatsapp-btn {
    bottom: 1rem;
    right: 1rem;
  }
}

#header.scrollHide {
  display: none;
}

header {
  display: flex;
  background: url(assets/headerbg.webp) no-repeat;
  background-size: cover;
  padding: 10px 80px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  z-index: 2;
}
header .logo {
  width: 181.941px;
  height: 40px;
  flex-shrink: 0;
}
header .btnDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
header .btnDiv .assinarBtn {
  display: flex;
  height: 35px;
  max-width: 380px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #11FF7E;
  color: #000;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  transition: 0.2s;
}
header .btnDiv .assinarBtn:hover {
  background: #19d16c;
}
header .btnDiv .entrarBtn {
  display: flex;
  height: 35px;
  max-width: 380px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid #FFF;
  color: #FFF;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
  transition: 0.2s;
}
header .btnDiv .entrarBtn:hover {
  color: #808080;
  border: 1px solid gray;
}
@media (max-width: 600px) {
  header {
    padding: 10px 24px;
  }
  header .logo {
    width: 65px;
    height: 32.099px;
    flex-shrink: 0;
  }
  header .btnDiv .assinarBtn {
    display: none;
  }
}

.hero {
  display: flex;
  height: 792px;
  padding: 150px 0px 100px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: url(assets/herobg.webp) no-repeat;
  background-size: cover;
  height: 100vh;
}
.hero .container {
  display: flex;
  flex-direction: column;
  padding: 0px 80px;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.hero .container h1 {
  color: #17181D;
  text-shadow: 0px 0px 34px rgba(255, 255, 255, 0.45);
  font-size: 45px;
  font-weight: 700;
  line-height: 110%;
  max-width: 529px;
  font-family: "miller-headline", sans-serif;
}
.hero .container h1 i {
  color: #FFF;
  text-decoration-line: underline;
}
.hero .container .desc {
  color: #FFF;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 553px;
}
.hero .container .cta {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: url(assets/ctabg.webp) 553px center no-repeat, hsla(0, 0%, 83%, 0.2);
  backdrop-filter: blur(3px);
}
.hero .container .cta a {
  display: flex;
  max-width: 380px;
  padding: 16px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 6px;
  background: #11FF7E;
  color: #000;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  transition: 0.2s;
}
.hero .container .cta a:hover {
  background: #19d16c;
}
.hero .container .cta .price {
  color: #FFF;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  line-height: 100%;
}
@media (max-width: 600px) {
  .hero {
    background: url(assets/herobgmob.webp) center no-repeat;
    background-size: cover;
    height: 745px;
    padding: 24px;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
  }
  .hero .container {
    justify-content: center;
    gap: 14px;
    padding: unset;
  }
  .hero .container h1 {
    font-size: 28px;
    line-height: 105%;
    text-align: center;
  }
  .hero .container .desc {
    font-size: 14px;
    text-align: center;
  }
  .hero .container .cta {
    flex-direction: column;
    align-self: stretch;
  }
  .hero .container .cta a {
    font-size: 16px;
    padding: 16px 40px;
  }
  .hero .container .cta .price {
    text-align: center;
  }
}

.second {
  display: flex;
  padding: 100px 0px 50px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: url(assets/secondbg.webp);
}
.second .olavo {
  width: 968px;
  height: 565px;
  object-fit: contain;
  margin-bottom: -50px;
}
.second .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 24px;
}
.second .container h2 {
  color: #D8B252;
  text-align: center;
  font-family: Miller Headline;
  font-size: 52px;
  font-weight: 700;
  line-height: 120%;
  max-width: 548px;
}
.second .container h2 span {
  font-style: italic;
  color: #F9F4ED;
}
.second .container p {
  color: #F9F4ED;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 548px;
}
.second .container p span {
  color: #D8B252;
  font-weight: 700;
}
.second .container .icons {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 8px;
}
.second .container .icons .iconFlex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  max-width: 548px;
}
.second .container a {
  display: flex;
  max-width: 380px;
  padding: 16px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #11FF7E;
  width: 380px;
  color: #000;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  transition: 0.2s;
}
.second .container a:hover {
  background: #19d16c;
}
@media (max-width: 600px) {
  .second {
    padding: 40px 24px;
  }
  .second .olavo {
    width: 361.501px;
    height: 211px;
  }
  .second .container h2 {
    font-size: 30px;
  }
  .second .container p {
    font-size: 17.5px;
  }
  .second .container a {
    align-self: stretch;
    width: unset;
  }
}

.cof {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  height: 692px;
  background: url(assets/secondbg.webp);
}
.cof .bannerDiv {
  position: relative;
}
.cof .bannerDiv .banner {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -600px;
  max-width: 1200px;
  max-height: 552px;
  width: 1200px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #C29739;
}
.cof .bannerDiv .textDiv {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 48px;
  left: 50%;
  width: 601px;
  margin-left: -40px;
  gap: 24px;
}
.cof .bannerDiv .textDiv h3 {
  color: #1B1C21;
  font-family: "miller-headline", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}
.cof .bannerDiv .textDiv .compFlex {
  display: flex;
  flex-direction: column;
}
.cof .bannerDiv .textDiv .compFlex .compItem {
  display: flex;
  padding: 16px 0px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-top: 2px dotted #997321;
  backdrop-filter: blur(4px);
}
.cof .bannerDiv .textDiv .compFlex .compItem:last-child {
  border-bottom: 2px dotted #997321;
}
.cof .bannerDiv .textDiv .compFlex .compItem p {
  color: #17181D;
  font-family: "mundial", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 600px) {
  .cof {
    padding: 50px 24px;
    margin-top: -2px;
    height: 1061px;
  }
  .cof .bannerDiv .banner {
    height: 961px;
    width: 342px;
    margin-left: unset;
    max-height: unset;
    margin-left: -171px;
  }
  .cof .bannerDiv .textDiv {
    width: 310px;
    height: 961px;
    margin-left: -155px;
    top: 282px;
  }
  .cof .bannerDiv .textDiv .compFlex .compItem {
    padding: 15px 0;
  }
}

.mosaic {
  background-image: url(assets/mosaicbg.webp);
  background-size: cover;
  background-repeat: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mosaic .bg1 {
  width: 100%;
  top: 0;
}
.mosaic .bg2 {
  width: 100%;
  bottom: 0;
}
.mosaic .container {
  background: url(assets/mosaicbanner.webp) center;
  background-repeat: no-repeat;
  display: flex;
  width: 723px;
  height: 1129px;
  padding: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 72px;
  border-radius: 16px;
  box-shadow: 0px 4px 154px 0px #000;
  backdrop-filter: blur(12px);
}
.mosaic .container .topDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mosaic .container .topDiv h4 {
  color: #F9F4ED;
  text-align: center;
  font-family: "miller-headline", sans-serif;
  font-size: 54px;
  font-weight: 700;
}
.mosaic .container .topDiv h4 span {
  color: #D8B252;
}
.mosaic .container .topDiv > strong {
  color: #F9F4ED;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}
.mosaic .container .topDiv p {
  color: #F9F4ED;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  line-height: 140%;
  margin-top: 16px;
}
.mosaic .container .bottomDiv {
  display: flex;
  width: 563px;
  padding: 72px 40px 40px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #D8B252;
}
.mosaic .container .bottomDiv .eagle {
  margin-top: -125px;
}
.mosaic .container .bottomDiv strong {
  color: #D8B252;
  text-align: center;
  font-family: "miller-headline", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  margin-top: 12px;
}
.mosaic .container .bottomDiv p {
  color: #F9F4ED;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.mosaic .container .bottomDiv span {
  margin-top: 16px;
  margin-bottom: 16px;
  color: #B9BABD;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
.mosaic .container .bottomDiv span em {
  color: #B9BABD;
  text-align: center;
  font-family: "miller-headline", sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
}
.mosaic .container .bottomDiv a {
  display: flex;
  max-width: 380px;
  padding: 16px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 380px;
  border-radius: 6px;
  background: #11FF7E;
  color: #17181D;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  transition: 0.2s;
}
.mosaic .container .bottomDiv a:hover {
  background: #19d16c;
}
@media (max-width: 600px) {
  .mosaic {
    margin-top: -2px;
    background-image: url(assets/mosaicbgmob.webp);
  }
  .mosaic .bg1, .mosaic .bg2 {
    height: 150px;
  }
  .mosaic .bg2 {
    margin-bottom: -1px;
  }
  .mosaic .container {
    background: url(assets/mosaicbannermob.webp) center;
    width: 336px;
    max-width: 1200px;
    padding: 32px 16px;
    height: unset;
  }
  .mosaic .container .topDiv h4 {
    font-size: 30px;
  }
  .mosaic .container .bottomDiv {
    width: 304px;
    padding: 72px 16px 16px 16px;
  }
  .mosaic .container .bottomDiv strong {
    font-size: 28px;
  }
  .mosaic .container .bottomDiv a {
    width: unset;
    padding: 16px 30px;
    align-self: stretch;
  }
}

.alunos {
  display: flex;
  padding: 100px 120px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  background: #FFE29E;
}
.alunos h5 {
  color: #262830;
  text-align: center;
  font-family: "miller-headline", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 120%;
  max-width: 635px;
}
.alunos .boxFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  width: 100%;
}
.alunos .boxFlex .swiper-button-next, .alunos .boxFlex .swiper-button-prev {
  --swiper-navigation-size: 30px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 5px;
  --swiper-navigation-color: #262830;
}
.alunos .boxFlex .swiper-button-prev {
  left: 7px;
  right: auto;
}
.alunos .boxFlex .swiper-button-next {
  right: 7px;
  left: auto;
}
.alunos .boxFlex .box {
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  height: 333px;
  border-radius: 8px;
  background: #FFF;
}
.alunos .boxFlex .box img {
  width: 58px;
  height: 58px;
}
.alunos .boxFlex .box p {
  color: #262830;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 140%;
}
.alunos .boxFlex .box strong {
  color: #262830;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 600px) {
  .alunos {
    padding-top: unset;
    padding: 50px 24px;
    margin-top: -3px;
  }
  .alunos h5 {
    font-size: 30px;
  }
  .alunos .boxFlex {
    max-width: 100%;
  }
  .alunos .boxFlex .swiper-wrapper {
    padding: 0 25px;
  }
  .alunos .boxFlex .swiper-button-prev {
    left: 0px;
    right: auto;
  }
  .alunos .boxFlex .swiper-button-next {
    right: 0px;
    left: auto;
  }
  .alunos .boxFlex .box {
    min-width: 240px;
    max-width: 240px;
    padding: 16px;
    gap: 7px;
  }
  .alunos .boxFlex .box img {
    width: 45px;
    height: 45px;
  }
  .alunos .boxFlex .box p {
    font-size: 17px;
  }
}

.how {
  display: flex;
  padding-top: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  align-self: stretch;
  background: #FFE29E;
}
.how h6 {
  color: #262830;
  text-align: center;
  font-family: "miller-headline", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 120%;
}
.how .flexHow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.how .flexHow .flexItem {
  display: flex;
  flex-direction: row;
  max-width: 720px;
  padding: 16px 17px;
  align-items: center;
  align-content: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 8px;
  background: #FFF;
}
.how .flexHow .flexItem p {
  color: #262830;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 600px) {
  .how {
    padding: 24px;
  }
  .how .flexHow .flexItem {
    flex-direction: column;
    align-items: flex-start;
  }
  .how .flexHow .flexItem p {
    font-size: 17px;
  }
}

#offer {
  display: flex;
  padding: 40px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  align-self: stretch;
  background: #FFE29E;
}
#offer .offerDiv {
  display: flex;
  background: url(assets/pricebg.webp) center;
  background-repeat: no-repeat;
  width: 1200px;
  height: 825px;
  padding: 60px 80px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 34px 0px #DBB459;
}
#offer .offerDiv strong {
  color: #17181D;
  text-align: center;
  font-family: "miller-headline", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 120%;
}
#offer .offerDiv .includes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
#offer .offerDiv .includes .includesItem {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #17181D;
  backdrop-filter: blur(4px);
}
#offer .offerDiv .includes .includesItem p {
  color: #F9F4ED;
  font-family: "mundial", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 140%;
}
#offer .offerDiv .plans {
  display: flex;
  height: 391px;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
#offer .offerDiv .plans .mensal, #offer .offerDiv .plans .anual {
  display: flex;
  max-width: 720px;
  padding: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  flex: 1 0 0;
  border-radius: 8px;
  background: #FFF;
}
#offer .offerDiv .plans .mensal .title, #offer .offerDiv .plans .anual .title {
  color: #17181D;
  font-family: "mundial", sans-serif;
  font-size: 31px;
  font-weight: 700;
}
#offer .offerDiv .plans .mensal .priceDiv, #offer .offerDiv .plans .anual .priceDiv {
  display: flex;
  flex-direction: column;
}
#offer .offerDiv .plans .mensal .priceDiv .old, #offer .offerDiv .plans .anual .priceDiv .old {
  color: #EB8D00;
  font-family: "mundial", sans-serif;
  font-size: 29px;
  line-height: 120%;
}
#offer .offerDiv .plans .mensal .priceDiv .old span, #offer .offerDiv .plans .anual .priceDiv .old span {
  text-decoration: line-through;
}
#offer .offerDiv .plans .mensal .priceDiv .flag, #offer .offerDiv .plans .anual .priceDiv .flag {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
#offer .offerDiv .plans .mensal .priceDiv .flag > div, #offer .offerDiv .plans .anual .priceDiv .flag > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #EB8D00;
  height: 53px;
  width: 262px;
  padding: 8px 16px;
}
#offer .offerDiv .plans .mensal .priceDiv .flag > div strong, #offer .offerDiv .plans .anual .priceDiv .flag > div strong {
  color: #FFF;
  font-family: "mundial", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
}
#offer .offerDiv .plans .mensal .priceDiv .flag > div p, #offer .offerDiv .plans .anual .priceDiv .flag > div p {
  color: #FFF;
  font-family: "mundial", sans-serif;
  font-size: 15px;
  line-height: 100%;
}
#offer .offerDiv .plans .mensal .price, #offer .offerDiv .plans .anual .price {
  color: #51525A;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
#offer .offerDiv .plans .mensal .price strong, #offer .offerDiv .plans .anual .price strong {
  color: #17181D;
  font-size: 43px;
  font-family: "mundial", sans-serif;
}
#offer .offerDiv .plans .mensal .price span, #offer .offerDiv .plans .anual .price span {
  color: #17181D;
  font-family: "mundial", sans-serif;
  font-size: 30px;
  font-weight: 700;
}
#offer .offerDiv .plans .mensal .price .cents, #offer .offerDiv .plans .anual .price .cents {
  color: #17181D;
  font-family: "mundial", sans-serif;
  font-size: 30px;
  font-weight: 700;
}
#offer .offerDiv .plans .mensal .checkFlex, #offer .offerDiv .plans .anual .checkFlex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
#offer .offerDiv .plans .mensal .checkFlex .checkItem, #offer .offerDiv .plans .anual .checkFlex .checkItem {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  align-self: stretch;
}
#offer .offerDiv .plans .mensal .checkFlex .checkItem img, #offer .offerDiv .plans .anual .checkFlex .checkItem img {
  width: 24px;
  height: 24px;
}
#offer .offerDiv .plans .mensal .checkFlex .checkItem p, #offer .offerDiv .plans .anual .checkFlex .checkItem p {
  color: #2E3039;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  line-height: 100%;
}
#offer .offerDiv .plans .mensal a, #offer .offerDiv .plans .anual a {
  display: flex;
  padding: 16px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 6px;
  background: #11FF7E;
  color: #17181D;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  transition: 0.2s;
}
#offer .offerDiv .plans .mensal a:hover, #offer .offerDiv .plans .anual a:hover {
  background: #19d16c;
}
#offer .offerDiv .plans .anual {
  position: relative;
  border-radius: 0 0 8px 8px;
  border: 3px solid #EB8D00;
  background: #FFF;
  box-shadow: 0px 9px 0px 0px #EB8D00;
  margin-top: 50px;
}
#offer .offerDiv .plans .anual .best {
  display: flex;
  padding: 16px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #EB8D00;
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -255px;
  width: 101.1%;
  border-radius: 8px 8px 0 0;
}
#offer .offerDiv .plans .anual .best p {
  color: #FFF;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 1.36px;
}
@media (max-width: 600px) {
  #offer {
    padding: 24px;
  }
  #offer .offerDiv {
    background: url(assets/pricebgmob.webp) center;
    background-repeat: no-repeat;
    width: 342px;
    height: 1281px;
    padding: 20px 16px;
    justify-content: flex-start;
  }
  #offer .offerDiv strong {
    font-size: 30px;
  }
  #offer .offerDiv .includes {
    flex-direction: column;
  }
  #offer .offerDiv .plans {
    align-items: center;
    flex-direction: column;
    height: unset;
  }
  #offer .offerDiv .plans .mensal, #offer .offerDiv .plans .anual {
    padding: 20px;
  }
  #offer .offerDiv .plans .anual .best {
    margin-left: -144.5px;
    width: 101.7%;
  }
  #offer .offerDiv .plans .anual .priceDiv .flag > div {
    width: 230px;
    height: 47px;
  }
  #offer .offerDiv .plans .anual .priceDiv .flag > div strong {
    font-size: 19px;
  }
  #offer .offerDiv .plans .anual .priceDiv .flag svg {
    margin-left: -0.5px;
  }
}

.quote {
  display: flex;
  padding: 40px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  align-self: stretch;
  background: #FFE29E;
}
.quote .container {
  position: relative;
  background: url(assets/quotebanner.webp) center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1210px;
  height: 389px;
  border-radius: 8px;
}
.quote .container .textDiv {
  display: flex;
  width: 655px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  position: absolute;
  top: 98px;
  right: 80px;
}
.quote .container .textDiv strong {
  display: flex;
  color: #F9F4ED;
  text-align: center;
  font-family: "miller-headline", sans-serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
  width: 645px;
}
.quote .container .textDiv p {
  color: #17181D;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .quote {
    margin-top: -2px;
    padding: 24px;
  }
  .quote .container {
    background: url(assets/quotebannermob.webp) center;
    width: 342px;
    height: 488px;
  }
  .quote .container .textDiv {
    top: 241px;
    left: 24px;
    right: unset;
    width: unset;
  }
  .quote .container .textDiv strong {
    font-size: 30px;
    width: 294px;
  }
}

.garantia {
  display: flex;
  padding: 40px 140px;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  background: #FFE29E;
}
.garantia .header {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
}
.garantia .header img {
  width: 162px;
  height: 162px;
}
.garantia .header p {
  color: #17181D;
  font-family: "miller-headline", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  max-width: 232px;
  text-align: left;
}
.garantia p {
  color: #17181D;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  line-height: 140%;
  max-width: 600px;
}
.garantia a {
  display: flex;
  width: 380px;
  padding: 16px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #11FF7E;
  color: #000;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  transition: 0.2s;
}
.garantia a:hover {
  background: #19d16c;
}
@media (max-width: 600px) {
  .garantia {
    padding: 24px;
  }
  .garantia .header img {
    width: 127.5px;
    height: 127.5px;
  }
  .garantia .header p {
    font-size: 28px;
  }
  .garantia p {
    font-size: 17px;
  }
  .garantia a {
    width: unset;
    align-self: stretch;
  }
}

#faq {
  background: #FFE29E;
  display: flex;
  padding: 80px 140px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
#faq strong {
  color: #17181D;
  text-align: center;
  font-family: "miller-headline", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}
#faq .asks {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 660px;
}
#faq .asks .ask {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}
#faq .asks .ask.active .answer {
  padding: 20px;
  height: auto;
}
#faq .asks .ask .answer {
  padding: 20px;
  color: #17181D;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  height: 0;
  padding: 0 2.4rem;
  transition: all 0.5s ease;
}
#faq .asks .ask .title-wrapper {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #0F1013;
}
#faq .asks .ask .title-wrapper p {
  color: #17181D;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}
#faq .asks .ask:first-child {
  border-top: 1px solid #0F1013;
}
#faq .whatsBtn {
  display: flex;
  width: 410px;
  padding: 16px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #11FF7E;
  color: #000;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  transition: 0.2s;
}
#faq .whatsBtn:hover {
  background: #19d16c;
}
@media (max-width: 600px) {
  #faq {
    margin-top: -2px;
    padding: 33px;
  }
  #faq strong {
    font-size: 28px;
  }
  #faq .asks .ask .title-wrapper p {
    width: 308px;
  }
  #faq .whatsBtn {
    width: unset;
    line-height: 100%;
    text-align: center;
  }
}

footer {
  display: flex;
  padding: 20px 140px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #FFE29E;
}
footer img {
  width: 296px;
  height: 65px;
}
footer > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
footer > div a {
  color: #17181D;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
  transition: 0.2s;
}
footer > div a:hover {
  color: #44474b;
}
@media (max-width: 600px) {
  footer {
    padding: 20px;
    gap: 15px;
  }
}

/*# sourceMappingURL=style.min.css.map */
