:root {
  --primary-font: "Roboto", sans-serif;
  --primary-color: #45606C;
  --blue: #45606C;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

ul li {
  list-style: none;
}

.slick-dots li button:before {
  display: none;
}
.slick-prev:before, .slick-next:before {
  display: none;
}
.slick-disabled {
  opacity: 0.4;
}

h2 {
  margin: 0.75rem 0;
}

html {
  margin-top: 0 !important;
}

body {
  font-family: var(--primary-font);
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
}

a {
  text-decoration: none;
}
a.ab {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 8;
}

p {
  margin: 0.75rem 0;
  line-height: 24px;
}

.container {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 1rem;
  position: relative;
}
@media (max-width: 1190px) {
  .container {
    max-width: 990px;
  }
}
.container-space {
  max-width: 1240px;
}
.container-small {
  max-width: 904px;
}
.container-litle {
  max-width: 770px;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

@media (min-width: 1190px) {
  .desk {
    display: block;
  }
}
@media (max-width: 1189px) {
  .desk {
    display: none;
  }
}

@media (min-width: 1190px) {
  .mob {
    display: none !important;
  }
}
@media (max-width: 1189px) {
  .mob {
    display: block;
  }
}

.hamburger {
  position: absolute;
  right: 1rem;
  z-index: 99;
}

@media (min-width: 990px) {
  .hamburger {
    display: none;
  }
}
.hamburger .line {
  width: 25px;
  height: 3px;
  border-radius: 0;
  background-color: var(--d-g);
  display: block;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger.is-active .line {
  background-color: var(--d-g);
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

.hamburger#hamburger-1.is-active .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger#hamburger-1.is-active .line:nth-child(3) {
  transform: translateY(-6px) rotate(-49deg);
}

.end {
  text-align: end;
}

.nav_mobile {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 87px;
  left: -100%;
  height: 100vh;
  width: 100%;
  background-color: white;
  transition: all 0.4s ease;
  z-index: 9;
}
.nav_mobile ul {
  padding-left: 3rem;
  padding-top: 6rem;
}
.nav_mobile ul li {
  margin-bottom: 2rem;
}
.nav_mobile ul li a {
  color: #333;
  font-size: 18px;
}
@media (max-width: 990px) {
  .nav_mobile.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}

.center {
  text-align: center;
}

#banner {
  background: #bbc85a url("../imgs/bg_banner.png") left no-repeat;
  height: 850px;
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  #banner {
    background: #bbc85a url("../imgs/bg_mobile.jpg") no-repeat;
    height: auto;
    background-size: cover;
    padding-block: 2rem;
  }
}
#banner .grid {
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 990px) {
  #banner .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 990px) {
  #banner .text {
    text-align: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#banner h2 {
  color: white;
  font-size: 46px;
  font-weight: 900;
  text-transform: uppercase;
  width: 420px;
  background: url(../imgs/line.png) no-repeat left bottom;
  padding-bottom: 2rem;
}
@media (max-width: 990px) {
  #banner h2 {
    font-size: 32px;
    width: 300px;
    text-align: center;
  }
}
#banner .form img {
  margin: 0 auto 1rem;
  display: block;
}
@media (max-width: 990px) {
  #banner .form img {
    width: 50%;
  }
}
#banner .form_box {
  background-color: white;
  border-radius: 36px;
  padding: 2rem 2rem;
  padding-bottom: 1.225rem;
}
#banner .form_box h2 {
  font-size: 60px;
  letter-spacing: 5px;
  color: #c0d41a;
  text-transform: uppercase;
  padding-bottom: 1rem;
  margin: 0;
}
@media (max-width: 990px) {
  #banner .form_box h2 {
    font-size: 46px;
    letter-spacing: 0;
  }
}
#banner .form_box .enviar {
  text-align: center;
}
#banner .form_box .wpcf7-spinner {
  position: absolute;
}
#banner .form_box input {
  border: 0;
  border-radius: 14px;
  background-color: #000;
  margin-bottom: 1rem;
  width: 100%;
  padding: 1rem;
  color: white;
}
#banner .form_box input::-moz-placeholder {
  color: white;
}
#banner .form_box input::placeholder {
  color: white;
}
#banner .form_box input[type=submit] {
  cursor: pointer;
  background-color: #bdd119;
  color: #000;
  border: 2px solid #000;
  width: 130px;
  text-transform: uppercase;
  font-weight: 700;
}
#banner .form_box .wpcf7-not-valid {
  border: 1px solid #ff0000 !important;
  animation: shake 150ms 2 linear;
  -moz-animation: shake 150ms 2 linear;
  -webkit-animation: shake 150ms 2 linear;
  -o-animation: shake 150ms 2 linear;
}
@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
#banner .form_box .wpcf7-spinner {
  position: absolute;
}
#banner .form_box .wpcf7 form.invalid .wpcf7-response-output,
#banner .form_box .wpcf7 form.unaccepted .wpcf7-response-output,
#banner .form_box .wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.bar {
  padding-block: 3rem;
}
.bar h2 {
  color: #000;
  font-weight: 900;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  width: 90%;
  margin-inline: auto;
}
@media (max-width: 990px) {
  .bar h2 {
    font-size: 22px;
    width: 100%;
  }
}
.bar h2 strong {
  background-color: #c0d41a;
}

#exp {
  background: url(../imgs/bg_n.jpg) repeat;
  min-height: 300px;
  padding-block: 3rem;
}
#exp .grid {
  grid-template-columns: 60% 1fr;
  gap: 2rem;
  align-items: end;
}
@media (max-width: 990px) {
  #exp .grid {
    grid-template-columns: 1fr;
  }
}
#exp .text {
  color: #4e4e50;
  font-size: 29px;
  font-weight: 400;
}
@media (max-width: 990px) {
  #exp .text {
    font-size: 22px;
  }
}
#exp .text p {
  line-height: normal;
}
#exp .text strong {
  font-weight: 700;
}
#exp .text h2 {
  font-size: 74px;
  letter-spacing: -2px;
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
}
@media (max-width: 990px) {
  #exp .text h2 {
    font-size: 42px;
  }
}
@media (max-width: 990px) {
  #exp .img img {
    width: 100%;
  }
}
#exp .espaco {
  margin-top: 4rem;
  overflow: hidden;
}
#exp .espaco img.espaco {
  width: 100%;
  height: 509px;
  -o-object-fit: cover;
     object-fit: cover;
}
#exp .espaco .itens {
  margin-top: -8rem;
  padding-bottom: 20rem;
}
@media (max-width: 990px) {
  #exp .espaco .itens {
    padding-bottom: 2rem;
  }
}
#exp .espaco .itens .grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 990px) {
  #exp .espaco .itens .grid {
    grid-template-columns: 1fr;
  }
}
#exp .espaco .itens .box {
  background-color: white;
  border-radius: 20px;
  position: relative;
  min-height: 460px;
  padding-top: 80px;
  padding-inline: 29px;
}
@media (max-width: 990px) {
  #exp .espaco .itens .box {
    margin-bottom: 10rem;
    padding-top: 2rem;
    min-height: 338px;
    padding-inline: 20px;
  }
}
#exp .espaco .itens .box .img {
  position: absolute;
  bottom: -250px;
  left: 0;
}
#exp .espaco .itens .box .img img {
  width: 378px;
}
@media (max-width: 990px) {
  #exp .espaco .itens .box .img {
    text-align: center;
    bottom: -175px;
  }
  #exp .espaco .itens .box .img img {
    width: 80%;
  }
}
#exp .espaco .itens .box p {
  font-size: 18px;
}
#exp .espaco .itens .box h3 {
  text-transform: uppercase;
  font-size: 28px;
  color: black;
  margin-bottom: 2rem;
  width: 90%;
}
@media (max-width: 990px) {
  #exp .espaco .itens .box h3 {
    font-size: 22px;
    width: 84%;
  }
}
#exp .espaco .itens .box h3:after {
  content: "";
  background-color: #bfd319;
  height: 2px;
  width: 40px;
  display: block;
  margin-top: 10px;
}

#mercado {
  padding-block: 2rem;
  padding-block-end: 4rem;
}
#mercado h2 {
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 40px;
  font-weight: 900;
}
@media (max-width: 990px) {
  #mercado h2 {
    font-size: 24px;
  }
}
#mercado .grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 990px) {
  #mercado .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  #mercado .grid {
    grid-template-columns: 1fr;
  }
}
#mercado .grid .box img {
  width: 100%;
}

#franqueado {
  background-color: #000;
  color: #d0d1d3;
  padding-block: 4rem;
}
#franqueado h2 {
  text-align: center;
  font-size: 85px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 990px) {
  #franqueado h2 {
    font-size: 42px;
  }
}
#franqueado p {
  text-align: center;
  font-size: 33px;
  line-height: normal;
  width: 57%;
  margin-inline: auto;
}
@media (max-width: 990px) {
  #franqueado p {
    font-size: 22px;
    width: 100%;
  }
}
#franqueado .btn {
  background-color: #e0ff00;
  color: #000;
  border: 3px solid #434244;
  width: 260px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  padding: 1rem 0;
  text-align: center;
  border-radius: 10px;
  margin-inline: auto;
  transition: all 0.4s ease;
  margin-top: 2rem;
}
#franqueado .btn:hover {
  transform: scale(1.02);
}
#franqueado .itens {
  margin-top: 3rem;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 30%;
  grid-template-areas: "post1 post2 post3" "post1 post4 post4";
}
@media (max-width: 990px) {
  #franqueado .itens {
    display: block;
  }
  #franqueado .itens img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#franqueado .div1 {
  grid-area: post1;
}
#franqueado .div1 img {
  width: 100%;
}
#franqueado .div2 {
  grid-area: post2;
}
#franqueado .div2 img {
  width: 100%;
}
#franqueado .div3 {
  grid-area: post3;
}
#franqueado .div3 img {
  width: 100%;
}
#franqueado .div4 {
  grid-area: post4;
}
#franqueado .div4 img {
  width: 100%;
}
@media (max-width: 990px) {
  #franqueado .div4 {
    display: none;
  }
}

#faq {
  background: url(../imgs/bg_n.jpg) repeat;
  min-height: 300px;
  padding-block: 3rem;
  /* Accordion
  ================================================== */
}
#faq h2 {
  font-size: 82px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (max-width: 990px) {
  #faq h2 {
    font-size: 42px;
  }
}
#faq .grid {
  grid-template-columns: 60% 1fr;
  gap: 3rem;
}
@media (max-width: 990px) {
  #faq .grid {
    grid-template-columns: 1fr;
  }
  #faq .grid .img img {
    width: 100%;
  }
}
#faq .acc__card {
  position: relative;
  border-bottom: 2px solid #fff;
  border-top: 2px solid #fff;
  margin-bottom: 2rem;
}
@media (max-width: 770px) {
  #faq .acc__card {
    margin-inline: 0;
  }
}
#faq .acc__title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  display: block;
  padding: 1rem 1rem 1rem;
  position: relative;
  color: #535355;
}
@media (max-width: 770px) {
  #faq .acc__title {
    font-size: 14px;
    text-align: start;
    line-height: normal;
    padding-right: 2rem;
  }
}
#faq .acc__title::after {
  width: 8px;
  height: 8px;
  position: absolute;
  right: 20px;
  content: "+";
  color: #535355;
  font-weight: 400;
  font-size: 42px;
  top: 0;
  transition: all 0.2s ease-in-out;
}
#faq .acc__title.active::after {
  transition: all 0.2s ease-in-out;
  content: "-";
}
#faq .acc__panel {
  background: transparent;
  display: none;
  margin: 0;
  padding: 0 1rem;
  text-align: left;
}

#franqueado_ {
  background: white url(../imgs/bg.png) center no-repeat;
  background-size: cover;
  padding-block: 3rem;
}
#franqueado_ .grid {
  grid-template-columns: 450px 1fr;
}
@media (max-width: 990px) {
  #franqueado_ .grid {
    grid-template-columns: 1fr;
  }
}
#franqueado_ .text {
  color: #000000;
}
#franqueado_ .text p {
  font-size: 24px;
}
@media (max-width: 990px) {
  #franqueado_ .text p {
    font-size: 22px;
  }
}
#franqueado_ .text .box {
  background-color: #b8ce17;
  border-radius: 36px;
  width: 100%;
  padding: 10px 0;
  margin-top: 1rem;
}
#franqueado_ .text .box h2 {
  color: #000;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 990px) {
  #franqueado_ .text .box h2 {
    font-size: 42px;
  }
}
#franqueado_ .form {
  margin-top: 1rem;
}
#franqueado_ .enviar {
  text-align: center;
}
#franqueado_ .wpcf7-spinner {
  position: absolute;
}
#franqueado_ input {
  border: 0;
  border-radius: 14px;
  background-color: #000;
  margin-bottom: 1rem;
  width: 100%;
  padding: 1rem;
  color: white;
}
#franqueado_ input::-moz-placeholder {
  color: white;
}
#franqueado_ input::placeholder {
  color: white;
}
#franqueado_ input[type=submit] {
  cursor: pointer;
  background-color: #bdd119;
  color: #000;
  border: 2px solid #000;
  width: 130px;
  text-transform: uppercase;
  font-weight: 700;
}
#franqueado_ .wpcf7-not-valid {
  border: 1px solid #ff0000 !important;
  animation: shake 150ms 2 linear;
  -moz-animation: shake 150ms 2 linear;
  -webkit-animation: shake 150ms 2 linear;
  -o-animation: shake 150ms 2 linear;
}
@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
#franqueado_ .wpcf7-spinner {
  position: absolute;
}
#franqueado_ .wpcf7 form.invalid .wpcf7-response-output,
#franqueado_ .wpcf7 form.unaccepted .wpcf7-response-output,
#franqueado_ .wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

footer {
  background-color: #000;
  padding-block: 2rem;
}
footer .grid {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
@media (max-width: 990px) {
  footer .grid {
    grid-template-columns: 1fr;
  }
}
footer .logo {
  border-right: 1px solid white;
  height: 100%;
}
@media (max-width: 990px) {
  footer .logo {
    border-right: 0;
    text-align: center;
  }
}
footer .contato {
  border-right: 1px solid white;
  height: 100%;
  padding-top: 2rem;
}
@media (max-width: 990px) {
  footer .contato {
    border-right: 0;
  }
}
footer .contato a {
  color: white;
  font-size: 28px;
  display: block;
  text-align: center;
}
@media (max-width: 990px) {
  footer .contato a {
    font-size: 22px;
    margin-bottom: 1rem;
  }
}
footer .contato a:hover {
  text-decoration: underline;
}
footer .social {
  text-align: center;
}
@media (max-width: 990px) {
  footer .social {
    margin-top: 2rem;
  }
}
footer .social a {
  display: inline-block;
  margin-right: 1rem;
}
footer .social a:last-child {
  margin-right: 0;
}/*# sourceMappingURL=main.css.map */