@charset "UTF-8";
@import url("https://use.typekit.net/yuu3twv.css");
@font-face {
  font-family: "Clash Display";
  src: url("../assets/Fonts/ClashDisplay-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Candara";
  src: url("../assets/Fonts/Candara.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Candara";
  src: url("../assets/Fonts/Candara_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Candara";
  src: url("../assets/Fonts/Candara_Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Candara";
  src: url("../assets/Fonts/Candara_Bold_Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
:root {
  --grey-color: rgba(64, 64, 65, 1);
  --grey-color-rgb: 64, 64, 65;
  --red-color: #8f162b;
  --hexcolor: red;
  --hexcolor2: red;
  --quantidadeVideos: 5;
}

@font-face {
  font-family: "Bebas Neue";
  src: url(BebasNeue-webfont.eot);
  src: url(BebasNeue-webfont.woff2) format("woff2"), url(BebasNeue-webfont.woff) format("woff"), url(BebasNeue-webfont.ttf) format("truetype"), local(Arial), local(Helvetica);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url(bebas-neue-book.otf);
  src: url(bebas-neue-book-webfont.woff2) format("woff2"), url(bebas-neue-book-webfont.woff) format("woff"), local(Arial), local(Helvetica);
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url(Bebas-Neue-Light.ttf.eot);
  src: url(Bebas-Neue-Light.ttf.woff) format("woff2"), local(Arial), local(Helvetica);
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
.gooey {
  position: relative;
  width: 142px;
  height: 40px;
}

.gooey .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(0);
  -webkit-animation: dot 1.5s infinite;
  animation: dot 1.5s infinite;
}

.gooey .dots {
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 1.5s infinite;
  animation: dots 1.5s infinite;
}

.gooey .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #fff;
  border-radius: 50%;
}

@-webkit-keyframes dot {
  50% {
    transform: translateX(96px);
  }
}
@keyframes dot {
  50% {
    transform: translateX(96px);
  }
}
@-webkit-keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}
@keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}
@-webkit-keyframes jump {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-14px);
  }
  50% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(-5px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-14px);
  }
  50% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(-5px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
article,
body,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  font-family: Candara, sans-serif;
  color: var(--grey-color);
  overflow-x: hidden;
}

body.menu-opened {
  overflow: hidden;
}

.content {
  width: 100%;
}

.flex-box {
  display: flex;
}

.flex-box.justify-space-between {
  justify-content: space-between;
}

.flex-box.justify-space-around {
  justify-content: space-around;
}

.flex-box.justify-flex-end {
  justify-content: flex-end;
}

.flex-box.justify-center {
  justify-content: center;
}

.flex-box.justify-end {
  justify-content: flex-end;
}

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

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

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

.flex-box.direction-column {
  flex-direction: column;
}

.flex-box.wrap {
  flex-wrap: wrap;
}

.flex-box .flex-grow-0 {
  flex-grow: 0;
}

.flex-box .flex-grow-1 {
  flex-grow: 1;
}

.flex-box .flex-shrink-0 {
  flex-shrink: 0;
}

.flex-box .flex-shrink-1 {
  flex-shrink: 1;
}

.flex-box .self-flex-start {
  align-self: flex-start;
}

.menu-opened .header-top {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
}

.header-top .logo,
.header-top .search {
  transition: all 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header-top .links {
  transition: all 0.5s linear;
}

.header-top .content {
  position: relative;
}

.close-search {
  opacity: 0.7;
}

.button-menu,
.close-search {
  width: 35px;
  height: 18px;
  cursor: pointer;
  z-index: 999;
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  top: -2px;
  left: 0;
}

.button-menu span,
.close-search span {
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 50%;
  margin-bottom: -1px;
  border-radius: 5px;
  opacity: 1;
  box-sizing: border-box;
}

header.color-reverse .close-search span {
  background-color: #404041;
}

.menu-opened .button-menu span {
  background: #404041;
}

.button-menu span:first-child,
.close-search span:first-child {
  top: 0;
  margin-top: 0;
}

.button-menu span:last-child,
.close-search span:last-child {
  top: auto;
  bottom: 0;
  margin-top: 0;
}

.button-menu .text {
  text-align: center;
  display: block;
  color: #fff;
  font-size: 18px;
  margin: 0;
  position: absolute;
  left: calc(-100% - 27px);
  top: -2px;
}

.menu-opened .header-top .content > * {
  flex-basis: auto;
}

.close-search {
  height: 1px;
  top: 0;
}

.menu-opened .button-menu {
  top: 0;
}

.close-search span,
.menu-opened .button-menu span {
  transform: rotate(45deg);
  bottom: calc(50% - 1px);
  right: 12px;
  top: auto;
  width: 24px;
}

.close-search span:first-child,
.menu-opened .button-menu span:first-child {
  transform: rotate(-45deg);
  bottom: auto;
  top: calc(50% - 1px);
}

.menu-opened .button-menu span:nth-child(2) {
  opacity: 0;
}

.menu-opened .button-menu .text {
  color: #404041;
  display: none;
}

.header-top,
.header-top .content .container > * {
  transition: all 0.4s ease-in-out;
}

.header-top .content .container {
  width: 100%;
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 24px 0;
}

.header-top.header-sticky {
  position: fixed;
}

body:not(.menu-opened) .header-top.header-home.no-top .logo .full-icon {
  transform: translateX(-100vw);
}

body:not(.menu-opened) .header-top.header-home.no-top .logo .small-icon {
  opacity: 1;
}

.header-top .logo .small-icon {
  position: absolute;
  height: 35px;
  left: 0;
  top: 0;
  opacity: 0;
}

.header-top .logo .small-icon path {
  fill: #fff;
}

body:not(.menu-opened) .header-top.no-top.header-home .hide-right {
  transform: translateX(100vw);
}

body:not(.menu-opened) .header-top.header-home.no-home .logo .small-icon path {
  fill: #404041;
  transition: 0s;
}

body:not(.menu-opened) .header-top.header-home.no-home .button-menu span {
  background: #404041;
  transition: 0s;
}

.header-top .main-menu {
  overflow: hidden;
  width: 0;
  position: absolute;
  top: 12px;
  left: 135px;
  max-width: calc(100% - 434px);
}

.menu-opened .header-top .main-menu {
  width: 100%;
}

.header-top .main-menu > ul {
  max-width: 1089px;
}

.main-menu li {
  list-style: none;
}

.main-menu li + li {
  border-left: 1px solid #c67a5c;
}

.main-menu a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  white-space: nowrap;
  display: table;
  text-align: center;
  margin: 0 auto;
}

.header-top .content .container > * {
  flex-basis: 1px;
}

.header-top .logo {
  position: relative;
  z-index: 2;
}

.header-top .logo a {
  display: table;
}

.header-top .logo img,
.header-top .logo svg {
  max-width: 260px;
  height: auto;
  display: block;
}

.menu-opened .header-top .logo svg path {
  fill: #404041 !important;
  opacity: 0.87;
}

.header-top .logo span {
  display: none;
}

.header-top .right-content {
  position: relative;
}

.header-top .liked {
  position: relative;
  margin-right: 20px;
}

.header-top .liked .number {
  position: absolute;
  top: 0;
  right: -5px;
  font-size: 10px;
  background-color: var(--red-color);
  color: #fff;
  box-sizing: border-box;
  padding: 3px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 9px;
}

.header-top .liked .svg {
  width: 27px;
  position: relative;
  top: -2px;
}

.header-top .liked .svg path {
  fill: #fff;
}

.header-top .links {
  list-style: none;
}

.header-top .cidades_menu {
  flex: 1 1 auto;
}

.header-top .cidades_menu ul {
  justify-content: center;
}

.header-top .cidades_menu li a {
  font: 300 24px "Bebas Neue";
}

.menu-opened .header-top .links {
  opacity: 0;
  pointer-events: none;
}

.menu-opened .header-top .search input {
  border-bottom-color: #404041;
  color: var(--grey-color);
}

.menu-opened .header-top .search input::-webkit-input-placeholder {
  color: inherit;
}

.menu-opened .header-top .search input::-moz-placeholder {
  color: inherit;
}

.menu-opened .header-top .search input:-ms-input-placeholder {
  color: inherit;
}

.menu-opened .header-top .search input::-ms-input-placeholder {
  color: inherit;
}

.menu-opened .header-top .search input::-webkit-input-placeholder {
  color: inherit;
}

.menu-opened .header-top .search input:-ms-input-placeholder {
  color: inherit;
}

.menu-opened .header-top .search input::placeholder {
  color: inherit;
}

.menu-opened .header-top .liked .svg path,
.menu-opened .header-top .svg path {
  fill: #404041;
}

.menu-opened .close-search span {
  background-color: #404041;
}

.menu-opened .right-content .links {
  width: 1px;
}

.menu-opened .button-menu {
  margin-left: 0;
}

.header-top .links li {
  padding: 8px 0;
  margin: 0 18px;
}

.header-top .links .portal {
  position: relative;
}

.header-top .links .portal a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--red-color);
  opacity: 0;
  transition: all 50ms linear;
}

.header-top .links .portal a:hover:after {
  opacity: 1;
  bottom: -3px;
}

.header-top .links a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.header-top .search {
  width: 0;
  overflow: hidden;
  position: relative;
  right: 0;
  top: 0;
  max-width: calc(100% - 316px);
  z-index: 2;
}

.search-opened .header-top .search {
  width: 100%;
}

.search-opened .header-top .button-search {
  display: none;
}

.header-top .search input {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: 0 0;
  border: 0;
  border-bottom: 1px solid #fff;
  font-size: 14px;
  font-family: inherit;
  color: #fff;
  padding: 7px 10px 7px 28px;
  box-sizing: border-box;
  padding-left: 10px;
  outline: 0;
}

.header-top .search input::-webkit-input-placeholder {
  color: rgba(230, 231, 232, 0.7);
}

.header-top .search input:-ms-input-placeholder {
  color: rgba(230, 231, 232, 0.7);
}

.header-top .search input::-ms-input-placeholder {
  color: rgba(230, 231, 232, 0.7);
}

.header-top .search input::-webkit-input-placeholder {
  color: rgba(230, 231, 232, 0.7);
}

.header-top .search input:-ms-input-placeholder {
  color: rgba(230, 231, 232, 0.7);
}

.header-top .search input::-moz-placeholder {
  color: rgba(230, 231, 232, 0.7);
}

.header-top .search input::placeholder {
  color: rgba(230, 231, 232, 0.7);
}

.header-top .search .button {
  cursor: pointer;
  padding: 6px 10px;
  font-size: 14px;
}

.header-top .search label {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.header-top .search .close-search {
  margin: 15px 0 0 10px;
}

.header-top .search .close-search:after {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 25px;
}

.header-top .button-search {
  margin-right: 16px;
}

.header-top .button-search .svg {
  width: 30px;
}

.search-opened .header-top .button-search {
  margin-right: -38px;
}

.header-top .button-search img {
  display: block;
  width: 36px;
  height: auto;
}

.fixed-right {
  position: fixed;
  right: 0;
  top: 50vh;
  height: 100%;
  transition: all 1s ease;
  z-index: 10;
  display: block;
}

.fixed-right li {
  position: relative;
  right: 0;
  height: 70px;
  margin: 0 0 4px;
}

.fixed-right a {
  background: var(--red-color);
  color: #fff;
  text-decoration: none;
  display: block;
  font-weight: 400;
  font-size: 16px;
  padding: 14px 19px;
  overflow: hidden;
  border-radius: 50px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  white-space: nowrap;
  width: 60px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
}

.fixed-right span {
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}

.fixed-right .svg,
.fixed-right img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  width: 30px;
}

.fixed-right .svg path {
  fill: #fff;
}

.fixed-right .email .svg {
  width: 60px;
  margin: -15px 0 -15px -14px;
}

.nav-container {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background: #fff;
  z-index: 9;
  height: 100%;
  overflow: auto;
}

.menu-opened .nav-container {
  left: 0;
}

.nav-container .content {
  max-width: 1364px;
  padding: 117px 0 60px;
  margin: 0 auto;
}

.nav-container .flex-item {
  flex: 1 1 auto;
  margin-right: 16px;
}

.nav-container nav li {
  opacity: 0.38;
}

.nav-container nav li.active,
.nav-container nav li:hover {
  opacity: 1;
}

.nav-container nav li + li {
  margin-top: 36px;
}

.nav-container nav a {
  color: var(--grey-color);
  font: 35px "Bebas Neue";
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  font-weight: 300;
  line-height: 54px;
}

.nav-container nav li.active > a {
  font-size: 54px;
}

.nav-container nav .icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  margin-right: 18px;
}

.nav-container .icon img {
  max-width: 36px;
  max-height: 36px;
  display: block;
  margin: 0 auto;
}

.nav-container nav .submenu {
  padding: 20px 0 20px 53px;
  display: none;
}

.nav-container .submenu a {
  font-size: 35px;
}

.nav-container nav .submenu li + li {
  margin-top: 0;
}

.nav-container .share-friend {
  margin-top: 83px;
  padding-top: 14px;
  border-top: 1px solid rgba(64, 64, 65, 0.54);
}

.nav-container .share-friend .image {
  width: 72px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 18px;
}

.nav-container .share-friend .image img {
  width: 100%;
  display: block;
}

.nav-container .share-friend .text {
  display: inline-block;
  vertical-align: middle;
  margin-right: 81px;
}

.nav-container .share-friend p {
  color: var(--grey-color);
  font-size: 18px;
  margin: 0;
}

.nav-container .share-friend .title {
  font-size: 35px;
  font-weight: 500;
}

.nav-container .share-friend .button {
  background-color: #858689;
  color: #f0f8ff;
  display: inline-block;
  vertical-align: middle;
}

.nav-container .share-friend .button:hover {
  color: #f0f8ff;
  background-color: var(--red-color);
  transition: all 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-container .thumb-image {
  flex: 0 0 auto;
}

.nav-container .thumb-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 674px;
  max-height: 670px;
  border-radius: 18px;
}

.nav-container .left > .flex-box {
  height: 100%;
  justify-content: space-between;
}

.hide-content .flex-box {
  position: relative;
  left: -100%;
}

.select-custom .dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 100%;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 2px rgba(64, 64, 65, 0.36);
}

.select-custom.active .dropdown {
  display: block;
}

.select-custom .dropdown .text-range {
  min-width: 180px;
  display: block;
  font-size: 18px;
  color: var(--grey-color);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 8px;
}

header.color-reverse .liked .svg path,
header.color-reverse .svg path {
  fill: rgba(64, 64, 65, 0.8705882353);
}

header.color-reverse .button-menu span {
  background-color: rgba(64, 64, 65, 0.8705882353);
}

#centralDecorado .central .infos .contact {
  background-image: url(../images/telefone.svg);
}

#faleConosco .left .svg {
  width: 45px;
  height: 38px;
  margin: 0 10px 0 0;
}

#faleConosco .grid a img,
#faleConosco a .svg {
  display: block;
  margin: 0 auto -15px;
  max-width: 90px;
  max-height: 90px;
}

#faleConosco a .svg path,
#faleConosco a .svg rect {
  fill: var(--grey-color);
}

body.light-opened {
  overflow: hidden;
}

.thumbs a.curtido .svg path {
  fill: var(--red-color);
}

.item:hover .descricao .svg path {
  fill: rgba(64, 64, 65, 0.87);
}

li .links .svg path {
  fill: rgba(64, 64, 65, 0.87);
}

.flag-language {
  margin: 0 10px;
  position: relative;
  min-width: 37px;
  box-sizing: border-box;
  height: 17px;
  display: block;
  cursor: pointer;
}

.flag-language:before {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top: solid 7px #fff;
  display: block;
  position: absolute;
  left: -15px;
  top: 6px;
  cursor: pointer;
}

.flag-language a {
  display: flex;
  color: #fff;
  text-decoration: none;
  align-items: center;
  margin-bottom: 5px;
}

.flag-language a img {
  margin-right: 3px;
}

.flag-language:not(.opened) a {
  pointer-events: none;
}

.flag-language:not(.opened) a:not(.act) {
  opacity: 0;
  height: 0;
}

.flag-language a:not(.act) {
  order: 2;
}

.flag-language a.act {
  order: 1;
}

.flag-language .container {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
}

.menu-opened .flag-language a,
.no-home .flag-language a {
  color: var(--grey-color);
}

.menu-opened .flag-language:before,
.no-home .flag-language:before {
  border-top-color: var(--grey-color);
}

@-webkit-keyframes lds-pl {
  0% {
    top: 8px;
    height: 64px;
  }
  100%, 50% {
    top: 24px;
    height: 32px;
  }
}
@keyframes lds-pl {
  0% {
    top: 8px;
    height: 64px;
  }
  100%, 50% {
    top: 24px;
    height: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .fixed-right:not(.visible):not(:hover) {
    opacity: 0;
  }
  .fixed-right a:hover {
    width: 240px;
  }
  .nav-container nav li:hover > a {
    font-size: 54px;
  }
  body:not(.menu-opened) header.no-home:not(.visible) {
    opacity: 0;
  }
  body:not(.menu-opened) header.no-home:hover {
    opacity: 1;
  }
  .main-footer .social a .svg path {
    transition: 0s;
  }
  .main-footer .social a[title=Facebook]:hover .svg path {
    fill: #3b5998;
  }
  .main-footer .social a[title=Instagram]:hover .svg path {
    fill: #3f729b;
  }
  .main-footer .social a[title=Pinterest]:hover .svg path {
    fill: #c8232c;
  }
  .main-footer .social a[title=Youtube]:hover .svg path {
    fill: #c4302b;
  }
  .main-footer .social a[title=Linkedin]:hover .svg path {
    fill: #0e76a8;
  }
  .main-footer .social a[title=Twitter]:hover .svg path {
    fill: #00acee;
  }
  #faleConosco a:hover .svg path,
  #faleConosco a:hover .svg rect {
    fill: #fff;
  }
}
@media screen and (max-width: 1650px) {
  .nav-container .content {
    padding-left: 2.4%;
    padding-right: 2.4%;
  }
  .nav-container .share-friend .text {
    margin-right: 20px;
  }
  .nav-container .thumb-image img {
    max-width: 500px;
    max-height: 500px;
  }
  .nav-container .share-friend {
    margin-top: 10px;
  }
  .nav-container nav li + li {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1650px) and (min-width: 961px) {
  .header-top .links li {
    margin: 0 10px;
  }
  .header-top .links a {
    font-size: 14px;
  }
}
@media screen and (min-width: 961px) {
  .only-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .header-top {
    position: fixed;
  }
  .app-box .image,
  .button-menu .text,
  .nav-container .thumb-image,
  .search-opened .logo {
    display: none;
  }
  .only-desktop,
  .terreo .plantBox .point {
    display: none !important;
  }
  .nav-container .content {
    padding: 87px 20px 60px;
  }
  .nav-container nav li + li {
    margin-top: 15px;
  }
  .nav-container .share-friend {
    margin-top: 15px;
    padding-top: 0;
  }
  .nav-container nav .submenu {
    padding: 10px 0 0 55px;
  }
  .button-menu {
    margin-left: 0;
  }
  .header-top .search {
    max-width: 100%;
  }
  .fixed-right {
    width: 100%;
    bottom: 0;
    height: auto;
    top: inherit;
  }
  .fixed-right ul {
    display: flex;
  }
  .fixed-right li {
    width: 50%;
    background-color: #fff;
    text-align: center;
    height: auto;
    padding: 0;
    margin: 0;
  }
  .fixed-right a {
    width: 200%;
    border-radius: 0;
    font-size: 14px;
    padding: 10px 3px;
    box-sizing: border-box;
    position: static;
  }
  .fixed-right .svg {
    width: 22px;
    margin-right: 5px;
  }
  .fixed-right .selectMobile {
    height: auto;
    position: absolute;
    opacity: 0;
  }
  .menu-opened .nav-container {
    padding-bottom: 30px;
    box-sizing: border-box;
  }
  body {
    padding-bottom: 41px;
  }
  body:not(.menu-opened) .no-home.header-top:not(.show) {
    transform: translateY(-100%);
  }
  .header-top .liked .svg {
    width: 24px;
  }
  .header-top .button-search .svg {
    width: 25px;
  }
  #centralDecorado .central .infos .attendance,
  #centralDecorado .central .infos .contact {
    background-size: 25px;
  }
  .nav-container nav li.active > a {
    font-size: 35px;
  }
  .main-footer .logo-social .svg {
    max-width: 30px;
    max-height: 20px;
  }
  .modal-slider-plantas li > .flex-box {
    flex-direction: column;
  }
  body.modal-opened {
    overflow: hidden;
  }
}
@media screen and (max-width: 480px) {
  .nav-container .share-friend .text {
    margin: 15px 0;
  }
  .header-top .logo svg,
  .header-top .logo img {
    max-width: 150px;
  }
  .button-menu,
  .close-search {
    width: 28px;
    height: 16px;
  }
  .header-top .logo .small-icon {
    height: 26px;
    top: -6px;
  }
  .nav-container .share-friend .image img {
    width: 34px;
  }
  .nav-container .share-friend .image {
    width: auto;
    margin-right: 15px;
  }
  .flex-box.justify-flex-end {
    justify-content: flex-end;
    margin: 8px 0 0 -30px;
  }
  .header-top {
    padding: 15px 0;
    background-color: #000;
  }
  #faleConosco .left a .svg {
    margin-top: 10px;
    margin-right: 0;
  }
  .nav-container .content {
    padding: 80px 20px 30px;
  }
  .nav-container .share-friend .title {
    font-size: 22px;
  }
  .nav-container .share-friend p {
    font-size: 14px;
  }
  .nav-container .share-friend .button {
    font-size: 12px;
    display: table;
    margin: 5px auto 0;
  }
  .nav-container .icon img {
    max-width: 26px;
    max-height: 26px;
  }
  .nav-container nav li > a {
    display: flex;
    align-items: center;
  }
  .nav-container nav a {
    font-size: 30px;
    line-height: 1.2em;
  }
  .header-top .search .close-search {
    margin-top: -1px;
  }
  .search-opened .header-top .button-search .svg,
  .search-opened .header-top .liked,
  .search-opened .header-top .main-menu-button {
    display: none;
  }
  .search-opened .header-top .search input {
    padding-left: 10px;
    padding-right: 10px;
    outline: 0;
  }
  .close-search span {
    width: 20px;
  }
  .header-top .search .button {
    color: rgba(64, 64, 65, 0.8705882353);
  }
  .close-search span:first-child {
    top: calc(50% + 6.5px);
  }
  .header-top .search input::-moz-placeholder {
    font-size: 11px;
  }
  .header-top .search input:-ms-input-placeholder {
    font-size: 11px;
  }
  .header-top .search input::-ms-input-placeholder {
    font-size: 11px;
  }
  .header-top .search input,
  .header-top .search input::-webkit-input-placeholder {
    font-size: 11px;
  }
  .header-top .search input,
  .header-top .search input:-ms-input-placeholder {
    font-size: 11px;
  }
  .header-top .search input::-webkit-input-placeholder {
    font-size: 11px;
  }
  .header-top .search input::-moz-placeholder {
    font-size: 11px;
  }
  .header-top .search input:-ms-input-placeholder {
    font-size: 11px;
  }
  .header-top .search input::-ms-input-placeholder {
    font-size: 11px;
  }
  .header-top .search input,
  .header-top .search input::placeholder {
    font-size: 11px;
  }
  .header-top .search .button {
    background-color: var(--red-color);
    color: #fff !important;
    font-size: 12px;
    padding: 4px 10px;
    box-sizing: border-box;
    margin-top: 4px;
  }
}
@media screen and (max-width: 400px) {
  .float_modal .float_modal_content {
    width: 100%;
    border-radius: 18px 18px 0 0;
  }
}
.fixed-right {
  bottom: 0vh;
  top: auto;
}

.header-top .links {
  right: 63px;
}

header .close-search {
  display: none;
}

.search-opened header .close-search {
  display: block;
  margin: 0 0 0 10px;
}

.new__search .close-search {
  opacity: 1;
}

.new__search {
  display: none;
}

.search-opened .new__search {
  display: flex;
  align-items: center;
  flex: 1 1 calc(100% - 320px);
}

.search-opened .new__search .busca_imoveis {
  display: block !important;
  width: 100%;
}

.search-opened .new__search .busca_imoveis select {
  width: 100%;
  height: 30px;
  background: transparent;
  color: #fff;
  border: solid 1px #fff;
}

.search-opened .new__search .busca_imoveis select option {
  color: #000;
}

.search-opened .right-content {
  display: none;
}

.search-opened .header-top .content .container {
  width: auto;
}

.header-top .logo a {
  padding-right: 10px;
}

@media screen and (max-width: 480px) {
  .search-opened header .close-search {
    top: -9px;
  }
  .new__search .close-search span:last-child {
    top: 17px;
  }
  .search-opened header .logo {
    display: none;
  }
}
.new__search .dropdown {
  width: 100%;
  position: relative;
}

.new__search .dropdown #searchInput {
  width: 100%;
  padding: 7px 5px;
  outline: none;
  background-color: transparent;
  border: solid 1px #ffffff;
  color: #ffffff;
  text-transform: uppercase;
}

.new__search .dropdown #searchInput::placeholder {
  color: #ffffff;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ddd;
  z-index: 1;
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.dropdown-content.show {
  display: block;
}

.dropdown-content {
  scrollbar-width: thin;
  scrollbar-color: #8f162b transparent;
}

.dropdown-content::-webkit-scrollbar {
  width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background-color: #8f162b;
  border-radius: 10px;
  border: 2px solid transparent;
}

.dropdown-content div {
  padding: 8px;
  cursor: pointer;
}

.dropdown-content div:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.highlight {
  color: #8f162b;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.close-search span:last-child {
  top: 1px;
}

.no-result {
  font-size: 13px;
}

@media screen and (max-width: 860px) {
  .dropdown-content div {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .search-opened .new__search {
    flex: 1 1 100%;
    left: 0;
  }
}
@media screen and (max-width: 860px) {
  .dropdown-content div {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .search-opened .new__search {
    flex: 1 1 100%;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  .justify-space-between-desktop {
    justify-content: space-between;
  }
}
/* Esconde a barra de tradução do Google */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
  /* Google Translate empurra o body pra baixo */
}

/* Wrapper relativo para posicionar o dropdown */
.lang-wrapper {
  position: relative;
  color: white;
}

/* Botão que aparece no header */
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  min-width: 80px;
  transition: background 0.15s;
}

.lang-trigger .flag {
  font-size: 16px;
}

.lang-trigger .chevron {
  margin-left: auto;
  font-size: 12px;
  transition: transform 0.2s;
  transform: rotate(-90deg);
}

.lang-trigger .chevron svg {
  width: 20px;
  height: 20px;
}

.lang-wrapper.open .chevron {
  transform: rotate(0deg);
}

/* Dropdown */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 4px;
  display: none;
  flex-direction: column;
  gap: 1px;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.3);
}

.lang-wrapper.open .lang-dropdown {
  display: flex;
}

/* Cada opção dentro do dropdown */
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  transition: background 0.12s;
  color: black;
  box-sizing: border-box;
}

.lang-option:hover {
  background: #f5f5f5;
}

.lang-option.active {
  background: #e8f0fe;
  color: #1a56db;
  font-weight: 500;
}

.lang-option .check {
  margin-left: auto;
  opacity: 0;
}

.lang-option.active .check {
  opacity: 1;
}

.lang-wrapper .flag {
  display: inline-block;
  width: 20px;
  aspect-ratio: 16/11;
  height: auto;
  background-size: cover;
  background-position: center;
}

.lang-wrapper .flag-br {
  background-image: url("../assets/images/images_vanguard/flag-br.png");
}

.lang-wrapper .flag-en {
  background-image: url("../assets/images/images_vanguard/flag-en.png");
}

.lang-wrapper .flag-es {
  background-image: url("../assets/images/images_vanguard/flag-es.png");
}

/* Esconde barra do Google Translate */
.goog-te-banner-frame,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

@media screen and (max-width: 768px) {
  .lang-wrapper {
    margin-right: 10px;
    top: 3px;
    display: none;
  }
}
.float_modal {
  z-index: 111;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: none !important;
}

.float_modal .background {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.float_modal .float_modal_content {
  padding: 20px 40px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 390px;
  max-width: 100%;
  z-index: 2;
  box-sizing: border-box;
  border-radius: 18px 0 0;
}

.float_modal .close {
  position: absolute;
  top: 26px;
  right: 15px;
}

.float_modal .close:before,
.float_modal .close:after {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #000;
  position: relative;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: block;
}

.float_modal .close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 2.5px;
}

.float_modal .title {
  color: #404041;
  display: block;
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  /* font-family: "Bebas Neue"; */
  font-weight: 500;
}

.float_modal .field {
  display: block;
  border: 0;
  border-bottom: solid 1px #404041;
  width: 100%;
  margin: 20px 0;
  padding: 5px 0;
  outline: none;
}

.float_modal label {
  display: block;
  font-size: 14px;
  margin: 20px 0;
}

.float_modal .button {
  background-color: #7b1c30;
  text-align: center;
  display: table;
  color: #fff;
  margin: 0 auto 10px;
  padding: 1rem 2rem;
  border-radius: 30px;
  cursor: pointer;
}

@media screen and (max-width: 400px) {
  .float_modal .float_modal_content {
    width: 100%;
    border-radius: 18px 18px 0 0;
  }
}
.loading-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.99);
  z-index: 200;
}

.gooey {
  position: relative;
  width: 142px;
  height: 40px;
}

.gooey .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(0);
  -webkit-animation: dot 1.5s infinite;
  animation: dot 1.5s infinite;
}

.gooey .dots {
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 1.5s infinite;
  animation: dots 1.5s infinite;
}

.gooey .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #fff;
  border-radius: 50%;
}

.loading-box .loader {
  width: 7rem;
  height: 7rem;
  display: inline-block;
  position: relative;
}

.loading-box .loader::after, .loading-box .loader::before {
  content: "";
  box-sizing: border-box;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 2px solid #FFF;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
}

.loading-box .loader::after {
  animation-delay: 1s;
}

.loading-box {
  background-color: rgba(244, 140, 42, 0.5098039216);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.float_whats {
  position: fixed;
  top: 50vh;
  right: 10px;
  z-index: 5;
  background-color: #747c4c;
  border-radius: 50%;
}

.float_whats svg {
  width: 25px;
  height: 25px;
  fill: white;
}

.flex-box.justify-around {
  justify-content: space-around;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Candara", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Clash Display", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-line {
  display: block;
}

h1 > .text-line,
h2 > .text-line,
h3 > .text-line,
p > .text-line,
h1 > font,
h2 > font,
h3 > font,
p > font {
  display: block !important;
}

h1 font,
h2 font,
h3 font,
p font,
.text-line font {
  font: inherit;
  color: inherit;
  vertical-align: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
ul,
ol,
blockquote,
figure,
figcaption,
input,
textarea,
select,
option,
button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4%;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

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

.items-start {
  align-items: start;
}

.items-end {
  align-items: end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

.justify-center {
  justify-content: center;
}

.justify-space-around {
  justify-content: space-around;
}

.justify-space-between {
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .is-mobile {
    display: block !important;
  }
  .is-desktop {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .is-mobile {
    display: none !important;
  }
  .is-desktop {
    display: flex !important;
  }
  h1.is-desktop,
  h2.is-desktop,
  h3.is-desktop,
  p.is-desktop {
    display: block !important;
  }
}
@media (max-width: 1023px) {
  html {
    overflow-x: clip;
  }
  img {
    max-width: 100%;
    display: block;
  }
  .container {
    padding: 0 clamp(1.25rem, 4vw, 4rem);
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
.menu-opened .header-top {
  z-index: 1200;
}

.menu-opened .nav-container {
  z-index: 1100;
}

#conceito,
#assinaturas,
#produto,
#localizacao,
#contato {
  scroll-margin-top: 100px;
}

.float_whats {
  z-index: 999;
}

@media (max-width: 1023px) {
  .float_whats {
    top: auto;
    bottom: 20px;
    right: 15px;
  }
}
.header-top {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000;
  padding: 1rem 0;
}
.header-top * {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}
.header-top > .container {
  display: flex !important;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start !important;
  width: 100%;
}
.header-top .content {
  display: flex !important;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start !important;
  width: 100%;
}
.header-top .content > * {
  flex-basis: auto !important;
}
.header-top .logo {
  flex: 0 0 auto;
}
.header-top .logo a {
  display: flex;
  align-items: center;
}
.header-top .logo img,
.header-top .logo svg {
  max-width: clamp(140px, 18vw, 220px);
  height: auto;
}
.header-top .right-content {
  flex: 0 0 auto;
  margin-left: auto;
}
.header-top .right-content > .flex-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-top .main-menu-button {
  flex: 0 0 auto;
}
.header-top .button-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  height: auto;
  cursor: pointer;
}
.header-top .button-menu .text {
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
  color: #ffffff;
}
.header-top .button-menu__bars {
  display: grid !important;
  place-items: center;
  width: 32px !important;
  height: 32px !important;
  opacity: 1 !important;
  transform: none !important;
  background: transparent !important;
  flex-shrink: 0;
}
.header-top .button-menu__bars > span {
  grid-area: 1/1;
  width: 24px !important;
  height: 2px !important;
  margin: 0 !important;
  opacity: 1 !important;
  background: #ffffff;
  border-radius: 5px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header-top .button-menu__bars > span:nth-child(1) {
  transform: translateY(-8px) !important;
}
.header-top .button-menu__bars > span:nth-child(2) {
  transform: none !important;
}
.header-top .button-menu__bars > span:nth-child(3) {
  transform: translateY(8px) !important;
}
.header-top .close-search {
  display: none;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  opacity: 1;
  cursor: pointer;
}
.header-top .close-search__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}
.header-top .close-search__icon span {
  grid-area: 1/1;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 5px;
}
.header-top .close-search__icon span:first-child {
  transform: rotate(45deg);
}
.header-top .close-search__icon span:last-child {
  transform: rotate(-45deg);
}
.header-top .button-search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-top .lang-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-top .lang-dropdown {
  width: 100%;
  min-width: 7.5rem;
  margin-top: 0.35rem;
}
.header-top .new__search {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
}
.header-top .new__search .dropdown {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.header-top .dropdown-content {
  width: 100%;
  margin-top: 0.35rem;
  max-height: 300px;
  overflow-y: auto;
}

.ginga-nav {
  flex: 1 1 auto;
  min-width: 0;
}
.ginga-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
  list-style: none;
}
.ginga-nav a {
  font-family: "Raleway", sans-serif;
  font-size: clamp(0.6875rem, 1vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.ginga-nav a:hover {
  opacity: 0.75;
}
.ginga-nav--drawer {
  display: none;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(64, 64, 65, 0.2);
}
.ginga-nav--drawer ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.ginga-nav--drawer a {
  font-size: 1rem;
  color: #404041;
}

.menu-opened .header-top {
  z-index: 1200;
  background: rgba(255, 255, 255, 0.96);
}
.menu-opened .header-top .ginga-nav,
.menu-opened .header-top .right-content {
  display: none !important;
}
.menu-opened .header-top .main-menu-button {
  margin-left: auto;
}
.menu-opened .header-top .button-menu .text {
  display: block !important;
  color: #404041;
}
.menu-opened .header-top .button-menu__bars > span {
  background: #404041 !important;
}
.menu-opened .header-top .button-menu__bars > span:nth-child(1) {
  transform: rotate(45deg) !important;
}
.menu-opened .header-top .button-menu__bars > span:nth-child(2) {
  opacity: 0 !important;
}
.menu-opened .header-top .button-menu__bars > span:nth-child(3) {
  transform: rotate(-45deg) !important;
}

.menu-opened .nav-container {
  z-index: 1100;
}

body.menu-opened header.header-top {
  transform: none !important;
}

.search-opened .header-top .ginga-nav,
.search-opened .header-top .right-content {
  display: none !important;
}
.search-opened .header-top .new__search {
  display: flex !important;
}
.search-opened .header-top .close-search {
  display: flex !important;
}

@media (max-width: 1023px) {
  .header-top .ginga-nav:not(.ginga-nav--drawer) {
    display: none;
  }
  .menu-opened .ginga-nav--drawer {
    display: block;
  }
  .header-top .button-menu .text {
    display: none !important;
  }
  .search-opened .header-top .logo {
    display: none !important;
  }
}
.lead-form__intro {
  font-size: 2rem;
  font-weight: 500;
  line-height: 87%;
  margin-bottom: 20px;
  color: #fde1f4;
  font-family: "Clash Display", sans-serif;
}
.lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lead-form__input {
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 1px solid #1b383d;
  color: #fde1f4;
  font-size: 1rem;
  font-weight: 300;
  padding-left: 0;
  padding-bottom: 15px;
  margin-bottom: 20px;
  background: transparent;
}
.lead-form__input::placeholder {
  color: #fde1f4;
  font-size: 1rem;
}
.lead-form__agreement {
  display: flex;
  align-items: start;
  gap: 5px;
  font-size: 1rem;
  opacity: 0.9;
  color: #fde1f4;
  font-family: "Candara", sans-serif;
  font-weight: 300;
  margin-bottom: 10px;
  cursor: pointer;
}
.lead-form__agreement span {
  text-align: left;
}
.lead-form__agreement input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15em;
  border: 1px solid #1b383d;
  background: transparent;
  cursor: pointer;
}
.lead-form__agreement input[type=checkbox]:checked {
  background-color: #fde1f4;
  border-color: #1b383d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.5L4.5 9L11 1' stroke='%231b383d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.65rem;
}
.lead-form__agreement input[type=checkbox]:focus-visible {
  outline: 2px solid #1b383d;
  outline-offset: 2px;
}
.lead-form__submit {
  padding: 12.5px 60px;
  background: #1b383d;
  color: #fde1f4;
  font-size: 1rem;
  font-family: "Candara", sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 100px;
  width: 100%;
  max-height: 45px;
  margin: 20px auto 0;
  display: block;
  text-align: center;
}
.lead-form__submit:hover {
  background: #fde1f4;
  color: #1b383d;
}

@media (max-width: 1023px) {
  .lead-form__intro {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }
  .lead-form__agreement {
    font-size: clamp(0.875rem, 3vw, 1rem);
  }
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 126px 0 150px;
  overflow: hidden;
  border-bottom: 22.6px solid #96505f;
  background-color: #747c4c;
  font-family: "Clash Display", sans-serif;
  min-height: 875px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  min-height: 180px;
  max-height: 40vh;
  opacity: 0.84;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(#000, rgba(0, 0, 0, 0));
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.hero .img-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  z-index: 0;
}
.hero .img-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__element {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50vw;
  transform: translateY(-50%) !important;
}
.hero__brand {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  align-self: stretch;
}
.hero__brand a {
  display: block;
}
.hero__brand-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.hero__brand h1 {
  font-weight: 500;
  font-size: clamp(1.75rem, 2.5vw, 2.8125rem);
  line-height: 85%;
  color: #fde1f4;
}
.hero__brand p {
  font-weight: 500;
  font-size: clamp(2.25rem, 4.2vw, 5.4375rem);
  line-height: 85%;
  color: #fde1f4;
  max-width: 100%;
}
.hero__form-panel {
  flex: 0 0 420px;
  align-self: center;
  width: 420px;
  max-width: 420px;
  box-sizing: border-box;
  padding: 40px 30px;
  background: #39615a;
  border-radius: 20px;
}

@media (max-width: 1023px) {
  .hero {
    align-items: stretch;
    min-height: auto;
    padding: clamp(3rem, 10vw, 126px) 0 clamp(3.5rem, 12vw, 150px);
    border-bottom-width: clamp(12px, 2vw, 22.6px);
    border-top-width: clamp(12px, 2vw, 22.6px);
  }
  .hero__inner {
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
    padding: 0 clamp(1.25rem, 4vw, 4rem);
    padding-top: 170px;
    height: 150dvh;
  }
  .hero__element {
    display: none;
    top: 0;
    right: -10%;
    width: min(70vw, 400px);
    pointer-events: none;
  }
  .hero__brand {
    align-items: start;
    justify-content: start;
    flex: none;
    min-width: auto;
    text-align: center;
    width: 100%;
    gap: clamp(1rem, 3vw, 20px);
  }
  .hero__brand h1 {
    font-size: clamp(1.75rem, 6vw, 2.8125rem);
  }
  .hero__brand p {
    font-size: clamp(2.5rem, 12vw, 5.4375rem);
    text-align: start;
    margin-top: 75px;
  }
  .hero__form-panel {
    flex: none;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    padding: clamp(1.25rem, 4vw, 1.875rem);
  }
  .hero .img-background {
    width: 100%;
    height: 100%;
  }
  .lead-form__intro {
    max-width: 100%;
    font-size: clamp(1.25rem, 5vw, 2rem);
    margin-bottom: clamp(1rem, 3vw, 20px);
  }
}
.section-2 {
  position: relative;
  padding: 240px 0 160px;
  border-bottom: 22.6px solid #96505f;
  background-color: #1b383d;
  background-image: url("../assets/images/bg_video.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  overflow: hidden;
}
.section-2 .container {
  z-index: 2;
  position: relative;
  padding: 0 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 20vw, 4rem);
}
.section-2__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-2__element {
  position: absolute;
  bottom: -55%;
  left: 0;
  width: 50vw;
  z-index: 1;
}
.section-2__title {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10%;
  margin-bottom: 66px;
}
.section-2__title p {
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 130%;
  color: #fde1f4;
  font-family: "Candara", sans-serif;
  max-width: 407px;
}
.section-2__title h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 95%;
  color: #fde1f4;
}
.section-2__destaque {
  font-size: 9.0625rem;
  font-weight: 500;
  color: #fde1f4;
  font-family: "Clash Display", sans-serif;
  line-height: 95%;
  text-align: center;
  margin-top: 4rem;
}
.section-2__video {
  width: 100%;
  align-self: stretch;
}
.section-2__video-slider-wrap {
  position: relative;
  width: 100%;
}
.section-2__video-slider {
  width: 100%;
}
.section-2__video-slider .swiper-wrapper,
.section-2__video-slider .swiper-slide {
  height: auto;
}
.section-2__video-nav {
  position: absolute;
  top: calc(clamp(1rem, 3vw, 4rem) + 12px);
  bottom: 0;
  z-index: 10;
  width: 49px;
  margin: auto 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  line-height: 0;
  height: fit-content;
}
.section-2__video-nav.swiper-button-prev::after, .section-2__video-nav.swiper-button-next::after {
  display: none !important;
  content: none !important;
}
.section-2__video-nav img {
  display: block;
  width: 49px;
  height: 53px;
}
.section-2__video-nav--prev {
  left: 16px;
  right: auto;
}
.section-2__video-nav--next {
  right: 16px;
  left: auto;
}
.section-2__video-nav.swiper-button-disabled, .section-2__video-nav.swiper-button-lock, .section-2__video-nav.swiper-button-hidden {
  display: none;
}
.section-2__video-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.section-2__video-ep {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(1rem, 3vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: #fde1f4;
  text-transform: uppercase;
}
.section-2__video-pagination {
  position: static;
  margin-top: 24px;
}
.section-2__video-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background: transparent;
  border: 2px solid #fde1f4;
  border-radius: 3px;
  opacity: 1;
}
.section-2__video-pagination .swiper-pagination-bullet-active {
  background: #fde1f4;
}
.section-2__video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 1216/752;
}
.section-2__video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.section-2__video-player.is-playing {
  cursor: pointer;
}
.section-2__video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 10vw, 96px);
  height: clamp(64px, 10vw, 96px);
  padding: 0;
  padding-left: 6px;
  border: 2px solid #fde1f4;
  border-radius: 50%;
  background: rgba(27, 56, 61, 0.75);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.section-2__video-play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fde1f4;
}
.section-2__video-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.is-playing .section-2__video-play {
  opacity: 0;
  pointer-events: none;
}
.section-2__video-title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  margin-bottom: 100px;
}
.section-2__video-title h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 85%;
  color: #fde1f4;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 8px;
}
.section-2__video-title h2 span {
  margin: 0;
  padding: 0;
  font-size: 50px;
}

@media (min-width: 1024px) {
  .section-2 {
    overflow: visible;
  }
  .section-2__video-slider-wrap {
    overflow: visible;
  }
  .section-2__video-nav--prev {
    left: auto;
    right: calc(100% + 40px);
  }
  .section-2__video-nav--next {
    right: auto;
    left: calc(100% + 40px);
  }
}
@media (max-width: 1023px) {
  .section-2 {
    aspect-ratio: auto;
    padding: clamp(3rem, 10vw, 100px) 0 clamp(5rem, 14vw, 172px);
    background-size: auto min(70vh, 600px);
    background-position: right top;
  }
  .section-2 .container {
    padding: 0 clamp(1.25rem, 4vw, 4rem);
    gap: clamp(2rem, 6vw, 4rem);
  }
  .section-2__title {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(1.25rem, 4vw, 2rem);
    margin-left: 0;
  }
  .section-2__title h2 {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }
  .section-2__title p {
    font-size: clamp(1rem, 3.5vw, 1.5625rem);
    max-width: 100%;
  }
  .section-2__destaque {
    font-size: 3rem;
  }
  .section-2__video-player {
    aspect-ratio: 16/10;
  }
  .section-2__video-nav {
    width: clamp(32px, 8vw, 49px);
  }
  .section-2__video-nav--prev {
    left: 8px;
  }
  .section-2__video-nav--next {
    right: 8px;
  }
  .section-2__video-nav img {
    width: 100%;
    height: auto;
  }
  .section-2__element {
    width: min(80vw, 500px);
    bottom: -20%;
    pointer-events: none;
  }
}
.contact {
  padding: 120px 0 184px;
  background: #747c4c;
}
.contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 12.5vw;
}
.contact__brand h1 {
  font-size: 5rem;
  font-weight: 500;
  line-height: 95%;
  color: #fde1f4;
  margin-bottom: 17px;
}
.contact__brand p {
  font-family: "Candara", sans-serif;
  font-size: 1.5625rem;
  line-height: 120%;
  color: #fde1f4;
  font-weight: 400;
}
.contact .hero__form-panel {
  margin: 0;
}

@media (max-width: 1023px) {
  .contact {
    padding: clamp(3rem, 10vw, 120px) 0 clamp(4rem, 14vw, 184px);
  }
  .contact__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 3rem);
    padding: 0 clamp(1.25rem, 4vw, 4rem);
    text-align: center;
  }
  .contact__brand {
    width: 100%;
  }
  .contact__brand h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    margin-bottom: clamp(0.75rem, 2vw, 17px);
    text-align: start;
  }
  .contact__brand p {
    font-size: clamp(1rem, 3.5vw, 1.5625rem);
    text-align: start;
  }
  .contact .hero__form-panel {
    width: 100%;
    max-width: 420px;
  }
}
.site-footer {
  color: #fde1f4;
  background: #1b383d;
  position: relative;
  font-family: "Candara", sans-serif;
}
.site-footer .container {
  padding: 130px 4%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 5rem;
  position: relative;
  z-index: 2;
}
.site-footer .container .logo_redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.site-footer .container .logo_redes .redes {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-footer__copyright {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 150%;
  color: #fde1f4;
  text-align: center;
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}
.site-footer__nav h3 {
  font-family: "Clash Display", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 150%;
}
.site-footer__links {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 20px;
}
.site-footer__links div a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.site-footer__links div a img {
  width: 30px;
  height: 30px;
}
.site-footer__links div a p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
}
.site-footer .site-footer__element {
  position: absolute;
  top: -27%;
  left: 0;
  width: 100%;
  z-index: 1;
}
.site-footer .logos {
  gap: 30px;
  width: 100%;
}
.site-footer .logos a.site-footer__logo {
  display: block;
}
.site-footer .logos a.site-footer__logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
.site-footer .logos .ginga {
  max-width: 100px;
  margin-left: auto;
}
.site-footer .logos .vanguard {
  max-width: 155px;
}

@media (max-width: 1023px) {
  .site-footer {
    overflow: hidden;
  }
  .site-footer .logos {
    flex-direction: row;
  }
  .site-footer .container {
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 6vw, 2.5rem);
    padding: clamp(3rem, 10vw, 130px) clamp(1.25rem, 4vw, 4rem);
    text-align: center;
  }
  .site-footer .container .logo_redes {
    gap: clamp(2rem, 6vw, 80px);
    width: 100%;
    align-items: start;
  }
  .site-footer .container .logo_redes .redes {
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(1rem, 4vw, 30px);
  }
  .site-footer__nav {
    align-items: start;
    width: 100%;
  }
  .site-footer__links {
    flex-wrap: wrap;
    gap: clamp(1rem, 4vw, 20px);
    width: 100%;
  }
  .site-footer__links div {
    gap: clamp(0.75rem, 3vw, 20px);
    flex: 1 1 90px;
    min-width: 90px;
  }
  .site-footer__logo {
    width: clamp(140px, 40vw, 200px);
  }
  .site-footer .site-footer__element {
    top: -15%;
    pointer-events: none;
  }
}
.assinaturas {
  padding: 140px 0 220px;
  background: #747c4c;
}
.assinaturas__title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 95%;
  color: #fde1f4;
  margin-bottom: 55px;
}
.assinaturas__items {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}
.assinaturas__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 7px;
}
.assinaturas__item-image-container {
  aspect-ratio: 420/504;
  width: 100%;
  max-width: 420px;
  margin-bottom: 33px;
  overflow: hidden;
}
.assinaturas__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.assinaturas__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 150%;
  color: #fde1f4;
  font-family: "Candara", sans-serif;
}
.assinaturas__item-name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 150%;
  color: #fde1f4;
  font-family: "Clash Display", sans-serif;
}
.assinaturas__item-description {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  color: #fde1f4;
  font-family: "Candara", sans-serif;
}
.assinaturas__slider {
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 50px !important;
}
.assinaturas__slider .swiper-wrapper,
.assinaturas__slider .swiper-slide {
  height: auto;
}
.assinaturas__pagination {
  position: static;
  bottom: 20px !important;
}
.assinaturas__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background: transparent;
  border: 2px solid #1b383d;
  border-radius: 3px;
}
.assinaturas__pagination .swiper-pagination-bullet-active {
  background: #1b383d;
}

@media (max-width: 1023px) {
  .assinaturas {
    padding: clamp(3rem, 10vw, 140px) 0 clamp(4rem, 14vw, 220px);
  }
  .assinaturas__title {
    font-size: clamp(2.5rem, 10vw, 5rem);
    margin-bottom: clamp(2.3rem, 4vw, 55px);
  }
  .assinaturas__slider .swiper-slide {
    height: auto;
  }
  .assinaturas__item-name {
    font-size: clamp(1.75rem, 6vw, 2.375rem);
  }
  .assinaturas__item-media {
    position: relative;
    width: 100%;
  }
  .assinaturas__slider .assinaturas__item-image-container {
    margin-bottom: 0;
  }
  .assinaturas__slider .assinaturas__item-description {
    position: absolute;
    bottom: clamp(0.5rem, 2vw, 12px);
    left: clamp(0.5rem, 2vw, 12px);
    max-width: 40%;
    z-index: 1;
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    line-height: 120%;
  }
}
.ruas {
  padding: 140px 0 210px;
  background: #1b383d;
  position: relative;
}
.ruas .container {
  z-index: 2;
  position: relative;
}
.ruas .grafismo {
  position: absolute;
  top: -15%;
  left: -10%;
  width: 62%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}
.ruas .container_1 {
  padding-right: 10%;
}
.ruas .left .image-container {
  aspect-ratio: 593/420;
  max-width: 593px;
  max-height: 420px;
  overflow: hidden;
  background-color: rgba(116, 124, 76, 0.12);
}
.ruas .left .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ruas .container_1 h2 {
  font-size: 3.125rem;
  line-height: 110%;
  color: #fde1f4;
  font-family: "Clash Display", sans-serif;
  font-weight: 200;
  margin: 50px 0 65px auto;
  max-width: fit-content;
}
.ruas .right {
  gap: 40px;
}
.ruas .right .image-container {
  aspect-ratio: 420/502;
  max-width: 420px;
  max-height: 502px;
  overflow: hidden;
  background-color: rgba(116, 124, 76, 0.12);
}
.ruas .right .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ruas .container_2 {
  gap: 40px;
  margin-top: 65px;
}
.ruas .container_2 h2 {
  font-size: 3.125rem;
  line-height: 110%;
  color: #fde1f4;
  font-family: "Clash Display", sans-serif;
  font-weight: 200;
}
.ruas .container_2 .image-container {
  aspect-ratio: 757/446;
  max-width: 757px;
  max-height: 446px;
  overflow: hidden;
  background-color: rgba(116, 124, 76, 0.12);
}
.ruas .container_2 .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .ruas {
    padding: clamp(3rem, 10vw, 140px) 0 clamp(4rem, 14vw, 210px);
  }
  .ruas .grafismo {
    top: -10%;
    left: -50%;
    width: min(90vw, 500px);
  }
  .ruas .container_1 {
    padding-right: 0;
  }
  .ruas .container_1.flex {
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 6vw, 40px);
  }
  .ruas .container_2 {
    margin-top: clamp(2rem, 6vw, 65px);
  }
  .ruas .container_2.flex {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(2rem, 6vw, 40px);
  }
  .ruas .left .image-container,
  .ruas .container_2 .image-container {
    max-width: 100%;
    width: 100%;
  }
  .ruas .right .image-container {
    max-width: 75%;
  }
  .ruas h2 {
    font-size: clamp(1.75rem, 7vw, 3.125rem) !important;
  }
}
.convite {
  background: #747c4c url("../assets/images/bg_convite.svg") no-repeat top left;
  padding: 100px 0;
  border-top: 22px solid #96505f;
  border-bottom: 22px solid #96505f;
  background-size: contain;
}
.convite h2 {
  font-size: clamp(2rem, 6vw, 3.125rem);
  line-height: 110%;
  color: #fde1f4;
  font-family: "Clash Display", sans-serif;
  font-weight: 200;
  margin: 0;
  padding: 0;
  max-width: fit-content;
  margin-bottom: 40px;
}
.convite .container > .flex {
  max-width: 1200px;
}
.convite__img1 {
  position: relative;
  margin-bottom: 85px;
  overflow: hidden;
}
.convite__img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.convite__img1 .section-2__video-player {
  position: relative;
  width: 100%;
  height: 100%;
}
.convite__img1 .section-2__video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.convite__img1 .section-2__video-player.is-playing {
  cursor: pointer;
}
.convite__img1 .section-2__video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 10vw, 96px);
  height: clamp(64px, 10vw, 96px);
  padding: 0;
  padding-left: 6px;
  border: 2px solid #fde1f4;
  border-radius: 50%;
  background: rgba(27, 56, 61, 0.75);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.convite__img1 .section-2__video-play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fde1f4;
}
.convite__img1 .section-2__video-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.is-playing .convite__img1 .section-2__video-play {
  opacity: 0;
  pointer-events: none;
}
.convite .left {
  gap: 70px;
}
.convite .left p {
  font-size: 1.5625rem;
  line-height: 120%;
  color: #fde1f4;
  font-family: "Candara", sans-serif;
  max-width: 358px;
}
.convite .left .image-container {
  aspect-ratio: 534/503;
  max-width: 534px;
  max-height: 503px;
  overflow: hidden;
  background-color: rgba(27, 56, 61, 0.2);
}
.convite .left .image-container picture {
  display: block;
  width: 100%;
  height: 100%;
}
.convite .left .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.convite .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.convite .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.convite .right .image-container picture {
  display: block;
  width: 100%;
  height: 100%;
}
.convite .right .image-container:first-child {
  aspect-ratio: 533/374;
  max-width: 533px;
  max-height: 374px;
  overflow: hidden;
  background-color: rgba(27, 56, 61, 0.2);
}
.convite .right .image-container:last-child {
  aspect-ratio: 308/425;
  max-width: 308px;
  max-height: 425px;
  overflow: hidden;
  background-color: rgba(27, 56, 61, 0.2);
}

@media (max-width: 1023px) {
  .convite {
    padding: clamp(3rem, 10vw, 100px) 0;
    background: #747c4c url("../assets/images/bg_convite_mobile.svg") no-repeat top left;
    background-size: min(120vw, 800px);
  }
  .convite__img1 {
    margin-bottom: clamp(2rem, 6vw, 85px);
  }
  .convite .container > .flex {
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 6vw, 40px);
  }
  .convite .left {
    gap: clamp(2rem, 6vw, 70px);
    width: 50%;
    margin-left: auto;
  }
  .convite .left p {
    font-size: clamp(1rem, 3.5vw, 1.5625rem);
  }
  .convite .left .image-container {
    aspect-ratio: 183/253;
    max-height: 253px;
    max-width: 183px;
  }
  .convite .right {
    width: 100%;
    align-items: start;
    gap: 50px;
  }
  .convite .right .image-container:first-child {
    aspect-ratio: 236/223;
    max-width: 236px;
    max-height: 223px;
  }
  .convite .right .image-container:last-child {
    aspect-ratio: 343/242;
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
.localizacao {
  padding: 66px 0 0;
  background: #96505f;
}
.localizacao .container {
  margin-bottom: 135px;
}
.localizacao .flex .flex-col {
  max-width: 500px;
}
.localizacao p {
  font-size: 1.5625rem;
  line-height: 120%;
  color: #fde1f4;
  font-family: "Candara", sans-serif;
  font-weight: 400;
  margin-bottom: 90px;
}
.localizacao h2.title {
  font-size: clamp(2rem, 6vw, 3.125rem);
  line-height: 110%;
  color: #fde1f4;
  font-family: "Clash Display", sans-serif;
  font-weight: 200;
  margin: 0;
  padding: 0;
  max-width: fit-content;
  margin-bottom: 40px;
}
.localizacao h2 {
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 110%;
  color: #fde1f4;
  font-family: "Clash Display", sans-serif;
  text-wrap-mode: nowrap;
}
.localizacao h3 {
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 112%;
  color: #fde1f4;
  font-family: "Candara", sans-serif;
}
.localizacao h3:last-child {
  font-weight: 700;
  margin-top: 20px;
}
.localizacao .image-container {
  aspect-ratio: 1484/835;
  max-width: 1440px;
  margin: 0 auto;
}
.localizacao .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .localizacao {
    padding: clamp(2.5rem, 8vw, 66px) 0 0;
  }
  .localizacao .container {
    margin-bottom: clamp(3rem, 10vw, 135px);
  }
  .localizacao p {
    font-size: clamp(1rem, 3.5vw, 1.5625rem);
    margin-bottom: clamp(2rem, 6vw, 90px);
  }
  .localizacao .flex {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
  }
  .localizacao .flex.items-start.justify-between {
    align-items: flex-start;
  }
  .localizacao h2 {
    font-size: clamp(2rem, 8vw, 3.125rem);
    text-wrap-mode: wrap;
  }
  .localizacao h3 {
    font-size: clamp(1.125rem, 4vw, 2.125rem);
  }
  .localizacao .image-container {
    max-width: 100%;
  }
}

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