
/*--------------------------------------------------------------
# Geral Sta Clara
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #000000;
}

a {
  color: #0784BE;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button - botão vai ao topo
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.back-to-top:hover {
  background: #245BB4;
  color: #ffffff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------
era background: linear-gradient(rgba(0,0,160,1.00), rgba(0,0,160,0.50))
*/
#header {
  z-index: 997;
  padding: 5px 0;
  background: rgba(0,0,160,1.00);
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(73,127,221,0.50); /* cor barra menu scrooll */
}

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

#header .logo a {
  color: none;
}

#header .logo img {
  max-width: 95%;  /* largura máx do logo */
  max-height: 70px;  /* altura máx do logo */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 1px;
}

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

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 4px 3px 4px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
   color: #25245D;   /* cor da letra do botao do menu geral*/
  background: #47b2e4;  /* cor do botao do menu geral */
  border-radius: 30px;
}

.navbar .getstarted {
  padding: 5px 10px;
  margin-left: 30px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #fff;
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 10px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 3px 2px 3px 2px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: auto;         /* largura caixa sub-menu 180px ou auto ou 200 px*/
}

.navbar .dropdown ul a {
  padding: 3px 2px 3px 2px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 14px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #25245D;   /* cor da letra do botao da lista menu */
  background: #47b2e4;  /* cor do botao da lista do menu */
  border-radius: 20px;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}


/**  ================= Mobile Navigation celular   =============  */
.mobile-nav-toggle {
    top: 5px;
  color: #ffffff;
  font-size: 35px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {    /* cor do x do menu geral no celular */
  color: #000000;
    top: 2px;
	 right: 15px;
	font-size: 40px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
	
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 20px;
	font-size: 18px;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0,0,160,1.00);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 30px;
  right: 10px;
}

.navbar-mobile ul {  /* menu celular */
  display: block;
  position: absolute;
	font-size: 18px;
  top: 35px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 15px 5px 5px 10px;
  border-radius: 20px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 15px 5px 5px 10px;
  font-size: 18px;
  color: #37517e;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #25245D;   /* cor da letra do botao do menu geral*/
  background: #47b2e4;  /* cor do botao do menu geral */
	border-radius: 20px;
	 font-size: 19px;
	 left: 10px;
	 padding: 10px 5px 5px 10px;
}

.navbar-mobile .getstarted {
  margin: 15px;
	padding: 5px 15px 5px 15px;
	font-size: 18px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {     /* sub-menu celular */
  position: static;
  display: none;
	font-size: 22px;
  margin: 5px 5px 5px 5px;
  padding: 5px 5px 5px 5px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #E5FAFB;
  box-shadow: 5px 5px 5px 5px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: auto;
	font-size: 18px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 10px;
	font-size: 18px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 18px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #25245D;   /* cor da letra do botao da lista menu */
  background: #47b2e4;  /* cor do botao da lista do menu */
  border-radius: 20px;
	font-size: 19px;
	 left: 15px;
	 padding: 5px 5px 5px 5px;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
	font-size: 19px;
	padding: 5px 5px 5px 5px;
}


/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
#home {
  width: 100%;
  height: 86vh;  /* era 80 espaço para imagem banner pg*/
  background: linear-gradient(rgba(0,0,160,1.00), rgba(162,243,246,0.60));
}

#home .container {
  padding-top: 20px; /*  era 72*/
}

#home h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  color: #ffffff;
}

#home h2 {
  color: rgba(248,251,254,1.00);
  margin-bottom: 5px;
  font-size: 20px;
}

#home .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 30px; /* era 50 */
  margin: 5px 0 0 0;
  color: #ffffff;
  background: #209dd8;
	 border: 1px solid #25245D;
}

#home .btn-get-started:hover {
  background: #25245D;
	color: #ffffff;
		 border: 1px solid #209dd8;
}

#home .btn-watch-video {
  font-size: 16px;
  display:flex;
  align-items: center;
  margin: 2px 4px 2px 2px;
	padding: 1px 5px 1px 1px;
  color: #25245D;
  line-height: 1;
}

#home .btn-watch-video:hover {
  font-size: 16px;
  display:flex;
  align-items: center;
  margin: 2px 4px 2px 2px;
	padding: 1px 10px 1px 1px;
  color: #0B26A8;
  background-color: #8DF0F0;
  line-height: 1;
}

#home .btn-watch-video i {
  line-height: 0;
  color: #0B2FC1;
  font-size: 30px;
  margin-right: 4px;
}

#home .btn-watch-video:hover i {
  color: #047CB5;
	padding: 1px 1px 1px 10px;
}

#home .animated {
  animation: up-down 0.5s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #home {
    height: 90vh;
    text-align: center;
  }
  #home .animated {
    -webkit-animation: none;
    animation: none;
  }
  #home .home-img {
    text-align: center;
  }
  #home .home-img img {
    width: 95%; /* mexi aqui era 55 */
  }
}

@media (max-width: 768px) {
  #home h1 {
    font-size: 40px;
    line-height: 30px;
  }
  #home h2 {
    font-size: 30px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  #home .home-img img {
    width: 95%;
  }
}

@media (max-width: 575px) {
  #home .home-img img {
    width: 95%;
  }
  #home .btn-get-started {
    font-size: 30px;
	 color: #25245D;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}


/*--------------------------------------------------------------
# Secçoes Gerais
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #BEEBF9; /* cor do fundo das páginas internas */
}

.section-title {
  text-align: center;
    padding-top: 15px;
    border-radius: 20px; /* bordas cantos arredondados dos títulos */	
  padding-bottom: 15px;
  background: linear-gradient(rgba(5,26,148,0.88), rgba(180,245,248,0.66));  /* cor do fundo dos títulos */	
 }

.section-title h2 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
    padding-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  color: #FFFFFF;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.btn-acontece {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 20px;
  margin: 1px 0 0 0;
  color: #25245D;
  background: #ffffff;
	border: 2px solid rgba(95,134,230,0.62);
	padding: 1px 10px 0 20px;
    width: auto;
}

.btn-acontece:hover {
  background: #209dd8;
  color: #ffffff;
	border: 0px solid #25245D;
	width: auto;
}


.btn-watch-video {
  font-size: 16px;
  display:inline-block;
  align-items: center;
vertical-align:middle;
     margin: 1px 10px 1px 5px;
	padding: 1px 10px 1px 5px;
  color: #25245D;
  line-height: 1;
	border: 1px solid #25245D;
	border-radius: 20px;
	 transition: 0.5s;
}

.btn-watch-video:hover {
  font-size: 16px;
  display:inline-block;
  align-items: center;
     margin: 1px 10px 1px 5px;
	padding: 1px 10px 1px 5px;
  color: #0B26A8;
  background-color: #8DF0F0;
  line-height: 1;
}

.btn-watch-video i {
  line-height: 1;
  color: #0B2FC1;
  font-size: 30px;
  margin-right: 4px;
  vertical-align:middle;
}

.btn-watch-video:hover i {
  color: #047CB5;
	padding: 0 0 0 2px;
	 transition: 0.3s;
}



/*--------------------------------------------------------------
# Imagens destaques - 4 img após banners inicial
--------------------------------------------------------------*/
.imagens {
  padding: 10px 0;
  text-align: center;
}

.imagens img {
  max-width: 80%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  border-radius: 20px;
  padding: 15px 0;
/*  filter: grayscale(100);  entra cinza e ao passar mouse fica colorido */
}

.imagens img:hover {
  filter: none;
  transform: scale(1.3);  /* aplica zoom ao passar o mouse nas imagens */
}

@media (max-width: 768px) {
  .imagens img {
    max-width: 99%;
  }
}


.imagens .content .btn-leia-mais {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 2px 10px 2px 10px;
  border-radius: 20px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
	width: auto;
}

.imagens .content .btn-leia-mais:hover {
  background: #0479B0;
  color: #ffffff;
  text-decoration: none;
	padding: 2px 10px 2px 10px;
	width: auto;
}


/*--------------------------------------------------------------
# Sobre nós ou quem somos
--------------------------------------------------------------*/
.sobre .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.sobre .content ul {
  list-style: none;
  padding: 0;
}

.sobre .content ul li {
  padding-left: 28px;
  position: relative;
}

.sobre .content ul li + li {
  margin-top: 10px;
}

.sobre .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.sobre .content p:last-child {
  margin-bottom: 0;
}

.sobre .content .btn-leia-mais {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px 5px 15px;
  border-radius: 50px;
  margin: 1px 0 0 0;
  color: #ffffff;
  background: #209dd8;
    width: auto;
}

.sobre .content .btn-leia-mais:hover {
  background: #25245D;
  color: #ffffff;
  border: 2px solid #47b2e4;
}

/*--------------------------------------------------------------
# Perguntas
--------------------------------------------------------------*/
.perguntas .content {
  padding: 20px 10px 0 20px;
	background: #FAFBDF;  /* cor background */
}

.perguntas .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.perguntas .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.perguntas .content p {
  font-size: 15px;
  color: #3E3C3C;
}

.perguntas .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.perguntas .accordion-list {
  padding: 20px 10px 30px 10px;
	background: #FAFBDF; /* cor background */
}

.perguntas .accordion-list ul {
  padding: 0;
  list-style: none;
}

.perguntas .accordion-list li + li {
  margin-top: 15px;
}

.perguntas .accordion-list li {
  padding: 20px;
  background: #ffffff;
  border-radius: 4px;
}

.perguntas .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}


.perguntas .accordion-list .btn-leia-mais {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px 5px 15px;
  border-radius: 50px;
  margin: 1px 0 0 0;
  color: #ffffff;
  background: #209dd8;
    width: auto;
}

.perguntas .accordion-list .btn-leia-mais:hover {
  background: #25245D;
  color: #ffffff;
  border: 2px solid #47b2e4;
	border: 2px solid #47b2e4;
	width: auto;
}

.perguntas .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.perguntas .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.perguntas .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.perguntas .accordion-list .icon-show {
  display: none;
}

.perguntas .accordion-list a.collapsed {
  color: #343a40;
		          
}

.perguntas .accordion-list a.collapsed:hover {
  color: #47b2e4;
}

.perguntas .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.perguntas .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .perguntas .content, .perguntas .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .perguntas .img {
    min-height: 400px;
  }
  .perguntas .content {
    padding-top: 30px;
  }
  .perguntas .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .perguntas .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills Barras
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #4668a2;
}
/*--------------------------------------------------------------
# Cursos
--------------------------------------------------------------*/
.cursos .icon-box {
  box-shadow: 1px 5px 10px -1px rgba(0, 0, 0, 0.6);
  padding: 20px 15px;
  transition: all ease-in-out 0.4s;
  background: #fff;
	border-radius: 15px;
}

.cursos .icon-box .icon {
  margin-bottom: 10px;
}

.cursos .icon-box .icon i {
  color: #47b2e4;
  font-size: 22px;
  transition: 0.3s;
}

.cursos .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 22px;
}

.cursos .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.cursos .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.cursos .icon-box:hover {
  transform: translateY(-10px);
}

.cursos .icon-box:hover h4 a {
  color: #47b2e4;
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner {
  background: linear-gradient(rgba(90,125,181,0.50), rgba(40, 58, 90, 0.7)), url("../institucional/img/frente_livi456.png") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.banner h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.banner p {
  color: #fff;
}

.banner .banner-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.3s;
  margin: 10px;
  border: 2px solid #ffffff;
  color: #fff;
}

.banner .banner-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
  .banner {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .banner .banner-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
    margin: 2px 2px 2px 2px;
	padding: 3px 5px 3px 5px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 2px 1px 2px 1px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  padding: 3px 5px 3px 5px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
	background: #B0DDF7;
    border: 1px solid #25245D;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #25245D;
   font-size: 14px;
   color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
	border-radius: 10px;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.5s;
	border-radius: 10px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 10px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 10px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
	border-radius: 10px;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
	border-radius: 10px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 20px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
	border-radius: 10px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 10px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
  padding: 5px 1px 1px 5px;
  box-shadow: 0 0 10px 0 rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 5px;
}

.portfolio-details .portfolio-description {
  padding-top: 10px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Conexao
--------------------------------------------------------------*/
.conexao .member {
  position: relative;
  box-shadow: 1px 10px 10px -1px rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 20px;
  background: #ffffff;
  transition: 2s;
	border-radius: 20px;
}

.conexao .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.conexao .pic img {
  border-radius: 5%;
}
.conexao .member .pic img {
  transition: ease-in-out 0.5s;
}

.conexao .member .pic img:hover {
  transition: ease-in-out 0.5s;
  transform: scale(1.5);
}

.conexao .member:hover {
  transform: translateY(-10px);
}

.conexao .member .member-info {
  padding-left: 20px;
}

.conexao .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #25245D;
}

.conexao .member span {
  display: block;
  font-size: 16px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.conexao .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 5px;
  background: rgba(165,193,246,0.38);
  bottom: 0;
}

.conexao .member p {
  margin: 10px 0 0 0;
  font-size: 16px;
}

.conexao .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.conexao .member .social a {
  transition: ease-in-out 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.conexao .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.conexao .member .social a:hover {
  background: #47b2e4;
}

.conexao .member .social a:hover i {
  color: #fff;
}

.conexao .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Incrições
--------------------------------------------------------------*/
.inscricoes .row {
  padding-top: 40px;
}

.inscricoes .box {
  padding: 40px 20px;
  box-shadow: 0 15px 10px -2px rgba(20, 45, 100, 0.7);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 20px;
}

.inscricoes h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}

.inscricoes h4 {
  font-size: 30px;
  color: #37517e;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 20px;
}

.inscricoes h4 sup {
  font-size: 28px;
}

.inscricoes h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}

.inscricoes ul {
  padding: 10px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.inscricoes ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.inscricoes ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.inscricoes ul .na {
  color: #ccc;
}

.inscricoes ul .na i {
  color: #ccc;
}

.inscricoes ul .na span {
  text-decoration: line-through;
}

.inscricoes .buy-btn {
  font-family: "Jost", sans-serif;
  display: inline-block;
  padding: 3px 10px 3px 10px;
  border-radius: 50px;
  background: #47b2e4;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid #47b2e4;
	width: auto;
}

.inscricoes .buy-btn:hover {
  background: #47b2e4;
  color: #25245D;
	padding: 3px 15px 3px 15px;
	border: 2px solid #47b2e4;
	width: auto;
}

.inscricoes .featured {
  border-top-color: #47b2e4;
}

.inscricoes .featured .buy-btn {
  background: #47b2e4;
  color: #fff;
	padding: 5px 15px 5px 15px;
}

.inscricoes .featured .buy-btn:hover {
  background: #23a3df;
	padding: 5px 15px 5px 15px;
}

@media (max-width: 992px) {
  .inscricoes .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .inscricoes .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .inscricoes .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Guias das páginas e questoes parte de baixo do site
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 50px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .btn-leia-mais {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px 5px 15px;
  border-radius: 50px;
  margin: 1px 0 0 0;
  color: #ffffff;
  background: #209dd8;
    width: auto;
}

.faq .faq-list .btn-leia-mais:hover {
  background: #25245D;
  color: #ffffff;
  border: 2px solid #47b2e4;
}


.faq .faq-list .btn-link {
  text-decoration: none;
  display: inline-block;
  padding: 0 2px;
  color: #209dd8;
}

.faq .faq-list .btn-link:hover {
  text-decoration: underline;
  color: #25245D;
}

.faq .faq-list .btn-get {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  letter-spacing: 1px;
  padding: 3px 25px 1px 25px;
  border-radius: 30px;
  margin: 2px 1px 2px 1px;
  border-bottom: 2px solid #25245D;
  color: #fff;
  background: #25245D;
	width: auto;
}

.faq .faq-list .btn-get:hover {
  background: #209dd8;
  font-size: 15px;
  color: #fff;
	padding: 1px 22px 3px 22px;
}

.faq .faq-list .btn-saida {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  letter-spacing: 1px;
  padding: 2px 15px 2px 15px;
  border-radius: 30px;
  margin: 1px 2px 1px 2px;
  border-bottom: 2px solid #209dd8;
  color: #fff;
  background: #209dd8;
	width: auto;
}

.faq .faq-list .btn-saida:hover {
  background: #25245D;
  font-size: 14px;
  color: #fff;
	padding: 1px 14px 1px 17px;
}

.faq .faq-list .btn-whats {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
   display: inline-block;
  letter-spacing: 1px;
  padding: 1px 3px 1px 3px;
  border-radius: 30px;
  color: #ffffff;
	 align-content: center;
	border: 2px solid #00CE17;
	text-align: center;
    background: #00CE17;
	width: auto;
}

.faq .faq-list .btn-whats:hover {
  background: #006F0C;
  color: #ffffff;
}


.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-book {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #5A8CEA;
}

.faq .faq-list .icon-book-open {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #5A8CEA;
}

.faq .faq-list .icon-list-plus {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #5A8CEA;
}

.faq .faq-list .icon-zoom-in {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #5A8CEA;
}

.faq .faq-list .icon-zoom-out {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #5A8CEA;
}

.faq .faq-list .icon-plus {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #5A8CEA;
}

.faq .faq-list .icon-minus {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #5A8CEA;
}

.faq .faq-list .icon-plus-circle {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #5A8CEA;
}

.faq .faq-list .icon-minus-circle {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #5A8CEA;
}


.faq .faq-list .icon-check-circle {
  font-size: 24px;
  position: absolute;
  padding: 0px 10px 0 5px;
  color: #5A8CEA;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 5px 0 5px 0;  /* era 10px cima */
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}	

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contato
--------------------------------------------------------------*/
.contato .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contato .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contato .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contato .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contato .info .email p {
  padding-top: 5px;
}

.contato .info .social-links {
  padding-left: 60px;
}

.contato .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contato .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contato .info .email:hover i, .contato .info .address:hover i, .contato .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.contato .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contato .php-email-form .form-group {
  padding-bottom: 8px;
}

.contato .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contato .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contato .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contato .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contato .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contato .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contato .php-email-form .form-group {
  margin-bottom: 20px;
}

.contato .php-email-form label {
  padding-bottom: 8px;
}

.contato .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contato .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contato .php-email-form input {
  height: 44px;
}

.contato .php-email-form textarea {
  padding: 10px 12px;
}

.contato .php-email-form button[type="submit"] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contato .php-email-form button[type="submit"]:hover {
  background: #209dd8;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 10px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 22px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}


/*--------------------------------------------------------------
# Redes sociais
--------------------------------------------------------------*/

/* Widget do Facebook */

#facebook_div {
width: 305px;
height: 305px;
overflow: hidden;
}

/* right side style */
#facebook_right {
z-index: 999999;
border: 2px solid #1531B6;
background-color: #fff;
width: 300px;
height: 300px; 
position: fixed;
right: -305px;
}

#facebook_right img {
position: absolute;
top: -2px;
left: -45px;
}

#facebook_right iframe {
border: 0px solid #1531B6;
overflow: hidden;
position: static;
height: 300px;
left: -2px; 
top: -3px;
}

#facebook_left {
z-index: 999999;
border: 2px solid #1531B6;
background-color: #fff;
width: 300px;
height: 300px;
position: fixed;
left: -305px;
}

#facebook_left img {
position: absolute;
top: -2px;
right: -35px;
}

#facebook_left iframe {
border: 0px solid #1531B6;
overflow: hidden;
position: static;
height: 300px;
right: -2px;
top: -3px;
}



/* Widget do instagram */

#instagram_div {
width: 305px;
height: 305px;
overflow: hidden;
}
/* right side style */
#instagram_right {
z-index: 999999;
border: 2px solid #600013;
background-color: #fff;
width: 300px;
height: 300px; 
position: fixed;
right: -305px;
}

#instagram_right img {
position: absolute;
top: -2px;
left: -45px;
}
#instagram_right iframe {
border: 0px solid #600013;
overflow: hidden;
position: static;
height: 300px;
left: -2px; 
top: -3px;
}

#instagram_left {
z-index: 999999;
border: 2px solid #600013;
background-color: #fff;
width: 300px;
height: 300px;
position: fixed;
left: -305px;
}

#instagram_left img {
position: absolute;
top: -2px;
right: -35px;
}

#instagram_left iframe {
border: 0px solid #600013;
overflow: hidden;
position: static;
height: 300px;
right: -2px;
top: -3px;
}



/* usando no botão lateral  */
#menu-vertical{
  position:fixed;
  z-index:99999999; 
  right: 0px;
  top:0px;
  overflow: hidden;
	background-color: dodgerblue;
  padding:0px 20px 0px 0px;
}



/*--------------------------------------------------------------
# Footer rodape
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #25245D;
}

#footer .footer-newsletter {
  padding: 30px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 40px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 20px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #47b2e4;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #25245D;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  padding-left: .5rem;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}

.btn-leia-mais {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  letter-spacing: 1px;
  padding: 3px 15px 3px 15px;
  border-radius: 30px;
  margin: 1px 0 0 0;
  color: #ffffff;
  border: 2px solid #209dd8;
  background: #209dd8;
    width: auto;
}

.btn-leia-mais:hover {
  background: #25245D;
  color: #ffffff;
  border: 1px solid #25245D;
	width: auto;
}

.btn-get {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  letter-spacing: 1px;
  padding: 3px 10px 3px 10px;
  border-radius: 30px;
  margin: 2px 5px 2px 5px;
  color: #fff;
  background: #25245D;
	width: auto;
}

.btn-get:hover {
  background: #209dd8;
  color: #fff;
	padding: 3px 10px 3px 10px;
	border: 1px solid #47b2e4;
}

.btn-conex {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  letter-spacing: 1px;
  padding: 3px 10px 2px 10px;
  border-radius: 20px;
	border: 2px solid rgba(23,87,203,0.35);
  margin: 1px 0 0 0;
  color: #25245D;
	width: auto;
}

.btn-conex:hover {
  background: #209dd8;
  color: #ffffff;
	border: 1px solid rgba(23,87,203,0.35);
}

.btn-link {
  text-decoration: none;
  color: #196ED5;
}

.btn-link:hover {
  color: #25245D;
	text-decoration: underline;
}

.banner-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  letter-spacing: 1px;
  padding: 2px 5px 2px 5px;
  border-radius: 30px;
	border: 2px solid rgba(23,87,203,0.35);
  margin: 10px 0 0 0;
  color: #25245D;
}

.banner-btn:hover {
  background: #209dd8;
  color: #FFFFFF;
}

 .row .btn-whats {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
	 display: inline-block;
  letter-spacing: 1px;
  padding: 2px 5px 2px 5px;
  border-radius: 30px;
  color: #ffffff;
	align-content: center;
	border: 2px solid #006F0C;
	text-align: center;
    background: #006F0C;
}

.row .btn-whats:hover {
  background: #00CE17;
  border: 2px solid #00CE17;
  color: #ffffff;
}





/* ==============   efeito em textos como Paz e Bem =============== */
.cssload-loader {
	width: 315px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	position: relative;
	left: 50%;
	transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
	font-family: helvetica, arial, sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	font-size:23px;
	color: rgba(255,255,255,1.00);
	letter-spacing: 0.2em;
}
.cssload-loader::before, .cssload-loader::after {
	content: "";
	display: block;
	width: 19px;
	height: 19px;
	background: rgba(240,217,64,1.00);
	position: absolute;
	animation: cssload-load 1.75s infinite alternate ease-in-out;
		-o-animation: cssload-load 1.75s infinite alternate ease-in-out;
		-ms-animation: cssload-load 1.75s infinite alternate ease-in-out;
		-webkit-animation: cssload-load 1.75s infinite alternate ease-in-out;
		-moz-animation: cssload-load 1.75s infinite alternate ease-in-out;
}
.cssload-loader::before {
	top: 0;
}
.cssload-loader::after {
	bottom: 0;
}



@keyframes cssload-load {
	0% {
		left: 0;
		height: 38px;
		width: 19px;
	}
	50% {
		height: 10px;
		width: 50px;
	}
	100% {
		left: 294px;
		height: 38px;
		width: 19px;
	}
}

@-o-keyframes cssload-load {
	0% {
		left: 0;
		height: 38px;
		width: 19px;
	}
	50% {
		height: 10px;
		width: 50px;
	}
	100% {
		left: 294px;
		height: 38px;
		width: 19px;
	}
}

@-ms-keyframes cssload-load {
	0% {
		left: 0;
		height: 38px;
		width: 19px;
	}
	50% {
		height: 10px;
		width: 50px;
	}
	100% {
		left: 294px;
		height: 38px;
		width: 19px;
	}
}

@-webkit-keyframes cssload-load {
	0% {
		left: 0;
		height: 38px;
		width: 19px;
	}
	50% {
		height: 10px;
		width: 50px;
	}
	100% {
		left: 294px;
		height: 38px;
		width: 19px;
	}
}

@-moz-keyframes cssload-load {
	0% {
		left: 0;
		height: 38px;
		width: 19px;
	}
	50% {
		height: 10px;
		width: 50px;
	}
	100% {
		left: 294px;
		height: 38px;
		width: 19px;
	}
}



/* =============================
          EFEITO ZOOM MOUSE
=================================*/

.janela{
    width: inherit;
    height: inherit;
    margin: 20px auto;
    border: 1px solid blue;
    overflow: hidden;
}

.porta-imagem {
    width: inherit;
    height: inherit;
    border: 1px solid orange;
}

.porta-imagem imgv 
    width: 100%;
   transition: .2s ease transform;
}

.janela:hover img {
    transform: scale(2);
    cursor: zoom-in;
}


.btn-saida {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  letter-spacing: 1px;
  padding: 2px 15px 2px 15px;
  border-radius: 30px;
  margin: 1px 2px 1px 2px;
  border-bottom: 2px solid #209dd8;
  color: #fff;
  background: #209dd8;
	width: auto;
}

.btn-saida:hover {
  background: #25245D;
  font-size: 14px;
  color: #fff;
	padding: 1px 14px 1px 17px;
	cursor: pointer;
}

