/**
* Template Name: Kelly ebook
* Updated: May 30 2023 with Bootstrap v5.3.0 nav-
* Template URL: https://bootstrapmade.com/kelly-free-bootstrap-cv-resume-html-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General about
--------------------------------------------------------------*/
body {
  color: #000000;
  background-color: FFFFFF;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

#main {
  background-color: #FFFFFF;
}

.toast {
  position: fixed;
  bottom: 0px;
  right: 0px;
}
.botao {
  display: inline-block;
}
.botao-primary {
  color: #612bf1;
  border: 2px solid #612bf1;
  background-color: #FFDF58;
  padding: 10px 20px 10px 20px;
  transition: background 0.5s;
}
.botao-primary:hover {
 color: #612bf1;
 background-color: #FFFFFF;
}

.botao-secondary {
  color: #FFF;
  border: 2px solid #FFF;
  padding: 10px 20px 10px 20px;
  transition: background 0.5s;
}
.botao-secondary:hover {
 background-color: #FFDC0D;
 border-color: #FFDC0D;
 text-shadow: 1px 1px 5px #000;
}
.botao-secondaryBlack {
  background-color: #000 !important;
  color: #FFF  !important;
  border: 2px solid #FFF;
  padding: 10px 20px 10px 20px;
  transition: background 0.5s;
}
.botao-secondaryBlack:hover {
 border-color: #FFDC0D  !important;
 text-shadow: 1px 1px 5px #000;
}

.botao-purple {
  color: #612bf1 ;
  border: 2px solid #612bf1;
  background-color: #FFFFFF;
  padding: 0.5rem 1rem;
  transition: background 0.5s;
}
.botao-purple:hover {
 color: #FFFFFF;
 background-color: #612bf1;
}

.botao-purple2 {
  color: #612bf1 ;
  border: 2px solid #612bf1;
  background-color: #612bf1;
  padding: 0.5rem 1rem;
  transition: background 0.5s;
}
.botao-purple2:hover {
 color: #FFFFFF;
 background-color: #612bf1;
}

.botao-purple3 {
  color: #FFFFFF ;
  border: 1px solid #fff;
  background-color: #612bf1;
  padding: 0.5rem 1rem;
  transition: background 0.5s;
}
.botao-purple3:hover {
 color: #000;
 background-color: #fff;
}

.botao-secondaryV {
  color: #000000;
  border: 2px solid #FFDC0D;
  background-color: #FFFFFF;
  padding: 10px 20px 10px 20px;
  transition: background 0.5s;
}
.botao-secondaryV:hover {
 color: #000000;
 background-color: #FFDC0D;
 border: 2px solid #FFFFFF;
}

.botao-secondaryB {
  color: #FFFFFF;
  transition: background 0.5s;
  position: relative;
}
.botao-secondaryB:before {
 content: "";
 position: absolute;
 width: 110px;
 height: 2px;
 bottom: 0px;
 left: 3rem;
 background-color: #FFFFFF;
 visibility: visible;
}
.botao-secondaryB:hover:before{
  background-color: #FFDC0D;
  animation: changeUnder 0.5s ease-in-out 0s;
}


@keyframes changeUnder {
  0% {
    background-color: #FFFFFF;
    width: 110px;
  }
  50% {
    background-color: #FFFFFF;
    width: 40px;
  }
  51.1% {
    background-color: #FFDC0D;
  }
  100% {
    width: 110px;
  }
}

.scrollBtnTop {
  cursor:pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -50px;
  left: 50%;
  border-radius: 100%;
  background-color: #FFDC0D;
  padding: 7px 13px 7px 13px;
  animation-name: jumpFade;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.jumpFade {
  animation-name: jumpFade;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes jumpFade {
  from {
    bottom: -50px;
    opacity: 1;
  }
  to {
    bottom: -80px;
    opacity: 0.1;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #FFFFFF;
}

.glowFade {
  animation: glowFade 1s ease-in-out infinite;
}

.imgLoader {
  width: 50px;
  height: 50px;
  position: fixed;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  mix-blend-mode: multiply;
  animation: glowFade 1s ease-in-out infinite;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #FFDC0D;
  border-top-color: #dcf5f2;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes  glowFade {
  to {
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    width: 20px;
    height: 20px;
    opacity: 0.1;
  }
  from {
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    opacity: 1;
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(0, 0, 0, 0);
  z-index: 997;
}

#header .logo {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #222222;
}

#header .logo img {
  max-height: 40px;
}

#header > .nav-link a {
  color: #FFFFFF !important;
}


#topoNewVendas {
  position: relative;
  background: rgba(0,0,0,1);
  background: linear-gradient(180deg, rgba(255,0,0,0) 43%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,1) 95%);
}



#topoNewVendas::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/culto3.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
#TopoVenda {
  position: relative;
  overflow-x: hidden;
}
.topoBgVenda {
  position: absolute;
  right: -50%;
  bottom: 0px;
  height: 100%;
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: end;
}
.topoBgVenda img{

}
.imgTopoA {
  width: 100%;
  max-width: 350px;
}
.imgTopVenda {
  position: relative;
  bottom: 0;
  min-height: 500px;
}
.imgTopVenda img{
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80%;
  z-index: 50;
}

.bottomTop {
  width: 100%;
  max-width: 14rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #6127f1;
  color: #FFDC0D;
  font-size: 0.75rem;
  transform: rotate(20deg);
  animation: rotateBottom 3s ease-in-out infinite;

}
.bottomTopY {
  background-color: #FFDC0D;
  color: #6127f1;
}


@keyframes rotateBottom {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(45deg);
  }
  
  100%{
   transform: rotate(0deg);
 }

}


.linhaStar {
  position: relative;
}
.linhaStar:after {
  position: absolute;
  content: "";
  background: url("../img/linhaStar.png") no-repeat;
  background-position: center;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: -10px;
  left: 40px;
}
.linhaStarInvert {
  position: relative;
}
.linhaStarInvert:after {
  position: absolute;
  content: "";
  background: url("../img/linhaStar.png") no-repeat;
  background-position: center;
  background-size: 80%;
  transform: rotate(160deg);
  width: 30px;
  height: 60px;
  top: 5px;
  left: -25px;
  z-index: 50000;
}
.linhaStarA {
  position: relative;
}
.linhaStarA:after {
  position: absolute;
  content: "";
  background: url("../img/linhaStarA.png") no-repeat;
  background-position: center;
  background-size: contain;
  width: 50px;
  height: 50px;
  top: -25px;
  left: 60px;
}
.linhaLeft {
  position: relative;
}
.linhaLeft:after {
  position: absolute;
  content: "";
  background: url("../img/linhaLeft.png") no-repeat;
  background-position: center;
  background-size: contain;
  width: 75px;
  height: 75px;
  top: -30px;
  left: -30px;
}

.linhaSub {
  position: relative;
}
.linhaSub:after {
  position: absolute;
  content: "";
  background: url("../img/linhaSub.png") no-repeat;
  background-position: center;
  background-size: contain;
  width: 14rem;
  height: 75px;
  top: 0.5rem;
  left: -1rem;
}

/*.bgImgTop {
  position: absolute;
  overflow: visible;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bgImgTop img {
  height: 649px;
  width: 862px;
}*/


.cardVideoNew {
  background-color: #f4ba00;
  border-radius: 0% 15%;
}

.cardVideoNewBorda {
  border-radius: 0% 10%;
}

/*--------------------------------------------------------------
# Header Social Links 34b7a7
--------------------------------------------------------------*/
.header-social-links {
  padding-right: 15px;
}

.header-social-links a {
  color: #000000;
  padding-left: 6px;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
}

.header-social-links a:hover {
  color: #FFDC0D;
}
.scrolled{
  color: #000000 !important;
  background-color: #fff !important;
  transition: background-color 200ms linear;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 17px;
  background-color: #FFFFFF;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  background-color: #FFDC0D;
  visibility: visible;
  width: 30px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
 color: #FFDC0D;
 text-decoration: none;
}


/*-------------------------------------------------------------
#TOPO
--------------------------------------------------------------*/

.typeTop {
  width: 65px;
  display: inline-block;

}
.typeTop span {
  border-bottom: 1px solid black;
}
.topoBg {
  background: url('../img/wilzyIcons.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}
/*.topoBg {
  background: url('../img/wilzyVendas.png') no-repeat;
  background-color: #000000;
  background-size: 400px;
  background-position: right bottom;
}
*/
/*---------------------------------------------------------------
#CONTEUDO
---------------------------------------------------------------*/

.cardBonus {
  padding: 20px;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #000000;
  cursor: pointer;
}

.cardBonus:hover {
  background-color: #6D3EFF;
  color: #FFFFFF;
  animation: fadeBonus 0.5s ease-in-out;
}


@keyframes fadeBonus {
  0% {
    background-color: #FFFFFF;
    color: #000000;
  }
  100%{
   background-color: #6D3EFF;
   color: #FFFFFF;
 }

}

.cardAulas {
  padding: 20px;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #000000;
  min-height: 350px;
  cursor: pointer;
  margin-top: 50px;
}

@keyframes slideUp {
  0% {
    background-color: #FFFFFF;
    margin-top: 50px;
    color: #000000;
  }
  100%{
    background-color: #6D3EFF;
    margin-top: 30px;
    color: #FFFFFF;
  }

}

.cardAulas:hover {
  background-color: #6D3EFF;
  margin-top: 30px;
  color: #FFFFFF;
  animation: slideUp 0.5s ease-in-out;
}

.aulaIconW {
  color: #000000;
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
  border: 2px dotted #000000;
  transition: border-color 0.5s, color 0.5s;
}
.aulaIcon {
  color: #FFDC0D;
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
  border: 2px dotted #FFDC0D;
  transition: border-color 0.5s, color 0.5s;
}
.cardAulas:hover .aulaIcon, .cardBonus:hover .aulaIconW{
  color: #FFFFFF;
  border: 2px dotted #FFFFFF;
}

.boxData {
  border-radius: 5px;
  border: 2px solid #FFDC0D;
}
.boxDataW {
  border-radius: 5px;
  border: 2px solid #FFFFFF;
}

.cardBSize {
  width: 50%;
  height: 250px;
}

.cardAulasB {
  position: relative;
  padding: 20px;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0);
  color: #FFFFFF;
  cursor: pointer;
  border-left: 2px solid #FFDC0D;
  z-index: 500;
}
.cardAulasB:hover{
 color: #000000;
}
.cardAulasB:hover .aulaIcon{
  color: #000000;
  border: 3px dotted #000000;
}
.cardAulasB:before {
 content: "";
 position: absolute;
 width: 0px;
 height: 350px;
 top: 0px;
 left: 0px;
 z-index: -1;
 background-color: #FFDC0D;
 transition: background 0.3s ease-in-out 0s;
}

.cardAulasB:hover:before {
  animation: slideLeft 0.5s ease-in-out;
  color: #FFFFFF;
  width: 100%;
}

/*--------------------------------------------------------------
# INSCRICAO
--------------------------------------------------------------*/

.cardQuemB { 
  cursor: pointer;
  height: 200px;
  width: 300px;
  background-color: #FFFFFF;
}

.bottomLine {
  position: relative;
}

.cardQuemB:hover { 
  margin-top: -40px;
  animation: upCard 0.3s ease-in-out;
}
.cardQuemB:hover .quemIcon {
  background-color: rgba(255, 220, 13, 1);
  color: #FFFFFF;
  transition: background-color 0.5s ease-in-out;
}

.bottomLine:before {
 content: "";
 position: absolute;
 width: 50px;
 height: 4px;
 bottom: 0px;
 left: 0px;
 background-color: #FFDC0D;
 visibility: visible;
}
.bottomLine:hover:before{
  width: 100%;
  animation: changeCard 0.4s ease-in 0s;
}

.quemIcon {
  padding: 10px 20px 10px 20px;
  border-radius: 25%;
  background-color: rgba(255, 220, 13, 0.2);
}


@keyframes changeCard {
  0% {
    width: 50px;
  }

  100% {
    width: 100%;
  }
}

@keyframes upCard {
  0% {
    margin-top: 0px;
  }

  100% {
    margin-top: -40px;
  }
}
/*--------------------------------------------------------------
# INSCRICAO
--------------------------------------------------------------*/

.cardVenda {
  padding: 20px;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #000000;
  box-shadow: 0px 0px 10px #949494;
}
.cardVideo iframe{
  padding: 1rem;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #000000;
  box-shadow: 0px 0px 10px #949494;
}

.cardInscricao {
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
  max-width: 800px;
  min-height: 450px;
  margin-top: 50px;
  box-shadow: 0px 0px 10px #949494;
}
.cardInscricao .row {
  margin: 0px auto;
}
.cardInscricaoB {
  color: #000000;
  margin-top: 30px;
}
.imgCardInB {
  width: 40%;
  z-index: -1;
}
.imgCardInB img{
  transform: scaleX(-1);
}
.bgCardInscricaoB {
  z-index: 10;
  background: url("../img/bgInB.png") no-repeat;
  background-position: left 300px top;
  background-size: cover;
}

.inputForm {
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  height: 40px;
  border: none;
  color: #FFF;
}
.inputForm:focus {
  box-shadow: none;
  border: none;
  outline: none;
}
.lineInput {
  border-radius: 10px;
  height: 2px;
  width: 25rem;
  background-color: #949494;
  overflow: hidden;
}

.lineInputNome {
  margin-left: 6rem;
}
.lineInputTelefone {
  margin-left: 7.5rem;
  width: 23.5rem;
}

.inputForm:focus + .lineInput div{
  height: 5px;
  background-color: #FFDC0D;
  animation: slideLeft 0.5s ease-in-out;
}

.inputForm:focus + .lineInputB div{
  height: 2px;
  background-color: #000000;
  animation: slideLeft 0.5s ease-in-out;
}

@keyframes slideLeft{
  0% {width: 0%}
  100% {width: 100%}
}


.valor {
  position: relative;
  width: 200px;
}
.valorParc {
  padding-left: 20px;
}
.mesParc {
  position: absolute;
  bottom: 10px;
  right: 30px;
  font-size: 0.75rem;
}
.centParc {
  position: absolute;
  top: 10px;
  right: 45px;
  font-size: 0.75rem;
}
.centAv {
  position: absolute;
  top: 10px;
  right: 45px;
  font-size: 0.75rem;
}
.mesParcCl {
  position: absolute;
  bottom: 10px;
  right: 50px;
  font-size: 0.75rem;
}
.centParcCl {
  position: absolute;
  top: 10px;
  right: 60px;
  font-size: 0.75rem;
}
.mesAvCl {
  position: absolute;
  bottom: 10px;
  right: 40px;
  font-size: 0.75rem;
}
.centAvCl {
  position: absolute;
  top: 10px;
  right: 55px;
  font-size: 0.75rem;
}
.mesAv {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 0.75rem;
}

.mesAvE {
  position: absolute;
  bottom: 10px;
  right: 40px;
  font-size: 0.75rem;
}
.centAvE {
  position: absolute;
  top: 10px;
  right: 65px;
  font-size: 0.75rem;
}
.valorRiscar {
  position: relative;
  display: inline-block;
  overflow: hidden;
  top: 10px;
}
.riscadoAnime {
  position: absolute;
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  background-color: #FFDC0D;
}

.overY {
  cursor: pointer;
  transition: all 500 ease-in-out;
}
.overY:hover {
  color: #FFDC0D;
}

/*--------------------------------------------------------------
# SOBRE
--------------------------------------------------------------*/


.boxFoto {
  padding: 15px 15px 15px 15px ;

  background-color: #FFDC0D;
}
.boxImg {
 position: relative;
 background-color: #FFFFFF;
}
.socialIcons {
  padding: 1rem 1rem 1rem 1rem ;

  top: 25px;
  left: -1rem;
}
.socialIcons a {
  display: inline-block;
  background-color: #FFFFFF;
  width: 40px;
  height: 40px;
}

.sobreB {
  min-height: 500px;
}
.imgSobreB {
  position: relative;
}
.imgSobreB  div {
  position: absolute;
  width: 250px;
  height: 250px;
  overflow: hidden;
}
.imgSobreB  .sobreImg1{
 background: url("../img/culto3.jpg");
 background-size: cover;
 background-position: center;
 top: 0px;
 left: 0px;
}
.imgSobreB  .sobreImg2{
 background: url("../img/wilzycelula.jpg");
 background-size: cover;
 background-position: center;
 top: 125px;
 left: 125px;
}

/*--------------------------------------------------------------
# Testemunhos
--------------------------------------------------------------*/

.carousel-item {
  overflow: hidden;
  
}
.carousel-item img {
  width: 100%;
}

/*--------------------------------------------------------------
# Certify
--------------------------------------------------------------*/


.certifyText {
  width: 70%;
}


/********* PG ESPERA ****************/

.imgBlack {
  z-index: 500;
}
.pgBlackFriday {
  background-color: #252228 !important;
}

.titleBlack {
  font-size: 3rem;
  position: relative;
}
.subtitleBlack2 {
  position: absolute;
  left: -4rem;
  top: 3rem;
  border: 3px solid #FFFFFF;
  padding-left: 2.1rem;
  padding-right: 1.2rem;
}
.tagBlack2 {
  position: absolute;
  left: -7rem;
  top: 0;
  width: 80px;
}
.subtitleBlack {
  position: absolute;
  left: 1rem;
  top: 4rem;
  border: 3px solid #FFFFFF;
  padding-left: 2.1rem;
  padding-right: 1.2rem;
}
.tagBlack {
  position: absolute;
  left: -2rem;
  top: 1rem;
  width: 80px;
}

.dataBoxBlack {
  border: 3px solid #FFFFFF;
  background-color: #252228 !important;
  position: relative;
  z-index: 1000;
}
.dataBoxBlack:before {
  content: "";
  position: absolute;
  border: #B1B1B1 2px solid;
  top: 2.5rem;
  left: 4rem;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.boxCountDown {
  width: 80px;
  line-height: 2rem;
}
.btnWppBlack {
  background-color: #7ED957;
  border-radius: 25px;
  position: relative;
  z-index: 10;
}
.btnWppBlack img {
  height: 100%;
  position: absolute;
  top: 0;
  left: -1rem;
}
.btnWppBlack:before {
  position: absolute;
  top: 50%;
  left: -2000px;
  content: "";
  width: 10000px;
  height: 1px;
  background-color: #7ED957;
  z-index: -1;
}











/*--------------------------------------------------------------
# PG ROTEIROS
--------------------------------------------------------------*/


#topoRoteiros {
  position: relative;
  min-height: 80vh;
  background-position: center;
  background-size: cover;
}
#topoRoteiros:before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80vh;
  background: url('../img/wilzyFundo.jpg') no-repeat;
  background-position: top right;
  background-size: cover;
  z-index: -1;
}


.cardTopoRoteiros {
  max-width: 30rem;
  background-color: rgba(254, 255, 234, 0.6);
  border-radius: 25px;
}




/*********************************************************************


# NEW


******************************************************/

#topoNew {
  background: url('../img/wilzyFundo.jpg') no-repeat;
  background-position: top right;
  background-size: cover;
}
.abaLeft {
  border-radius: 0 25px 25px 0;
}
.handImage {
  position: relative;
}
.handImageZ {
  position: relative;
  z-index: 5000 !important;
  width: 100%;
}
.handImage:before {
  position: absolute;
  content: "";
  top: -20%;
  right: 0;
  width: 320px;
  height: 320px;
  background-color: #db642a;
  border-radius: 50%;
  z-index: 0;
}
.handImageProv {
  position: relative;
}
.handImageProvZ {
  position: relative;
  z-index: 5000 !important;
  width: 250px;
}
.handImageProv:before {
  position: absolute;
  content: "";
  top: -15%;
  right: 0;
  width: 250px;
  height: 250px;
  background-color: #db642a;
  border-radius: 50%;
  z-index: 0;
}
.titleUnder {
  text-decoration: underline #FFF 3px;
}
.educationImg {
  position: relative;
}
.educationImg img {
  position: relative;
  z-index: 5000 !important;
}
.educationImg:before{
  position: absolute;
  content: "";
  top: 40%;
  right: 0%;
  width: 150px;
  height: 150px;
  background-color: #f8bc2c;
  border-radius: 50%;
  z-index: 0;
}
.educationImg:after{
  position: absolute;
  content: "";
  top: 0%;
  right: 70%;
  width: 50px;
  height: 50px;
  background-color: #f8bc2c;
  border-radius: 50%;
  z-index: 0;
}
.oportunidade {
  background: url('../img/bolinhas.png') no-repeat;
  background-position: right top 25%;
  background-size: 150px;
  height: auto;
}
.imgSobre {
  position: relative;
}
.imgSobre img {
  position: relative;
  z-index: 5000 !important;
}
.imgSobre:before{
  position: absolute;
  content: "";
  top: 20%;
  right: 0;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #f8bc2c;
  border-radius: 50%;
  z-index: 0;
}
.girar15 {
  transform: rotate(15deg);
  width: 250px;
}
.girar15n {
  transform: rotate(-15deg);
  width: 250px;
}
.imgSobreKidsFlix {
  position: relative;
}
.imgSobreKidsFlix img {
  position: relative;
  z-index: 5000 !important;
}
.imgSobreKidsFlix:before{
  position: absolute;
  content: "";
  top: 20%;
  right: -10%;
  width: 110%;
  aspect-ratio: 1/1;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 0;
}

.inverter {
  filter: brightness(100);
}






/******************AULAS*********************************************/

.topoAulas {
 background: url('../img/topoAulas.jpg') no-repeat;
 background-position: bottom center;
 background-size: cover;
 width: 100%;
 aspect-ratio: 16/9;
}





/* Pulsating Play Button carousel-image
------------------------------*/
.videoFlix {
  position: relative;
  float: left;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform .6s ease-in-out;
}
.imgFlix {
  object-fit: cover;
  object-position: left;
}
.tagFlix {
  position: absolute;
  bottom: 10%;
  left: 0;
  background-color: rgba(255, 0, 0, 0.7);
}

.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#FF0000 50%, color-mix(in srgb, #FF0000, transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index:  500 !important;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, #FF0000, transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
  cursor: pointer;
  z-index:  500 !important;
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 1000 !important;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  cursor: pointer;
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 2000 !important;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid #FF0000;
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}




/*------------------------PAGINA DE VENDAS---------------------------------*/
#topoVenda {
  background: url('../img/vendas/fundoTopo.png?123') #f7be29 no-repeat;
  background-position: bottom center;
  background-size: cover;
}
.imgTopoVenda {
  position: relative;
}
.lapisTopo, .lampadaTopo {
  position: absolute;
  z-index: 1000;
  border-radius: 50%;
  aspect-ratio: 1;
  height: 150px;
  padding: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(15deg);
}
.lapisTopo {
  bottom: 1rem;
  left: -5rem;
  width: 160px;
}
.lampadaTopo {
  top: -2rem;
  right: -5rem;
  width: 150px;
}

#secondeVenda {
  background: url('../img/vendas/estrelaRoxa.png?123') #ffdffa no-repeat;
  background-position: bottom left;
  background-size: 350px;
}
.imgEsAz, .imgEsLa{
  width: 300px;
  position: relative;
}
.EsAz, .EsLa{
  position: absolute;
  top: -1.3rem;
  width: 60px;
}
.EsAz {
  left: -2rem;
}
.EsLa{
  right: -1rem;
}
.EsAzB {
 position: absolute;
 bottom: -1.3rem;
 width: 60px;
 left: -2rem;
} 


#novidade, #bonus {
  position: relative;
  width: 100%;
}
.fundoNovidade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.baseNovidade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.recuoTopBonus {
  margin-top: -2.5rem;
}
.bgLinha {
 background: url('../img/vendas/linha.png');
 background-repeat: repeat-x;
 background-position: top 30px center;
 background-size: 30px;
}
#investimento {
  background: url('../img/vendas/linha.png') #ffdffa;
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 30px;
}

#videoVendas {
  background: url('../img/vendas/bgVideo.jpg') #FFFFFF no-repeat;
  background-position: center;
  background-size: cover;
}
#sobreVendas {
  background: url('../img/vendas/bgSobre.jpg') #FFFFFF no-repeat;
  background-position: center center;
  background-size: contain;  
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# BLACKFRIDAY PG VENDA
--------------------------------------------------------------*/

#topoBlack {
  background-color: #3a0ca3;
}
.fotoTopoBlack img{
  background-color: #7209b7;
  border-radius: 15%;
}
#valorBlack {
  background-color: #d1d2d6;
}
#viverBlack {
  background-color: #f5eeff;
}
#bottomBlack {
  background: url('../img/black/bottom.jpg?123') no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 500px;
}
/*--------------------------------------------------------------
# PAGINA Ebooks
--------------------------------------------------------------*/


#ebooksTopo {
  min-height: 25vh;
  background-color: #e1efff;
}
#ebooksAtencao {
  min-height: 25vh;
  background-color: #f1b876;
}
#ebooksReceber {
  min-height: 25vh;
  background-color: #f4d27a;
}
#ebooksBeneficios {
  min-height: 25vh;
  background-color: #e1efff;
}
#ebooksOferta {
  min-height: 25vh;
  background-color: #fef3ea;
}
#ebooksQuem {
  min-height: 25vh;
  background-color: #608ac7;
}

.divBible {
  position: relative;
}
.bibleSobre {
  position: absolute;
  bottom: -50px;
  right: -50px;
}


/*--------------------------------------------------------------
# RESIZE
--------------------------------------------------------------*/


@media (max-width: 520px) {

  .titleBlack {
    font-size: 2rem;
  }
  .subtitleBlack {
    padding-left: 1.2rem;
    padding-right: 1rem;
  }
  .dataBoxBlack {
   margin-top: 3rem;
 }
}
@media (max-width:1020px){
  .textTopBlack div{
    padding-left: 3rem;
  }
}
@media (max-width: 992px) {
  .linhaSub:after {
    width: 10rem;
    height: 75px;
    top: -0.5rem;
    left: -1rem;
  }
  .linhaStarInvert:after {
    top: -5px;
    left: -25px;
  }
  .centParc {
    position: absolute;
    top: 10px;
    right: 5rem;
    font-size: 0.75rem;
  }
  .centAv {
    position: absolute;
    top: 10px;
    right: 5.5rem;
    font-size: 0.75rem;
  }
  #header {
    margin-top: 0px;
  }
  .navbar ul {
    display: none;
  }
  .topoBg {
    background: url('../img/celula1.jpg') no-repeat;
    background-size: cover;
    background-position: top center;
  }
  .bgCardInscricaoB {
    z-index: 10;
    background: url("../img/bgInB.png") no-repeat;
    background-position: left top;
    background-size: cover;
  }
  .imgCardInB {
    width: 30%;
    z-index: 50;
  }

}
@media (max-width: 860px) {
  .imgCardInB {
    width: 25%;
    z-index: 50;
  }
}
@media (max-width: 920px) {
  .dataBoxBlack:before {
    height: 0px;
  }
}

@media (max-width: 819px) {
  .modulosCelulas {
    width: 100%;
  }
  .wilzyBlack{
    display: none;
  }
  .certifyText {
    width: 75%;
  }
  .btnWppBlack img {
    display: none;
  }
  .inputForm {
    width: 80%;
    height: 40px;
    border: none;
  }

  .bgCardInscricaoB {
    z-index: 10;
    background: url("../img/bgInB.png") no-repeat;
    background-position: center;
    background-size: 600%;
  }
  .imgCardInB {
    text-align: center;
    width: 100%;
    z-index: 50;
  }
  .imgCardInB img{
    width: 50%;
  }
  .inputForm{
    margin-left: 10%;
    margin-right: 10%;
  }
  .scrollBtnTop {
    display: none !important;
  }
}
@media (max-width: 480px) {

  .topoAulas {
    background-size: cover;
    aspect-ratio:auto;
  }

  .lapisTopo {
    bottom: 2rem;
    left: -5rem;
    width: 160px;
  }
  .boxCountDown {
    width: 50%;
    line-height: 2rem;
  }
  .certifyText {
    width: 100%;
  }
  .imgSobreB  div {
    position: absolute;
    width: 200px;
    height: 200px;
    overflow: hidden;
  }

  .topoBgVenda img{
   width: 660px;
   height: 700px;
 }
}