/* Fonts */
:root {
  --font-default: Montserrat, sans-serif;
  --font-primary: Montserrat, sans-serif;
  --font-secondary: Montserrat, sans-serif;
}

/* Colors */
:root {
  --color-default: #444444;
  --color-btn: #cc6156;
  --color-primary: #3f7e8d;
  --color-secondary: #cc6156;
  --color-tertiary: #657d99;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.color-default {
  color: var(--color-default);
}

.color-primary {
  color: var(--color-primary);
}

.color-secondary {
  color: var(--color-secondary);
}

.color-tertiary {
  color: var(--color-tertiary);
}

.color-t body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  ;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-primary);
  ;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  ;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: var(--color-primary);
  ;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Imgs
--------------------------------------------------------------*/
.img-logo {
  margin: 0 auto;
  border-radius: 0px;
  width: auto;
}

#img-img-1 {
  border-radius: 10px
}

#img-img-2 {
  border-radius: 10px
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(122deg, var(--color-primary) 0%, var(--color-primary) 100%) 0% 0% no-repeat padding-box;
  padding-top: 0;
}

#hero .container {
  padding-top: 25px;
}

#hero-h1, #hero-span1 {
  background: var(--color-secondary);
  padding: 5px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #fff;
  font-size: 22px;
}

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

@media (max-width: 991px) {
  #hero {
    height: 100%;
    text-align: center;
    margin-top: 0px;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

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

  100% {
    transform: translateY(-10px);
  }
}

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

  100% {
    transform: translateY(-10px);
  }
}




/*--------------------------------------------------------------
# Btn Get Ebook
--------------------------------------------------------------*/
.btn-get {
  font-weight: 500;
  font-size: 20px;
  margin: 0 auto;
  color: #fff;
  background: var(--color-btn);
  padding: 10px 30px 10px 30px;
  border-radius: 13px;
  border: 0px;
}

.btn-get:hover {
  background: transparent linear-gradient(122deg, var(--color-primary) 0%, var(--color-primary) 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  border: 3px solid #fff;
}
/*--------------------------------------------------------------
# Btn Lot
--------------------------------------------------------------*/
.btn-lote {
  font-weight: 500;
  font-size: 20px;
  margin: 0 auto;
  color: #fff;
  background: var(--color-btn);
  padding: 10px 30px 10px 30px;
  border-radius: 13px;
  border: 0px;
}

.btn-lote:hover {
  background: transparent linear-gradient(122deg, var(--color-primary) 0%, var(--color-primary) 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  border: 3px solid #fff;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-primary);
}

.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: #1c4e81;
  bottom: 0;
  left: calc(50% - 20px);
}

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

/*--------------------------------------------------------------
# sec1
--------------------------------------------------------------*/
#sec1 .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#sec1 .icon-box::before {
  content: "";
  position: absolute;
  background: var(--color-primary);
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

#sec1 .icon-box:hover::before {
  background: var(--color-primary);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

#sec1 .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #1bbca3;
  transition: all 0.3s ease-in-out;
}

#sec1 .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

#sec1 .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#sec1 .title a {
  color: #425451;
}

#sec1 .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#sec1 .icon-box:hover .title,
#sec1 .icon-box:hover ul li,
#sec1 .icon-box:hover .description {
  color: #fff;
}

#sec1 .icon-box:hover .icon {
  background: #fff;
}

#sec1 .icon-box:hover .icon i {
  color: #1bbca3;
}

/*--------------------------------------------------------------
# sec2
--------------------------------------------------------------*/
#sec2 .sec2-list {
  padding: 0 100px;
}

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

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

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

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

#sec2 .sec2-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #87c1ea;
}

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

#sec2 .sec2-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

#sec2 .sec2-list .icon-show {
  display: none;
}

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

#sec2 .sec2-list a.collapsed:hover {
  color: #2487ce;
}

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

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

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


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.pricing p{
  line-height: normal;  
}

.pricing .box h3 {
  padding: 0px;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 600;
  color: #124265;
}

.pricing .box h4 {
  font-size: 42px;
  color: #2487ce;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  font-size: 16px;
  font-weight: 600;
  background: #cc6156;
    padding: 10px;
    border-radius: 5px;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #124265;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  color: #2487ce;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #2487ce;
}

.pricing .box .btn-buy:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  background: var(--color-primary);
  height: 100%;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
  color: #fff;
}

.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .featured .btn-buy {
  color: #fff;
  border: 2px solid #fff;
}

.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #2487ce;
}

.sold-out{
  transform: rotate(-45deg);
    background-color: #f44336;
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    border-radius: 0;
    width: 100%;
    margin-top: 1%;
    margin-left: -37%;
    padding-right: 10px;
    padding-left: 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--color-primary);
  ;
}

.btn {
  color: #fff;
  background-color: var(--color-primary);
  border: 3px solid var(--color-primary);
}

.btn:hover {
  color: var(--color-primary);
  background-color: #fff;
  border: 3px solid var(--color-primary);
}

.modal-header {
  background: var(--color-primary);
  color: #fff;
}

b,
strong {
  color: #031835;
}

#instrutores img{
  float: left;padding: 10px;margin-right: 25px;border-radius: 95px;
}



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: var(--color-primary);
  padding: 120px 0;
}

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

.cta p {
  color: #fff;
}

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


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

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