@charset "UTF-8";
html {
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif !important;
  height: 100%;
}
body .logo {
  height: 80px;
  max-width: 100%;
  margin-left: 15px;
}
@media (max-width: 991px) {
  body .logo {
    margin-left: 0;
  }
}
body .paragraph {
  color: #2f2217;
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 991px) {
  body .paragraph {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  body .paragraph {
    max-width: 600px;
  }
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
#logo {
  font-size: 0;
  width: 0;
  height: 0;
}

.header-anim {
  animation: header-show 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

@keyframes header-show {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
#header {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  max-width: 100vw;
  height: 100px;
}
@media (max-width: 991px) {
  #header {
    height: 70px;
  }
}

.header {
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  opacity: 1;
  max-width: 100vw;
  background-color: #ffffff;
  transition: background-color 0.5s;
}
@media (max-width: 991px) {
  .header .logo {
    height: 60px !important;
    margin-top: -20px;
  }
}
@media (max-width: 991px) {
  .header .menu-mob {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
  }
}
.header .navbar-nav {
  height: 100%;
  align-items: center;
}
@media (max-width: 991px) {
  .header .navbar-nav {
    align-items: flex-start;
    background-color: #ffffff;
    max-width: 100%;
    height: 100vh;
    padding: 10px 30px;
    margin-left: auto;
  }
}
.header .navbar-nav .nav-item {
  position: relative;
}
@media (max-width: 991px) {
  .header .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }
}
.header .navbar-nav .nav-item .link-text {
  font-size: 18px;
  font-weight: 400;
  color: #2f2217;
  letter-spacing: 0.45px;
  text-decoration: none;
  margin: 10px 0;
}
@media (min-width: 992px) {
  .header .navbar-nav .nav-item {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.header .navbar-nav .nav-item::after {
  content: "";
  align-self: center;
  text-align: center;
  display: inline-block;
  height: 5px;
  position: absolute;
  bottom: 10px;
  left: 0;
  background-image: linear-gradient(to right, #fcc60e, #ef3b39);
  width: 1px;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .header .navbar-nav .nav-item::after {
    height: 1px;
  }
}
.header .navbar-nav .nav-item.active::after {
  width: 100%;
  opacity: 1;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .header .navbar-nav .nav-item:hover .link-text {
    color: #bdb4ae;
  }
  .header .navbar-nav .nav-item:hover::after {
    width: 100%;
    opacity: 1;
    transition: all 0.3s;
  }
}
.header #menu-hamburger {
  display: none;
}
.header .menu {
  transition: all 0.4s;
  position: relative;
  width: 44px;
  height: 44px;
  margin-top: -10px;
  z-index: 200;
  border-radius: 100%;
  cursor: pointer;
}
@media (min-width: 991px) {
  .header .menu {
    display: none;
  }
}
.header .menu_part {
  width: 30px;
  height: 3px;
  position: absolute;
  background: #2f2217;
  right: 0;
  margin: auto;
  left: 0;
  border-radius: 0px;
  transition: all 0.4s cubic-bezier(0.8, 0.1, 0.3, 1.4);
  top: calc(50% - ((8px)) + -2px);
}
.header .menu_part:nth-of-type(1) {
  top: calc(50% - ((8px)) + -4px);
  width: 30px;
}
.header .menu_part:nth-of-type(2) {
  top: calc(50% - ((8px)) + 7px);
  width: 30px;
}
.header .menu_part:nth-of-type(3) {
  top: calc(50% - ((8px)) + 18px);
  width: 30px;
}
.header input#menu-hamburger:checked + label .menu {
  transform: scale(1.24) rotate(180deg);
}
.header input#menu-hamburger:checked + label .menu .menu_part:nth-of-type(1) {
  transform: rotate(45deg);
  width: 30px !important;
  top: calc(50% - (2px)) !important;
  background: #2f2217;
}
.header input#menu-hamburger:checked + label .menu .menu_part:nth-of-type(2) {
  left: 10px !important;
  background: #2f2217;
  opacity: 0;
}
.header input#menu-hamburger:checked + label .menu .menu_part:nth-of-type(3) {
  transform: rotate(-45deg);
  width: 30px !important;
  top: calc(50% - (2px)) !important;
  background: #2f2217;
}
.header input#menu-hamburger:checked + label .menu {
  transform: scale(1.2) rotate(180deg);
}

.call-container-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  opacity: 1;
  width: 100%;
  padding: 10px;
  background-image: linear-gradient(to right, #fcc60e, #ef3b39);
  transition: opacity 0.3s;
}
.call-container-mobile .call-text {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none !important;
}

.icon-call-container {
  position: fixed;
  bottom: 55px;
  left: 0;
  right: 0;
  z-index: 100;
  opacity: 1;
  width: 60px;
  margin: auto;
  transition: opacity 0.3s;
}
.icon-call-container .icon-call {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid transparent;
  background: #ffffff;
  background-clip: padding-box;
  /* !importanté */
  position: relative;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
}
.icon-call-container .icon-call .arrow-link {
  width: 20px;
}
.icon-call-container .icon-call:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  /* !importanté */
  border-radius: inherit;
  /* !importanté */
  background: linear-gradient(to right, #fcc60e, #ef3b39);
}
.icon-call-container .icon-call:hover .arrow-link {
  animation: arrow-move 0.5s ease-in-out infinite;
}

.pronto-container {
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
}
@media (max-width: 991px) {
  .pronto-container {
    background-position: center;
    background-attachment: scroll;
    height: auto;
    padding-bottom: 60px;
  }
  .pronto-container.services-mob {
    padding-bottom: 0;
  }
}
.pronto-container.intro {
  background-image: url("assets/images/imagem_home.jpg");
}
@media (max-width: 991px) {
  .pronto-container.intro {
    background-position: 70% center;
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .pronto-container.intro {
    height: auto;
  }
}
@media (max-height: 720px) {
  .pronto-container.intro {
    height: auto;
  }
}
.pronto-container.video {
  background-image: url("");
}
@media (max-width: 991px) {
  .pronto-container.intro {
    background-position: 70% center;
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .pronto-container.intro {
    height: auto;
  }
}
@media (max-height: 720px) {
  .pronto-container.intro {
    height: auto;
  }
}
.pronto-container.about {
  background-image: url("assets/images/pronto-about-bg.png");
  background-size: contain;
}
.pronto-container.about .paragraph {
  max-width: 450px;
}
@media (max-width: 1600px) {
  .pronto-container.about {
    background-position: center right;
    background-size: 60%;
    height: 100vh;
  }
}
@media (max-width: 1200px) {
  .pronto-container.about {
    background-size: 50%;
  }
}
@media (max-width: 991px) {
  .pronto-container.about {
    background-image: none;
  }
}
@media (max-width: 767px) {
  .pronto-container.about {
    margin-bottom: 80px;
  }
}
@media (max-height: 720px) {
  .pronto-container.about {
    height: auto;
  }
}
@media (max-height: 720px) {
  .pronto-container {
    height: auto;
  }
}
.pronto-container .advantages-bg {
  background-image: linear-gradient(to bottom, #ef3b39, #fcc60e);
  height: calc(100vh - 75px);
}
@media (max-width: 991px) {
  .pronto-container .advantages-bg {
    height: 100vh;
    padding: 0 15px;
  }
  .pronto-container .advantages-bg .no-pb {
    padding-bottom: 0;
  }
  .pronto-container .advantages-bg .no-pt {
    padding-top: 0;
  }
}
@media (max-height: 720px) {
  .pronto-container .advantages-bg {
    height: auto;
  }
}
.pronto-container .wrapper-content {
  padding: 150px 0;
  position: relative;
}
@media (max-width: 991px) {
  .pronto-container .wrapper-content {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content {
    padding: 40px 0;
  }
}
.pronto-container .wrapper-content.contact {
  padding-bottom: 0;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .pronto-container .wrapper-content.contact {
    padding: 0;
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content.contact {
    height: auto;
  }
}
@media (max-height: 720px) {
  .pronto-container .wrapper-content.contact {
    height: auto;
  }
}
.pronto-container .wrapper-content .intro-title {
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .pronto-container .wrapper-content .intro-title {
    font-size: 42px;
    color: #2f2217;
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content .intro-title {
    font-size: 32px;
    padding-top: 50px;
  }
}
.pronto-container .wrapper-content .intro-desc {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .pronto-container .wrapper-content .intro-desc {
    color: #2f2217;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content .intro-desc {
    font-size: 12px;
  }
}
.pronto-container .wrapper-content .about-title {
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(to right, #fcc60e, #ef3b39);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .pronto-container .wrapper-content .about-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content .about-title {
    font-size: 32px;
  }
}
.pronto-container .wrapper-content .advantages-title {
  color: #ffffff;
  font-size: 90px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .pronto-container .wrapper-content .advantages-title {
    font-size: 52px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content .advantages-title {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
.pronto-container .wrapper-content .advantages-subtitle {
  color: #2f2217;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .pronto-container .wrapper-content .advantages-subtitle {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content .advantages-subtitle {
    color: #ffffff;
    font-size: 20px;
    padding-top: 20px;
  }
}
.pronto-container .wrapper-content .advantages-topic {
  color: #2f2217;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
}
@media (max-width: 991px) {
  .pronto-container .wrapper-content .advantages-topic {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content .advantages-topic {
    font-size: 12px;
  }
}
.pronto-container .wrapper-content .advantages-topic-low {
  color: #2f2217;
  font-size: 10px;
  font-weight: 700;
}
.pronto-container .wrapper-content .advantage-model {
  padding: 5px 20px;
  margin-right: 10px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 25px;
  margin-bottom: 15px;
}
.pronto-container .wrapper-content .advantage-model p {
  margin: 0;
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content .advantage-model {
    padding: 5px 10px;
  }
}
.pronto-container .wrapper-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pronto-container .wrapper-content ul li {
  margin-left: 40px;
}
.pronto-container .wrapper-content ul li::before {
  content: "\002D";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  padding-left: 0;
  color: #2f2217;
  font-size: 14px;
  font-weight: 700;
}
.pronto-container .wrapper-content #solution-service {
  opacity: 0;
}
@media (max-width: 991px) {
  .pronto-container .wrapper-content #solution-service {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .pronto-container .wrapper-content .solutions {
    position: absolute;
    top: 150px;
    left: 0;
    z-index: 5;
    transition: all 0.3s;
  }
}
.pronto-container .wrapper-content .check-icon {
  max-height: 25px;
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content .check-icon {
    max-height: 18px;
  }
}
.pronto-container .wrapper-content .pronto-btn {
  background-color: #ffffff;
  padding: 10px 20px;
  color: #2f2217;
  margin-right: 15px;
  outline: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.pronto-container .wrapper-content .pronto-btn.active {
  background-color: #ac8870 !important;
}
@media (min-width: 992px) {
  .pronto-container .wrapper-content .pronto-btn:hover {
    opacity: 0.6;
  }
}
.pronto-container .wrapper-content .contact-box {
  height: 100%;
  background-color: #f3f1f0;
  width: 100%;
  border-radius: 16px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1600px) {
  .pronto-container .wrapper-content .contact-box {
    height: 750px;
  }
}
.pronto-container .wrapper-content .contact-box textarea {
  min-height: 200px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .pronto-container .wrapper-content .contact-box textarea {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content .contact-box textarea {
    min-height: 100px;
  }
}
.pronto-container .wrapper-content .contact-box .contact-input {
  width: 100%;
  background-color: #ffffff;
  padding: 10px 15px;
  border: none;
  border-radius: 12px;
  outline: 0;
}
.pronto-container .wrapper-content .contact-box .paragraph {
  font-size: 16px;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .pronto-container .wrapper-content .contact-box .paragraph {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .pronto-container .wrapper-content .contact-box .paragraph {
    font-size: 12px;
  }
}
.pronto-container .wrapper-content .contact-box .submit-btn {
  padding: 5px 20px;
  background-color: #e3dfdd;
  min-height: 35px;
  color: #79695e;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  outline: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .pronto-container .wrapper-content .contact-box .submit-btn {
    font-size: 32px;
  }
}
.pronto-container .wrapper-content .contact-box .social-logo {
  max-height: 40px;
}
.pronto-container .wrapper-content .contact-box .loading-spinner {
  border: 3px solid #2f2217;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  margin-right: 50px;
  float: right;
  -webkit-animation: rotating 0.8s linear infinite;
  -moz-animation: rotating 0.8s linear infinite;
  -ms-animation: rotating 0.8s linear infinite;
  -o-animation: rotating 0.8s linear infinite;
  animation: rotating 0.8s linear infinite;
  display: none;
}
.pronto-container .services-line {
  height: 1px;
  background-image: linear-gradient(to right, #fcc60e, #ef3b39);
}
@media (min-width: 992px) {
  .pronto-container .services-line.top-line {
    position: absolute;
    top: 230px;
    z-index: 0;
  }
}
.pronto-container .services-wrapper {
  padding-top: 180px;
  padding-bottom: 75px;
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .pronto-container .services-wrapper {
    margin-top: 70px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .pronto-container .services-wrapper {
    padding-top: 70px;
    margin-top: 0;
  }
}
.pronto-container .services-wrapper .service-card {
  width: 100%;
  min-height: 500px;
  padding: 0 25px;
  position: relative;
  z-index: 10;
}
@media (min-width: 1600px) {
  .pronto-container .services-wrapper .service-card {
    padding: 0 50px;
  }
}
@media (max-width: 991px) {
  .pronto-container .services-wrapper .service-card {
    margin-top: -70px;
    min-height: 600px;
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .pronto-container .services-wrapper .service-card {
    min-height: 300px;
    height: 100vh;
    margin-bottom: 0;
  }
}
@media (max-height: 400px) {
  .pronto-container .services-wrapper .service-card {
    margin-bottom: 100px;
  }
}
.pronto-container .services-wrapper .service-card .service-icon-wrapper {
  background-color: #ffffff;
  margin-bottom: 30px;
  display: inline-block;
}
.pronto-container .services-wrapper .service-card .service-icon {
  max-height: 100px;
}
.pronto-container .services-wrapper .service-card .service-title {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(to right, #fcc60e, #ef3b39);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}
.pronto-container .services-wrapper .service-card .paragraph {
  font-size: 16px;
}
.pronto-container .services-wrapper .service-card .service-title,
.pronto-container .services-wrapper .service-card .paragraph {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#form_feedback {
  width: 100vw;
  height: 100vh;
  padding-right: 0 !important;
}
#form_feedback .modal-dialog {
  max-width: 100%;
  margin: 0;
  height: 100%;
}
#form_feedback .modal-content {
  width: 100%;
  height: 15%;
  background: linear-gradient(to right, #fcc60e, #ef3b39);
  position: relative;
}
#form_feedback .form-feedback {
  margin: auto;
}
#form_feedback .form-feedback .title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}
#form_feedback .form-feedback .text {
  color: #ffffff;
  font-size: 18px;
}
#form_feedback .form-feedback .btn-padrao {
  display: block;
  margin: 70px auto 0;
}
#form_feedback .close {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 1;
  right: 3vw;
  top: 4vh;
}
#form_feedback .close::after,
#form_feedback .close::before {
  content: "";
  display: block;
  width: 1px;
  height: 41px;
  background: #ffffff;
  position: absolute;
  top: 0;
}
#form_feedback .close::after {
  right: 0;
  transform: rotate(45deg);
  transform-origin: top left;
}
#form_feedback .close::before {
  left: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
}

@keyframes arrow-move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.border-with-gradient {
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(to right, #fcc60e, #ef3b39) 1 0%;
}

/*# sourceMappingURL=main.css.map */
