@charset "UTF-8";
/* Colors */
/* Fonts */
:root {
  font-family: "Sora", sans-serif;
  font-size: 15px; /* Default size */
  overflow-x: hidden;
}
@media (max-width: 550px) {
  :root {
    font-size: 13px;
  }
}

body {
  background-color: #FAF0DE;
  font-size: 1em;
  color: #524439;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.title {
  font-family: "Recoleta", sans-serif;
  color: #353535;
  margin: 0;
  line-height: 100%;
  margin-bottom: 50px;
}
@media (max-width: 550px) {
  h1, h2, h3, h4, h5, h6,
  .title {
    margin-bottom: 30px;
  }
}

h1 {
  font-size: 3rem; /* 48px */
}

h2 {
  font-size: 2.5rem; /* 40px */
}

h3 {
  font-size: 2rem; /* 32px */
}

h4 {
  font-size: 1.563rem; /* 25px */
}

html.with-fancybox {
  overflow: auto;
}

.main-title {
  font-size: 3rem;
}
.main-title span {
  font-family: "Recoleta", sans-serif;
  color: #D87D00;
}

@media (max-width: 520px) {
  .hidden-mobile {
    display: none;
  }
}

.main-text {
  font-size: 1.15rem;
  color: #353535;
  opacity: 0.8;
}

.subtitle {
  background-color: #00B095;
  font-family: "Recoleta", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 30px;
  color: #fff;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 8px;
}

section {
  padding: 80px 0;
  position: relative;
  z-index: 0;
}
@media (max-width: 800px) {
  section {
    padding: 50px 0;
  }
}

p {
  font-size: 1rem; /* 16px */
  margin: 0;
  line-height: 180%;
  color: #524439;
  margin-bottom: 30px;
}
@media (max-width: 550px) {
  p {
    font-size: 14px;
    line-height: 170%;
  }
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  outline: none;
}

img {
  display: block;
  margin: 0 auto;
}

.container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1380px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 1280px) {
  .container {
    width: auto;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(216, 125, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 6;
}
.overlay.active {
  display: block;
}

.message-content {
  text-align: center;
  opacity: 0.8;
}
.message-content p {
  font-size: 0.9rem;
  margin: 0;
}
.message-content a {
  margin-top: 15px;
  display: inline-block;
  padding: 15px 45px;
  border: solid 1px #D87D00;
  font-size: 15px;
  color: #D87D00;
  border-radius: 30px;
}

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

.p-relative {
  position: relative;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-30 {
  gap: 30px;
}

.gap-45 {
  gap: 45px;
}

.gap-50 {
  gap: 50px;
}

.w-auto {
  width: auto;
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.justify-content-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-direction-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.scroll-left {
  opacity: 0;
  -webkit-transition: 1s all;
  transition: 1s all;
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}

.scroll-right {
  opacity: 0;
  -webkit-transition: 1s all;
  transition: 1s all;
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}

.scroll-bottom {
  opacity: 0;
  -webkit-transition: 1s all;
  transition: 1s all;
  -webkit-transform: translate(0, 80px);
          transform: translate(0, 80px);
}

.ativo {
  opacity: 1;
  -webkit-transition: 1s all;
  transition: 1s all;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

@-webkit-keyframes slideTop {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
}

@keyframes slideTop {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
}
@-webkit-keyframes slideBottom {
  from {
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideBottom {
  from {
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideHorizontal {
  from {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideHorizontal {
  from {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideHorizontal2 {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideHorizontal2 {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes floating {
  0%, 100% {
    -webkit-transform: translatey(20px);
            transform: translatey(20px);
  }
  50% {
    -webkit-transform: translatey(-20px);
            transform: translatey(-20px);
  }
}
@keyframes floating {
  0%, 100% {
    -webkit-transform: translatey(20px);
            transform: translatey(20px);
  }
  50% {
    -webkit-transform: translatey(-20px);
            transform: translatey(-20px);
  }
}
.main-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  padding: 0 30px;
  height: 60px;
  background-color: #D87D00;
  border-radius: 5px;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  text-decoration: none;
  -webkit-transition: ease-in-out 380ms;
  transition: ease-in-out 380ms;
}
.main-button:hover {
  -webkit-box-shadow: 0px 15px 80px 0px rgba(215, 125, 2, 0.73);
          box-shadow: 0px 15px 80px 0px rgba(215, 125, 2, 0.73);
}
.main-button .button-text {
  font-size: 15px;
  font-family: "Recoleta", sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 50px;
  gap: 15px;
  padding: 0 20px;
  border-radius: 30px;
  border: solid 1px #D87D00;
  font-size: 12px;
  font-weight: bold;
  color: #D87D00;
  overflow: hidden;
  -webkit-transition: linear 150ms;
  transition: linear 150ms;
  position: relative;
}
.nav-button:hover {
  background-color: #D87D00;
  color: #fff;
}
.nav-button.whatsapp {
  background-color: #D87D00;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  gap: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav-button.whatsapp svg {
  position: absolute;
  width: 25px;
  top: -5px;
  right: 2px;
}
.nav-button.whatsapp small {
  font-size: 12px;
  color: #FAF0DE;
}
.nav-button.whatsapp span {
  letter-spacing: 0.5px;
}

.btn-mobile {
  border: none;
  width: 50px;
  height: 50px;
  background-color: #FAF0DE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  cursor: pointer;
  -webkit-transition: linear 150ms;
  transition: linear 150ms;
}
.btn-mobile:hover, .btn-mobile.active {
  background-color: #D87D00;
}
.btn-mobile:hover svg path, .btn-mobile.active svg path {
  stroke: #fff;
}

.btn-close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
}

/**********************************
/* Sobre
/*********************************/
.about-card {
  background-color: #fff;
  border-radius: 30px;
  height: 700px;
  overflow: hidden;
  gap: 65px;
  -webkit-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.11);
  padding: 0 65px;
  position: relative;
}
@media (max-width: 1280px) {
  .about-card {
    gap: 30px;
    padding: 0 30px;
  }
}
@media (max-width: 1099px) {
  .about-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    height: auto;
  }
  .about-card:before {
    content: "";
    z-index: 1;
    width: 60px;
    height: 207px;
    background-image: -webkit-gradient(linear, right top, left top, from(white), to(transparent));
    background-image: linear-gradient(-90deg, white, transparent);
    position: absolute;
    top: inherit;
    bottom: 0;
    left: inherit;
    right: 0%;
  }
}
.about-card .about-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  position: relative;
}
@media (max-width: 1099px) {
  .about-card .about-cards {
    padding-bottom: 30px;
    gap: 0;
  }
}
.about-card .about-cards:before {
  content: "";
  z-index: 1;
  height: 90px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(#fff, rgba(255, 255, 255, 0));
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}
@media (max-width: 1099px) {
  .about-card .about-cards:before {
    background-image: -webkit-gradient(linear, left top, right top, from(white), to(transparent));
    background-image: linear-gradient(90deg, white, transparent);
    right: inherit;
    left: -30px;
    height: 100%;
    width: 60px;
  }
}
.about-card .about-cards:after {
  content: "";
  z-index: 1;
  height: 90px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#fff));
  background-image: linear-gradient(rgba(0, 0, 0, 0), #fff);
  position: absolute;
  top: 610px;
  bottom: auto;
  left: 0%;
  right: 0%;
}
@media (max-width: 1099px) {
  .about-card .about-cards:after {
    display: none;
  }
}
.about-card .about-cards .wrapper-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1099px) {
  .about-card .about-cards .wrapper-about {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5px;
  }
}
.about-card .about-cards .wrapper-1 {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-animation: slideTop 30s linear infinite;
          animation: slideTop 30s linear infinite;
}
@media (max-width: 1099px) {
  .about-card .about-cards .wrapper-1 {
    -webkit-animation: slideHorizontal 30s linear infinite;
            animation: slideHorizontal 30s linear infinite;
  }
}
.about-card .about-cards .wrapper-2 {
  -webkit-animation: slideBottom 35s linear infinite;
          animation: slideBottom 35s linear infinite;
}
@media (max-width: 1099px) {
  .about-card .about-cards .wrapper-2 {
    display: none;
  }
}
.about-card .about-cards .wrapper-3 {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-animation: slideTop 40s linear infinite;
          animation: slideTop 40s linear infinite;
}
@media (max-width: 1099px) {
  .about-card .about-cards .wrapper-3 {
    display: none;
  }
}
.about-card .about-cards .about-mini-card {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #DEDEDE;
  background: #FFF;
  -webkit-box-shadow: 0px 15px 30px 0px #E0E0E0;
          box-shadow: 0px 15px 30px 0px #E0E0E0;
  width: 150px;
  height: 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 15px;
}
.about-card .about-cards .about-mini-card .card-icon {
  width: 70px;
  height: 70px;
  background-color: #FAF0DE;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-card .about-cards .about-mini-card .card-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #2E3749;
  padding: 0 5px;
  margin: 0;
}
.about-card .about-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  height: 600px;
  width: 100%;
  padding: 50px 0;
}
@media (max-width: 1099px) {
  .about-card .about-text {
    padding: 30px 0 0;
    height: auto;
  }
}

/**********************************
/* Missão, Visão, Valores
/*********************************/
.mvv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 550px) {
  .mvv-cards {
    gap: 15px;
  }
}
.mvv-cards .mvv-item {
  background-color: #FAF0DE;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 60px;
  position: relative;
  padding: 15px;
  cursor: pointer;
  opacity: 0.75;
  -webkit-transition: linear 150ms;
  transition: linear 150ms;
  color: #824B00;
  border: solid 1px #c3bab3;
  overflow: hidden;
}
.mvv-cards .mvv-item:hover {
  opacity: 1;
}
.mvv-cards .mvv-icon {
  position: absolute;
  top: 0;
  right: 0;
}
.mvv-cards .mvv-share {
  margin-bottom: 3px;
}
.mvv-cards .mvv-title {
  font-size: 16px;
  margin: 0;
}
.mvv-cards small {
  font-size: 10.5px;
}
@media (max-width: 550px) {
  .mvv-cards small {
    display: none;
  }
}

/**********************************
/* Produtos
/*********************************/
.produtos-wrapper {
  margin-top: 100px;
  display: block;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  text-align: center;
}

.produto-item {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.11);
  max-width: 300px;
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 50px;
}
@media (max-width: 650px) {
  .produto-item {
    max-width: 100%;
    width: 100%;
    margin: 30px 0;
  }
  .produto-item:last-child {
    margin-bottom: 0;
  }
}
.produto-item .produto-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}
@media (max-width: 1150px) {
  .produto-item .produto-content {
    padding: 15px;
  }
}
.produto-item .produto-title {
  text-align: center;
  color: #D87D00;
  margin: 0;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.produto-item .produto-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 85px;
  overflow: hidden;
}
.produto-item .produto-text {
  font-size: 0.85rem;
  line-height: 150%;
  text-align: center;
  color: #353535;
  opacity: 0.75;
}
.produto-item .produto-size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Recoleta", sans-serif;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100px;
  height: 35px;
  background-color: #524439;
  color: #fff;
  border-radius: 30px;
  margin: 0 auto 15px auto;
}
.produto-item .produto-image {
  width: 100%;
  height: 200px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.produto-item .produto-image img {
  width: 100%;
}
.produto-item .produto-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
}
.produto-item .produto-buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Recoleta", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: 60px;
  border: solid 1px transparent;
  padding: 0 15px;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  gap: 8px;
  text-align: center;
  -webkit-transition: linear 180ms;
  transition: linear 180ms;
}
.produto-item .produto-buttons a.btn-saiba {
  background-color: #FAF0DE;
  border-color: #D87D00;
  color: #D87D00;
}
.produto-item .produto-buttons a.btn-saiba:hover {
  background-color: #D87D00;
  color: #FAF0DE;
}
.produto-item .produto-buttons a.btn-whatsapp {
  border: solid 1px #00B095;
  color: #00B095;
}
.produto-item .produto-buttons a.btn-whatsapp:hover {
  background-color: #00B095;
  color: #fff;
}
.produto-item .produto-buttons a.btn-whatsapp:hover svg * {
  fill: #fff;
}

@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Regular.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
#form-contato-style {
  margin-top: 15px;
}
#form-contato-style .wpforms-container {
  padding: 0;
  margin: 0;
}
#form-contato-style .wpforms-field {
  position: relative;
  margin: 0;
  padding: 10px 0;
}
#form-contato-style .wpforms-field:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  z-index: 1;
}
#form-contato-style .form-nome:before {
  background-image: url("../images/icons/form-user.svg");
}
#form-contato-style .form-email:before {
  background-image: url("../images/icons/form-email.svg");
}
#form-contato-style .form-telefone:before {
  background-image: url("../images/icons/form-phone.svg");
}
#form-contato-style .form-mensagem:before {
  background-image: url("../images/icons/form-message.svg");
}
#form-contato-style .wpforms-field-description {
  font-size: 0.8rem;
}
#form-contato-style .wpforms-error {
  font-size: 0.8rem;
  margin-top: 3px;
}
#form-contato-style .wpforms-error:before {
  display: none;
}
#form-contato-style .wpforms-field-checkbox {
  opacity: 0.8;
}
#form-contato-style input, #form-contato-style textarea {
  height: 60px;
  border-radius: 7px;
  padding: 0 50px;
  color: #353535;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Recoleta", sans-serif;
  letter-spacing: 0.5px;
}
#form-contato-style input::-webkit-input-placeholder, #form-contato-style textarea::-webkit-input-placeholder {
  font-size: 1.1rem;
  font-family: "Recoleta", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #353535;
  opacity: 1;
}
#form-contato-style input::-moz-placeholder, #form-contato-style textarea::-moz-placeholder {
  font-size: 1.1rem;
  font-family: "Recoleta", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #353535;
  opacity: 1;
}
#form-contato-style input::-ms-input-placeholder, #form-contato-style textarea::-ms-input-placeholder {
  font-size: 1.1rem;
  font-family: "Recoleta", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #353535;
  opacity: 1;
}
#form-contato-style input::placeholder, #form-contato-style textarea::placeholder {
  font-size: 1.1rem;
  font-family: "Recoleta", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #353535;
  opacity: 1;
}
#form-contato-style input:focus, #form-contato-style textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: solid 1px #D87D00;
}
#form-contato-style button[type=submit] {
  background-color: #00B095;
  font-family: "Recoleta", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 1px;
  border-radius: 10px;
  width: 100%;
  height: 60px;
}
#form-contato-style textarea {
  height: inherit;
  min-height: 160px;
  padding: 20px 50px;
}
#form-contato-style input[type=checkbox] {
  width: 20px;
  height: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
  border: solid 1px #353535;
  padding: 0;
  margin-top: -3px;
}
#form-contato-style input[type=checkbox]:checked:before {
  background: #353535;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#form-contato-style input[type=checkbox]:checked:after {
  border-left: 4px solid #fff !important;
  border-bottom: 4px solid #fff !important;
}
#form-contato-style .wpforms-field-label-inline {
  font-size: 0.9rem;
  color: #353535;
  margin-left: 0;
}
#form-contato-style input[type=checkbox]:before {
  top: 0;
  left: 0;
  border-radius: 100%;
  border: solid 1px #fff;
  background: transparent;
}
#form-contato-style input[type=checkbox]:after {
  top: 0;
  left: 0;
}
#form-contato-style input[type=checkbox]:checked:after {
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
}

header {
  position: relative;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
          box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
  z-index: 5;
}

@media (max-width: 999px) {
  nav {
    display: none;
  }
}
nav ul {
  margin: 0;
  padding: 0;
}
nav li {
  display: inline-block;
  margin: 0 15px;
}
@media (max-width: 1180px) {
  nav li {
    margin: 0 8px;
  }
}
nav li:first-child {
  margin-left: 0;
}
nav a {
  font-size: 18px;
  font-weight: bold;
  font-family: "Recoleta", sans-serif;
  color: #524439;
  -webkit-transition: linear 150ms;
  transition: linear 150ms;
}
nav a:hover {
  color: #D87D00;
}

.nav-logo {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
}
@media (max-width: 1380px) {
  .nav-logo {
    left: 30px;
  }
}

.nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (max-width: 999px) {
  .nav-wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.nav-wrapper-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (max-width: 630px) {
  .nav-wrapper-buttons {
    display: none;
  }
}

.nav-wrapper-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-left: 175px;
}

.nav-mobile {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
}
@media (max-width: 999px) {
  .nav-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav-modal {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  min-width: 320px;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.13);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.13);
  z-index: 7;
}
@media (max-width: 520px) {
  .nav-modal {
    min-width: 235px;
  }
}
.nav-modal nav {
  display: block;
}
.nav-modal nav li {
  display: block;
  margin: 25px 0;
}
.nav-modal nav li:first-child {
  margin-top: 0;
}
.nav-modal nav li:last-child {
  margin-bottom: 0;
}
.nav-modal hr {
  border-top: 0 solid #e5e7eb;
  margin: 30px 0;
}
.nav-modal.active {
  display: block;
}

.fancybox__container {
  --fancybox-bg: rgb(216 125 0 / 80%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.fancybox__slide {
  padding: 80px;
  overflow-x: hidden;
}
@media (max-width: 600px) {
  .fancybox__slide {
    padding: 0;
  }
}

.fancybox__content {
  border-radius: 30px;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
          box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
  max-width: 880px;
  padding: 50px;
}
@media (max-width: 999px) {
  .fancybox__content {
    max-width: unset;
  }
}
@media (max-width: 600px) {
  .fancybox__content {
    padding: 50px 30px 30px;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.modal-title {
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-family: "Recoleta", sans-serif;
  font-size: 2.3rem;
  font-weight: bold;
  color: #D87D00;
  border-bottom: dashed 2px #ededed;
}

.modal-close-label {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7019607843);
}
.modal-close-label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-size: 9px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 30px;
  height: 30px;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.35);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  margin: 0 3px;
  padding: 4px 2px;
}
@media (max-width: 999px) {
  .modal-close-label {
    display: none;
  }
}

.modal-content {
  font-size: 1rem;
  line-height: 180%;
  max-height: 50vh;
  overflow-y: scroll;
  padding-right: 30px;
  padding-bottom: 50px;
}
.modal-content {
  scrollbar-width: auto;
  scrollbar-color: #D87D00 #ffffff;
}
.modal-content::-webkit-scrollbar {
  width: 10px;
}
.modal-content::-webkit-scrollbar-track {
  background: #ffffff;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: #D87D00;
  border-radius: 10px;
  border: 10px solid #ffffff;
}

.modal-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: dashed 2px #ededed;
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 800px) {
  .modal-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: baseline;
        -ms-flex-pack: baseline;
            justify-content: baseline;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.btn-modal {
  font-family: "Recoleta", sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 30px;
  -webkit-transition: linear 180ms;
  transition: linear 180ms;
}
@media (max-width: 800px) {
  .btn-modal {
    width: 100%;
    text-align: center;
    margin-right: inherit;
  }
}
.btn-modal.close {
  background: rgba(255, 72, 72, 0.1803921569);
  color: #ff4848;
}
.btn-modal.whatsapp {
  background-color: rgba(37, 211, 102, 0.231372549);
  color: #159f49;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.btn-modal.whatsapp:hover {
  background-color: #159f49;
  color: #fff;
}
.btn-modal.whatsapp:hover svg path {
  fill: #fff;
}
.btn-modal.orcamento {
  background-color: #faf0de;
  color: #d87d00;
}
.btn-modal.orcamento:hover {
  background-color: #d87d00;
  color: #faf0de;
}

.close-modal-text {
  color: #FF4848;
  font-family: "Recoleta", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  padding: 8px 30px;
  background: rgba(255, 72, 72, 0.1803921569);
  border-radius: 30px;
  -webkit-transition: linear 180ms;
  transition: linear 180ms;
}
.close-modal-text:hover {
  background-color: #FF4848;
  color: #fff;
}
@media (max-width: 550px) {
  .close-modal-text {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.modal-coffee {
  position: absolute;
  top: -90px;
  right: -110px;
  width: 250px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0;
}
@media (max-width: 550px) {
  .modal-coffee {
    top: -80px;
    right: -70px;
    width: 180px;
    height: 155px;
  }
}

.footer-wrapper-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media (max-width: 800px) {
  .footer-wrapper-buttons {
    width: 100%;
  }
}

#intro {
  padding-top: 150px;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url("../images/banners/BANNER_CARLO_INTRO_MOBILE_800w.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (min-width: 801px) {
  #intro {
    background-image: url("../images/banners/BANNER_CARLO_INTRO_DESKTOP_1920w.webp");
  }
}
@media (max-width: 800px) {
  #intro {
    min-height: 400px;
  }
  #intro .intro-wrapper {
    width: auto;
    text-align: center;
  }
  #intro .intro-wrapper br {
    display: none;
  }
  #intro .intro-wrapper a {
    margin: 0 auto;
  }
}

/**********************************
/* Sobre
/*********************************/
#sobre .glow {
  position: absolute;
  top: -100px;
  right: -100px;
  background: var(--Primria, #D87D00);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  width: 329px;
  height: 326px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: -1;
}
@media (max-width: 550px) {
  #sobre .glow {
    width: 250px;
    height: 250px;
  }
}
#sobre .section-coffee {
  position: absolute;
  width: 250px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0;
  right: -130px;
  top: -100px;
  z-index: 1;
  -webkit-animation: 10s ease-in-out infinite floating;
          animation: 10s ease-in-out infinite floating;
}
@media (max-width: 600px) {
  #sobre .section-coffee {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -30px;
  }
}
@media (max-width: 600px) {
  #sobre .title {
    margin-right: 60px;
  }
}
#sobre .btn-readmore {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  max-width: 120px;
  height: 35px;
  padding: 0 10px;
  font-weight: bold;
  color: #FAF0DE;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 30px;
  background-color: #524439;
  cursor: pointer;
  margin-top: 15px;
  /* Make mobile friendly */
}
#sobre .btn-readmore svg {
  width: 10px;
  stroke: #FAF0DE;
}
@media (max-width: 550px) {
  #sobre .btn-readmore {
    padding: 10px 20px;
    text-align: center;
    margin: 0;
    border-radius: 10px;
    margin-top: 30px;
    width: auto;
    max-width: 100%;
  }
}

/**********************************
/* Horizontal Slider
/*********************************/
.horizontal-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  overflow: hidden;
  height: 80px;
  border-top: solid 1px #e7d5bb;
  border-bottom: solid 1px #e7d5bb;
}
.horizontal-slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  animation: slideHorizontal2 50s linear alternate-reverse infinite;
}
.horizontal-slider li {
  display: inline-block;
  margin: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.horizontal-slider .h-slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  gap: 15px;
}
.horizontal-slider .h-slider-item span {
  font-family: "Recoleta", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #D87D00;
  letter-spacing: 2px;
}

/**********************************
/* Diferenciais
/*********************************/
.diferencial-container {
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.11);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media (max-width: 999px) {
  .diferencial-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.diferencial-container .diferencial-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 50px 0 50px 50px;
}
@media (max-width: 999px) {
  .diferencial-container .diferencial-text {
    padding: 50px;
  }
}
@media (max-width: 600px) {
  .diferencial-container .diferencial-text {
    padding: 30px;
  }
}
@media (max-width: 550px) {
  .diferencial-container .diferencial-text {
    padding: 15px 8px;
  }
}
.diferencial-container .diferencial-images {
  width: 100%;
  height: 550px;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media (max-width: 550px) {
  .diferencial-container .diferencial-images {
    height: 300px;
  }
}
.diferencial-container .diferencial-images img {
  margin-left: auto;
  margin-right: inherit;
}
.diferencial-container .diferencial-images .swiper-diferencial {
  max-width: 550px;
  overflow: hidden;
  margin-left: auto;
  border-radius: 15px;
}
@media (max-width: 999px) {
  .diferencial-container .diferencial-images .swiper-diferencial {
    margin: 0 auto;
  }
}
.diferencial-container .diferencial-images .swiper-slide {
  overflow: hidden;
  max-width: 550px;
}
@media (max-width: 550px) {
  .diferencial-container .diferencial-images .swiper-slide {
    height: 300px;
  }
  .diferencial-container .diferencial-images .swiper-slide img {
    width: 100%;
  }
}
.diferencial-container .diferencial-images .swiper-wrapper {
  max-width: 550px;
}
.diferencial-container .diferencial-images .diferencial-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-35%);
          transform: translateX(-35%);
  width: auto;
  z-index: 2;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.18);
  padding: 5px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}
@media (max-width: 999px) {
  .diferencial-container .diferencial-images .diferencial-pagination {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.diferencial-container .diferencial-images .diferencial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #fff;
}
.diferencial-container .diferencial-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.diferencial-container .diferencial-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  color: #717171;
}
.diferencial-container .diferencial-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/checkmark.svg");
  background-size: contain;
}

/**********************************
/* Contato
/*********************************/
#contato {
  background-image: none;
  background-size: cover;
  background-position: bottom bottom;
  background-repeat: no-repeat;
  position: relative;
}
#contato .contato-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  z-index: 0;
  pointer-events: none;
}
#contato > .container {
  position: relative;
  z-index: 1;
}
#contato:before {
  z-index: 1;
}
#contato:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 550px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-3.56%, rgba(138, 96, 55, 0.66)), color-stop(-3.55%, rgba(48, 29, 10, 0.66)), to(rgba(184, 153, 128, 0)));
  background: linear-gradient(0deg, rgba(138, 96, 55, 0.66) -3.56%, rgba(48, 29, 10, 0.66) -3.55%, rgba(184, 153, 128, 0) 100%);
}
#contato .logo-wrapper {
  margin-top: 10rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contato .logo-wrapper span {
  color: #fff;
  opacity: 0.7;
}
#contato .logo-wrapper a {
  font-family: "Recoleta", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0.7;
  padding: 8px;
}
#contato .main-title {
  margin-bottom: 15px;
}
#contato .main-title * {
  color: #353535;
}
#contato .contato-wrapper-texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 1199px) {
  #contato .contato-wrapper-texts {
    text-align: center;
  }
}
#contato .contato-items {
  margin-top: 3rem;
}
#contato .contato-items .contato-item {
  margin: 3rem 0;
}
#contato .contato-items .contato-item:first-child {
  margin-top: 0;
}
#contato .contato-items .contato-item:last-child {
  margin-bottom: 0;
}
#contato .contato-items .contato-title {
  font-size: 1.56rem;
  color: #353535;
  margin-bottom: 0;
}
#contato .contato-items .contato-text {
  font-family: "Recoleta", sans-serif;
  font-size: 0.938;
  color: #524439;
  opacity: 0.75;
  margin-bottom: 5px;
}
#contato .contato-items .contato-number {
  font-size: 1.875rem;
  font-family: "Recoleta", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  color: #D87D00;
}
#contato .contato-items .contato-button-wrapper {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  gap: 15px;
  width: auto;
}
@media (max-width: 1199px) {
  #contato .contato-items .contato-button-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#contato .contato-items .contato-button-wrapper a:not(.btn-social) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 45px;
  padding: 0 15px;
  border-radius: 10px;
  background-color: #353535;
  color: #fff;
  font-family: "Recoleta", sans-serif;
  font-weight: 600;
  gap: 15px;
  letter-spacing: 1px;
}
#contato .contato-items .contato-button-wrapper a:not(.btn-social) svg {
  width: 20px;
  height: 20px;
}
#contato .contato-items .contato-button-wrapper a:not(.btn-social) svg * {
  fill: #fff;
}
#contato .contato-wrapper-form {
  position: relative;
  max-width: 520px;
  margin-top: 8rem;
}
@media (max-width: 1199px) {
  #contato .contato-wrapper-form {
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
#contato .contato-wrapper-form:before {
  content: "";
  position: absolute;
  top: -50px;
  left: -20%;
  width: 200px;
  height: 270px;
  background-image: url("../images/layout/logo-passaro.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 600px) {
  #contato .contato-wrapper-form:before {
    left: inherit;
    right: -20%;
    top: -15%;
  }
}
#contato .span-label {
  margin-top: 5px;
  font-size: 0.9rem;
  display: block;
  text-align: center;
  font-family: "Recoleta", sans-serif;
  letter-spacing: 0.5px;
  color: #8f8f8f;
}
#contato .contato-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  #contato .contato-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#contato .contato-wrapper .contato-form {
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.11);
  position: relative;
  overflow: hidden;
}
@media (max-width: 450px) {
  #contato .contato-wrapper .contato-form {
    padding: 30px;
  }
}
#contato .contato-wrapper .contato-form:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 133px;
  background-image: url("../images/layout/coffee-form.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#contato .contato-wrapper .form-title {
  padding-right: 100px;
}
#contato .contato-wrapper .form-title .title {
  font-size: 1.56rem;
  margin-bottom: 10px;
}
#contato .contato-wrapper .form-title p {
  font-family: "Recoleta", sans-serif;
  font-size: 0.95rem;
  line-height: 120%;
  margin: 0;
}

/* Mobile performance */
#produtos,
#diferenciais,
#contato {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

@media (max-width: 900px) {
  #sobre .glow {
    display: none;
  }

  .about-card .about-cards .wrapper-1,
  .about-card .about-cards .wrapper-2,
  .about-card .about-cards .wrapper-3,
  .horizontal-slider ul,
  #sobre .section-coffee {
    animation: none !important;
  }

  .scroll-left,
  .scroll-right,
  .scroll-bottom,
  .ativo {
    transition-duration: 0.35s;
  }

  header .nav-button,
  .nav-modal,
  .overlay {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
