@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;900&display=swap");
@keyframes pulse {
  0% {
    transform: scale(1);
    background-color: #00d350;
  }
  50% {
    transform: scale(1.1);
    background-color: #00bb00;
  }
  100% {
    transform: scale(1);
    background-color: #00d350;
  }
}
.tag {
  background-color: transparent;
  border-radius: 0.8rem;
  padding: 0.5rem 1rem;
}
.tag-warning {
  background-color: #eaca1b !important;
}
.tag-danger {
  background-color: #cc2200 !important;
  color: #ffffff !important;
}

.text-info {
  color: #296fd9 !important;
}

.text-success {
  color: #1f8a48 !important;
}

.text-warning {
  color: #eaca1b !important;
}

.text-danger {
  color: #cc2200 !important;
}

.text-light {
  color: #ffffff !important;
}

.text-muted {
  color: #777777 !important;
}

.text-dark {
  color: #313131 !important;
}

.text-yellow {
  color: #F0B90B !important;
}

.text-big {
  font-size: 5.6rem;
}

.text-underline {
  text-decoration: underline !important;
}

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

html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", Arial, Ubuntu, sans-serif;
  font-weight: 900;
  color: #313131;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  padding-top: 50px;
}
@media screen and (max-width: 991px) {
  body {
    font-size: 8px;
  }
}
@media screen and (max-width: 575px) {
  body {
    font-size: 5px;
  }
}

img {
  max-width: 100%;
}

section {
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 3rem;
}
@media screen and (max-width: 575px) {
  section {
    padding-block: 3rem;
  }
}

.video-container {
  width: 100%; /* O vídeo ocupará toda a largura disponível */
  max-width: 1200px; /* Ajuste para limitar o tamanho máximo */
  margin: 0 auto; /* Centraliza o vídeo */
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* O iframe ocupará toda a largura do contêiner */
  height: 100%; /* O iframe ocupará toda a altura proporcional */
}

@media screen and (max-width: 991px) {
  .video-container {
    max-width: 90%; /* Aumenta a largura em telas menores */
  }
}

@media screen and (max-width: 575px) {
  .video-container {
    max-width: 100%; /* O vídeo ocupa toda a largura em dispositivos pequenos */
  }
}



#detach-button-host {
  display: none !important;
}

.container {
  width: 100%; /* Mantém a largura como 100% da tela */
  max-width: 1400px; /* Aumentando a largura máxima para telas grandes */
  margin: 0 auto;
  padding-inline: 3rem; /* Aumentando o padding lateral para criar mais espaço */
  display: flex;
  align-items: center;
  flex-direction: column;
}

@media screen and (max-width: 991px) {
  .container {
    padding-inline: 3rem; /* Aumentando o padding lateral para telas médias */
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%; /* Garantir que ocupe 100% do espaço na tela */
    padding-inline: 2rem; /* Ajustando o padding lateral para telas menores */
  }
}

@media screen and (max-width: 575px) {
  .container {
    width: 100%; /* Garantir que ocupe 100% do espaço disponível */
    padding-inline: 1.5rem; /* Ajustando o padding para telas muito pequenas */
  }
}


h1 {
  font-size: 3.8em;
}

h2 {
  font-size: 3.6em;
}

h3 {
  font-size: 3em;
}

h4 {
  font-size: 2.6em;
}

p {
  font-size: 2em;
}
p:not(:last-of-type) {
  margin-block-end: 1.5rem;
}

small {
  display: block;
  font-size: 72%;
  line-height: 1;
}

.subtitle {
  font-size: 2em;
  display: block;
}
@media screen and (max-width: 575px) {
  .subtitle {
    font-size: 2.4em;
  }
}

.accordion {
  text-transform: initial;
  font-weight: 500;
  width: 100%;
  text-align: left;
  color: #313131;
  border-radius: 0.6rem;
  box-shadow: 0px 0 7px rgba(0, 0, 0, 0.25);
  margin-block-end: 1.2rem;
  overflow: hidden;
  background-color: white;
}
.accordion > summary::marker, .accordion > summary::-webkit-details-marker {
  display: none;
}
.accordion-title {
  font-size: 2em;
  display: flex;
  padding: 1.2rem 6rem 1.2rem 2.4rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 575px) {
  .accordion-title {
    font-size: 3em;
  }
}
.accordion-title:after {
  content: "";
  height: 24px;
  width: 24px;
  background-image: url("../images/icons/eye-hidden.svg");
  background-size: cover;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.accordion[open] .accordion-title {
  background: #00d350;
  background: linear-gradient(135deg, #00bb00 0%, #00d350 100%);
  color: #ffffff;
}
.accordion[open] .accordion-title:after {
  background-image: url("../images/icons/eye-visible.svg");
  filter: invert(100%);
}
.accordion-text {
  padding: 1.2rem 2.4rem;
}
.accordion-text p {
  font-size: 1.8em;
  font-weight: 300;
}
@media screen and (max-width: 575px) {
  .accordion-text p {
    font-size: 2.5em;
    font-weight: 500;
  }
}

.btn {
  border: none;
  text-decoration: none;
  cursor: pointer;
  padding: 2rem;
  display: inline-block;
  border-radius: 5px;
  font-size: 1.2rem;
}
@media screen and (max-width: 575px) {
  .btn {
    width: 100%;
  }
}
.btn-lg {
  font-size: 3.6em;
  line-height: 3.6rem;
  padding: 3.6rem 4rem;
  border-radius: 20px;
  animation: pulse 2s infinite;
}
@media screen and (max-width: 575px) {
  .btn-lg {
    font-size: 3em;
    padding: 2rem;
    line-height: 2.4rem;
  }
}
.btn-telegram {
  background-color: #0088cc;
  color: #ffffff;
}
.btn-primary {
  background-color: #00d350;
  color: #ffffff;
}
.btn-danger {
  background-color: #ff810b;
  color: #ffffff;
  font-size: 2em;
}
.btn-block {
  width: 100%;
}

.btn-whatsapp {
  height: 52px;
  width: 52px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 100%;
  font-size: 3rem;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 991px) {
  .btn-whatsapp {
    right: 15px !important;
    bottom: 15px !important;
  }
}

@media screen and (max-width: 575px) {
  .iziToast {
    min-height: 40px;
    padding: 3px 40px 3px 0;
  }
  .iziToast > .iziToast-body .iziToast-texts {
    margin: 3px 0 0;
  }
  .iziToast > .iziToast-body .iziToast-texts > .iziToast-title {
    font-size: 11px;
  }
}
footer .top {
  background-color: #313131;
  text-align: center;
  padding-block: 2rem;
}
footer .top .copyright {
  font-size: 1.4em;
  color: #ffffff;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  footer .top .copyright {
    font-size: 2.2em;
  }
}
footer .middle {
  background-color: #777777;
  padding-block: 2rem;
}
footer .middle .topics {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  gap: 3rem;
}
footer .middle .topics .topic {
  text-align: left;
}
@media screen and (max-width: 1199px) {
  footer .middle .topics .topic {
    width: 100% !important;
    text-align: center;
  }
}
footer .middle .topics .topic:not(:last-child) {
  width: 30%;
}
footer .middle .topics .topic h4 {
  color: #ffffff;
}
footer .middle .topics .topic ul {
  list-style: none;
}
footer .middle .topics .topic ul li {
  font-size: 1.5em;
  font-weight: 300;
  color: #ffffff;
}
@media screen and (max-width: 575px) {
  footer .middle .topics .topic ul li {
    font-size: 2.4em;
    font-weight: 500;
  }
}
footer .bottom {
  background-color: #aaaaaa;
  padding-block: 2rem;
}
footer .bottom p {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

header {
  background-color: #cc2200;
  color: #ffffff;
  padding-block: 1em;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

header p {
  font-size: 2em;
}

.faq{
  background-color: #524774;
}
.faq h2 {
  margin-block-end: 3rem;
}
@media screen and (max-width: 767px) {
  .faq h2 {
    margin-block-end: 2rem;
  }
}

.headline {
  background-color: #333;
  background-position: top;
  color:#fff;
}
.headline *:not(:last-child) {
  margin-block-end: 3rem;
}
@media screen and (max-width: 991px) {
  .headline *:not(:last-child) {
    margin-block-end: 2rem;
  }
}

.live {
  position: relative;
  background-image: url("../images/bg-section-5.webp");
  background-position: top;
  height: 1100px;
  background-size: cover;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .live {
    height: 900px;
  }
}
@media screen and (max-width: 991px) {
  .live {
    height: 700px;
  }
}
@media screen and (max-width: 767px) {
  .live {
    height: auto;
    padding-block: 6rem;
  }
}
.live * :not(:last-child) {
  margin-block-end: 3rem;
}
@media screen and (max-width: 991px) {
  .live * :not(:last-child) {
    margin-block-end: 2rem;
  }
}
.live .tag {
  padding-inline: 12rem;
}
@media screen and (max-width: 767px) {
  .live .tag {
    width: 100%;
    display: block;
    padding-inline: 0;
  }
}
.live p {
  margin-block: 1rem 4rem;
}

.make-it-clear {
  background-color: #333;
  background-position: bottom;
  color:white;
}
.make-it-clear .topics {
  display: flex;
  justify-content: space-between;
  margin-block: 6rem;
  gap: 3rem;
  flex-wrap: wrap;
  
}
@media screen and (max-width: 767px) {
  .make-it-clear .topics {
    margin-block: 3rem;
  }
}
.make-it-clear .topics .topic {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .make-it-clear .topics .topic {
    width: 100%;
  }
}
.make-it-clear .topics .topic-image {
  width: 230px;
  height: 230px;
}
@media screen and (max-width: 991px) {
  .make-it-clear .topics .topic-image {
    width: 180px;
    height: 180px;
  }
}
.make-it-clear .topics .topic-text {
  width: 100%;
  font-size: 3rem;
  color: #333;
  line-height: 1.2;
  margin-block-start: 1rem;
}
@media screen and (max-width: 991px) {
  .make-it-clear .topics .topic-text {
    font-size: 2rem;
  }
}



/*================ PRICES */

.prices{

  background-color: #F0B90B;
}

.prices .container > *:not(:last-child) {
  margin-block-end: 3rem;

}
@media screen and (max-width: 767px) {
  .prices .container > *:not(:last-child) {
    margin-block-end: 2rem;
  }
}
.prices .plans {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.prices .plan {
  width: calc(25% - 3.2rem);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .prices .plan {
    width: 100%;
  }
}
.prices .plan-name {
  background-color: #000000;
  color: #ffffff;
  padding: 3.2rem 3.2rem 0;
  display: block;
  text-align: left;
  font-size: 3rem;
  position: relative;
}
.prices .plan-name:after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  padding-bottom: 10%;
  background: #000000;
  clip-path: polygon(100% 0%, 0% 100%, 0% 0%);
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .prices .plan-name:after {
    clip-path: polygon(110% 0%, 0% 75%, 0% 0%);
  }
}
.prices .plan-price {
  background-color: #00d350;
  display: block;
  padding: 3.2rem 3.2rem 0;
  text-align: right;
  font-size: 2rem;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}
.prices .plan-price:after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  padding-bottom: 10%;
  background: #00d350;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
@media screen and (max-width: 991px) {
  .prices .plan-price:after {
    clip-path: polygon(-10% 0%, 100% 0%, 100% 75%);
  }
}
.prices .plan-content {
  padding: 6.4rem 3.2rem 3.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: solid 1px #e5e5e5;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background-color:white;
}
.prices .plan-content .plan-description {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  margin-block-end: 2.4rem;
}
.prices .plan-content .plan-description > li {
  color: #777777;
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: initial;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #e5e5e5;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.prices .plan-content .plan-description > li > i {
  width: 20px;
  color: #00d350;
  margin-inline-end: 1.2rem;
}

.prices .plan-content .plan-description > li > span {
  width: calc(100% - 20px);
}

.prices .plan:nth-of-type(1) .plan-price {
  background-color: #838c86;
}
.prices .plan:nth-of-type(1) .plan-price:after {
  background-color: #838c86;
}
.prices .plan:nth-of-type(1) .plan-content .plan-description > li > i {
  color: #838c86;
}

.prices .plan:nth-of-type(2) .plan-price {
  background-color: #f1a33a;
}
.prices .plan:nth-of-type(2) .plan-price:after {
  background-color: #f1a33a;
}
.prices .plan:nth-of-type(2) .plan-content .plan-description > li > i {
  color: #f1a33a;
}
.prices .plan:nth-of-type(3) .plan-price {
  background-color: #4b9dec;
}
.prices .plan:nth-of-type(3) .plan-price:after {
  background-color: #4b9dec;
}
.prices .plan:nth-of-type(3) .plan-content .plan-description > li > i {
  color: #4b9dec;
}
.profit{
  background-color: #F0B90B;
}

.profit .subtitle {
  margin-block: 6rem 3rem;
}
@media screen and (max-width: 767px) {
  .profit .subtitle {
    margin-block: 4rem 2rem;
  }
}
@media screen and (max-width: 575px) {
  .profit .subtitle {
    margin-block: 2rem 1rem;
  }
}

/* ======== REPORT */
.report {
  flex-direction: column;
}
.report .top {
  padding-block: 2rem;
}
.report .top .last-update {
  font-size: 1.3rem;
}
.report .bottom {
  padding-block: 2rem;
}

.report .middle {
  padding-block: 2rem;
}

.report .middle.resultados {
  background-color: #333;
  padding-block: 2rem;
}

.report .topics {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  flex-wrap: wrap;
}
.report .topics .topic {
  width: 30%;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .report .topics .topic {
    width: 100%;
  }
}
.report .topics .topic-image {
  width: 100px;
  height: 100px;
  display: inline-block;
  margin-block-end: 2rem;
}
.report .topics .topic-image img {
  width: 100%;
  filter: invert(100%);
}
.report .topics .topic-text {
  font-size: 4rem;
}
.report .topics .topic-text small {
  font-size: 2rem;
}

.report .graphic {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding-block: 3rem;
}

.report .graphic .container-video {
  width: 250px;
}
@media screen and (max-width: 575px) {
  .report .graphic .container-video {
    width: 200px;
    display: block;
    margin: 0 auto 2rem;
  }
}
.report .graphic .container-video video {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
}
.report .graphic .chart {
  width: calc(100% - 400px);
  border: solid 4px #e5e5e5;
  padding: 2rem;
  background-color: #fff;;
}
@media screen and (max-width: 1199px) {
  .report .graphic .chart {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 767px) {
  .report .graphic .chart {
    width: 100%;
    padding: 0;
  }
}
.report .graphic .chart #chartReport {
  width: 100%;
}



/* =============GARANTIA */
.seal{
  background-color: #333;
  color: #fff;
}

.seal .container > *:not(:last-child) {
  margin-block-end: 3rem;
}
@media screen and (max-width: 767px) {
  .seal .container > *:not(:last-child) {
    margin-block-end: 2rem;
  }
}
.seal .content-seal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .seal .content-seal {
    justify-content: center;
  }
}
.seal .content-seal-image {
  width: 380px;
}
@media screen and (max-width: 575px) {
  .seal .content-seal-image {
    width: 250px;
  }
}
.seal .content-seal-text {
  width: 50%;
  text-align: left;
  font-size: 0.8em;
}
@media screen and (max-width: 991px) {
  .seal .content-seal-text {
    width: 100%;
    margin-block-start: 2rem;
    text-align: center;
  }
}

.start * :not(:last-child) {
  margin-block-end: 3rem;
}

.start {
  background-color: #333;
  color: #fff;

}



@media screen and (max-width: 991px) {
  .start * :not(:last-child) {
    margin-block-end: 2rem;
  }
}
.testimonials {
  background-color: #F0B90B;
}

.testimonials .container > *:not(:last-child) {
  margin-block-end: 3rem;
}
@media screen and (max-width: 991px) {
  .testimonials .container > *:not(:last-child) {
    margin-block-end: 2rem;
  }
}
.testimonials .carousel-testimonials {
  width: calc(100% - 6.4rem);
}
.testimonials .carousel-testimonials .testimonial {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  .testimonials .carousel-testimonials .testimonial {
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0 2rem;
  }
}
.testimonials .carousel-testimonials .testimonial .image-user {

  overflow: hidden;
}

.testimonials .carousel-testimonials .testimonial .info-user {
  width: calc(100% - 210px);
  text-align: left;
}
@media screen and (max-width: 1199px) {
  .testimonials .carousel-testimonials .testimonial .info-user {
    width: calc(100% - 180px);
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .testimonials .carousel-testimonials .testimonial .info-user {
    width: 100%;
    text-align: center;
  }
}
.testimonials .carousel-testimonials .testimonial .info-user span {
  display: block;
  text-transform: initial;
}
.testimonials .carousel-testimonials .testimonial .info-user span.info-user-name {
  color: #00bb00;
  font-size: 2.2rem;
}
@media screen and (max-width: 1199px) {
  .testimonials .carousel-testimonials .testimonial .info-user span.info-user-name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .testimonials .carousel-testimonials .testimonial .info-user span.info-user-name {
    font-size: 1.8rem;
  }
}
.testimonials .carousel-testimonials .testimonial .info-user span.info-user-text {
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 1199px) {
  .testimonials .carousel-testimonials .testimonial .info-user span.info-user-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .testimonials .carousel-testimonials .testimonial .info-user span.info-user-text {
    font-size: 1.2rem;
  }
}
.testimonials .carousel-testimonials .slick-dots {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .testimonials .carousel-testimonials .slick-dots {
    gap: 1rem;
  }
}
.testimonials .carousel-testimonials .slick-dots > li {
  list-style: none;
}
.testimonials .carousel-testimonials .slick-dots > li > button {
  text-indent: -9999;
  color: transparent;
  border: none;
  overflow: hidden;
  width: 20px;
  height: 20px;
  background-color: #00d350;
  border-radius: 100%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .testimonials .carousel-testimonials .slick-dots > li > button {
    width: 15px;
    height: 15px;
  }
}
.testimonials .carousel-testimonials .slick-dots > li.slick-active > button {
  background-color: #ffffff;
  border: solid 3px #00d350;
}
.testimonials .carousel-testimonials .slick-arrow {
  width: 3.2rem;
  height: 3.2rem;
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.testimonials .carousel-testimonials .slick-arrow.slick-prev {
  left: -3.2rem;
}
.testimonials .carousel-testimonials .slick-arrow.slick-next {
  right: -3.2rem;
}

.resultados-mensais {
  max-width: 30%;
}

@media screen and (max-width: 767px) {
  .resultados-mensais {
    max-width: 100%;
  }
}

#div-whatsapp-fixo {
	display: none;
}

#li-telegram {
	display: none;
}

#li-whatsapp {
	display: none;
}

#atendimento{
	display: none;
}

.video-testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Centraliza os vídeos */
}

.video-testimonials iframe {
    flex: 1 1 calc(50% - 20px); /* Dois vídeos por linha */
    min-width: 300px; /* Largura mínima para responsividade */
    max-width: 500px; /* Largura máxima */
    height: 280px; /* Altura fixa para manter a proporção */
}

/*# sourceMappingURL=main.css.map */
