/*
Template Name: Landing Page

Colors:
	Body 		  : #444
	Headers 	: #0b0f28
	Primary 	: #dd0a37
	Dark 		  : #000
	Grey 		  : #F9F9FA #DADADA

Fonts:

Table OF Contents
------------------------------------
GENERAL
LOGO
NAVIGATION
HOME
ABOUT
GALERY
SPEAKERS
EVENTS
SPONSORS
CONTACT
CTA
FOOTER
BLOG
RESPONSIVE
------------------------------------*/

/*=========================================================
	GENERAL
===========================================================*/

/*----------------------------*\
	typography
\*----------------------------*/

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #444;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px 0px 15px;
  color: #0b0f28;
  font-weight: 700;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 16px;
}

.lead {
  font-size: 20px;
}

a {
  color: #0b0f28;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}

a:hover, a:focus {
  text-decoration: none;
  outline: none;
  color: #dd0a37;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

.main-btn {
  display: inline-block;
  padding: 14px 50px;
  background: #dd0a37;
  color: #FFF;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.main-btn:hover, .main-btn:focus {
  color: #FFF;
  opacity: 0.8;
}

.input {
  height: 40px;
  width: 100%;
  border: 2px solid #dadada;
  padding: 0px 15px;
  border-radius: 2px;
  -webkit-transition: 0.3s border;
  transition: 0.3s border;
}

textarea.input {
  height: 90px;
  padding: 15px;
}

.input:focus {
  border-color: #dd0a37;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  position: relative;
  padding: 90px 0px;
}

.section-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  z-index: -1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .title {
  position: relative;
  /* text-transform: capitalize; */
  font-weight: 900;
  font-size: 32px;
  overflow: hidden;
  padding: 0 15px;
}
@media screen and (min-width: 75em){
  .section-title .title {
    font-size: 42px;
  }
}

.section-title .title>span {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  display: inline-block;
  z-index: 10;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.section-title .title>span.appear {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}
.appear{
  color: #dd0a37;
}

/*=========================================================
	LOGO
===========================================================*/
.navbar-header{
  text-align: center;
  float: none;
}

.navbar-brand {
  padding: 0;
  margin: 2px 0px;
  float: none;
}

.navbar-brand .logo {
  display: inline-block;
}

.navbar-brand .logo>img {
  max-height: 50px;
}

@media only screen and (max-width: 767px) {
  .navbar-brand {
    margin: 2px 0px;
  }
}

#header.transparent-navbar:not(.fixed-navbar) .navbar-brand .logo .logo-img {
  display: none;
}

#header.fixed-navbar .navbar-brand .logo .logo-alt-img {
  display: none;
}

#header:not(.transparent-navbar) .navbar-brand .logo .logo-alt-img {
  display: none;
}

/*=========================================================
	NAVIGATION
===========================================================*/

#header {
  position: relative;
  background-color: #FFF;
  border-bottom: 1px solid #0000001a;
  z-index: 80;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

#header.transparent-navbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: transparent;
  border-bottom: 1px solid #DADADA30;
}

#header.fixed-navbar {
  position: fixed !important;
  left: 0;
  right: 0;
  top: 0;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 3px #0003;
  box-shadow: 0px 0px 3px #0003;
  border-bottom: none;
  -webkit-animation: slide-in 0.3s;
  animation: slide-in 0.3s;
}

@-webkit-keyframes slide-in {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes slide-in {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.main-nav li a {
  position: relative;
  padding: 30px 15px;
  color: #0b0f28;
  text-transform: uppercase;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

#header.transparent-navbar .main-nav li a {
  color: #FFF;
}

#header.fixed-navbar .main-nav li a {
  color: #0b0f28;
}

.main-nav li.active a:after {
  content: "";
  height: 3px;
  position: absolute;
  bottom: -3px;
  width: 100%;
  left: 0;
  background: #dd0a37;
}

.main-nav li a:hover, .main-nav li a:focus {
  background-color: transparent;
  color: #dd0a37;
}

#header.transparent-navbar .main-nav li a:hover {
  color: #dd0a37;
}

.navbar-toggle {
  display: none;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  margin: 15px;
  padding: 0;
  font-size: 32px;
  color: #0b0f28;
}

#header.transparent-navbar .navbar-toggle {
  color: #FFF;
}

#header.fixed-navbar .navbar-toggle {
  color: #0b0f28 !important;
}

/* Mobile nav */

@media only screen and (max-width: 767px) {
  .main-nav {
    margin: 0px -15px;
    max-height: 0;
    overflow-y: scroll;
    background-color: #FFF;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .main-nav.open {
    max-height: 500px;
  }
  .main-nav li.active a:after {
    display: none;
  }
  #header.transparent-navbar .main-nav li a {
    color: #0b0f28;
  }
  .main-nav li a:hover, .main-nav li a:focus, .main-nav li.active a {
    background-color: #dd0a37;
    color: #fff !important;
  }
  .navbar-toggle {
    display: block;
  }
}

/*=========================================================
	HOME
===========================================================*/

#home {
  height: 140vh;
  position: relative;
}
@media screen and (max-width: 600px){
  #home {
    height: 100vh;
  }
}

@media screen and (min-width: 90em){
	#home {
  	  height: 130vh;
	}
}
#home .home-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: 10px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.home-content h1 {
  font-weight: 900;
  color: #FFF;
}

.home-content h4 {
  color: #FFF;
}

#page-wrapper {
  background-color: #F9F9FA;
}

.page-wrapper-content {
  text-align: center;
}

/*=========================================================
	ABOUT
===========================================================*/

#numbers {
  margin-top: 60px;
}

.number {
  margin-bottom: 30px;
}

.number h3 {
  font-size: 42px;
  margin-bottom: 0px;
  color: #dd0a37;
}

.number p {
  text-transform: uppercase;
  color: #0b0f28;
}

/*=========================================================
	GALERY
===========================================================*/

#galery-owl .owl-item .galery-item {
  opacity: 0.5;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transition: 0.6s opacity, 0.6s -webkit-transform;
  transition: 0.6s opacity, 0.6s -webkit-transform;
  transition: 0.6s transform, 0.6s opacity;
  transition: 0.6s transform, 0.6s opacity, 0.6s -webkit-transform;
}

#galery-owl.owl-theme .owl-item.active+.owl-item .galery-item {
  -webkit-transform-origin: 0% 100%;
  -ms-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

#galery-owl.owl-theme .owl-item.active .galery-item {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

#galery-owl.owl-theme .owl-nav {
  margin-top: 0px;
}

#galery-owl.owl-theme .owl-nav [class*='owl-'] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
  color: #dd0a37;
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 40px;
  border-radius: 50%;
  padding: 0;
  margin: 0;
}

#galery-owl.owl-theme .owl-prev {
  left: 15px;
}

#galery-owl.owl-theme .owl-next {
  right: 15px;
}

/*=========================================================
	SPEAKERS
===========================================================*/

#speakers {
  background-color: #F9F9FA;
}

.speaker {
  position: relative;
  cursor: pointer;
  margin-bottom: 30px;
}

.speaker:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  opacity: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.speaker:hover:after {
  opacity: 0.8;
}

.speaker .speaker-img>img {
  width: 100%
}

.speaker .speaker-body {
  /* position: absolute; */
  bottom: 0px;
  left: 0;
  right: 0;
}

.speaker .speaker-content {
  position: relative;
  padding: 30px;
  background: #dd0a37;
  text-align: left;
  z-index: 20;
}

.speaker .speaker-content>h2 {
  color: #FFF;
}

.speaker .speaker-content>span {
  color: #fff;
}
.speaker .speaker-content p{
  color: #fff;
  font-size: 1.2rem;
}

.speaker .speaker-social {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  z-index: 5;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.speaker .speaker-social>a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #FFF;
  background: #dd0a37;
  z-index: 15;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.speaker .speaker-social a+a {
  margin-left: -4px;
  border-left: 1px solid #f8f8ff33;
}

.speaker .speaker-social a:hover {
  opacity: 0.8;
}

.speaker:hover .speaker-social {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

 @media screen and (min-width:75em){
  /*.speaker .speaker-body{
    position: absolute;
  }*/
  .speaker .speaker-content{
    min-height: 362px;
  }
} 
/*----------------------------*\
	Speaker Modal
\*----------------------------*/

.speaker-modal .modal-dialog {
  width: 100%;
  max-width: 970px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.speaker-modal .modal-content {
  border: none;
  border-radius: 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.speaker-modal .speaker-modal-close {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #dd0a37 !important;
  border-radius: 50%;
  padding: 0;
  color: #FFF;
  border: none;
  font-size: 24px;
  z-index: 50;
}

.speaker-modal .speaker-modal-close:after {
  content: "\f00d";
  font-family: FontAwesome;
}

.speaker-modal .modal-body {
  padding: 30px;
}

.speaker-modal .speaker-modal-img>img {
  width: 100%;
}

.speaker-modal .speaker-modal-content .speaker-name {
  display: inline-block;
  margin-right: 15px;
}

.speaker-modal .speaker-modal-content .speaker-job {
  color: #dd0a37;
}

.speaker-modal .speaker-modal-content .speaker-social {
  margin-top: 30px;
  margin-bottom: 30px;
}

.speaker-modal .speaker-modal-content .speaker-social>a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  background: #dd0a37;
  color: #fff;
  margin-right: 5px;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.speaker-modal .speaker-modal-content .speaker-social>a:hover {
  opacity: 0.8;
}

.speaker-modal .speaker-modal-content .speaker-website {
  margin-top: 30px;
}

.speaker-modal .speaker-modal-content .speaker-events .speaker-event+.speaker-event {
  margin-top: 30px;
}

.speaker-modal .speaker-modal-content .speaker-events .speaker-event>span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}

.speaker-modal .speaker-modal-content .speaker-events .speaker-event>span strong {
  color: #dd0a37;
}

/*=========================================================
	EVENTS
===========================================================*/

.event {
  position: relative;
}

.event+.event {
  margin-top: 45px;
}

.event:after {
  content: "";
  position: absolute;
  left: 60px;
  top: 0px;
  bottom: 0px;
  width: 4px;
  background-color: #dd0a37;
}

.event:last-child:after {
  height: 60px;
}

.event+.event:before {
  content: "";
  position: absolute;
  left: 60px;
  height: 60px;
  top: -60px;
  width: 4px;
  background-color: #dd0a37;
}

.event .event-day {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #dd0a37;
  z-index: 10;
}

.event .event-hour {
  position: absolute;
  left: 62px;
  top: 60px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #dd0a37;
  z-index: 10;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.event .event-day>div {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.event .event-day .day {
  display: block;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
}

.event .event-day .year {
  color: #FFF;
  text-transform: uppercase;
  font-size: 12px;
}

.event .event-content {
  padding-left: 160px;
  /* min-height: 120px; */
}

.event .event-time {
  font-size: 14px;
}

.event .event-time i {
  color: #dd0a37;
}

.event .event-content a {
  color: #dd0a37;
}

.download-btn {
  margin-top: 60px;
  text-align: center;
}

/*=========================================================
	SPONSORS
===========================================================*/

.sponsor {
  display: block;
  opacity: 0.5;
  margin-bottom: 30px;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.sponsor:hover {
  opacity: 1;
}

.sponsor>img {
  width: 100%;
}

/*=========================================================
	CONTACT
===========================================================*/

#contact.section {
  padding-bottom: 0px;
}

.contact {
  text-align: center;
  margin-bottom: 30px;
}

.contact h3 {
  color: #3ac9bb;
}

#map {
  height: 380px;
  margin: 60px 0;
}
#map iframe{
  width: 100%;
}

/*=========================================================
	CTA
===========================================================*/

.cta-content h2 {
  font-size: 42px;
  color: #FFF;
  /* text-transform: capitalize; */
}

.cta-content p {
  color: #fff;
}

.cta-content .video-play {
  display: inline-block;
  height: 120px;
  width: 120px;
  margin: 0px auto 60px;
  background: #FFF;
  border-radius: 50%;
  text-align: center;
  line-height: 120px;
  font-size: 42px;
  color: #dd0a37;
  cursor: pointer;
}

/*=========================================================
	FOOTER
===========================================================*/

#footer {
  padding: 60px 0px;
}

.footer-brand {
  text-align: center;
}

.footer-brand .logo>img {
  max-height: 50px;
}

.copyright {
  height: 50px;
  line-height: 50px;
}

.contact-social {
  text-align: right;
  margin: 10px 0px;
}

.contact-social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  background: #3ac9bb;
  color: #fff;
  line-height: 30px;
  margin-right: 15px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.contact-social a:hover {
  opacity: 0.8;
}

/*=========================================================
	BLOG
===========================================================*/

.blog {
  position: relative;
}

.blog+.blog {
  margin-top: 60px;
}

.blog:last-child {
  margin-bottom: 60px;
}

.blog .blog-img {
  margin-bottom: 30px;
}

.blog .blog-img>img {
  width: 100%;
}

.blog .blog-meta {
  margin-bottom: 30px;
  font-size: 12px;
  text-transform: uppercase;
}

.blog .blog-meta .blog-day {
  display: inline-block;
  margin-right: 15px;
}

.blog .blog-meta .blog-tags {
  display: inline-block;
  text-transform: uppercase;
}

.blog .blog-meta .blog-tags li {
  display: inline-block;
  margin-right: 5px;
}

.blog .blog-meta .blog-tags li:first-child {
  font-weight: 700;
  color: #0b0f28;
}

.blog .blog-content .read-more {
  display: inline-block;
  padding: 7px 14px;
  background: #dd0a37;
  color: #FFF;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 15px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.blog .blog-content .read-more:hover, .blog .blog-content .read-more:focus {
  opacity: 0.8;
  color: #fff;
}

.blog .blog-share {
  margin: 30px 0px 60px;
}

.blog .blog-share li {
  display: inline-block;
  margin-right: 5px;
}

.blog .blog-share li:first-child {
  line-height: 30px;
  font-weight: 700;
  color: #0b0f28;
}

.blog .blog-share li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #dd0a37;
  color: #FFF;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.blog-share li a:hover {
  opacity: 0.8;
}

.blog .blog-comments .media {
  margin-top: 30px;
}

.blog .blog-comments .media .media-left {
  padding-right: 30px;
}

.blog .blog-comments .media .media-left .media-object {
  width: 90px;
  border-radius: 50%;
}

.blog .blog-comments .media .media-heading {
  margin-bottom: 30px;
}

.blog .blog-comments .media .media-heading h4 {
  margin-bottom: 10px;
}

.blog .blog-comments .media .media-heading .date {
  font-size: 12px;
}

.blog .blog-comments .media .media-heading .reply-btn {
  margin-left: 10px;
  color: #dd0a37;
}

.blog .blog-reply {
  margin-top: 60px;
}

.blog .blog-reply form {
  margin-top: 30px;
}

.blog .blog-reply form .form-group {
  margin-bottom: 30px;
}

/*=========================================================
	RESPONSIVE
===========================================================*/

@media only screen and (max-width: 991px) {
  .contact-social {
    text-align: center;
    margin: 30px 0px;
  }
  .copyright {
    display: block;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .home-content h1 {
    font-size: 31px;
  }
  .page-wrapper-content h1 {
    font-size: 31px;
  }
  .event .event-day {
    width: 90px;
    height: 90px;
  }
  .event .event-content {
    padding-left: 115px;
  }
  .event .event-day .day {
    font-size: 31px;
    line-height: 31px;
  }
  .event .event-hour {
    left: 47px;
  }
  .event:after {
    left: 45px;
  }
  .event+.event:before {
    left: 45px;
  }
}

@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    width: 100%;
  }
}
.pt20 {
  padding-top: 20px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}

.icon_box_two {
  position: relative;
  padding: 0;
  margin: 25px 0;
}
.icon_box_two i {
  position: absolute;
  left: 0;
  font-size: 56px;
  width: 50px;
  color: #f50136;
  top: 0;
  bottom: auto;
  line-height: 1;
}
.icon_box_two .content {
  margin-left: 60px;
  float: left;
}
.box_title {
  margin-bottom: 3px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 6px;
}
.icon_box_two .content p {
  font-weight: 500;
  color: #838383;
}
.justify-content-center {
  -ms-flex-pack: center!important;
  justify-content: center!important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.valor{
  font-weight: 800 !important;
  font-size: 2.8rem;
  color: #dd0a37 !important;
}
.valor span{
  font-size: 1.15rem;
  font-weight: 300;
  text-decoration: line-through; 
}
.duvida,
.duvida a{
  color: #fff;
  line-height: 1.2;
}
.duvida a{
  font-size: 2rem;
}
.video-responsivo iframe {
	position: absolute;
}
.video-responsivo {
	position: relative;
	height: 0;
	overflow: hidden;
	margin: 40px 0;
}
.video-responsivo iframe {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ratio-1x1 {
	padding-bottom: 100%;
}
.ratio-3x2 {
	padding-bottom: 66.66667%;
}
.ratio-4x3 {
	padding-bottom: 75%;
}
.ratio-16x9 {
	padding-bottom: 56.25%;
}
.sponsors-row{
  max-width: 780px;
  margin: 0 auto;
}

.start-in{
  display:inline-flex;
  background-color: #dd0a37;
  color:#fff;
  padding:5px 30px;
  margin-right:20px;
  margin-bottom:20px;
  font-size:14px;
  text-transform:uppercase;
}
.countdown{
  border-bottom: 1px solid #ddd;
}
#timer{
  padding:30px 15px;
  font-size:32px;
  font-weight:600;
  max-width: 525px;
  margin: 0 auto;
}
#timer span{
  font-size:14px;
  font-weight:200;
  margin-right:5px
}
@media (max-width: 736px){
  .start-in{
    width: 250px;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
  }
  #timer{
    padding: 30px;
  }
  #timer span{
    font-size:12px
  }
}

/* config thais */
p{
    line-height: 2.7rem;
}
.sessao2{
    margin: 4rem 0;
}

.sobre {
    
}

.sessao2 .text{
    padding-top: 5rem;
    min-height: 10vh;
    align-content: center;   
    display: grid;
}

.sessao2 .text p{
    align-content: center;
}

.image{
    max-width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}

.image img{
    max-width: 100%;
}

@media screen and (max-width: 1080px){
    .image{
        margin: 0 0 4rem 0;
    }
}

.sessao3{
/*    margin: 4rem 0;*/
}

.metodo{
    padding: 4rem 0;
    background: -moz-linear-gradient(top,  #53cbf1 9%, #0694d6 100%); 
    background: -webkit-linear-gradient(top,  #53cbf1 9%,#0694d6 100%); 
    background: linear-gradient(to bottom,  #53cbf1 9%,#0694d6 100%);
}

.metodo h2{
    color: white;
    font-size: 48px;
}

.metodo p{
    color: white;
}

.sessao3 .text h2{
    text-align: left;
}

.sessao3{
    display: grid;
    align-content: center;
    min-height: 50vh;
}
/*
.sessao3 h2:after{
     content: '';
      display: block;
      width: 400px;
      height: 5px;
      background: #6d2db0;
      margin: 10px auto 0 auto;
}
*/

.sessao3 .text{
  min-height: 15vh;
  display: grid;
  align-content: center; 
}

.sessao3 .text p{
    margin-bottom: 3rem;
}

.sessao3 h2{
    margin: 0 0 5rem 0;
    text-align: center;
/*    color: purple;*/
}

.sessao3 .modulo{
    font-family: 'Satisfy', cursive;
    width: 100%;
    display: inline-block;
    font-size: 32px;
    color: #00bfff;
    text-align: center;
}

.sessao3 .modulo:after{
    content: '';
      display: block;
      width: 50px;
      height: 5px;
      background: #00bfff;
      margin: 5px auto  10px auto;
}

.sessao3 h3{
    text-align: center;
}

.text-center p{
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.sessao3 .beneficios img{
    max-width: 80%;
}

.fa-check-circle-o{
    color: #00bfff;
    font-size: 28px;
}
.incluso p{
text-align: center;   
    font-size: 20px;
    
}

.sessao3 .icons{
    max-height: 12rem;
/*    max-width: 7rem;*/
    margin: 0 auto 10px auto;
}

.bonus{
    background: #00bfff;
    padding-top: 5rem;
}
.bonus-opcoes{
  margin: 50px 0;
}
.bonus h2{
    color: white;
    font-size: 40px;
}

.bonus h2:after{
     content: '';
      display: block;
      width: 400px;
      height: 10px;
      background: white;
      margin: 30px auto 0 auto;
}

.bonus p {
    color: white;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
    max-width: 80%;
    margin: 0 auto;
}
.bonus .opcoes p{
  font-weight: 700;
  margin: 0 auto;
}

.bonus span{
    font-size: 20px;
    text-align: center;
    color: white;
}

.bruno{
    padding: 8rem 0;
    min-height: 30vh;
}

.bruno img{
    max-width: 100%;
}



.bruno .text{
    display: grid;
    align-content: center;
}

.bruno .text h2{
    font-size: 48px;
    /* color:deepskyblue; */
}

.testimony{
    padding:40px;
    text-align:center;
    color:#fff;
/*    background:#212121*/
}
.testimony h2{
    margin-bottom:40px;
    /* font-family: 'Satisfy', cursive; */
    font-size: 48px;

}
.testimony .testimony_blocks{
    display:grid;
    grid-template-columns:33.33% 33.33% 33.33%;
    grid-column-gap:1em
}
@media (max-width: 1599px){
    .testimony .testimony_blocks{
        grid-template-columns:50% 50%;
        grid-gap:.5em
    }
}
@media (max-width: 1023px){
    .testimony .testimony_blocks{
        grid-template-columns:100%;
        grid-gap:0
    }
}
.testimony .testimony_blocks .testimony_video{
    position:relative;
    padding-bottom:56.25%;
    padding-top:25px;
    height:0;
    margin: 10px;
}
.testimony .testimony_blocks .testimony_video iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    min-height:100%
}
.testimony .testimony_blocks .testimony_text{
    color: #dd0a37;
    padding:20px 0
}.testimony .testimony_blocks .testimony_text h3{
    font-weight:700
}

.sessao4 h2{
    text-align: center;
}

.sessao4 h3{
    text-align: center;
    font-size: 32px;
}

.sessao4 h2:after{
     content: '';
      display: block;
      width: 400px;
      height: 10px;
      background: #000000 ;
      margin: 30px auto 0 auto;
}

.sessao4 .text{
    min-height: 25vh;
    display: grid;
    align-content: center;   
}

.sessao4 .text p{
    text-align: center;
}

.sessao4 .text span{
    font-size: 32px;
    text-align: center;
}

.sessao4 a{
    margin: 0 auto;
}
/*
.sessao4 a{
    text-align: center;
    display: inline-block;
    width: 300px;
    margin: 0 calc(50% - 150px);
    color: #fff;
    background: #dd0a37;
    padding: 10px 20px;
    text-align: center;
}

.sessao4 a:hover{
    color: #fff;
}
*/

.sessao4 img{
    max-width: 100%;
    text-align: center;
    margin: 3rem auto;
}

.sessao4{
    text-align: center;
}

.sessao5{
    padding: 4rem 2rem;
    text-align: center;
    height: 50vh;
    background: #ededed;
}

@media screen and(max-width: 1000px){
    .sessao5 img{
        width: 50%;
    }
}

.sessao5 img{
    width: 10%;
    margin: 0 auto;

}

.sessao5 p{
    font-size: 18px;
    margin: 1rem 0 3rem 0;
}
.sessao5 a{
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    margin: 0 auto;
    padding: 15px 40px;
    background-color: limegreen;
}

footer{padding:40px;background:#c6c6c6}footer .footer_container{width:60%;margin:0 auto;display:grid;grid-template-columns:33.33% 33.33% 33.33%;grid-gap:4em}@media (max-width: 1023px){footer .footer_container{width:100%;grid-template-columns:100%;grid-gap:2em}}footer .footer_container .column .logo{width:50%;margin-bottom:20px}footer .footer_container .column p{font-size:.8em}footer .footer_container .column p i{font-size:1.3rem;margin-right:10px;color:#723889}footer .footer_container .column p strong{font-size:1.2rem}footer .footer_container .column ul li{border-top:1px solid #723889;padding:10px 0 10px 0}footer .footer_container .column ul li a:hover{opacity:.6}

.analise{
/*
    display: grid;
    min-height: 25vh;
    align-content: center;
*/
    padding: 6rem 1rem 4rem 1rem;
}

.analise h2{
    font-size: 48px;
    /* color: #ea9e36; */
}

.acelerar{
    padding: 5rem 0;
    background: #ededed;
    /*background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/bg02.jpg);
    background-size: cover;
    background-repeat: no-repeat;*/
    
/*
    background: #ffbf59;
    background: -moz-linear-gradient(top, #ffbf59 0%, #ffe7cc 100%);        
    background: -webkit-linear-gradient(top, #ffbf59 0%,#ffe7cc 100%); 
    background: linear-gradient(to bottom, #ffbf59 0%,#ffe7cc 100%);
*/
}

.acelerar{
    
    color: withe;
    
}

.acelerar h2{
    font-size:48px;
}

.acelerar h2:after{
     content: '';
      display: block;
      width: 400px;
      height: 10px;
      background: #000000;
      margin: 40px auto 0 auto;
}

.acelerar p{
    width: 80%;
    margin: 0 auto;
    text-align: justify;
    color: #292929;
}

.imagine h2{
    font-family: 'Satisfy', cursive;
    font-size: 40px;

}

.certificacao{
    background: #ededed;
    padding: 5rem 1rem;
}

.certificacao-infos{
  margin-top: 50px;
}

.certificacao h2{
    /* font-family: 'Satisfy', cursive; */
    /* color:#dd0a37; */
    font-size: 40px;
}

.certificacao h3{
/*    color: #dd0a37;*/
}

.aprender{
    padding: 6rem 1rem;
}

.aprender h2{
    font-size: 48px;
    /* color: #dd0a37; */
}

.aprender .text{
    padding: 0 5rem;
}

.aprender .text i{
    margin-top: 2rem;
}

.incluso h2{
    font-size: 48px;
    /* color:#dd0a37; */
}
.satisfacao{
  margin: 50px 0;
}
.satisfacao h2{
    font-size: 48px;
    text-align: left;
    /* color: #ea9e36; */
}
.cta-satisfacao{
  margin-top: 50px;
}
.cta-satisfacao a{
  max-width: 500px;
  margin: 0 auto;
}

.tornese{
    padding: 4rem 1rem;
    background: #ededed;
}
.tornese h2{
    font-size: 48px;
}

.certificacao img, .quem img{
    height: 10rem;
    margin: 20px auto;
}

.quem {
    padding: 4rem 0;
}

.quem p{
    text-align: justify;
}

.quem h2{
    /* color: deepskyblue; */
    font-family: 'Poppins', sans-serif !important;
    font-size: 48px;
}

.btn-cta{
    margin: 0 auto;
    width: 100%;
    max-width: 550px;
    display: block;
    text-align: center;
    color: white;
    font-size: 20px;
    line-height: 1.2;
    padding: 2rem;
    background: #ea9e36 /*#ea9e36*//*1cb11c*/;
    transition: all .3s ease-in-out;
    border-radius: 10px;
}

.btn-cta:hover{
    color: #361704;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);

}

.perguntas{
    padding: 4rem 2rem;
}
.perguntas h2{
    font-size: 48px;
    /* color: deepskyblue; */
}

.perguntas h3{
    text-align: left;
}

@media screen and (max-width: 800px){
    body{
        overflow-x: hidden;
    }
    h2{
        font-size: 30px !important;
        padding: 0 1rem !important;
    }
    
    .tornese h2:after{
       content: '';
      display: block;
      width: 0;
      height: 0;
    }
    .acelerar h2:after{
      content: '';
      display: block;
      width: 0;
      height: 0;  
    }
    .bonus h2{
        font-size: 22px !important;
        padding: 0 1rem !important;
    }
    .bonus h2:after{
        width: 0;
        height: 0;
    }
    .bonus p{
        font-size: 14px !important;
        padding: 0 1rem !important;
    }
}

.home-content h1{
  margin-bottom: 0;
}
.btn{
  transition: all .3s ease-in-out;
}
.btn:hover{
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}