@charset "UTF-8";
@keyframes pulse-down {
  0%, 100% {
    /* Original position and size */
    transform: translateY(0) scale(1);
  }
  50% {
    /* Move up 10px and grow slightly */
    transform: translateY(-7px) scale(1.05);
  }
}
@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
} /*End of Zoom in Keyframes */
@keyframes zoominOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
} /*End of Zoom in Keyframes */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* <loader */
section {
  overflow: hidden;
}

#overlay {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #A18D7B 0%, #b3a08f 40%, #8e7a69 100%);
}
#overlay .cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 70px;
}
#overlay .cv-spinner img {
  width: 250px;
  margin-top: -120px;
}
#overlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px rgba(255, 255, 255, 0.4) solid;
  border-top: 4px #fff solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
#overlay.is-hide {
  display: none;
}

/* /> preloader */
#block {
  display: none;
}
@media (max-width: 991px) {
  #block {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    background: linear-gradient(45deg, #C6A05E, #C0964D);
    padding: 30px;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    color: white;
  }
}

/* EXTRA LIGHT */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/Grift-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
/* LIGHT */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/Grift-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* LIGHT */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/Grift-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* LIGHT Italic */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/Grift-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
/* REGULAR */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/Grift-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* MEDIUM */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/Grift-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* SEMIBOLD */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/Grift-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* BOLD */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/Grift-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* EXTRABOLD */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/Grift-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
body {
  background-color: #F7F7F2;
  font-family: "Grift", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
}
body h1, body h2, body h3, body h4 {
  letter-spacing: 1px;
  font-weight: 400;
  font-family: "Grift", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body p, body strong, body span, body li, body em, body ul {
  font-family: "Grift", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body b, body strong {
  font-weight: 700;
}
body section {
  overflow-x: hidden;
}

.container {
  padding-left: 2.7vw;
  padding-right: 2.7vw;
}
@media (max-width: 991px) {
  .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
.container.big {
  min-width: 1440px;
  padding-left: 2vw;
  padding-right: 2vw;
}
@media (max-width: 991px) {
  .container.big {
    padding-left: 2vw;
    padding-right: 2vw;
    min-width: initial;
  }
  .container.big.mobile-subpages {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

a {
  color: #000;
  font-size: 16px;
  text-decoration: unset;
  outline: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  .hide-desktop {
    display: none;
  }
}
/*Reflete em toda LP*/
nav.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  background-color: transparent;
  transition: 0.6s;
  padding: 40px 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  transition: 0.6s;
  overflow: hidden;
}
@media (max-width: 991px) {
  nav.navbar {
    padding: 0 25px;
    padding-top: 45px;
    overflow: unset;
    min-height: 40px;
  }
}
nav.navbar:before {
  display: block;
}
nav.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(106, 105, 87, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}
nav.navbar.active {
  padding: 20px 0;
}
@media (max-width: 991px) {
  nav.navbar.active {
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
nav.navbar.active::before {
  transform: translateY(0);
}
@media (max-width: 991px) {
  nav.navbar.active .logo img {
    transform: scale(0.9);
  }
}
nav.navbar.active .flex-group .menu ul li a {
  color: rgba(255, 255, 255, 0.85);
}
nav.navbar.active .flex-group .menu ul li a:hover {
  color: rgb(255, 255, 255);
}
nav.navbar .flex-group {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
}
nav.navbar .flex-group .center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  nav.navbar .flex-group .menu {
    display: none;
  }
}
nav.navbar .flex-group .menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
nav.navbar .flex-group .menu ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 19px;
  padding-left: 19px;
  letter-spacing: 1px;
}
nav.navbar .flex-group .menu ul li:first-child {
  padding: 0;
  margin-right: 0.9vw;
}
nav.navbar .flex-group .menu ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: unset;
  padding-bottom: 8px;
  /*effect menu animation*/
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
  outline: 0;
}
nav.navbar .flex-group .menu ul li a:hover {
  background-size: 100% 2px;
}
nav.navbar .flex-group .left {
  width: unset;
  display: flex;
}
@media (max-width: 991px) {
  nav.navbar .flex-group .left {
    align-items: center;
    justify-content: center;
  }
}
nav.navbar .flex-group .left .logo {
  height: 42px;
  display: block;
}
nav.navbar .flex-group .left .logo .logo-in {
  margin-right: 0;
  display: flex;
  max-width: 133px;
  height: 42px;
  position: absolute;
  left: 10%;
  gap: 15px;
  align-items: center;
}
@media (max-width: 991px) {
  nav.navbar .flex-group .left .logo .logo-in {
    left: 7%;
  }
}
nav.navbar .flex-group .left .logo img.caras {
  opacity: 0.85;
  margin-top: 3px;
}
@media (max-width: 991px) {
  nav.navbar .flex-group .left .logo {
    margin-right: 0;
    line-height: 0;
    margin-bottom: 5px;
  }
}
nav.navbar .flex-group .left .logo a {
  font-size: unset;
}
nav.navbar .flex-group .left .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.6s;
  height: 42px;
}

.menu-mobile-icon {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 20;
  position: absolute;
  right: 20px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
@media (min-width: 992px) {
  .menu-mobile-icon {
    display: none;
  }
}
.menu-mobile-icon:hover {
  opacity: 1;
}
.menu-mobile-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  transform: scaleY(0.65);
  transform-origin: center;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.3s ease, background 0.25s ease;
}
.menu-mobile-icon span:nth-child(2) {
  width: 70%;
  margin-left: auto;
}
.menu-mobile-icon.open span {
  background: #fff;
}
.menu-mobile-icon.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) scaleY(0.65);
}
.menu-mobile-icon.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.5) scaleY(0.65);
}
.menu-mobile-icon.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) scaleY(0.65);
}

@media (max-width: 991px) {
  .menu-mobile {
    position: fixed;
    left: 0;
    width: 100%;
    background: linear-gradient(45deg, #f7f7f7, #eee);
    height: 100%;
    padding-left: 25px;
    align-items: center;
    justify-content: start;
    top: 0;
    padding-top: 20px;
    z-index: 3;
    margin-left: 100%;
    transition: ease 0.75s;
    display: flex;
  }
  .menu-mobile.open {
    margin-left: 0;
  }
  .menu-mobile .logos {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  .menu-mobile .logos img {
    width: 180px;
  }
  .menu-mobile ul li {
    margin-bottom: 35px;
    list-style-type: none;
  }
  .menu-mobile ul li a {
    color: #8b7765;
    font-size: 18px;
    transition: 0.6s;
    font-weight: 500;
    opacity: 0.9;
  }
  .menu-mobile ul li a:hover {
    opacity: 1;
  }
}
header.header-home {
  min-height: var(--altura-real);
  min-height: var(--altura-real);
  background: linear-gradient(135deg, #6A6957, #5E5D4D);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header.header-home .logo {
  display: block;
  margin: 0 auto;
  width: 420px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(1);
}
header.header-home .down-btn {
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  animation: pulse-down 2s ease-in-out infinite;
}
header.header-home .down-btn:hover {
  opacity: 0.6;
}
header.header-home .down-btn svg {
  font-size: 35px;
  fill: white;
}

section.home-manifesto {
  display: block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
@media (min-width: 992px) {
  section.home-manifesto {
    min-height: var(--altura-real);
  }
}
@media (max-width: 991px) {
  section.home-manifesto {
    min-height: 550px;
  }
}
section.home-manifesto #playvideo {
  position: absolute;
  left: 0%;
  right: 0%;
  top: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  display: block;
  width: 88px;
  height: 88px;
  cursor: pointer;
}
@media (max-width: 991px) {
  section.home-manifesto #playvideo {
    width: 66px;
    height: 66px;
  }
}
section.home-manifesto #playvideo img {
  width: 88px;
  height: 88px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  section.home-manifesto #playvideo img {
    width: 66px;
    height: 66px;
  }
}
section.home-manifesto video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 991px) {
  section.home-manifesto video {
    height: 550px;
    -o-object-position: center;
       object-position: center;
  }
}
section.home-manifesto .box {
  z-index: 2;
}
section.home-manifesto:before {
  background: linear-gradient(90deg, black, transparent);
  content: "";
  left: 0;
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 0;
  top: 0;
  opacity: 0.3;
}
section.home-manifesto .box * {
  position: relative;
}
section.home-manifesto .box {
  max-width: 580px;
}
section.home-manifesto .box span.tag {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 45px;
  font-size: 14px;
  letter-spacing: 3px;
  color: #C0964D;
}
section.home-manifesto .box h2 {
  font-size: 50px;
  font-weight: 200;
  display: block;
  margin-bottom: 53px;
  letter-spacing: 2px;
  line-height: 1.25;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}
section.home-manifesto .box h2 span {
  display: block;
}
section.home-manifesto .box p {
  margin-top: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;
  line-height: 1.6;
  max-width: 500px;
  text-wrap: pretty;
}
section.home-manifesto .video-box {
  overflow: hidden;
  border-radius: 20px;
}
section.home-manifesto .video-box video {
  width: 100%;
  display: block;
  animation: posterZoom 8s ease-in-out infinite alternate;
}
section.home-manifesto {
  /* remove animação quando der play */
}
section.home-manifesto .video-box video.playing {
  animation: none;
}
@keyframes posterZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@media (min-width: 992px) {
  section.home-padrao {
    min-height: var(--altura-real);
  }
}
section.home-padrao {
  background: #fff;
}
@media (min-width: 992px) {
  section.home-padrao.diferenciais .box {
    padding-top: 0;
    padding-bottom: 0;
  }
}
section.home-padrao.diferenciais p {
  max-width: 830px;
  text-align: left;
  text-wrap: pretty;
}
section.home-padrao.diferenciais p.justify {
  text-align: justify;
}
section.home-padrao.diferenciais h2 {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  section.home-padrao.diferenciais h2 {
    margin-bottom: 30px;
  }
}
section.home-padrao.diferenciais .group {
  margin-bottom: 20px;
}
section.home-padrao.diferenciais .group p {
  margin-bottom: 0;
}
section.home-padrao.diferenciais .group strong {
  font-weight: bolder;
}
@media (min-width: 992px) {
  section.home-padrao.diferenciais .destaque {
    margin-left: -15px;
  }
  section.home-padrao.diferenciais .destaque.corrigir {
    width: calc(100% + 15px);
  }
  section.home-padrao.diferenciais .col-lg-5 {
    padding-left: 0;
  }
  section.home-padrao.diferenciais .col-lg-7 {
    padding-right: 0;
  }
}
section.home-padrao .box {
  padding: 110px;
}
@media (max-width: 991px) {
  section.home-padrao .box {
    padding: 30px;
    padding-top: 60px;
  }
}
section.home-padrao .destaque {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 992px) {
  section.home-padrao .destaque {
    height: var(--altura-real);
  }
}
@media (max-width: 991px) {
  section.home-padrao .destaque {
    height: 380px;
  }
}
section.home-padrao span.tag {
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 18px;
  letter-spacing: 3px;
  color: #BEB039;
  display: block;
}
@media (max-width: 991px) {
  section.home-padrao span.tag {
    font-size: 15px;
  }
}
section.home-padrao span.tag img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  section.home-padrao span.tag img {
    width: 18px;
    height: 18px;
  }
}
section.home-padrao h1, section.home-padrao h2, section.home-padrao p, section.home-padrao span {
  letter-spacing: 1px;
}
section.home-padrao {
  /*h1,h2{
      color: #A98F78;
      letter-spacing: unset;
  }*/
}
section.home-padrao h2 {
  font-size: 37px;
  font-weight: 400;
  display: block;
  margin-bottom: 53px;
  letter-spacing: 2px;
  line-height: 1.25;
  color: #626151;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.home-padrao h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
section.home-padrao p {
  font-size: 19px;
  line-height: 140%;
  font-weight: 400;
  color: #626151;
  margin-bottom: 5px;
  max-width: 580px;
  text-align: justify;
}
@media (max-width: 991px) {
  section.home-padrao p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
    text-wrap: pretty;
  }
}
section.home-padrao p.bold {
  font-weight: 700;
}
section.home-padrao .hero-swiper {
  width: 100%;
}
@media (min-width: 992px) {
  section.home-padrao .hero-swiper {
    height: var(--altura-real);
  }
}
@media (max-width: 991px) {
  section.home-padrao .hero-swiper {
    height: 380px;
  }
}
section.home-padrao .hero-swiper .swiper-slide {
  overflow: hidden;
  position: relative;
}
section.home-padrao .hero-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
section.home-padrao .hero-swiper .swiper-slide .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  filter: contrast(1.07) saturate(1.07);
  transform: scale(1.15); /* estado inicial */
  transition: transform 5s cubic-bezier(0.22, 1, 0.36, 1);
}
section.home-padrao .hero-swiper .swiper-slide.swiper-slide-active .bg {
  transform: scale(1);
}
section.home-padrao .hero-swiper .swiper-slide.swiper-slide-active .container .logo {
  opacity: 1;
  transform: translateY(0);
}
section.home-padrao .hero-swiper .swiper-slide.swiper-slide-active .hero-title {
  opacity: 1;
  transform: translateY(0);
}
section.home-padrao .hero-swiper .swiper-slide .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  margin-top: 50px;
}
@media (max-width: 991px) {
  section.home-padrao .hero-swiper .swiper-slide .container {
    margin-top: 80px;
  }
}
section.home-padrao .hero-swiper .swiper-slide .container .logo {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease;
  width: 333px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  section.home-padrao .hero-swiper .swiper-slide .container .logo {
    width: 250px;
  }
}
section.home-padrao .hero-swiper .swiper-slide .container .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
section.home-padrao .hero-swiper .swiper-slide .container .hero-content .hero-title {
  color: white;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease;
  text-transform: unset;
  margin-top: 65px;
}
@media (max-width: 991px) {
  section.home-padrao .hero-swiper .swiper-slide .container .hero-content .hero-title {
    font-size: 22px;
  }
}
section.home-padrao .hero-swiper .swiper-horizontal > .swiper-pagination-bullets, section.home-padrao .hero-swiper .swiper-pagination-bullets.swiper-pagination-horizontal, section.home-padrao .hero-swiper .swiper-pagination-custom, section.home-padrao .hero-swiper .swiper-pagination-fraction {
  bottom: 45px;
}
@media (max-width: 991px) {
  section.home-padrao .hero-swiper .swiper-horizontal > .swiper-pagination-bullets, section.home-padrao .hero-swiper .swiper-pagination-bullets.swiper-pagination-horizontal, section.home-padrao .hero-swiper .swiper-pagination-custom, section.home-padrao .hero-swiper .swiper-pagination-fraction {
    bottom: 25px;
  }
}
section.home-padrao .hero-swiper .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.7;
  width: 9px;
  height: 9px;
}
@media (max-width: 991px) {
  section.home-padrao .hero-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}
section.home-padrao .hero-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.95);
  opacity: 1;
}
section.home-padrao .hero-swiper .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
section.home-padrao .hero-swiper .swiper-slide {
  position: relative;
}
section.home-padrao .hero-swiper .bg.loaded {
  opacity: 1;
}
section.home-padrao .hero-swiper {
  /* loader */
}
section.home-padrao .hero-swiper .slide-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  border: 4px solid rgba(59, 130, 246, 0.2);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: swiperSpin 1s linear infinite;
  z-index: 10;
}
section.home-padrao .hero-swiper .slide-loading.hidden {
  display: none;
}
@keyframes swiperSpin {
  to {
    transform: rotate(360deg);
  }
}
section.home-padrao .texts-swiper {
  width: 100%;
}
section.home-padrao .texts-swiper .swiper-slide {
  position: relative;
}
section.home-padrao .texts-swiper .swiper-slide.swiper-slide-active .bg {
  transform: scale(1);
}
section.home-padrao .texts-swiper .swiper-slide.swiper-slide-active .container .logo {
  opacity: 1;
  transform: translateY(0);
}
section.home-padrao .texts-swiper .swiper-slide.swiper-slide-active .hero-title {
  opacity: 1;
  transform: translateY(0);
}
section.home-padrao .texts-swiper .swiper-horizontal > .swiper-pagination-bullets, section.home-padrao .texts-swiper .swiper-pagination-bullets.swiper-pagination-horizontal, section.home-padrao .texts-swiper .swiper-pagination-custom, section.home-padrao .texts-swiper .swiper-pagination-fraction {
  /* bottom: 45px;
   @media(max-width:991px){
       bottom:25px
   }*/
}
section.home-padrao .texts-swiper .swiper-texts-pagination .swiper-pagination-bullet {
  inset: 0;
  background: rgba(106, 105, 87, 0.8);
  backdrop-filter: blur(10px);
  opacity: 0.7;
  width: 10px;
  height: 10px;
}
@media (max-width: 991px) {
  section.home-padrao .texts-swiper .swiper-texts-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}
section.home-padrao .texts-swiper .swiper-texts-pagination .swiper-pagination-bullet-active {
  background: rgba(106, 105, 87, 0.95);
  opacity: 1;
}
section.home-padrao section.maps {
  z-index: 2;
  position: relative;
}
section.home-padrao section.maps #map {
  height: 500px;
}
@media (max-width: 991px) {
  section.home-padrao section.maps #map {
    height: 350px;
  }
}

/*
@use "home/localizacao";  
@use "home/historia";  
@use "home/peninsula"; 
*/
section.home-contato {
  padding: 180px 0;
  background: #f7faf2;
  position: relative;
  display: block;
  overflow: hidden;
  color: #626151;
}
@media (max-width: 991px) {
  section.home-contato {
    padding-bottom: 0px;
    padding-top: 60px;
  }
  section.home-contato .container {
    padding: 0 30px;
  }
}
section.home-contato .box * {
  position: relative;
}
section.home-contato img.fundador {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 991px) {
  section.home-contato img.fundador {
    position: relative;
    width: 100%;
    height: 340px;
    margin-top: 60px;
  }
}
section.home-contato .in {
  display: flex;
  justify-content: end;
}
section.home-contato .box {
  max-width: 580px;
}
section.home-contato .box span.tag {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 45px;
  font-size: 11px;
  letter-spacing: 3px;
  color: #C0964D;
}
section.home-contato .box h2 {
  font-size: 50px;
  font-weight: 200;
  display: block;
  margin-bottom: 24px;
  letter-spacing: 1px;
  line-height: 1.25;
  text-transform: uppercase;
  color: #626151;
}
@media (max-width: 991px) {
  section.home-contato .box h2 {
    font-size: 22px;
  }
}
section.home-contato .box h2 span {
  display: block;
}
section.home-contato .box p {
  margin-top: 20px;
  font-weight: 300;
  color: #626151;
  font-size: 14px;
  line-height: 1.6;
  max-width: 390px;
}
@media (max-width: 991px) {
  section.home-contato .box p {
    text-wrap: pretty;
  }
}
section.home-contato label {
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #626151;
}
@media (max-width: 991px) {
  section.home-contato label {
    margin-top: 0px;
  }
}
section.home-contato input, section.home-contato textarea {
  min-height: 45px;
}
section.home-contato input::-moz-placeholder, section.home-contato textarea::-moz-placeholder {
  font-size: 12px;
  text-transform: uppercase;
}
section.home-contato input::placeholder, section.home-contato textarea::placeholder {
  font-size: 12px;
  text-transform: uppercase;
}
section.home-contato textarea {
  padding-top: 10px;
}
section.home-contato .btn-premium {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  color: #fff;
  background: #C6A05E;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 0;
  cursor: pointer;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 991px) {
  section.home-contato .btn-premium {
    padding: 10px 24px;
  }
}
section.home-contato .btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s ease;
}
section.home-contato .btn-premium:hover::before {
  left: 100%;
}
section.home-contato .btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
section.home-contato .marca {
  filter: invert(1);
  position: absolute;
  right: 70px;
  margin-top: -30px;
  opacity: 0.6;
  width: 100px;
}

footer {
  background: linear-gradient(135deg, #6A6957, #5E5D4D);
  padding: 60px 0;
  padding-bottom: 90px;
}
footer .parceiros {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}
@media (min-width: 992px) {
  footer .parceiros {
    gap: 39px;
    margin-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
    padding-right: 40px;
  }
}
footer .parceiros img {
  width: 80px;
  height: 35px;
}
@media (min-width: 992px) {
  footer .parceiros img {
    height: 40px;
    width: 100px;
  }
}
@media (max-width: 991px) {
  footer .parceiros img {
    width: 90px;
    height: 35px;
    margin-bottom: 15px;
  }
  footer .parceiros img.flapper {
    margin-right: 10px;
  }
}
footer .parceiros img {
  -o-object-fit: contain;
     object-fit: contain;
  filter: contrast(0) brightness(10);
}
footer .logo-in {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 992px) {
  footer .logo-in {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  footer .logo-in {
    flex-direction: column;
    gap: 25px;
  }
}
footer .logo-in img {
  height: 46px;
  position: relative;
  margin-top: -20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  footer .logo-in img {
    height: 37px;
    position: relative;
    margin-top: -20px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 110px;
  }
}
footer .logo-in img.caras {
  margin-top: -15px;
}
@media (max-width: 991px) {
  footer .logo-in img.caras {
    height: 40px;
  }
}
@media (max-width: 991px) {
  footer .logo-in img {
    margin-top: 0;
    width: 100px;
  }
}
footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  footer ul {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-top: 15px;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 0px;
  }
}
footer ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 19px;
  padding-left: 19px;
  letter-spacing: 0.2em;
}
@media (max-width: 991px) {
  footer ul li {
    padding: 0;
    letter-spacing: 0.1em;
    margin: 0;
  }
}
footer ul li:first-child {
  padding: 0;
  margin-right: 0.9vw;
}
@media (max-width: 991px) {
  footer ul li:first-child {
    margin-right: 0;
  }
}
footer ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 8px;
  letter-spacing: 1px;
  /*effect menu animation*/
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
  outline: 0;
}
@media (max-width: 991px) {
  footer ul li a {
    font-size: 12px;
    text-align: right;
    font-weight: 600;
  }
}
footer ul li a:hover {
  background-size: 100% 2px;
  text-decoration: none;
  color: #fff;
}
footer .link, footer .local {
  font-size: 13px;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
  color: white;
  transition: 0.6s;
}
footer .link {
  text-decoration: none;
}
footer .link:hover {
  color: #C59D59;
}
footer i {
  color: white;
  opacity: 0.8;
  transition: 0.6s;
}
footer i:hover {
  opacity: 1;
  transform: translateY(-2px);
}/*# sourceMappingURL=custom.css.map */