/** Definição de configuração padrão **/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: white;
}

body::-webkit-scrollbar-thumb {
  background-color: #B5B5B5;
  border-radius: 10px;
}
#load {
  background: #FF4D4D;
  position: fixed;
  display: block;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 }
 .logo_animada{
   position: absolute;
   top: 30%;
   left: 45%;
 }
 .logo_animada h1{
   font-weight: 600;
   text-align: center;
   color: white;
   animation:textoentrada 1s;
 }
 .logo_animada img{
   width: 150px;
   animation:animacaoload 2s infinite;
 }
 @keyframes textoentrada {
   from{
     opacity: 0;
     transform: scale(0);
   }
   to{
      opacity: 1;
      transform: scale(1);
   }
 }

 @keyframes animacaoload {
   0%{
     opacity: 0.5;
     transform: scale(0.8);
   }
   50%{
      opacity: 1;
      transform: scale(1);
   }
   100%{
      opacity: 0.5;
      transform: scale(0.8);
   }
 }

  /****** Partes escondidas e visíveis ******/

  #content-s2-mobile{
    display: none;
  }
  #content-s2-desktop{
    display: block;
  }


.container{
  width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  margin: auto auto;
}
#topo-mobile{
  display: none;
}
.video-topo{
  display: none;
}

header{
  position: fixed;
  width: 100%;
}
.large{
  height: 75px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  z-index: 99;
  transition: ease-out 0.5s;
}
.small{
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  z-index: 99;
  transition: ease-in 0.5s;
}
.content-head{
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo{
  width:20%;
}
.logo-large{
  transition: ease-out 0.5s;
}
.logo-small{
  margin-top: 4px;
  width: 14%;
  transition: ease-in 0.5s;
}
.col-esq{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  align-content: center;
}
.btn-assine{
  display: none;
  width: 70px;
  text-align: center;
  color: white;
  text-decoration: none;
  background: #FF4D4D;
  padding: 4px;
  font-size: 14px;
  border-radius: 50px;
  transition: ease-in 2s;
  animation: animacao 1s;
}
@keyframes animacao {
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}

.visivel{
  visibility: visible !important;
}
.escondido{
  visibility: hidden !important;
}

.lista-menu{
  width: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #000000;
}
.lista-menu a{
  color: black;
  text-decoration: none;
}
.lista-menu a:hover{
  color: #FF4D4D;
}

.botoes-topo{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.2px;
  color: #000000;
}
.btn-assinante{
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
  border: solid 1px black;
  padding: 7px 15px 7px 15px;
  border-radius:5px;
}
.btn-assinedesktop{
  background: #FF4D4D;
  color: white;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
}

/****** Primeira Sessão ******/
.section1{
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  background-color: white;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom;
  height: 720px;
  transition: ease-in 1s;
}

.section1 video {
  position: relative;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100% !important;
  z-index: 9;
}


@keyframes fundo-aparece {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.content-section1{
  width: 100%;
  position: relative;
  z-index: 70;
  margin-top: 0px;
  text-align: center;
  animation: entrada 2s ease-in;
}

@keyframes entrada {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.imagem-box{
  position: absolute;
  margin-top: -220px;
  margin-left: 905px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  z-index: 85;
  cursor: pointer;
}
.btn-player img{
  width: 100px;
  position: absolute;
  margin-left: -100px;
}
.animation-player{
  margin-left: 19px;
  position: absolute;
  height: 80px;
  width: 80px;
  background-color: rgb(78, 78, 78, 0.8);
  border-radius: 50%;
  opacity: 1;
  z-index: -1;
  animation: pulseplayer 1.5s ease-out infinite;
}
@keyframes pulseplayer{
  100%{
    transform: scale(1.2);
    opacity: 0;
  }
}

.section1 p{
  padding-top: 0px;
  padding-bottom: 15px;
  text-align: left;
  color: #F14720;
  margin: 0;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.2em;
}
.section1 h1{
  width: 500px;
  text-align: left;
  color: #F14720;
  margin: 0;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 55px;
  padding-bottom: 20px;
}
.btn-section1{
  text-decoration: none;
  color: white;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 25px;
  width: 180px;
  height: 45px;
  background: #0085FF;
  border-radius: 50px;
}
.coluna-topo-pc{
  width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  margin: auto auto;
}

/****** Menu Mobile ******/
.menu-mobile{
  display: none;
  z-index: 99;
  height: 400px;
  margin-top: 20px;
  top: 70px;
  width: 90%;
  margin: 2%;
  position: fixed;
  padding: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 1px 0px 18px 10px #0000002e;
  transition: ease-in 2s;
  animation: animacao 0.5s;
}

/****** Pop up Vídeo ******/
.popup-video{
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: #000000ad;
  z-index: 99;
}
.content-video{
  position: relative;
  margin: auto auto;
  top: 20%;
  background: white;
  border-radius: 8px;
  width: 600px;
  height: 390px;
  padding: 14px;
}
.video-clube{
  margin: auto auto;
  height: 339px;
}
.video-clube iframe{
  width: 600px;
  border-radius: 15px;
  border: none;
}
.icone-fechar{
  background: white;
  box-shadow: 0px 0px 5px 2px #00000012;
  border-radius: 50%;
  padding: 1px 8px 1px 8px;
  float: right;
  font-size: 20px;
  font-weight: 500;
  margin-right: 10px;
  cursor: pointer;
}

/****** Segunda Sessão ******/
.section2{
  background: #FFF7EC;
  background-image: url(images/efeito-fundo-s2.svg);
  background-repeat: no-repeat;
  background-position: center;
  height: 650px;
}

.content-mobile-s2{
  display: none;
}
.content-dektop-s2{
  display: block;
}
.sessao-sobre{
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.content-section2{
  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
.section2 p{
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 120%;
  letter-spacing: 0.04em;
  color: #FF4D4D;
  padding-bottom: 0;
}
.section2 h1{
  width: 700px;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  letter-spacing: 0.2px;
  color: black;

}
.slide-cards{
margin-bottom: 30px;
}
.primeiro-card{
margin-left: 20px;
}
.content-card{
width: 240px;
height: 200px;

padding: 30px 10px 30px 30px;
gap: 15px;
background: #FFFFFF;
box-shadow: 0px 2px 22px rgb(0 0 0 / 8%);
border-radius: 12px;
}
.content-card video{
width: 70px !important;
}
.content-card img{
width: 70px !important;
}
.content-card h1{
width: 195px;
font-family: 'Lexend';
font-style: normal;
font-weight: 500;
font-size: 22px;
text-align: left;
margin-bottom: 0px;
}
.content-card p{
margin-top: 10px;
font-family: 'Lexend';
font-style: normal;
font-weight: 300;
font-size: 13px;
line-height: 12px;
color: #000000;
}
.curadoria{
width: 100px !important;
}

.swiper {
width: 100%;
height: 100%;
}

.swiper-slide {

/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}

.swiper-slide {
width: 80%;
}

.swiper-slide:nth-child(2n) {
width: 80%;
}

.swiper-slide:nth-child(3n) {
width: 80%;
}

.btn-section2{
  display: block;
  color: white;
  text-decoration: none;
  text-align: center;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  margin: auto auto;
  padding: 18px 25px 18px 25px;
  width: 250px;
  height: 20px;
  background: #FF4D00;
  border-radius: 60px;
}

/****** Terceira Sessão ******/
.section3{
  background: #ffffff;
  height: 720px;
}
.color-section3{
  background: #FFF7EC;
  transition: ease-in 1s;
}
.color-out-section3{
  background: white;
  transition: ease-out 1s;
}
.coluna-s3{

}
.coluna-s3-imagem{
  width: 60%;
}
.coluna-s3-tabs{
  width: 40%;
  padding-top: 20px;
}

.alteradores{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
}
.parte-dos-alternadores{
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.content-s3 h1{
  padding-top: 40px;
  width: auto;
  margin: auto auto;
  text-align: center;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  padding-bottom: 50px;
}

#alteradorImagem{
  animation: animacao 1s;
}
.alterimg-s3 img{
  width: 510px;
  display: block;
  margin: auto auto;
}
.numero-s3{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 9px;
  gap: 9px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #FF4D4D;
  border-radius: 7px;
  color: #FF4D4D;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.numero-marcado{
  background: #FF4D4D !important;
  color: white;
}
.alternador-numero{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  gap: 14px;
  width: 450px;
  height: 38px;
  background: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}
.alternador-numero h3{
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
}
.saiba-mais-s3{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.152px;
  color: #FF4D4D;
  text-decoration: none !important;
}

.saiba-mais-s3 a{
  text-decoration: none !important;
}

.box-subindo{
  width: 100%;
  display: block;
  margin: auto auto;
  margin-top: 0px;
}

.box-subindo img{
  position: absolute;
  width: 720px;
}

.texto_entrada{
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  font-weight: 400;
}

#img_1{
  z-index: 98;
  animation: imagem_entrada 0.5s;
  display: none;
}
#img_2{
  animation: imagem_entrada 0.5s;
  display: none;
}
#img_3{
  animation: imagem_entrada 0.5s;
  display: none;
}
#img_4{
  animation: imagem_entrada 0.5s;
  display: none;
}

.imagens-entrada{
  margin-top: -80px;
}

@keyframes imagem_entrada {
  from{
    margin-top: 150px;
    opacity: 0;
  }to{
    margin-top: 0;
    opacity: 1;
  }
}

/****** Quarta Sessão ******/
.section4{
  background: #FFF7EC;
  height: 500px;
}
.color-section4{
  background: #E5F3FF;
  transition: ease-in 1s;
}
.color-out-section4{
  background: #FFF7EC;
  transition: ease-out 1s;
}
.box-pc-s4{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 40px;
}
.content-s4 h1{
  padding-top: 40px;
  width: auto;
  margin: auto auto;
  text-align: center;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  color: #000000;
}
.content-s4 p{
  padding-top: 20px;
  padding-bottom: 20px;
  margin: auto auto;
  width: auto;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #000000;
}
.passos-s4{
  margin: auto auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px 0px 20px;
  width: 310px;
  height: 150px;
  background: #FFFFFF;
  box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  margin-bottom: 12px;
}
#botao-verplanos{
  display: none;
}
#passo1, #passo2, #passo3, #botao-verplanos{
  display: block;
  animation: passos ease-in 0.5s !important
}

@keyframes passos {
  from {
    opacity: 0;
    margin-top: -100px;
  }
  to {
    opacity: 1;
    margin-top: 0px;
  }
}

.numero-s4{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
  width: 50px;
  height: 20px;
  background: #0085FF;
  border-radius: 10px 0px 20px 0px;
  color: white;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  z-index: 10;
}
.icone-passo{
  padding-top: 30px;
  margin-left: -20px;
  margin-right: 10px;
  z-index: 0;
}
.icone-passo video{
  width: 70px;
}
.content-passo h3{
  width: 100%;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #40404B;
}
.content-passo p{
  margin-top: -25px;
  margin-bottom: -20px;
  width: 100%;
  text-align: left;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.04em;
  color: #4C4F57;
}
.passos-s4, .content-passos{
  margin-top: 20px !important;
}
.btn-planos-s4{
  text-align: center;
  margin-top: 30px;
  padding: 10px;
  line-height: 2;
  width: 400px;
  margin: auto auto;
  height: 35px;
  background: #FF4D00;
  border-radius: 50px;
  color: white;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}


/****** Quinta Sessão ******/
.section5{
  background: white;
  height: 630px;
}
.content-s5 h1{
  padding-top: 60px;
  width: auto;
  margin: auto auto;
  text-align: center;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  margin-bottom: 40px;
}
.titulo-etapas{
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #0085FF;
  margin-bottom: 40px;
}
.box-pc-s5{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
}
.box-mobile-s5{
  display: none;
}

#etapa1, #etapa2, #etapa3, #etapa4, #etapa5, #botao-etapa, #atencao{
  display: none;
  animation: etapas ease-in 0.5s !important;
}

#etapa_pc1, #etapa_pc2, #etapa_pc3, #etapa_pc4, #etapa_pc5{
  display: none;
  animation: etapas ease-in 0.5s !important;
}


@keyframes etapas {
  from {
    opacity: 0;
    margin-top: -100px;
  }
  to {
    opacity: 1;
    margin-top: 0px;
  }
}
.icone-vertical{
  animation: icone ease-in 1.3s !important;
}
@keyframes icone {
  from {
    transform: scale(0);
    opacity: 0;
    margin-top: -100px;
  }
  to {
    transform: scale(1);
    opacity: 1;
    margin-top: 0px;
  }
}

.etapas-s5{
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.etapas-s5 h4{
  width: 180px;
  text-align: center;
  margin: auto auto;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}
.etapas-s5 img{
  padding-top: 20px;
  display: block;
  margin: auto auto;
}
.etapas-s5 video{
  display: block;
  margin: auto auto;
  width: 85px;
}
.btn-assinar-s5{
  display: none;
  text-align: center;
  padding: 14px;
  line-height: 2;
  background: #FF4D00;
  border-radius: 50px;
  color: white;
  margin-bottom: 50px;
  width: 400px;
  margin: auto auto;
}

#atencao{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.card-atencao-s5{
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 15px;
  gap: 14px;
  width: 100%;
  height: 160px;
  background: #F7F8FB;
  border-radius: 8px;
}

/****** Sexta Sessão ******/
.section6{
  padding-top: 50px;
  background: #F7F9FC;
  height: 630px;
}
.content-s6 p{
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #FF4D4D;
}
.box-mobile-s6{
  display: none;
}
.box-pc-s6{
  display: block;
}

:root {
    --swiper-theme-color: #ff4d4d !importants;
}
.box1{
  background: #FFFFFF !important;
}
.box-misterio{
  background: #E9ECF1 !important;
}
.btn-azul{
  color: #0085FF !important;
  border: 1px solid #0085FF !important;
}
.btn-cinza{
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.73), rgba(255, 255, 255, 0.73)), #182B4B;
  color: #273342 !important;
  border: none !important;
}

.content-s6 h1{
  padding-top: 0px;
  width: auto;
  margin: auto auto;
  text-align: center;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  margin-bottom: 40px;
}
.card-s6{
  margin: auto auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  gap: 5px;
  width: 345px;
  height: 340px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), #FF4D4D;
  border-radius: 9.4431px;
}
.slide-edicoes {
  height: 300px;
  width: 320px;
  margin-right: none !important;
  text-align: center;
  font-size: 18px;
  background: red;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.cards-edicoes{
  width: 100%;
  height: 400px;
  background: white;
}

.box-atual{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3.93462px 11.8039px 3.93462px 7.86925px;
  gap: 7.87px;
}
.card-s6 h5{
  text-align: center;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  margin: 0;
  padding-bottom: 15px;
}
.btn-saibamais-s6{
  text-decoration: none;
  color: #FF4D4D;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 20px;
  gap: 7px;
  width: 300px;
  height: 30px;
  border: 1px solid #FF4D4D;
  border-radius: 6.2954px;
}

/****** Sétima Sessão ******/
.section7{
  background: #141312;
  height: auto;
}
.section7 p{
  text-align: center;
  padding-top:50px;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #FF8120;
}
.content-s7 h1{
  text-align: center;
  width: auto;
  padding-bottom: 20px;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.2px;
  color: #FFFFFF;
}

.box-mobile-s7{
  display: none;
}
.box-pc-s7{
  display: block;
}
.content-box-s7{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 40px;
}

.primeiro-exclusivo{
  margin-left: 30px;
}
.card-s7 .icone-bnf{
  position: absolute;
  width: 14.54px;
  height: 29px;
  right: 8.46px;
  top: -1px;
}
.card-s7{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  gap: 7px;
  isolation: isolate;
  width: 230px;
  height: 505px;
  background: radial-gradient(83.61% 61.28% at 50% 30.4%, #554F48 0%, #1F1D1B 100%);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
}
.card-s7 img{
  width: 100%;
}
.card-s7 h5{
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  margin: 0;
}

#saibamais1, #saibamais2, #saibamais3, #saibamais4{
  display: block;
}
.content-saibamais p{
  margin-top: 10px;
  padding-top: 0;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  text-align: left;
}

.saibamais-s7{
  margin-top: 20px;
  color: #FFB23E;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  display: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 101px;
  height: 27px;
  border-radius: 3px;
}
.btn-s7{
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 25px;
  gap: 5px;
  width: 300px;
  height: 47px;
  margin: auto auto;
  background: #FF4D00;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: white;
}
.content-btn-s7{
  padding-bottom: 40px;
}

/****** Oitava Sessão ******/

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -3px;
    left: 0;
    width: 100%;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
    background: red;
}

.section8{
  background: #F7F9FC;
  height: 601.88px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section8 img{
  display: block;
  margin: auto auto;
}
.content-s8{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.titulo-s8{
  width: 100%;
}
.content-s8 h1{
  padding-top: 0px;
  width: 500px;
  margin: 0;
  text-align: left;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  color: #000000;
  margin-bottom: 40px;
}
.bolhas-comentarios{
  display: none;
}

.slide-comentarios{
  width: 720px;
}
.caixa-coment-s8{
  background: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 30px;
  width: 700px;
  height: 220px;
  box-shadow: 0px 0px 10px 10px #0000000d;
  border-radius: 8px;
}
.caixa-coment-s8 img{
  border-radius: 50px;
  width: 15%;
  border: solid 2px #FF4D4D;
}
.icone-coment{
  width: 40px;
  margin-left: 0 !important;
}
.parte-texto p{
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
}
.parte-texto img{
  width: 8%;
  border: none;
}
.parte-texto h3{
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 29px;
  margin:0;
}
.parte-texto span{
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.1em;
  color: #FF4D4D;
  margin:0;
}

/****** Nona Sessão ******/
.section9{
  height: 700px;
  background: #F7F9FC;
}
.content-s9 h1{
  padding-top: 40px;
  width: 700px;
  margin: auto auto;
  text-align: center;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  color: #000000;
  margin-bottom: 40px;
}
.bolhas-familias{
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-direction: column;
}
.bl img{
  width: 100%;
  border-radius: 50%;
}
.bl{
  margin-left: -10px;
  background-color: white;
  width: 70px;
  height: 70px;
  border: solid 2px white;
  padding: auto;
  border-radius: 50%;
}

.comentarios-s9{
  margin-left: 226px;
  position: absolute;
  margin-top: -260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 34px 23px;
  gap: 15px;
  isolation: isolate;
  width: 730px;
  height: auto;
  background: #FFFFFF;
  box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  animation: comentario ease-in 0.5s;
}
@keyframes comentario {
  from{
    opacity: 0;
  }to{
    opacity: 1;
  }
}

#coment2, #coment3, #coment4, #coment5{
  display: none;
  z-index: 0;
}

.transforma-img{
  transform: scale(1.3);
  z-index: 0;
  position: relative;
  margin-top: 0px;
}
.transforma-caixa{
  z-index: 99;
  position: relative;
}
#imgcoment2{
  z-index: 10;
  position: relative;
}
#imgcoment3{
  z-index: 12;
  position: relative;
}
#imgcoment4{
  z-index: 14;
  position: relative;
}
#imgcoment5{
  z-index: 16;
  position: relative;
}

.comentarios-s9 h4{
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}
.comentarios-s9 p{
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.icon-coment img{
  position: absolute;
  width: 45px;
  left: calc(50% - 38px/2 + 0.5px);
  top: -16.94px;
}

/****** Décima Sessão ******/
.section10{
  height: 400px;
  background: linear-gradient(149.88deg, #0085FF -0.01%, #0062BD 79.03%);
  background-image: url('images/rodape-desktop.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.content-s10{
  float: right;
}

.content-s10 h1{
  padding-top: 100px;
  width: 440px;
  margin: auto auto;
  text-align: center;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  color: white;
  margin-bottom: 15px;
}
.btn-s10{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 25px;
  gap: 10px;
  width: 400px;
  height: 47px;
  background: #FF4D00;
  border-radius: 60px;
  color: white;
  text-decoration: none;
  margin-bottom: 20px;
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}
.content-s10 p{
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
.content-s10 span{
  text-decoration: underline;
}

/****** Rodapé ******/
.footer{
  background: black;
}
.logo-mbc img{
  margin-top: 50px;
  margin-bottom: 10px;
}
.description-footer p{
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  color: #848484;
  margin:0;
}
.social-icons{
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  align-items: center;
}
.section-links-footer{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.section-links-footer h4{
  padding-top: 25px;
  padding-bottom: 5px;
  margin: 0px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: white;
}
.section-links-footer a{
  font-family: 'Poppins';
  text-decoration: none;
  color: #979797;
  font-size: 15px;
  font-weight: 300;
}
.selos{
  display: flex;
  justify-content: space-between;
  align-items:center;
}

.line-footer{
  margin-top: 30px;
  margin-bottom:20px;
  border-bottom: 1px solid #2D2D2D;
}
.stamps{
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.stamps img{
  margin-left: 12px;
  margin-right: 12px;
}

.paragraph-footer{
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #848484;
}
.title-footer{
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-size: 47.3902px;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #3D3C3C;
  padding-top: 15px;
  padding-bottom: 60px;
  justify-content: center;
}
.rodape{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}


/******** Botão Whatapp ********/
.float{
    position: fixed;
    cursor: pointer;
    display: block;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0,200,0,1);
    color: white;
    border-radius: 50px;
    text-align: center;
    line-height: 1.6;
    font-size: 37px;
    transition-duration: 0.5s;
    z-index: 9000;
}
.float:hover{
  background-color: rgba(0,150,0,1);
  color: white;
}
.float:before{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 200, 0,1);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.8;
  margin-left: -11px;
}
