body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ed8b27;
  text-decoration: none;
}

a:hover {
  color: #ed8b27;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
    outline: none;
    box-shadow: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ed8b27;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ed8b27;
  border-top-color: #fff;
  border-bottom-color: rgb(56, 60, 63);
  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);
  }
}

.loader {
  border: 16px solid #f3f3f3; /* cor de fundo */
  border-top: 16px solid #ed8b27; /* cor da borda */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: auto;
  bottom: 15px;
  z-index: 996;
  background: #ed8b27;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s; 
  margin-left: 15px;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffa64d;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  opacity: 90%;
  border-bottom: 4px solid #ed8b27;
}

#header .logo {
  font-size: 30px;
  margin: auto;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 44vh;
}
#hero .container {
  padding-top: 72px;
}
#hero .row {
  height: 340px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 58px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  font-size: 18px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  margin-bottom: 20px;
}

#hero .hero-img{
  height: 340px;  
  align-items: center;
  display: inline-flex;
}

@media (max-height: 740px) {
  #hero {
    height: 60vh;
  }
  
}

@media (max-width: 1024px) {
  #hero {
    height: 70vh;
    text-align: center;    
  }  

  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 54px;  
    line-height: 58px;      
  }
  
  #hero h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    font-size: 22px;
  } 
}

@media (max-width: 991px) {
  #hero{
    height: 46vh;
  }

  .hero h1 {
    margin: 0 0 10px 0;
    font-size: 54px;  
    line-height: 58px;
  }

  #hero .row {       
    margin: initial;
  }
  #hero .hero-img {
    display: none;
  }  

  #hero .hero-img img {
    display: none;
  }
}

@media (max-width: 768px) {
  #hero{
    height: 60vh;
  }
  #hero h1 {
    font-size: 35px;
    line-height: 40px;
  }

  #hero h2 {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 30px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    display: none;
  }  

  #hero .hero-img img {
    display: none;
  }
}

@media (max-width: 820px) {
  #hero{
    height: 46vh;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    display: none;
  }  

  #hero .hero-img img {
    display: none;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# 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: #ed8b27;
}

.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: #ed8b27;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Simulador
--------------------------------------------------------------*/
.simulador{
  display: flex;
  justify-content: space-around;
  border: solid 2px #ed8b27;
  padding: 30px 0px; 
  border-radius: 10px;
}

.simulador form{
  width: 90%;
}

input[type="checkbox"] {
  display: none;
}

.simulador label {
  width: 100%;
  margin-bottom: 8px;
  border: solid 2px #ed8b27;
  border-radius: 50px;
  background-color: #fff;
}

.simulador label:hover{
  background-color: #ed8b27;  
  border: solid 2px #fff;
  transition: 0.5s;
}

.simulador .coluna1{
  float: left;
  width: 45%;
  margin-left: 10px;
}

.simulador .coluna2{
  float: right;
  width: 45%;  
  margin-right: 10px;
}

.simulador span{
  padding-left: 10px;
  justify-content: center;
  display: flex;
  line-height: 25px;
  font-size: 15px;
  font-weight: bold;
}

.btn-info{
  display: flex;
  justify-content: center;
  margin-top: 250px
}

.btn-info button,
.btn-info button:focus {
  border-radius: 50px;
  line-height: 45px;
  padding: 0px 40px;
  background-color: #fff;
  font-size: 18px;
  border: 2px solid #ed8b27;
  font-weight: 600;  
}

.btn-info button:hover,
.btn-info button:focus:hover {
  background: #ed8b27;
  color: #fff;
}

.btn-info a {
  color: #444444;
}

.botao{
  display: flex;
  justify-content: center;  
}

#btn {
  border-radius: 50px;
  line-height: 45px;
  padding: 0px 40px;
  background-color: #fff;
  font-size: 18px;
  border: 2px solid #ed8b27;
  font-weight: 600;
  color: #444444;
}

#btn:hover {
  background: #ed8b27;
  color: #fff;
}

#resultado {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

#resultado .check {
  font-weight: bold;
  text-decoration: underline;
}

.estilizada {
  background-color: #f3f5fa;  
  border: 2px solid #ed8b27;
  border-radius: 50px;
  padding: 10px;
  max-width: 500px;
}

.box {
  font-size: 15px;
  padding: 12px 30px;
}

.box p {
  text-align: center;
  font-weight: bold;
}

.box .paragrafos {
  margin: 5px 69px;
  font-weight: initial;
  text-align: start;
  border: solid 2px;
  border-radius: 10px;
  background-color: #fff;
  padding-left: 30px;  
  width: 225px;  
  line-height: 24px;
}

.box .paragrafos span {
  color: #ed8b27;
  font-weight: bold;
}

.zoom-in {
  animation: zoom-in 1.5s ease;
  transform-origin: center;
}

@keyframes zoom-in {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 1200px){
  .simulador .coluna1{
    float: none;
    width: 100%;
    margin-left: initial;
  }
  .simulador .coluna2{
    float: none;
    width: 100%;
    margin-right: initial;
  }
  .btn-info {
    margin-top: 20px;
  }  
}

@media (max-width: 540px){
  .simulador label{
    border-radius: 10px;
  }
  .simulador label:hover{
  background-color: initial;  
  border: solid 2px #ed8b27;
  transition: 0.5s;
}
  .simulador span{
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
    line-height: 16px;
  }
  .btn-info button:hover,
  .btn-info button:focus:hover {
   background: initial;
   color: #000000;
  }
  .box {
    padding: 12px 12px;
  }
  .box .paragrafos{
    margin: 5px 35px;    
  }
}

/*--------------------------------------------------------------
# Formulario de email
--------------------------------------------------------------*/
#form-simulacao-combo-54f43c215df497399019 {
  padding: 0px;
}

#rdstation-bricks-embeddable-form-bricks-component-BwotsM6Kh3IUl6e0PUrCLA {
  max-width: 700px;
  justify-content: center;
  display: flex;
  margin: auto;  
}

.bricks-form__field input {
  display: initial;  
}

.bricks--component p {
  display: flex;
  justify-content: center;
}

#rd-text-lfwn508h p {
  margin-top: 30px
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: rgb(56, 60, 63);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background-color: #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: #ed8b27;
}

#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 .footer-contact a {  
  color: #5e5e5e;
}

#footer .footer-top .footer-contact a:hover { 
  
  color: #ed8b27;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ed8b27;
  position: relative;
  padding-bottom: 21px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ed8b27;
  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: #ed8b27;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgb(56, 60, 63);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ed8b27;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 23px;
  padding-bottom: 24px;
  color: #fff; 
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  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;
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 0px 12px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;  
}

.whatsapp-button a {
  text-decoration: none;
  color: #fff;  
}

.whatsapp-button i {  
  font-size: 50px;
  transition: font-size 0.3s ease;
}

.whatsapp-button i:hover {
  font-size: 45px;
}

