@font-face {
  font-family: Garamond;
  src: url('../assets/garamond.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-ExtraBold.woff2') format('woff2'), url('../assets/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-BoldItalic.woff2') format('woff2'), url('../assets/Poppins-ExtraBoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-ExtraLightItalic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../assets/Poppins-ThinItalic.woff2') format('woff2');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Cinzel variablefont wght;
  src: url('../assets/Cinzel-VariableFont_wght.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --burlywood: #dbc08d;
  --dark-goldenrod: #b29158;
  --dim-grey: #8a8a8a;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.navbar-no-shadow {
  z-index: var(--z-navbar-top);
  background-color: transparent;
  height: auto;
  position: relative;
  inset: auto;
  margin: 0;
  padding: 0;
}

.navbar-no-shadow-container {
  z-index: var(--z-navbar);
  color: #fff;
  background-color: #0000;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
}

.container-regular {
  width: 1200px;
  max-width: 90%;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  color: #fff;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: #fff;
  letter-spacing: .25px;
  margin-left: 0;
  margin-right: 15px;
  padding: 5px 0;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: all .5s;
}

.nav-link:hover {
  color: var(--burlywood);
}

.nav-link:focus-visible, .nav-link[data-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  border-bottom: 1px solid var(--burlywood);
  color: var(--burlywood);
  margin-right: 10px;
  padding-left: 0;
  padding-right: 0;
}

.nav-link.hover {
  padding-right: 0;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  justify-content: center;
  align-items: center;
  margin-left: 30px;
  display: flex;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.section {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/BANNER.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  padding-top: 140px;
  padding-bottom: 140px;
  font-family: Poppins, sans-serif;
}

.h1 {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--burlywood), var(--dark-goldenrod));
  color: var(--dark-goldenrod);
  text-align: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 90px;
}

.video {
  color: #fff;
  padding-top: 60px;
  padding-bottom: 0;
}

.body {
  color: #fff;
  background-color: #141414;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Poppins, sans-serif;
}

.heading {
  color: #dbc08d;
  text-align: center;
  max-width: 800px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 200;
  line-height: 45px;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.img-1 {
  width: 100%;
}

.container {
  margin-bottom: 60px;
}

.section-3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 140px;
  padding-bottom: 140px;
}

.sobre {
  margin-top: 0;
  padding-bottom: 0;
}

.grid-2 {
  grid-template-rows: auto;
}

.grid-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.image {
  width: 100%;
}

.div-block {
  align-items: center;
  max-width: 90%;
  display: flex;
}

.text-block {
  text-align: left;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 20px;
}

.div-block-2 {
  background-image: url('../assets/DR-ANDRE-.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.div-block-3 {
  background-color: #000;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: -100px;
  padding: 40px;
}

.section-4 {
  background-image: linear-gradient(#000000bf, #000000bf), url('../assets/SPA-UNIQUE.webp');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  justify-content: center;
  align-items: center;
  height: 70vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

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

.section-5 {
  padding-top: 60px;
  padding-bottom: 100px;
}

.container-2 {
  background-color: #000;
  border: 1px solid #0000;
  border-radius: 10px;
  margin-top: 140px;
  margin-bottom: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  overflow: visible;
}

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

.image-2 {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.h2 {
  text-align: left;
}

.paragraph {
  text-align: center;
  text-transform: none;
  max-width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  font-size: 15px;
  font-weight: 300;
}

.div-block-4 {
  z-index: 2;
  background-color: #fff;
  border: 0 solid #000;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  padding: 20px 40px;
  display: flex;
  position: relative;
}

.image-3 {
  width: 100px;
}

.footer-dark {
  color: #fff;
  background-color: #000;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 0 15px;
  font-family: Poppins, sans-serif;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  border-bottom: 0px solid var(--dark-goldenrod);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 0;
  display: flex;
}

.title-small {
  color: var(--burlywood);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 auto 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  padding: 14px 0;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-link:hover, .footer-link.w--current:hover {
  color: var(--burlywood);
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: var(--dark-goldenrod);
  width: 100%;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 10px;
}

.footer-copyright-center {
  color: var(--dim-grey);
  text-align: left;
  font-size: 12px;
  line-height: 16px;
}

.div-block-5 {
  margin-top: 20px;
}

.secao-procedimentos {
  padding-top: 100px;
  padding-bottom: 100px;
}

.grid-4 {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

.div-block-6 {
  background-image: url('../assets/background-image.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 40px;
}

.heading-3 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
}

.section-6 {
  background-image: url('../assets/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  padding-top: 140px;
  padding-bottom: 140px;
}

.section-7 {
  text-transform: none;
  padding-top: 60px;
  padding-bottom: 60px;
}

.tab-link-tab-1 {
  color: #fff;
  text-transform: none;
  background-color: #0000;
  border-bottom: 0 solid #000;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  font-family: Poppins, sans-serif;
  display: block;
}

.tab-link-tab-1.w--current {
  border: 1px solid var(--burlywood);
  color: #fff;
  text-transform: none;
  background-color: #0000;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Poppins, sans-serif;
  display: block;
}

.tab-pane-tab-1 {
  background-color: #0000;
  border-radius: 0;
}

.div-block-7 {
  border: 0px solid var(--burlywood);
  background-color: #0000;
  border-radius: 5px;
  padding: 0;
  font-family: Montserrat, sans-serif;
}

.div-block-8 {
  background-image: url('../assets/background-image.svg');
  background-position: 50%;
  background-size: auto;
  border-radius: 5px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 40px;
}

.heading-4 {
  color: var(--burlywood);
  text-align: center;
  font-family: Poppins, sans-serif;
}

.div-block-9 {
  margin-top: 20px;
}

.paragraph-2 {
  text-align: center;
  text-transform: none;
  max-width: none;
  margin: 0 auto 40px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
}

.grid-5 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  max-width: none;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.image-4 {
  border-radius: 5px;
  width: 100%;
}

.heading-5 {
  color: var(--burlywood);
  text-transform: none;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
}

.paragraph-3 {
  text-transform: none;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
}

.tabs {
  display: flex;
}

.div-block-10 {
  max-width: 90%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.grid-5-copy {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  max-width: none;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.section-21 {
  padding-bottom: 100px;
}

.container-49 {
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
}

.heading-33 {
  color: #aa7e32;
  text-align: left;
  font-size: 50px;
  line-height: 55px;
}

.paragraph-4-copy {
  color: #000;
  text-align: left;
  font-size: 17px;
  font-weight: 300;
  line-height: 23px;
}

.heading-34 {
  color: #aa7e32;
  font-weight: 700;
}

.paragraph-13 {
  color: #000;
  text-align: left;
  font-size: 17px;
  font-weight: 300;
  line-height: 23px;
}

.paragraph-14 {
  text-align: center;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
}

.clientes {
  overflow: hidden;
}

.div-block-11 {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.heading-35 {
  color: #005c55;
  text-align: center;
  max-width: 600px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.creator_content {
  display: flex;
  gap: 0;
}

.creator_block {
  background-color: #fff;
  border-radius: 0;
  width: 360px;
  min-width: 360px;
  max-width: 360px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-right: 0;
  padding: 0;
  display: block;
  flex-shrink: 0;
}

/* Infinite carousel styles */
.infinite-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.infinite-carousel-wrapper .creator_content {
  display: flex;
  width: max-content;
  animation: scroll-infinite 60s linear infinite;
  will-change: transform;
}

.infinite-carousel-wrapper .creator_content:hover {
  animation-play-state: paused;
}

@keyframes scroll-infinite {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.image-5 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-links {
  background-color: #131313;
  width: 100vw;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 60px;
}

.descricao {
  color: #6e6e6e;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.bloco-info {
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-6 {
  width: 180px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.bloco-banners {
  max-width: 450px;
  margin-top: 40px;
}

.button {
  text-align: center;
  background-color: #000;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 18px;
  transition: all 1.2s;
  display: block;
}

.button:hover {
  color: var(--burlywood);
  background-color: #000;
}

.titulo {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 25px;
}

.div-block-63 {
  margin-top: 30px;
}

.image-23 {
  width: 130px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.bloco-dados {
  margin-bottom: 0;
}

.text-block-10 {
  border: .5px solid var(--burlywood);
  text-align: center;
  padding: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 25px;
}

.text-span {
  font-weight: 700;
}

.image-24 {
  width: auto;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.paragraph-15 {
  margin-top: 40px;
}

.heading-36 {
  margin-top: 0;
  margin-bottom: 40px;
}

.grid-unique-day {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-top: 0;
}

.grid-unique-day._2 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.image-25 {
  width: 100%;
}

.image-21 {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-block-64 {
  max-width: 90%;
  margin: 40px auto 0;
}

.container-18 {
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 40px;
  padding: 0 0 60px;
}

.div-block-41-copy-copy {
  background-image: url('../assets/STUDIO-LIFE.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  height: 300px;
  margin-top: 0;
  margin-bottom: 60px;
}

.grid-19 {
  grid-template-rows: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  display: block;
}

.heading-13 {
  color: var(--burlywood);
  text-align: left;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 700;
}

.grid-27-copy {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 40px;
}

.list-item-5 {
  margin-bottom: 10px;
}

.text-block-11 {
  color: #fff;
  text-transform: none;
  background-image: url('../assets/seta.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 12px;
  margin-right: 10px;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 300;
}

.text-block-11.b {
  color: var(--burlywood);
  text-transform: none;
}

.grid-20 {
  grid-template-rows: auto;
  font-family: Poppins, sans-serif;
}

.image-26 {
  width: 100%;
}

.section-4-copy {
  background-image: linear-gradient(#000000bf, #000000bf), url('../assets/BARRIGA-CHAPADA.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 90vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section-4-copy-copy {
  background-image: linear-gradient(#000000bf, #000000bf), url('../assets/cta-quem-somos.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 90vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.paragraph-16 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

.section-23 {
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.grid-21 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
}

.heading-37 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.image-27 {
  width: 100px;
}

.text-span-2 {
  color: var(--dark-goldenrod);
}

.image-28 {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container-52 {
  color: #fff;
  background-color: #0000;
  border-radius: 0;
  justify-content: center;
  display: flex;
  overflow: hidden;
}

.text-block-12 {
  color: #fff;
  background-image: url('../assets/local-footer-azul.svg');
  background-position: 0 4px;
  background-repeat: no-repeat;
  background-size: 14px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 23px;
  text-decoration: none;
}

.tecno {
  margin-bottom: 0;
  padding-bottom: 100px;
}

.grid-22 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.image-29 {
  width: 100%;
}

.div-block-65 {
  background-color: #000;
  border-radius: 5px;
  max-width: 90%;
  margin-top: -30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.heading-38 {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.div-block-66 {
  margin-bottom: 40px;
}

.heading-39 {
  color: #fff;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-weight: 200;
}

.div-block-67 {
  background-color: #0000;
  border-radius: 10px;
  padding-bottom: 20px;
  overflow: hidden;
}

.container-54 {
  margin-top: 100px;
}

.slide-rd {
  margin-bottom: 100px;
}

.grid-23 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.image5 {
  width: 100%;
}

.div-block-68 {
  margin-right: 0;
  overflow: hidden;
}

.section-26 {
  padding-bottom: 0;
}

.grid-24 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.div-block-69 {
  margin-right: 0;
  overflow: hidden;
}

.image-30 {
  width: 100%;
  transition: all .8s;
}

.image-30:hover {
  transform: scale(1.1);
}

.image-31 {
  width: 11px;
}

.link-block {
  background-color: #313131;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-left: 3px;
  margin-right: 3px;
  transition: all .8s;
  display: flex;
}

.link-block:hover {
  transform: scale(.9);
}

.preloader {
  z-index: var(--z-preloader-mini);
  background-color: #000;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.lottie-animation {
  background-color: #0000;
  width: 150px;
}

.div-block-70 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.lottie-animation-2 {
  text-align: left;
  width: 17px;
  margin-bottom: 0;
  display: block;
}

.heading-40 {
  color: var(--burlywood);
  text-align: left;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 45px;
}

.div-block-71 {
  background-color: var(--burlywood);
  width: 30px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-block-72 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn {
  border: 1px solid var(--burlywood);
  color: #fff;
  text-transform: none;
  background-color: #0000;
  border-radius: 5px;
  padding: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  transition: all .8s;
  display: inline-flex;
}

.btn:hover {
  border-color: var(--dark-goldenrod);
  background-color: var(--dark-goldenrod);
}

.div-block-73 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-74 {
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.image-32 {
  width: 12px;
  margin-right: 10px;
}

.grid-25 {
  grid-template-rows: auto;
  margin-top: 0;
}

.footer-copyright-center-copy {
  color: var(--dim-grey);
  text-align: right;
  font-size: 12px;
  line-height: 16px;
}

.link {
  color: var(--dim-grey);
  text-decoration: underline;
}

.list-item-6.off {
  display: block;
}

.tabs-menu {
  margin-right: 20px;
}

.bloco-1 {
  background-image: linear-gradient(#000c, #000c), url('../assets/R24R.webp');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 5px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 40px;
}

.bloco-2 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/background-image.svg');
  background-position: 0 0, 50%;
  background-size: auto, auto;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.bloco-3 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/MAMOPLASTIA.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.bloco-4 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/ABDOMINOPLASTIA.webp');
  background-position: 0 0, 50% 87%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.bloco-5 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/LIPO-HD.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.bloco-6 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/RINO.webp');
  background-position: 0 0, 50% 30%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.bloco-7 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/PLICATURA.webp');
  background-position: 0 0, 50% 70%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.bloco-8 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/ninfoplastia.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.bloco-video {
  border-radius: 5px;
  margin-top: 20px;
  overflow: hidden;
}

.div-block-75 {
  padding-top: 40px;
  padding-bottom: 0;
  font-family: Poppins, sans-serif;
}

.div-block-76 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 0;
}

.div-block-77 {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.div-block-78 {
  justify-content: flex-start;
  align-items: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading-41 {
  color: var(--burlywood);
  text-transform: none;
  margin-bottom: 40px;
  font-weight: 500;
}

.list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.container-2-copycd {
  background-color: #000;
  border: 1px solid #0000;
  border-radius: 10px;
  margin-top: 140px;
  margin-bottom: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  overflow: hidden;
}

.div-block-80 {
  max-width: 90%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-17 {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 25px;
}

.section-27 {
  padding-top: 60px;
}

.div-block-81 {
  border-left: 3px solid var(--burlywood);
  padding-top: 10px;
  padding-bottom: 10px;
}

.grid-26 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
}

.image-33 {
  border-radius: 5px;
  width: 100%;
}

.faq-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  width: 100%;
  display: grid;
}

.plus {
  background-color: #fff;
  border-radius: 20px;
  width: 2px;
  height: 38%;
  position: absolute;
}

.h3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
}

.h3._2 {
  font-size: 18px;
  font-weight: 400;
}

.faq-item {
  background-color: #0000;
  border: 1px #212121;
  border-radius: 25px;
  box-shadow: 0 10px 20px #0000000d;
}

.paragraph-18 {
  color: #9e9e9e;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
}

.faq-question {
  background-color: #000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  display: flex;
}

.faq-question._2 {
  background-color: #0000;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-item.is-active > .faq-answer {
  max-height: 5000px;
}
.faq-question {
  cursor: pointer;
}
.faq-question .p-m-wrap {
  transition: transform 0.3s ease;
}
.faq-item.is-active .p-m-wrap {
  transform: rotate(45deg);
}
/* Sistema 2 — usado em protese-mamaria-r24r e outras páginas que não importam uniquecirurgiaplastica.css */
.faq-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}
.faq-question-wrap.active .faq-content {
  max-height: 5000px;
}
.faq-question-wrap .faq {
  cursor: pointer;
}
.faq-question-wrap .faq-icon {
  transition: transform 0.3s ease;
}
.faq-question-wrap.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer-inner {
  background-color: #000;
  padding: 0 20px 20px;
  overflow: visible;
}

.faq-answer-inner._2 {
  background-color: #0000;
}

.minus {
  background-color: #fff;
  border-radius: 20px;
  width: 38%;
  height: 2px;
  position: absolute;
}

.p-m-wrap {
  background-color: var(--dark-goldenrod);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  margin-left: 60px;
  display: flex;
  position: relative;
  transition: transform 0.3s ease;
}

.div-block-82 {
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

.div-block-83 {
  margin-bottom: 10px;
}

.div-block-84 {
  margin-top: 40px;
}

.utility-page-wrap {
  color: #000;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  font-family: Poppins, sans-serif;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: auto;
  display: flex;
}

.div-block-85 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-42 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
}

.div-block-86 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-34 {
  width: 150px;
}

.galeria {
  margin-bottom: 0;
}

.grid-27 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.bloco-grande {
  overflow: hidden;
}

.lightbox-link {
  width: 100%;
}

.image-35 {
  width: 100%;
  transition: all 1s;
}

.image-35:hover {
  transform: scale(1.1);
}

.btn2 {
  border: 1px solid var(--dark-goldenrod);
  background-color: var(--dark-goldenrod);
  text-transform: none;
  border-radius: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  transition: all .8s;
}

.btn2:hover {
  border-color: var(--dark-goldenrod);
  background-color: #0000;
}

.div-block-87 {
  padding-bottom: 20px;
}

.div-block-87b {
  margin-top: 30px;
  padding-bottom: 0;
}

.imagem {
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: var(--dark-goldenrod);
  background-image: url('../assets/Foto.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 500px;
  width: 180px;
  height: 180px;
  margin: -90px auto 20px;
}

.div-block-89 {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-top: 60px;
  overflow: hidden;
}

.container-2-copy {
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  overflow: visible;
}

.div-block-90 {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.div-block-91, .div-block-92 {
  margin-top: 40px;
}

.container-2-copy-copy {
  background-color: #000;
  border: 1px solid #0000;
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 0 0;
  font-family: Poppins, sans-serif;
  overflow: hidden;
}

.div-block-93 {
  overflow: hidden;
}

.background-video {
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.text-block-13 {
  color: #fff;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.grid-28-copycdac {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.bloco-efeito {
  border-radius: 0;
  overflow: hidden;
}

.img-efeito {
  border-radius: 0;
  width: 100%;
  transition: all .8s;
}

.img-efeito:hover {
  transform: scale(1.1);
}

.grid-28 {
  background-color: #000;
  grid-template-rows: auto;
  max-width: 100%;
}

.div-block-94 {
  text-align: center;
  background-color: #0000;
  border-radius: 0;
  max-width: 80%;
  margin: 60px auto;
  padding: 0;
}

.div-block-95 {
  background-image: url('../assets/DR-ANDRE-.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-96 {
  margin-top: 20px;
  display: flex;
}

.numeros {
  background-color: #0000;
  padding-top: 100px;
  padding-bottom: 100px;
}

.grid-29 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-97 {
  text-align: center;
}

.text-block-14 {
  color: var(--burlywood);
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 70px;
}

.text-block-15 {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}

.div-block-98 {
  text-align: center;
}

.div-block-99 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: none;
}

.paragraph-19 {
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.div-block-100 {
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.section-30 {
  padding-top: 180px;
  padding-bottom: 120px;
  display: block;
}

.container-60 {
  margin-top: 0;
  padding: 0 60px;
}

.heading-43 {
  color: var(--dark-goldenrod);
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.sonho {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.container-61 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.paragraph-20 {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
}

.div-block-101 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.c-content {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: auto;
  display: flex;
}

.c-content.off {
  display: none;
}

.c-card-btn-text {
  width: 100%;
  padding: 10px 20px;
}

.c-card-btn-text.focus {
  background-color: #ff6565;
  position: absolute;
  overflow: hidden;
}

.c-card-back {
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 300px;
  display: block;
}

._w-card-back {
  perspective: 1000px;
  background-color: #000;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.card-img {
  height: 120px;
}

.card-btn-focus-bg {
  background-image: radial-gradient(circle farthest-side, #ff9865, #fff0);
  width: 75%;
  height: 200%;
  position: absolute;
  inset: -75% -10% auto auto;
}

.c-card-no {
  position: relative;
  overflow: hidden;
  transform: translate(0);
}

.cloneable-area {
  margin-bottom: 10px;
  padding: 0 10px 0 0;
}

.card-title {
  color: #fff;
  text-align: right;
  font-size: 2em;
  font-weight: 700;
  line-height: 1em;
}

.no-dot {
  opacity: .2;
  background-color: #fff;
  width: 10px;
  height: 10px;
  margin: 5px 2px;
}

._w-content {
  justify-content: center;
  align-items: center;
}

.c-flipping-cards-list {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
}

.c-card-title {
  margin-bottom: 5px;
}

.c-card-btn {
  padding: 20px;
}

.c-card-img {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.card-no-text {
  opacity: .2;
  color: #fff;
  font-size: 7em;
  font-weight: 700;
  line-height: 1em;
  transform: translate(-20px);
}

.c-card-text {
  perspective: 1000px;
  border-top: 1px dashed #ffffff40;
  padding: 20px 15px;
  transform: translate(0);
}

._w-card-img {
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

._w-card-quote {
  position: relative;
}

.card-bg-quotemark {
  color: #fff;
  display: inline-block;
}

.card-bg-quotemark.btm {
  opacity: .2;
  font-family: PT Sans, sans-serif;
  font-size: 5em;
  line-height: 1em;
  position: absolute;
  inset: auto -.3em -.4em auto;
}

.card-bg-quotemark.top {
  opacity: .2;
  font-family: PT Sans, sans-serif;
  font-size: 5em;
  line-height: 1em;
  position: absolute;
  inset: -.4em auto auto -.3em;
}

.card-alias {
  color: #ddd;
  text-align: right;
  font-size: .9em;
  line-height: 1em;
}

.card-label {
  opacity: .2;
  color: #fff;
  font-size: .8em;
  line-height: 1em;
}

.card-btn-link {
  color: #fff;
  text-align: center;
  border: 2px solid #ff6565;
  border-radius: 1000px;
  width: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.c-flip-card {
  position: relative;
}

.c-card-front {
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 300px;
  display: flex;
}

.c-card-label {
  text-align: center;
  padding: 20px;
}

.card-quote {
  z-index: 5;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 1em;
  font-style: italic;
  line-height: 1.4em;
  position: relative;
}

._w-card-front {
  perspective: 1000px;
  background-color: #000;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  transform: none;
}

._w-card-front._1 {
  background-image: linear-gradient(#000c, #000c), url('../assets/laser.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

._w-card-front._2 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/Vibrolipo.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

._w-card-front._3 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/VASER2.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

._w-card-front._4 {
  background-image: linear-gradient(#00000080, #00000080), url('../assets/RENUVION-1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

._w-card-front._5 {
  background-image: linear-gradient(#00000080, #00000080), url('../assets/_MG_7213.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.card-text.focus {
  z-index: 10;
  position: relative;
}

.c-no-dots {
  z-index: 10;
  padding-top: 5px;
  padding-right: 5px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.c-card-quote {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  display: flex;
  position: relative;
}

._w-flip-card {
  z-index: 10;
  perspective: 1000px;
  display: flex;
  position: relative;
}

.div-block-102 {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.div-block-103 {
  max-width: 90%;
}

.paragraph-21 {
  text-align: center;
  text-transform: none;
  font-family: Poppins, sans-serif;
  font-size: 13px;
}

.capa {
  background-image: linear-gradient(#000c, #000c), url('../assets/unique-day-4.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.section-31 {
  padding-bottom: 100px;
  display: none;
}

.slide-nav-4 {
  display: none;
}

.div-block-58 {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.carousel-mask {
  width: 300px;
  height: auto;
  padding-bottom: 0;
  overflow: visible;
}

.heading-9-copyvb {
  color: #001489;
  background-image: url('../assets/icone_manutencao.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 25px;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.heading-9-copycv {
  color: #001489;
  background-image: url('../assets/icon_proj_person_1.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 25px;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.icon-3 {
  color: var(--dark-goldenrod);
  font-size: 15px;
}

.arrow-right {
  border: 0px solid var(--dark-goldenrod);
  border-radius: 50px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  transition: background-color .5s;
  inset: 0% 0% 0% auto;
}

.arrow-right:hover {
  background-color: #00148933;
}

.carousel-slider {
  width: 90%;
  height: auto;
  margin-left: 20px;
  margin-right: 0;
}

.card-body-2 {
  background-color: #1d1d1d;
  border: 2px solid #353535;
  border-radius: 5px;
  height: auto;
  min-height: auto;
  padding: 20px;
}

.heading-9-copyvv {
  color: #001489;
  background-image: url('../assets/icone_equipamentos.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 25px;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.paragraph-12 {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.carousel {
  background-color: #0000;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 400px;
}

.carousel.is_contained {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 60px;
  padding-bottom: 75px;
  display: block;
  overflow: visible;
}

.arrow-left {
  border: 0px solid var(--dark-goldenrod);
  border-radius: 50px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  transition: background-color .5s;
  inset: 0% auto 0% 0%;
}

.arrow-left:hover {
  background-color: #00148933;
}

.heading-9-copybdb-copyvsfv {
  color: #001489;
  background-image: url('../assets/icon_industriab.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 25px;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.card-2-copy {
  color: #b8b9c2;
  background-color: #0000;
  border-bottom: 0 solid #dc582a;
  border-radius: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: hidden;
  box-shadow: 0 5px 2rem #0003;
}

.icon-2 {
  color: var(--dark-goldenrod);
  width: auto;
  font-size: 15px;
}

.card-2 {
  color: #b8b9c2;
  background-color: #0000;
  border-bottom: 3px solid #dc582a;
  border-radius: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: hidden;
  box-shadow: 0 5px 2rem #0003;
}

.container-62 {
  overflow: visible;
}

.slide-nav-5 {
  display: none;
}

.icon-4, .icon-5 {
  font-size: 15px;
}

.slider {
  background-color: #0000;
}

.left-arrow, .right-arrow {
  width: 25px;
}

.grid-30 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: 40px;
  margin-right: 40px;
}

.image-36 {
  border-radius: 200px;
  width: 50px;
  margin-right: 10px;
}

.div-block-104 {
  align-items: center;
  display: flex;
}

.text-block-16 {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.text-block-17 {
  margin-top: 5px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 200;
}

.div-block-105, .div-block-106 {
  margin-top: 10px;
}

.paragraph-22 {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
}

.image-37 {
  width: 100%;
}

.whatsapp-btn {
  z-index: 1100;
  color: #16b831;
  background-color: #2e9c2e;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  margin-right: 20px;
  transition: all .8s;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.image-38 {
  width: 22px;
}

.bloco-9 {
  background-image: linear-gradient(#0009, #0009), url('../assets/102A6232.webp');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.capa-blog {
  background-image: linear-gradient(#000000bf, #000000bf), url('../assets/Frame-27.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 90vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section-32 {
  padding-top: 40px;
  padding-bottom: 100px;
}

.grid-31 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1.7fr .3fr;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-39 {
  width: 100%;
  margin-right: 0;
}

.heading-44 {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.div-block-107 {
  padding: 20px 40px 40px;
}

.collection-item {
  background-color: #000;
  border-radius: 20px;
  overflow: hidden;
}

.text-block-18 {
  text-align: left;
  border-bottom: 0 solid #555;
  padding-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.div-block-108, .div-block-108-copy {
  margin-top: 10px;
}

.nav-button-wrapper-copy {
  justify-content: center;
  align-items: center;
  margin-left: 0;
  display: flex;
}

.div-block-109 {
  margin-top: 40px;
}

.div-block-110 {
  margin-bottom: 40px;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.search {
  border-radius: 200px;
  display: flex;
  overflow: hidden;
}

.search-input {
  color: #000;
  background-color: #fff;
  height: 45px;
  margin-bottom: 0;
}

.search-button {
  background-color: var(--dark-goldenrod);
  font-family: Poppins, sans-serif;
  font-size: 13px;
}

.container-63 {
  margin-top: 140px;
  margin-bottom: 100px;
}

.heading-45 {
  color: var(--dark-goldenrod);
  text-align: center;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
}

.link-2 {
  color: var(--burlywood);
  font-weight: 700;
}

.text-block-19 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.search-result-item {
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.search-2 {
  border-radius: 200px;
  margin-bottom: 60px;
  display: flex;
  overflow: hidden;
}

.search-input-2 {
  color: #000;
  height: 50px;
  margin-bottom: 0;
}

.search-button-2 {
  background-color: var(--dark-goldenrod);
  font-family: Poppins, sans-serif;
}

.capa-blog-interno {
  background-image: url('../assets/background-image.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 60vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section-33 {
  padding-top: 60px;
  padding-bottom: 100px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.heading-46 {
  color: var(--dark-goldenrod);
  margin-top: 0;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
}

.div-block-111 {
  margin-top: 40px;
  display: flex;
}

.div-block-112 {
  margin-top: 40px;
}

.collection-list-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-40 {
  border-radius: 5px;
  margin-bottom: 10px;
}

.link-3 {
  color: #fff;
  border: 1px #000;
  font-family: Poppins, sans-serif;
  text-decoration: none;
}

.link-3.w--current {
  transition: all .8s;
}

.link-3.w--current:hover {
  color: var(--burlywood);
}

.heading-47 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
}

.icon-6 {
  margin-right: 20px;
}

.dropdown-list {
  background-color: var(--dark-goldenrod);
}

.dropdown-list.w--open {
  background-color: #3d3d3d;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: scroll;
}

.dropdown-link {
  color: var(--burlywood);
  text-align: left;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Poppins, sans-serif;
  transition: all .8s;
}

.dropdown-link:hover {
  background-color: var(--dark-goldenrod);
  color: #fff;
}

.dropdown-link.w--current {
  background-color: var(--dark-goldenrod);
  color: #fff;
  -webkit-text-stroke-color: transparent;
}

.bloco-1-proced {
  background-image: linear-gradient(#000c, #000c), url('../assets/R24R.webp');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.section-34 {
  padding-top: 40px;
  padding-bottom: 100px;
}

.youtube {
  width: auto;
}

.section-35 {
  padding-top: 60px;
}

.section-36 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.grid-32 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.div-block-113 {
  background-color: #000;
  border-radius: 15px;
  padding: 40px;
}

.text-block-20 {
  color: var(--burlywood);
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.paragraph-23 {
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 300;
}

.section-4-co {
  background-image: linear-gradient(#000000bf, #000000bf), url('../assets/Frame-21.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 70vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.paragraph2 {
  text-align: left;
  text-transform: none;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
}

.grid-33 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.heading-48 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.div-block-114 {
  max-width: 90%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-19-copy {
  text-align: center;
  text-transform: none;
  max-width: 800px;
  margin: 10px auto 20px;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
}

.text-span-3 {
  color: var(--burlywood);
}

.div-block-115 {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.section-4-co2 {
  background-image: linear-gradient(#000000bf, #000000bf), url('../assets/unique-day-4.webp');
  background-position: 0 0, 50% 40%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 70vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.div-block-116 {
  display: flex;
}

.section-4-co3 {
  background-image: linear-gradient(#000000bf, #000000bf), url('../assets/WhatsApp-Image-2023-02-23-at-17.10.webp');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 70vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section-4-co4 {
  background-image: linear-gradient(#000000bf, #000000bf), url('../assets/DSC00612.webp');
  background-position: 0 0, 50% 20%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 70vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section-4-co5 {
  background-image: linear-gradient(#000000bf, #000000bf), url('../assets/DSC00507-1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 70vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.form {
  border-radius: 0;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.text-field {
  color: #000;
  text-align: center;
  border-radius: 0;
  height: 50px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
}

.submit-button {
  background-color: var(--dark-goldenrod);
  border-radius: 0;
  width: 150px;
}

.div-block-117 {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.div-block-118 {
  margin-bottom: 40px;
}

.div-block-119 {
  width: 100%;
}

.div-block-120 {
  justify-content: center;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-small-copy {
  color: var(--burlywood);
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 auto 30px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.bloco-inc {
  margin-top: 20px;
}

.titulo-novidades {
  color: var(--burlywood);
  text-align: center;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
}

.bloco-inc2 {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.checkbox-field {
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 300;
}

.submit-button-2 {
  background-color: #b29158;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  display: block;
}

.text-field-2 {
  height: 45px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.link-4 {
  color: #fff;
  text-decoration: underline;
}

.div-block-123 {
  background-image: url('../assets/Marcus-Torres-2118.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.container-64 {
  display: block;
}

.h1-2 {
  color: #b29158;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: radial-gradient(circle, #dbc08d, #b29158);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 100px;
}

.text-block-21 {
  color: #fff;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.div-block-124 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.container-700px-center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.grid-3-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.button-primary-2 {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #4a3aff;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  padding: 20px 40px 21px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, background-color .3s;
  display: flex;
  box-shadow: 0 3px 12px #4a3aff1f;
}

.button-primary-2:hover {
  background-color: #3527d8;
  transform: translate(0, -2px);
  box-shadow: 0 4px 10px #4a3aff26;
}

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

.countup-title---brix-agency {
  color: #fff;
  margin-top: 6px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.countup-number-item---brix, .text-center {
  text-align: center;
}

.container-default {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-default._100 {
  max-width: 1200px;
}

.mg-top-40px {
  margin-top: 40px;
}

.countup-number---brix {
  color: #170f49;
  font-size: 90px;
  font-weight: 700;
  line-height: 94px;
}

.countup-number---brix.color-primary {
  color: var(--burlywood);
}

.countup-number---brix.count-number.timer {
  color: var(--burlywood);
  font-family: Poppins, sans-serif;
  font-size: 75px;
  font-weight: 600;
}

.countup-number-top---brix-agency {
  justify-content: center;
  align-items: center;
  display: flex;
}

.mg-top-32px {
  margin-top: 0;
}

.text-uppercase {
  letter-spacing: .1em;
  text-transform: uppercase;
}

.text-uppercase.subtitle {
  color: #4a3aff;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.container-880px-center {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.countup-numbers-wrapper---brix {
  justify-content: space-between;
  align-items: center;
}

.container-910px-center {
  width: 100%;
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
}

.text-block-22 {
  color: var(--burlywood);
  padding-left: 5px;
  padding-right: 5px;
  font-family: Poppins, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 94px;
}

.div-block-125 {
  padding-top: 60px;
}

.image-41 {
  width: 150px;
}

.bloco-a1 {
  background-image: linear-gradient(#0009, #0009), url('../assets/Unique.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.bloco-a2 {
  background-image: linear-gradient(#0009, #0009), url('../assets/PHOTO-2024-01-12-13-20-11.webp');
  background-position: 0 0, 50% 25%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.janela {
  z-index: var(--z-dropdown-deep);
  background-color: #000000d9;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.div-block-126 {
  background-color: #ebebeb;
  border-radius: 5px;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  display: flex;
}

.div-block-126._2 {
  margin-top: 10px;
  display: block;
}

.div-block-127 {
  border: 3px solid #07a546;
  border-radius: 200px;
  max-width: none;
  margin-right: 10px;
  overflow: hidden;
}

.image-42 {
  border: 2px solid #11a839;
  border-radius: 200px;
  width: 80px;
  margin-right: 10px;
}

.heading-50 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

.div-block-128 {
  align-self: center;
}

.text-block-23 {
  color: #000;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 200;
}

.text-block-24 {
  color: #07a546;
  font-size: 12px;
  font-weight: 400;
}

.div-block-129 {
  border-radius: 5px;
  margin-top: 10px;
}

.text-block-25 {
  color: var(--dim-grey);
  text-align: center;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.submit-button-3 {
  background-color: #0d8128;
  background-image: url('../assets/whatsapp-branco.svg');
  background-position: 20px;
  background-repeat: no-repeat;
  background-size: 12px;
  border-radius: 5px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px 15px 40px;
  font-size: 13px;
  font-weight: 400;
  transition: all .8s;
  display: block;
}

.submit-button-3:hover {
  background-color: #055e19;
}

.text-field-3 {
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 300;
}

.form-block-2 {
  margin-bottom: 0;
}

.div-block-130 {
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-top: 20px;
  margin-right: 20px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto auto;
}

.text-block-26 {
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 200;
}

.btn-janela {
  border: 1px solid var(--dark-goldenrod);
  background-color: var(--dark-goldenrod);
  color: #1a1a1a;
  text-transform: none;
  border-radius: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-janela:hover {
  border-color: var(--dark-goldenrod);
  background-color: #0000;
  color: var(--dark-goldenrod);
}

.btn-home {
  border: 1px solid var(--dark-goldenrod);
  background-color: var(--dark-goldenrod);
  text-transform: none;
  border-radius: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  transition: all .8s;
}

.btn-home:hover {
  border-color: var(--dark-goldenrod);
  background-color: #0000;
}

.link-5 {
  background-color: var(--dark-goldenrod);
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  padding: 15px;
  font-family: Poppins, sans-serif;
  text-decoration: none;
}

.success-message {
  background-color: #077533;
  border-radius: 5px;
}

.error-message {
  color: #ad0000;
  text-align: center;
  background-color: #ffcdcd;
  border-radius: 5px;
  max-width: 300px;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
}

.form-2 {
  display: block;
}

.rich-text-block {
  font-size: 15px;
  line-height: 25px;
}

.ebook {
  color: #fff;
  background-color: #1b1b1b;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 60px;
  overflow: hidden;
}

.grid-ebook {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  margin-bottom: 80px;
}

.div-block-133 {
  margin-left: 10px;
}

.btn-ebook {
  border: 1px solid var(--dark-goldenrod);
  text-transform: none;
  background-color: #b2915800;
  border-radius: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  transition: all .8s;
}

.btn-ebook:hover {
  border-color: var(--dark-goldenrod);
  background-color: var(--dark-goldenrod);
}

.heading-51 {
  background-image: linear-gradient(121deg, var(--dark-goldenrod), #dbc08d);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}

.div-block-134 {
  margin-top: 20px;
}

.btn-ebook-download {
  border: 1px solid var(--dark-goldenrod);
  text-transform: none;
  background-color: #b2915800;
  border-radius: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  transition: all .8s;
}

.btn-ebook-download:hover {
  border-color: var(--dark-goldenrod);
  background-color: #0000;
}

.section-37 {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 20px;
  display: flex;
}

.grid-35 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.div-block-135 {
  display: block;
}

.div-block-136 {
  text-align: center;
}

.image-43 {
  padding-left: 40px;
}

.text-span-4 {
  background-image: linear-gradient(123deg, var(--dark-goldenrod), var(--burlywood));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.paragraph-24 {
  font-weight: 500;
  line-height: 27px;
}

.secao-ebook {
  padding-top: 100px;
  padding-bottom: 0;
}

.ebook-copy {
  color: #fff;
  background-color: #1b1b1b00;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 60px 0 0;
  font-family: Poppins, sans-serif;
  overflow: hidden;
}

.image-ebook {
  border-radius: 10px;
  width: 100%;
}

.html-embed {
  justify-content: center;
  align-items: center;
  display: none;
}

.html-embed-inc {
  justify-content: center;
  align-items: center;
  display: flex;
}

.form-3 {
  display: none;
}

.div-block-137 {
  margin-top: 20px;
}

.navbar-no-shadow-container-mobile {
  z-index: 5;
  color: #fff;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  display: none;
}

.bold-text {
  max-width: 600px;
  line-height: 40px;
}

.paragraph-25 {
  text-align: center;
  font-family: Poppins, sans-serif;
}

.section-38 {
  background-color: #0000;
  padding-top: 60px;
  padding-bottom: 60px;
}

.grid-38 {
  grid-template-columns: 1fr 1fr 1fr;
}

.container-66 {
  margin-bottom: 0;
}

.heading-52 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 60px;
  font-family: Poppins, sans-serif;
}

.grid-39 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-39-copyv {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid-19-copyvvn {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 0 solid #fedb6b;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 0;
}

.div-block-138 {
  background-color: #000;
  background-image: linear-gradient(#1d1d1d, #1d1d1d);
  border: 0 solid #000;
  border-radius: 30px;
  height: 100%;
  margin-top: 0;
  padding: 0 20px 40px;
  transition: all 1s;
}

.div-block-138:hover {
  background-color: #ffe07e;
  transform: scale(1.03)translate(-10px, -10px);
}

.div-block-139 {
  background-color: #252525;
  border: 0 solid #f3f3f3;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-45 {
  border-radius: 0;
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-block-7 {
  color: #fff;
  text-align: center;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 25px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
}

.text-span-12 {
  color: var(--burlywood);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-weight: 700;
}

.div-block-140 {
  background-color: #000;
  border: 0 solid #000;
  border-radius: 30px;
  height: 100%;
  margin-top: 0;
  padding: 40px 20px;
  transition: all 1s;
}

.div-block-140:hover {
  background-color: var(--dim-grey);
  transform: scale(1.03)translate(-10px, -10px);
}

.div-block-141 {
  background-color: #252525;
  border: 0 solid #f3f3f3;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-46 {
  border-radius: 0;
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-block-27 {
  color: #fff;
  text-align: center;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 25px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
}

.paragraph-26 {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.div-block-142 {
  text-align: left;
  margin-bottom: 80px;
}

.heading-53 {
  color: #fff;
  text-align: center;
  letter-spacing: normal;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: 600px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 55px;
}

.text-span-10 {
  color: #fedb6b;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(126deg, #c48d3d, #fedb6b);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  display: inline-block;
}

.div-block-127-copy {
  background-image: linear-gradient(126deg, #c48d3d, #fedb6b);
  width: 70px;
  height: 3px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-143 {
  margin-top: 40px;
}

.div-block-144 {
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.btn-janela-2 {
  color: #000;
  text-transform: none;
  background-color: #b29158;
  background-image: linear-gradient(106deg, #c48d3d, #fedb6b);
  border: 0 solid #b29158;
  border-radius: 50px;
  padding: 18px 23px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 400;
  transition: all 1.2s;
}

.btn-janela-2:hover {
  background-color: #0000;
  border-color: #b29158;
  transform: translate(-5px, -5px);
}

.div-block-145 {
  margin-left: 10px;
  margin-right: 0;
  display: none;
}

.btn-janela-copy {
  color: #fff;
  text-transform: none;
  background-color: #b2915800;
  border: 1px solid #fedb6b;
  border-radius: 50px;
  padding: 18px 23px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 400;
  transition: all 1.2s;
}

.btn-janela-copy:hover {
  color: #fff;
  background-color: #0000;
  background-image: linear-gradient(125deg, #c48d3d, #fedb6b);
  border-color: #b29158;
  transform: translate(-5px, -5px);
}

.section-inscricao {
  background-color: #000;
  padding: 60px 20px;
}

.container-67 {
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-130-copy {
  text-align: left;
  margin-bottom: 40px;
}

.heading-54 {
  color: #fff;
  text-align: center;
  letter-spacing: normal;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: 500px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 55px;
}

.div-block-146 {
  width: 100%;
  height: 100%;
  margin-top: 40px;
}

.html-embed-3 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: block;
}

.secao-ebook-2 {
  background-color: #1b1b1b;
}

.image-47 {
  width: 100%;
}

.heading-51-c {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(102deg, #aa7e32, #ebc65e), linear-gradient(121deg, #b29158, #dbc08d);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Cinzel variablefont wght, sans-serif;
  font-size: 75px;
  font-weight: 500;
  line-height: 80px;
}

.paragraph-27 {
  font-weight: 700;
}

.text-span-13 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(123deg, #b29158, #dbc08d);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.div-block-147 {
  margin-top: 20px;
}

.paragraph-27-copy {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 20px;
}

.heading-51-c-2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(102deg, #aa7e32, #ebc65e), linear-gradient(121deg, #b29158, #dbc08d);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Cinzel variablefont wght, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
}

.heading-51-c-3 {
  color: var(--burlywood);
  -webkit-text-fill-color: inherit;
  background-color: #dbc08d00;
  background-clip: border-box;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Cinzel variablefont wght, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
}

.paragraph-27-copy-2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 20px;
}

.paragraph-28 {
  color: var(--burlywood);
  font-weight: 700;
}

.div-block-148 {
  margin-top: 20px;
}

.text-span-14 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(123deg, #b29158, #dbc08d);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.div-block-144-copy {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.heading-51-c-4 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(102deg, #aa7e32, #ebc65e), linear-gradient(121deg, #b29158, #dbc08d);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Cinzel variablefont wght, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
}

.paragraph-27-copy-3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 20px;
}

.paragraph-29 {
  font-weight: 700;
}

.div-block-153 {
  margin-top: 20px;
}

.bloco-2-copysc {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/unique-day-3.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  border-radius: 5px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 160px 40px 100px;
}

.heading-4-copyasc {
  color: #fff;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.paragraph-25-copysdv {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.heading-4-copyac {
  color: #dbc08d;
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-family: Cinzel variablefont wght, sans-serif;
  font-size: 50px;
  line-height: 60px;
}

.text-span-15 {
  color: #fedb6b;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(126deg, #c48d3d, #fedb6b);
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  font-weight: 700;
  display: inline-block;
}

.section-tecnologias {
  background-color: #000;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-68 {
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.list-2, .list-item-7-copy {
  margin-bottom: 0;
}

.grid-41 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.heading-42-copyzv {
  color: #fff;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto 20px 0;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 65px;
}

.div-block-155 {
  display: flex;
}

.text-block-30 {
  color: #fff;
  text-align: left;
  background-image: url('../assets/ok.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 25px;
  padding-left: 40px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.btn-agendar-c {
  color: #fff;
  background-color: #0000;
  border: 1px solid #ebc65e;
  border-radius: 200px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  transition: all .8s;
}

.btn-agendar-c:hover {
  color: #000;
  background-color: #ebc65e;
}

.list-item-7 {
  margin-bottom: 30px;
}

.div-block-156 {
  margin-top: 0;
}

.text-span-16 {
  color: var(--burlywood);
}

.link-block-banners {
  border-radius: 25px;
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

.link-block-banners.w--current {
  margin-bottom: 10px;
}

.imagem-banner {
  width: 100%;
  transition: all 1s;
}

.imagem-banner:hover {
  transform: scale(1.05);
}

.bloco-capa {
  background-image: linear-gradient(#0009, #0009), url('../assets/1929x1080---DR.-ANDRE-p-1600.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  min-height: 30vh;
}

.bloco-botoes {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.link-block-btn {
  border-radius: 200px;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  overflow: hidden;
}

.container-70 {
  max-width: 1200px;
}

.imagem-icone {
  width: 100%;
}

.bloco-idiomas {
  margin-left: 10px;
}

.s-google {
  padding-top: 60px;
  padding-bottom: 140px;
}

.container-71 {
  width: 1200px;
  max-width: 90%;
}

.code-embed {
  background-color: #000;
}

.div-block-158 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.link-block-2 {
  text-decoration: none;
}

.section-39 {
  min-height: 50vh;
}

.contact-form-section {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.submit-button-4 {
  z-index: 1;
  color: #fff;
  letter-spacing: -.02em;
  cursor: pointer;
  background-color: #181818;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 200px;
  min-width: 120px;
  height: 55px;
  padding: 9px 1.8em;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1;
  transition: background-color .4s, transform .3s;
  display: flex;
}

.submit-button-4:hover {
  background-color: #4e4e4e;
  transform: scale(1.05);
}

.contact-address {
  border-bottom: 1px solid #000;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.address-big {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.shape-arrow {
  z-index: 2;
  object-fit: contain;
  width: 15px;
  height: 15px;
  position: static;
}

.shape-arrow.icon {
  width: 20px;
  height: 20px;
}

.button-shapes-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.form_field {
  color: #000;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #1d1d1d;
  border-radius: 0;
  width: 100%;
  margin-bottom: 32px;
  padding-top: 12px;
  padding-bottom: 24px;
  font-size: 1.1rem;
  line-height: 1.67;
}

.form_field:focus {
  border-bottom-color: #000;
}

.form_field::placeholder {
  color: #393d4799;
}

.form_field.is--message {
  padding-bottom: 160px;
}

.form_error {
  background-color: #fcc;
  border-radius: 12px;
}

.is--tag {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: .83vw;
  font-weight: 500;
  line-height: 1;
}

.is--tag.form_label {
  margin-bottom: 12px;
  font-size: .9rem;
}

.section-wrapper {
  z-index: 5;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.section-wrapper.center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.contact-info-wrap {
  border-right: 1px solid #000;
  width: 35%;
}

.contact-text {
  color: #000;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .3s, opacity .3s;
}

.contact-text:hover {
  opacity: .55;
  transform: scale(.95);
}

.button_text {
  margin-bottom: 0;
  margin-right: 15px;
  font-size: .9rem;
  font-weight: 500;
}

.header-subtitle {
  color: var(--dark-goldenrod);
  text-transform: uppercase;
  cursor: default;
  margin-top: 5px;
  margin-bottom: 9px;
  font-size: .8rem;
}

.primary-button {
  z-index: 1;
  color: #1d1d1d;
  letter-spacing: -.02em;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  height: 55px;
  padding: 9px 1.8em;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.primary-button.outline-dark {
  color: #1d1d1d;
  background-color: #0000;
  border: 2px solid #1d1d1d;
  transition: padding .4s cubic-bezier(.215, .61, .355, 1);
}

.primary-button.outline-dark:hover {
  padding-left: 2.2em;
  padding-right: 2.2em;
}

.primary-button.outline-dark.pad-top {
  margin-top: 17px;
}

.header-wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.header-wrapper.pad-bottom-2 {
  margin-bottom: 2rem;
}

.form_success {
  background-color: #fff9;
  border-radius: 12px;
}

.contact-page-1 {
  transform-origin: 50% 100%;
  background-color: #f5f5f5;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  padding-top: 100px;
  padding-left: 8vw;
  padding-right: 8vw;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  position: relative;
}

.contact-wrap {
  z-index: 5;
  color: #1d1d1d;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.section-header {
  z-index: 3;
  color: var(--dark-goldenrod);
  font-variation-settings: "wght" 600;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.7rem;
  line-height: 1;
  position: relative;
}

.contact-form {
  width: 65%;
  padding-left: 4.4rem;
}

.button-wrapper {
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.button-wrapper.contact-buttons {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2.1rem;
}

.link-block-3, .link-block-4 {
  text-decoration: none;
}

.code-embed-2 {
  width: 100%;
  margin-bottom: 0;
}

.s-form {
  width: 100%;
  min-height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.sectio6 {
  background-image: linear-gradient(#000000bf, #000000bf), url('../assets/Unique.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 50vh;
  padding-top: 60px;
  padding-bottom: 0;
  display: flex;
}

.container-72 {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.container-73 {
  width: 1200px;
  max-width: 90%;
}

.section-40 {
  padding-top: 60px;
  padding-bottom: 20px;
  font-family: Poppins, sans-serif;
}

.hover-line {
  height: 1px;
  position: absolute;
  inset: auto 0% -1px;
  overflow: hidden;
}

.outline-button {
  border: 1px solid var(--dark-goldenrod);
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 16px 32px;
  font-size: 9px;
  line-height: 1.35em;
  text-decoration: none;
  transition: background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  overflow: hidden;
}

.verticle-line {
  background-color: #889ea833;
  height: 100%;
  position: relative;
}

.footer-brand-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-wrapper {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.underline-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid #fffc;
  padding-bottom: 6px;
  padding-left: 0;
  font-size: 9px;
  text-decoration: none;
  position: relative;
}

.underline-link.dark {
  color: #fff;
  border-bottom-color: #889ea833;
}

.footer-content-2 {
  grid-column-gap: 33px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1px 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-box {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  color: #000;
  text-align: center;
  border: 1px solid #889ea833;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  min-height: 300px;
  padding: 18px 18px 0;
  text-decoration: none;
  display: grid;
}

.hover-line-fill {
  background-color: #a3acc2;
  width: 100%;
  height: 100%;
}

.legal-link {
  color: #626d86;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 9px;
  text-decoration: none;
}

.body-display {
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6em;
}

.body-display.small {
  font-size: 14px;
  line-height: 1.45em;
}

.subtitle {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 11px;
}

.subtitle.small {
  font-size: 9px;
}

.footer-wrapper-2 {
  grid-column-gap: 16px;
  grid-row-gap: 180px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 200px;
  padding-bottom: 24px;
  display: grid;
}

.section-41 {
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
}

.section-41.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-brand-2 {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 300px;
  display: grid;
}

.footer-box-top {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.footer-credits {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid #889ea833;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  display: grid;
}

.footer-box-title {
  grid-column-gap: 16px;
  grid-row-gap: 9px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.footer-box-bottom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid #889ea833;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 18px;
}

.legal-link-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  display: grid;
}

.heading-55 {
  color: var(--burlywood);
  font-weight: 400;
}

.heading-56, .heading-57 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.div-block-159 {
  background-color: #1a1a1a;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-48 {
  width: 22px;
  height: 22px;
}

.image-49 {
  width: 20%;
  max-width: 20%;
}

.heading-58 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.text-block-31 {
  color: #fff;
  font-size: 12px;
  line-height: 22px;
}

.dropdown-list-2 {
  background-color: #112631;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #8d99a0;
  width: 100%;
  max-width: 1350px;
  padding: 50px;
  display: none;
  top: 112px;
  left: 0;
  right: 0;
}

.dropdown-list-2.submenu-list {
  border-top-width: 0;
  position: fixed;
}

.dropdown-list-2.submenu-list.w--open {
  background-color: #181818;
  margin-top: 95px;
  padding-top: 50px;
  top: 0;
}

.category-wrap {
  max-width: 285px;
}

.category-link {
  color: #fff;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.dropdown-2, .dropdown-2.menu-link {
  position: static;
}

.services-name {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}

.link-block-5 {
  text-align: center;
  border: 1px solid #4e4e4e;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-bottom: 10px;
  padding: 15px;
  text-decoration: none;
  transition: all .8s;
  display: flex;
}

.link-block-5:hover {
  background-color: var(--dark-goldenrod);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 10px;
}

.link-block-5.service-link-block {
  border: 1px solid var(--dark-goldenrod);
  text-align: center;
  border-radius: 5px;
  width: 100%;
  transition: all .8s;
}

.link-block-5.service-link-block:hover {
  background-color: var(--dark-goldenrod);
}

.image-50 {
  padding-left: 5px;
}

.down-arrow {
  display: none;
}

.div-block-160 {
  width: 100%;
  max-width: 80%;
  padding-left: 0;
}

.down-font {
  margin-left: 5px;
  display: block;
}

.container-74 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 10704px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 300;
  display: grid;
}

.up-image {
  display: none;
}

.dropdown-toggle {
  display: inline-block;
  top: auto;
}

.dropdown-toggle.nav-link {
  display: flex;
}

.div-block-161 {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.services-block {
  width: 25%;
  padding-left: 15px;
}

.text-block-32 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.desktop {
  z-index: 5;
  background-color: #000;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
}

.container-regular-2 {
  width: 1200px;
  max-width: 90%;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-3 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link-2 {
  color: #fff;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 7px 5px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: all .6s;
}

.nav-link-2:hover {
  color: var(--burlywood);
}

.nav-link-2:focus-visible, .nav-link-2[data-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link-2.w--current {
  color: var(--burlywood);
  padding-left: 5px;
  padding-right: 5px;
}

.nav-dropdown-2 {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle-2 {
  color: #fff;
  letter-spacing: .25px;
  padding: 5px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition: all .6s;
}

.nav-dropdown-toggle-2:hover {
  color: var(--burlywood);
}

.nav-dropdown-toggle-2:focus-visible, .nav-dropdown-toggle-2[data-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon-2 {
  margin-right: 10px;
}

.nav-dropdown-list-2 {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list-2.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list-2.shadow-three.mobile-shadow-hide.w--open {
  color: #fff;
  background-color: #0c0c0c;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
}

.nav-dropdown-link-2 {
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all .6s;
}

.nav-dropdown-link-2:hover {
  color: var(--burlywood);
}

.nav-dropdown-link-2:focus-visible, .nav-dropdown-link-2[data-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper-2 {
  margin-left: 40px;
}

.button-primary-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.mobile {
  z-index: 5;
  background-color: #000;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  display: none;
}

.nav-link-2-copy {
  color: #fff;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 7px 5px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: all .6s;
}

.nav-link-2-copy:hover {
  color: var(--burlywood);
}

.nav-link-2-copy:focus-visible, .nav-link-2-copy[data-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link-2-copy.w--current {
  color: var(--burlywood);
  padding-left: 5px;
  padding-right: 5px;
}

.navbar_dropdown {
  z-index: var(--z-navbar-item);
  clear: both;
  position: static;
}

.navbar_link {
  z-index: 2;
  color: #fff;
  letter-spacing: normal;
  text-transform: none;
  padding: .5rem 1rem;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.navbar_link:hover {
  color: #ffffffb3;
}

.navbar_link.w--current {
  color: #0000;
}

.container-large {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.navbar_submenu-item.is-bold {
  font-weight: 600;
}

.navbar_link-image:hover {
  opacity: .7;
}

.navbar_submenu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #000;
  border: 0 solid #000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  width: 1200%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: relative;
  top: 0;
}

.navbar_dropdown-toggle {
  z-index: 2;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .5rem 0;
}

.navbar_left-widget {
  text-align: center;
  width: 10rem;
  height: 15rem;
  display: block;
  position: absolute;
  top: 6rem;
}

.navbar_dropdown-link {
  color: #fff;
  white-space: normal;
  padding: .5rem 1rem;
  text-decoration: none;
  display: inline-block;
}

.navbar_dropdown-link:hover {
  color: #ffffffb3;
}

.navbar_dropdown-link.w--current {
  color: #0000;
}

.navbar_dropdown-link.is-small {
  font-size: .9rem;
}

.navbar_dropdown-link.is-bold {
  color: var(--burlywood);
  font-weight: 600;
}

.hide-desktop-only {
  display: none;
}

.navbar_submenu-col {
  flex: 1 1 0;
}

.navbar_dropdown-list {
  color: #fff;
  background-color: #0000;
  height: 28rem;
  position: absolute;
  inset: 0 0% auto;
}

.navbar_dropdown-list.w--open {
  background-color: #000;
  height: auto;
  margin-top: 80px;
  padding: 0;
}

.navbar_submenu-list {
  flex: 1 1 0;
}

.navbar_dropdown-2 {
  z-index: var(--z-navbar-item);
  clear: both;
  position: static;
}

.navbar_link-2 {
  z-index: 2;
  color: #fff;
  letter-spacing: normal;
  text-transform: none;
  padding: .5rem;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.navbar_link-2:hover {
  color: #ffffffb3;
}

.navbar_link-2.w--current {
  color: var(--burlywood);
}

.navbar_logo-link {
  z-index: var(--z-navbar-item);
  width: 100px;
  padding-left: 0;
}

.search-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #e6e6e6;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.navbar_divider {
  z-index: var(--z-navbar-item);
  border-left: 1px solid #fff;
  height: 100%;
  margin-left: 1rem;
  margin-right: 1rem;
  position: relative;
}

.hide {
  display: none;
}

.navbar_button-wrapper {
  grid-column-gap: 1rem;
  margin-left: 1rem;
  display: flex;
  position: relative;
}

.navbar_mobile-search-wrap {
  display: none;
}

.navbar_dropdown-toggle-2 {
  z-index: 2;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .5rem 0;
}

.navbar_menu-button {
  padding: 0;
}

.navbar_search {
  border-bottom: 1px solid #fff;
  position: relative;
  top: 6rem;
}

.button-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #000;
  padding: .75rem 1.5rem;
}

.button-2.is-navbar-button {
  z-index: var(--z-navbar-item);
  border: 1px solid #fff;
  font-size: .9rem;
  font-weight: 600;
  display: none;
  position: relative;
}

.button-2.is-navbar-button:hover {
  color: #000;
  background-color: #fff;
  font-weight: 600;
}

.navbar_search-button {
  z-index: var(--z-navbar-item);
  padding: 0 0 0 1rem;
  position: relative;
}

.navbar_mobile-view {
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: none;
}

.navbar_search-description {
  color: #ffffffb3;
  text-align: center;
  margin-top: 10rem;
  font-size: 1.2rem;
}

.padding-global {
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  display: flex;
}

.navbar_search-field {
  color: #fff;
  background-color: #000;
  border: 0 solid #000;
  margin-bottom: 0;
  padding: 3rem 1rem;
  font-size: 2rem;
}

.hide-desktop-only-2 {
  display: none;
}

.navbar_bg {
  background-color: #000;
  width: 9%;
  position: absolute;
  inset: 0% 0% auto;
}

.navbar_menu {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: static;
}

.navbar {
  z-index: 50;
  color: #fff;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: absolute;
}

.navbar_desktop-view {
  flex-wrap: wrap;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.navbar_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: min-content 1fr min-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center stretch;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.navbar-2 {
  background-color: #000;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar_dropdown-3 {
  z-index: var(--z-navbar-item);
  clear: both;
  position: static;
}

.navbar_link-3 {
  z-index: 2;
  color: #fff;
  letter-spacing: normal;
  text-transform: none;
  padding: .5rem .4rem;
  font-family: Poppins, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
}

.navbar_link-3:hover {
  color: #ffffffb3;
}

.navbar_link-3.w--current {
  color: var(--burlywood);
}

.navbar_mobile-view-2 {
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: none;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.hide-desktop-only-3 {
  display: none;
}

.navbar-3 {
  z-index: 50;
  color: #fff;
  background-color: #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar_container-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: min-content 1fr min-content;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center stretch;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.section-42 {
  background-color: #000;
}

.dropdown-list-3 {
  margin-top: 10px;
}

.dropdown-list-3.w--open {
  color: #fff;
  background-color: #1b1b1b;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-link-2 {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.dropdown-link-2:hover, .dropdown-link-2.w--current {
  color: var(--burlywood);
}

.container-75 {
  width: 1200px;
  max-width: 90%;
}

.grid-funciona-3-col {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-bloco-destaque {
  text-align: center;
  border: 2px solid #c5a974;
  border-radius: 15px;
  padding: 40px 30px;
  text-decoration: none;
  color: #fff;
  transition: all .5s;
}

.div-bloco-destaque:hover {
  background-color: #c5a9741f;
}

.div-bloco-destaque.img {
  border-width: 0;
  border-color: #c5a9744a;
  border-radius: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  color: #fff;
}

.div-bloco-destaque.img:hover {
  background-color: #c5a97400;
}

.text-block-38 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5rem;
}

.img-tecnologias {
  background-image: url('../assets/img-2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  height: 300px;
  margin-bottom: 20px;
}

.img-tecnologias._8 {
  background-image: url('../assets/ultrassom-_1_.webp');
  background-position: 50%;
  border-radius: 10px;
}

.img-tecnologias._7 {
  background-image: url('../assets/CM-Slim.webp');
  background-position: 50%;
  border-radius: 10px;
}

.img-tecnologias._3 {
  background-image: url('../assets/Vibrolipo.webp');
  border-radius: 10px;
}

.img-tecnologias._6 {
  background-image: url('../assets/crisalix.webp');
  border-radius: 10px;
}

.img-tecnologias._9 {
  background-image: url('../assets/CO2.webp');
  border-radius: 10px;
}

.img-tecnologias._11 {
  background-image: url('../assets/Microagulhamento.webp');
  border-radius: 10px;
}

.img-tecnologias._2 {
  background-image: url('../assets/Safer.webp');
  border-radius: 10px;
}

.img-tecnologias._5 {
  background-image: url('../assets/Bioimpedancia.webp');
  border-radius: 10px;
}

.img-tecnologias._4 {
  background-image: url('../assets/Morpheus.webp');
  background-position: 50% 100%;
  border-radius: 10px;
}

.img-tecnologias._10 {
  background-image: url('../assets/Ultraformer.webp');
  border-radius: 10px;
}

.img-tecnologias._1 {
  background-image: url('../assets/Argoplasma.webp');
  border-radius: 10px;
}

.img-tecnologias._12 {
  background-image: url('../assets/ignite-rf.webp');
  border-radius: 10px;
}

.img-tecnologias._1c {
  background-image: url('../assets/Argoplasma.webp');
}

.img-tecnologias._1d {
  background-image: url('../assets/Safer.webp');
}

.img-tecnologias._1e {
  background-image: url('../assets/Vibrolipo.webp');
}

.img-tecnologias._1f {
  background-image: url('../assets/Morpheus.webp');
  background-position: 50% 100%;
}

.img-tecnologias._001 {
  background-image: url('../assets/Argoplasma.webp');
}

.img-tecnologias._002 {
  background-image: url('../assets/Morpheus.webp');
  background-position: 50% 100%;
}

.img-tecnologias._003 {
  background-image: url('../assets/Vibrolipo.webp');
}

.img-tecnologias.d6 {
  background-image: url('../assets/WhatsApp-Image-2025-06-17-at-11.41.42.webp');
}

.img-tecnologias.d4 {
  background-image: url('../assets/CO2.webp');
}

.img-tecnologias.d5 {
  background-image: url('../assets/Morpheus.webp');
  background-position: 50% 100%;
}

.img-tecnologias.n1 {
  background-image: url('../assets/CO2.webp');
}

.img-tecnologias.n2 {
  background-image: url('../assets/Morpheus.webp');
  background-position: 50% 100%;
}

.img-tecnologias.n3 {
  background-image: url('../assets/WhatsApp-Image-2025-06-17-at-11.41.42.webp');
}

.img-tecnologias.p2 {
  background-image: url('../assets/crisalix_1.webp');
}

.img-tecnologias.p1 {
  background-image: url('../assets/WhatsApp-Image-2025-06-17-at-13.29.05.webp');
}

.img-tecnologias.u2 {
  background-image: url('../assets/Morpheus.webp');
  background-position: 50% 100%;
}

.img-tecnologias.u3 {
  background-image: url('../assets/WhatsApp-Image-2025-06-17-at-11.41.42.webp');
}

.img-tecnologias.u1, .img-tecnologias.l2 {
  background-image: url('../assets/CO2.webp');
}

.img-tecnologias.l3 {
  background-image: url('../assets/Morpheus.webp');
  background-position: 50% 100%;
}

.paragrafo-funciona {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}

.div-grade-funciona, .div-grade-funciona:hover {
  background-color: #0000;
}

.section-43 {
  min-height: auto;
}

.text-block-50 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-162 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.capa-hero {
  background-image: linear-gradient(#000000b0, #000000b0), url('../assets/img.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 100vh;
  padding-top: 177px;
  padding-bottom: 100px;
  display: flex;
}

.capa-hero.cpi {
  background-image: linear-gradient(#000000ba, #000000ba), url('../assets/MAIN-PAGE---Site-1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.capa-hero.r24r {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/R24R.webp');
  background-position: 0 0, 50% 35%;
  background-attachment: scroll, scroll;
}

.capa-hero.masto {
  background-image: linear-gradient(#0009, #0009), url('../assets/Mastopexia.JPEG.webp');
}

.capa-hero.abdo {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/Abdominoplastia.JPEG.webp');
  background-position: 0 0, 50% 75%;
}

.capa-hero.ultrahd {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/IMG_1307.webp');
  background-position: 0 0, 50% 75%;
}

.capa-hero.mm {
  background-image: linear-gradient(#0009, #0009), url('../assets/Mommy-Makeover.JPEG.webp');
  background-position: 0 0, 50%;
}

.capa-hero.costelas {
  background-image: linear-gradient(#0009, #0009), url('../assets/Remodelacao-de-costelas.JPEG.webp');
  background-position: 0 0, 50% 25%;
}

.capa-hero.milla {
  background-image: linear-gradient(#000000a8, #000000a8), url('../assets/milla.webp');
}

.capa-hero.glute {
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/Remodelacao-Glutea.JPEG_1.webp');
  background-position: 0 0, 50% 80%;
}

.capa-hero.bioplastia {
  background-image: linear-gradient(#000000b8, #000000b8), url('../assets/WhatsApp-Image-2025-06-27-at-11.21.07.webp');
  background-position: 0 0, 50% 70%;
}

.capa-hero.ninfo {
  background-image: linear-gradient(#0000008f, #0000008f), url('../assets/WhatsApp-Image-2025-06-13-at-21.16.21.webp');
}

.capa-hero.hernio {
  background-image: linear-gradient(#00000096, #00000096), url('../assets/WhatsApp-Image-2025-06-16-at-10.38.00.webp');
}

.capa-hero.rino {
  background-image: linear-gradient(#000000c4, #000000c4), url('../assets/WhatsApp-Image-2025-06-16-at-18.02.52.webp');
}

.capa-hero.papada {
  background-image: linear-gradient(#000000ba, #000000ba), url('../assets/WhatsApp-Image-2025-06-16-at-15.39.45.webp');
}

.capa-hero.minili {
  background-image: linear-gradient(#000000c2, #000000c2), url('../assets/WhatsApp-Image-2025-06-16-at-16.25.31.webp');
}

.capa-hero.lf {
  background-image: linear-gradient(#000000a6, #000000a6), url('../assets/WhatsApp-Image-2025-06-16-at-17.42.21.webp');
}

.capa-hero.mento {
  background-image: linear-gradient(#000000b8, #000000b8), url('../assets/WhatsApp-Image-2025-06-16-at-16.57.40.webp');
}

.capa-hero.fronto {
  background-image: linear-gradient(#000000c4, #000000c4), url('../assets/WhatsApp-Image-2025-06-16-at-14.18.29.webp');
  background-position: 0 0, 50% 0;
}

.capa-hero.blef {
  background-image: linear-gradient(#000000b8, #000000b8), url('../assets/WhatsApp-Image-2025-06-16-at-17.10.04.webp');
}

.capa-hero.oto {
  background-image: linear-gradient(#000000b0, #000000b0), url('../assets/WhatsApp-Image-2025-06-16-at-16.35.49.webp');
}

.capa-hero.lobulo {
  background-image: linear-gradient(#000000ba, #000000ba), url('../assets/WhatsApp-Image-2025-06-16-at-16.24.43.webp');
}

.capa-hero.trab {
  background-image: linear-gradient(#000000b5, #000000b5), url('../assets/cta-quem-somos.webp');
  padding-top: 149px;
}

.heading-7-c6 {
  color: #c5a974;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: 800px;
  margin: 0 auto 20px;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 65px;
}

.div-block-11001 {
  justify-content: center;
  align-items: center;
  margin-top: -30px;
  margin-bottom: 0;
  display: flex;
}

.div-block-11001.off {
  display: none;
}

.image-117 {
  width: 150px;
  margin-bottom: -30px;
}

.container-hero-quemsomos {
  text-align: center;
  background-color: #0000;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: block;
}

.section-13-copyb {
  padding-top: 0;
  padding-bottom: 60px;
}

.container-86 {
  margin-top: 60px;
}

.text-block-44 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 35px;
}

.bold-text-15 {
  color: var(--burlywood);
}

.bloco-titulo2 {
  background-color: #000;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-87 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.bloco-titulo-precos {
  text-align: center;
  max-width: 90%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  font-weight: 800;
}

.heading-59 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.text-block-45 {
  color: #fff;
  background-color: #c5a9745e;
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
}

.div-bloco-destaque-3 {
  text-align: center;
  background-color: #ffffff24;
  border: 2px solid #c5a9744a;
  border-radius: 20px;
  padding: 40px 30px;
  text-decoration: none;
  color: #fff;
  transition: all .5s;
}

.div-bloco-destaque-3:hover {
  background-color: #c5a97433;
}

.div-block-10883-copya {
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-bottom: 30px;
  display: inline-flex;
}

.heading-64 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

.paragrafo-funciona-copy {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.div-block-10884 {
  margin-bottom: 60px;
}

.div-block-10896 {
  margin-top: 60px;
}

.grid-funciona-copyvb {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

.section-49 {
  width: 1200px;
  max-width: 90%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.image-87 {
  width: 30px;
  height: 30px;
}

.div-bloco-destaque-4 {
  text-align: center;
  background-color: #ffffff24;
  border: 2px solid #c5a9744a;
  border-radius: 20px;
  padding: 40px 30px;
  text-decoration: none;
  color: #fff;
  transition: all .5s;
}

.div-bloco-destaque-4:hover {
  background-color: #c5a97433;
}

.heading-65 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

.grid-funcio {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.container-91 {
  width: 1200px;
  max-width: 90%;
}

.div-block-11002 {
  margin-bottom: 60px;
}

.container-92 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.section-54 {
  padding-bottom: 40px;
}

.div-block-11003 {
  margin-top: 60px;
}

.heading-66 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-10883 {
  background-color: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 25px;
  display: inline-flex;
  box-shadow: 0 2px 5px #0000001c;
}

.image-98 {
  border-radius: 20px;
  width: 100%;
}

.btn-inicio-2b-copyd {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #906e2b00;
  border: 2px solid #906e2b;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all .9s;
  display: inline-flex;
}

.btn-inicio-2b-copyd:hover {
  color: #fff;
  background-color: #a58546;
  transform: translate(-2px, -2px);
}

.grid-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-layout.tablet-1-column.grid-gap-lg {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.btn-inicio-c {
  border: 2px solid var(--dark-goldenrod);
  background-color: var(--dark-goldenrod);
  color: #1a1a1a;
  text-align: center;
  text-transform: uppercase;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  display: inline-flex;
}

.btn-inicio-c:hover {
  color: #1a1a1a;
  background-color: #a58546;
  transform: translate(-2px, -2px);
}

.div-block-10881fb {
  text-align: center;
  display: block;
}

.div-block-10918 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.paragraph-35 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.heading-67 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-10914 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 35px;
  min-height: 35px;
  margin-right: 10px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.container-93 {
  width: 1200px;
  max-width: 90%;
}

.div-block-10880-copy {
  margin-top: 10px;
  margin-left: 0;
}

.image-96 {
  width: 20px;
}

.section-55 {
  padding-bottom: 100px;
}

.cta {
  background-color: #906e2b21;
  background-image: linear-gradient(#000000b3, #000000b3), url('../assets/cta-quem-somos.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 20px;
  margin: 60px 0 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.div-block-18-copy {
  justify-content: center;
  align-items: center;
  max-width: 90%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-block-46-b {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.div-block-10885 {
  margin-top: 0;
}

.flex-vertical {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.flex-vertical.flex-gap-xxl {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.list-item-12-b {
  margin-bottom: 20px;
}

.list-8 {
  margin-bottom: 30px;
}

.container-interno-ebook {
  width: 1200px;
  max-width: 90%;
}

.utility-aspect-1x1 {
  aspect-ratio: 1;
}

.grid-layout-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-layout-2.desktop-9-column {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-layout-2.desktop-9-column.grid-gap-xs.utility-position-relative.utility-z-index-2 {
  height: 250px;
}

.grid-layout-2.tablet-1-column.grid-gap-lg {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.grid-layout-2.tablet-1-column.grid-gap-lg.jh {
  text-align: center;
  background-color: #c5a97426;
  border-radius: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: block;
}

.utility-aspect-3x2 {
  aspect-ratio: 3 / 2;
  position: relative;
}

.div-block-10857 {
  min-height: 500px;
  display: flex;
}

.subheading {
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6em;
}

.image-118 {
  object-fit: contain;
  border-radius: 20px;
  width: 100%;
}

.image-118.cover-image, .image-118.cover-image.utility-shadow-xl {
  border-radius: 15px;
}

.image-118.cover-image.utility-shadow-xl.off {
  display: block;
}

.container-83 {
  width: 1200px;
  max-width: 90%;
}

.section-56 {
  color: #1f2022;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-56.utility-overflow-clip {
  background-color: #fff0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.utility-position-relative {
  position: relative;
}

.utility-aspect-4x3 {
  aspect-ratio: 4 / 3;
  position: relative;
}

.grid-42 {
  grid-template-rows: auto;
}

.container-95 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-68 {
  color: #906e2b;
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.divider {
  -webkit-text-stroke-width: 0px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: color-mix(in srgb, currentColor 60%, transparent);
  align-self: stretch;
}

.grid-layout-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-layout-3.desktop-1-column {
  grid-template-columns: 1fr;
}

.grid-layout-3.mobile-landscape-1-column.grid-gap-xxl {
  margin-top: 60px;
  margin-bottom: 0;
  padding-bottom: 60px;
}

.div-block-10859 {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.div-block-10889 {
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.btn-inicio-copy-v-4 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #a58546;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all .9s;
  display: inline-flex;
}

.btn-inicio-copy-v-4:hover {
  color: #fff;
  background-color: #a58546;
  transform: translate(-2px, -2px);
}

.text-span-17 {
  color: var(--burlywood);
}

.container-84 {
  width: 1200px;
  max-width: 90%;
}

.section-2 {
  background-color: #fff0;
  padding-top: 20px;
  padding-bottom: 80px;
}

.utility-margin-bottom-0 {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  margin-bottom: 0 !important;
}

.container-96 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-69 {
  color: #906e2b;
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.heading-50-copy-cop {
  color: #6d6d6d;
  max-width: none;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 40px;
}

.divider-2 {
  -webkit-text-stroke-width: 0px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: color-mix(in srgb, currentColor 60%, transparent);
  align-self: stretch;
}

.grid-layout-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-layout-4.desktop-1-column {
  grid-template-columns: 1fr;
}

.grid-layout-4.mobile-landscape-1-column.grid-gap-xxl {
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 0;
}

.div-block-11004 {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.div-block-11005 {
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.text-span-18 {
  color: #906e2b;
}

.container-97 {
  width: 1200px;
  max-width: 90%;
}

.section-2-b {
  background-color: #fff0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.utility-margin-bottom-2 {
  color: #fff;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  margin-bottom: 0 !important;
}

.bold-text-16 {
  color: var(--burlywood);
  font-weight: 400;
}

.text-block-51 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.container-hero-r24 {
  text-align: center;
  background-color: #0000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: block;
}

.div-block-11006 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-10938-copy {
  justify-content: center;
  align-items: center;
  margin-right: 0;
  display: flex;
}

.div-block-10937 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-52 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-52:hover {
  color: #fff;
}

.image-100 {
  width: 11px;
}

.bloco-nav {
  display: none;
}

.div-block-10938 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-10939 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  font-family: Poppins, sans-serif;
  display: inline-flex;
}

.section-13 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.container-19-copy {
  margin-top: 0;
}

.text-block-53 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 35px;
}

.bold-text-39, .bold-text-40 {
  color: var(--burlywood);
}

.grid-funciona-3-col-2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

/* Quando o grid tem APENAS 2 cards (ex: mentoplastia), divide largura em 2 colunas
   em vez de 3 com 1 vazia. Aplica via :has() — funciona em Chrome/Safari/Firefox modernos. */
.grid-funciona-3-col-2:has(> :nth-child(2):last-child) {
  grid-template-columns: 1fr 1fr;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-10935 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-34-cop {
  color: var(--burlywood);
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.text-block-54 {
  margin-top: 10px;
}

.section-59 {
  background-image: linear-gradient(#141414, #3b3b3b);
  padding-top: 100px;
  padding-bottom: 100px;
}

.image-99 {
  transition: all .6s;
}

.image-99:hover {
  transform: scale(1.05);
}

.grid-48 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.div-block-10934 {
  margin-top: 60px;
}

.list-item-12-copyh {
  margin-bottom: 15px;
}

.container-98 {
  width: 1200px;
  max-width: 90%;
}

.paragraph-32-co {
  color: #fff;
  text-align: left;
  font-size: 15px;
  line-height: 25px;
}

.image-95 {
  width: 25px;
  height: 25px;
}

.div-block-10936 {
  text-align: center;
}

.div-block-10859-copy {
  margin-top: 0;
  margin-bottom: 20px;
}

.list-9 {
  margin-bottom: 30px;
}

.text-block-43 {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.heading-63 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.div-block-10911 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-10913 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.container-99 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-70 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.image-119 {
  width: 30px;
  height: 30px;
}

.container-100 {
  width: 1200px;
  max-width: 90%;
}

.paragrafo-funciona-copy-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.div-block-11007 {
  margin-bottom: 60px;
}

.div-block-11008 {
  margin-top: 60px;
}

.div-block-11009 {
  background-color: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 25px;
  display: inline-flex;
  box-shadow: 0 2px 5px #0000001c;
}

.container-101 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-71 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.image-120 {
  width: 30px;
  height: 30px;
}

.container-102 {
  width: 1200px;
  max-width: 90%;
}

.grid-49 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid-funciona-2-col {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.div-block-11011 {
  margin-bottom: 60px;
}

.section-60 {
  padding-bottom: 60px;
}

.image-121 {
  width: 25px;
  height: 25px;
}

.div-block-11012 {
  margin-top: 60px;
}

.div-block-11013 {
  background-color: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 25px;
  display: inline-flex;
  box-shadow: 0 2px 5px #0000001c;
}

.list-10 {
  margin-bottom: 30px;
}

.text-block-55 {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.heading-72 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.div-block-11014 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11015 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.container-103 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-73 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.faq-h3 {
  color: #3d5169;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
}

.faq-h3.noselect {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.div-block-10862 {
  margin-top: 0;
}

.container-104 {
  width: 1200px;
  max-width: 90%;
}

.faq {
  color: #fff;
  -webkit-text-stroke-color: #242424;
  cursor: pointer;
  background-color: #242424;
  border: 2px solid #242424;
  border-radius: 10px;
  align-items: center;
  width: 100%;
  min-width: 400px;
  min-height: 80px;
  padding: 20px 30px;
  transition: all .2s;
  display: flex;
}

.faq:hover {
  box-shadow: 0 1px 13px #3d516929;
}

.div-block-10930 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-36 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.faq-icon.noselect {
  color: #000;
  width: 15px;
  height: 15px;
}

.section-61 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-content {
  overflow: hidden;
}

.paragraph-5 {
  color: #fff;
  margin-bottom: 0;
  margin-left: 25px;
  margin-right: 25px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.faq-question-wrap {
  margin-bottom: 20px;
}

.faq-circle {
  border: 0 solid #a58546;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-right: 25px;
  display: flex;
}

.text-block-56 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11016 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11017 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-57 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-57:hover {
  color: #fff;
}

.image-122 {
  width: 11px;
}

.div-block-11018 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11019 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-62 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-block-58 {
  color: #000;
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 35px;
}

.bold-text-42, .bold-text-41, .bold-text-44, .bold-text-43, .bold-text-45 {
  color: #906e2b;
}

.div-block-11020 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-59 {
  margin-top: 10px;
}

.section-63 {
  background-image: linear-gradient(#c5a9741c, #fff 65%);
  padding-top: 100px;
  padding-bottom: 100px;
}

.image-123 {
  transition: all .6s;
}

.image-123:hover {
  transform: scale(1.05);
}

.grid-50 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.div-block-11022 {
  margin-top: 60px;
}

.container-105 {
  width: 1200px;
  max-width: 90%;
}

.image-124 {
  width: 25px;
  height: 25px;
}

.div-block-11023 {
  text-align: center;
}

.list-11 {
  margin-bottom: 30px;
}

.text-block-60 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.heading-74 {
  color: #906e2b;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.div-block-11024 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11025 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.container-106 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-75 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.section-60-copy-copyx {
  padding-top: 60px;
  padding-bottom: 60px;
}

.grid-51 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.image-125 {
  width: 25px;
  height: 25px;
}

.text-block-61 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11027 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11028 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.container-107 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-76 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-11030 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-37 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.grid-52 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.text-block-34-cop-c {
  color: #000;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.image-126 {
  width: 25px;
  height: 25px;
}

.text-block-62 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.heading-77 {
  color: #906e2b;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.div-block-11031 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11032 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-63 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11033 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11034 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-64 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-64:hover {
  color: #fff;
}

.image-127 {
  width: 11px;
}

.div-block-11035 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11036 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-64 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bold-text-46 {
  color: var(--burlywood);
}

.div-block-11037 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-65 {
  margin-top: 10px;
}

.section-65 {
  background-image: linear-gradient(#c5a9741c, #fff 65%);
  padding-top: 100px;
  padding-bottom: 100px;
}

.image-128 {
  transition: all .6s;
}

.image-128:hover {
  transform: scale(1.05);
}

.grid-53 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.div-block-10959 {
  background-image: url('../assets/img-2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0 solid #000;
  border-radius: 20px;
}

.div-block-10959.abdom {
  background-image: url('../assets/WhatsApp-Image-2025-06-16-at-17.00.26.webp');
}

.grid-489 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
}

.div-block-10960 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.image-129 {
  width: 25px;
  height: 25px;
}

.div-block-11039 {
  text-align: center;
}

.text-block-66 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-10958 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.heading-78 {
  color: #906e2b;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.div-block-10957 {
  margin-top: 30px;
}

.div-block-11040 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11041 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.container-108 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-79 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.grid-48-copy {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
  margin-bottom: 40px;
}

.div-block-10962 {
  margin-top: 60px;
}

.div-block-11043 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-38 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.paragrafo-funciona-2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}

.section-66 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.image-130 {
  width: 25px;
  height: 25px;
}

.div-block-11044 {
  background-color: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 25px;
  display: inline-flex;
  box-shadow: 0 2px 5px #0000001c;
}

.text-block-67 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.heading-80 {
  color: #906e2b;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.div-block-11045 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11046 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-68 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11047 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11048 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-69 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-69:hover {
  color: #fff;
}

.image-131 {
  width: 11px;
}

.div-block-11049 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11050 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-67 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.div-block-11051 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-70 {
  margin-top: 10px;
}

.image-132 {
  transition: all .6s;
}

.image-132:hover {
  transform: scale(1.05);
}

.grid-48-copyn-v {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}

.div-block-11053 {
  text-align: center;
}

.heading-81 {
  color: #906e2b;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.container-109 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-82 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-10891-copyb {
  margin-bottom: 0;
}

.div-bloco-destaque-5 {
  text-align: center;
  border: 2px solid #c5a974;
  border-radius: 15px;
  padding: 40px 30px;
  text-decoration: none;
  color: #fff;
}

.div-bloco-destaque-5.img {
  border: none;
  border-radius: 20px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-11055 {
  justify-content: center;
  align-items: center;
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-block-71 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5rem;
}

.paragraph-39 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.section-3-copygn {
  background-color: #fff0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.div-block-10940 {
  margin-top: 60px;
}

.div-block-10941 {
  margin-top: 0;
}

.image-133 {
  width: 25px;
  height: 25px;
}

.text-block-72 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11056 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11057 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-73 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11058 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11059 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-74 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-74:hover {
  color: #fff;
}

.image-134 {
  width: 11px;
}

.div-block-11060 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11061 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-68 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.div-block-11062 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-34-cop-co {
  color: var(--burlywood);
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.text-block-75 {
  margin-top: 10px;
}

.image-135 {
  transition: all .6s;
}

.image-135:hover {
  transform: scale(1.05);
}

.div-block-11064 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-40 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.grid-490 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.paragraph-35-copyfb {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8rem;
}

.image-136 {
  width: 25px;
  height: 25px;
}

.div-block-11065 {
  text-align: center;
}

.text-block-76 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11066 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11067 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-77 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11068 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11069 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-78 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-78:hover {
  color: #fff;
}

.image-137 {
  width: 11px;
}

.div-block-11070 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11071 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-69 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.div-block-11072 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-79 {
  margin-top: 10px;
}

.image-138 {
  transition: all .6s;
}

.image-138:hover {
  transform: scale(1.05);
}

.div-block-11074 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-41 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.grid-491 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.div-block-11075 {
  margin-top: 60px;
}

.image-139 {
  width: 25px;
  height: 25px;
}

.div-block-11076 {
  text-align: center;
}

.text-block-80 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11077 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11078 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-81 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11079 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11080 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-82 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-82:hover {
  color: #fff;
}

.image-140 {
  width: 11px;
}

.div-block-11081 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11082 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-70 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.div-block-11083 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-83 {
  margin-top: 10px;
}

.image-141 {
  transition: all .6s;
}

.image-141:hover {
  transform: scale(1.05);
}

.grid-48-copy-df {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}

.grid-48-copy-copybkh {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
  margin-bottom: 0;
}

.image-142 {
  width: 25px;
  height: 25px;
}

.div-block-11085 {
  text-align: center;
}

.text-block-84 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11086 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11087 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.container-110 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-83 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-11089 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.text-block-85 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5rem;
}

.paragraph-42 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.image-143 {
  width: 25px;
  height: 25px;
}

.text-block-86 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11090 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11091 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-87 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11092 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11093 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-88 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-88:hover {
  color: #fff;
}

.image-144 {
  width: 11px;
}

.div-block-11094 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11095 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-71 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bold-text-72 {
  color: var(--burlywood);
  font-weight: 700;
}

.div-block-11096 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-89 {
  margin-top: 10px;
}

.image-145 {
  transition: all .6s;
}

.image-145:hover {
  transform: scale(1.05);
}

.div-block-11098 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-43 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.grid-492 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.div-block-11099 {
  margin-top: 60px;
}

.image-146 {
  width: 25px;
  height: 25px;
}

.div-block-11100 {
  text-align: center;
}

.text-block-90 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11101 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11102 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-91 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11103 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11104 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-92 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-92:hover {
  color: #fff;
}

.container-hero-r25 {
  text-align: center;
  background-color: #0000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: block;
}

.div-block-11105 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11106 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-72 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bold-text-77, .bold-text-78, .bold-text-79 {
  color: var(--burlywood);
}

.div-block-11107 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-93 {
  margin-top: 10px;
}

.image-147 {
  transition: all .6s;
}

.image-147:hover {
  transform: scale(1.05);
}

.div-block-11109 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-44 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.grid-493 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.div-block-11110 {
  margin-top: 60px;
}

.image-148 {
  width: 25px;
  height: 25px;
}

.div-block-11111 {
  text-align: center;
}

.text-block-94 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11112 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11113 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-95 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11114 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11115 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-96 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-96:hover {
  color: #fff;
}

.div-block-11116 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11117 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-73 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bold-text-80 {
  color: var(--burlywood);
}

.div-block-10982 {
  margin-bottom: 100px;
}

.div-block-11119 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.grid-48-copygfn-copy {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: block;
}

.paragraph-45 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.image-149 {
  width: 25px;
  height: 25px;
}

.text-block-97 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11120 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11121 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-98 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11122 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11123 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-99 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-99:hover {
  color: #fff;
}

.div-block-11124 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11125 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-74 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bold-text-81 {
  color: var(--burlywood);
}

.div-block-11127 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-46 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.grid-494 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.image-150 {
  width: 25px;
  height: 25px;
}

.text-block-100 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11128 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11129 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-101 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11130 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11131 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-102 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-102:hover {
  color: #fff;
}

.div-block-11132 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11133 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-75 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bold-text-82, .bold-text-83 {
  color: var(--burlywood);
}

.div-block-11134 {
  border-radius: 20px;
  overflow: hidden;
}

.btn-inicio-copy-v {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #a58546;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all .9s;
  display: inline-flex;
}

.btn-inicio-copy-v:hover {
  color: #fff;
  background-color: #a58546;
  transform: translate(-2px, -2px);
}

.off {
  display: none;
}

.text-block-103 {
  margin-top: 10px;
}

.image-151 {
  transition: all .6s;
}

.image-151:hover {
  transform: scale(1.05);
}

.div-block-10942 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-152 {
  width: 25px;
  height: 25px;
}

.div-block-11136 {
  text-align: center;
}

.text-block-104 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.grid-48-copyg {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}

.div-block-11137 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11138 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-105 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11139 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11140 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-106 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-106:hover {
  color: #fff;
}

.div-block-11141 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11142 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-76 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bold-text-84 {
  color: var(--burlywood);
}

.div-block-11143 {
  border-radius: 20px;
  overflow: hidden;
}

.grid-48ntgn {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}

.text-block-107 {
  margin-top: 10px;
}

.image-153 {
  transition: all .6s;
}

.image-153:hover {
  transform: scale(1.05);
}

.div-block-11145 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-47 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.paragraph-35-copygc {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2rem;
}

.image-154 {
  width: 25px;
  height: 25px;
}

.div-block-11146 {
  text-align: center;
}

.text-block-108 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11147 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11148 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-109 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11149 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11150 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-110 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-110:hover {
  color: #fff;
}

.div-block-11151 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11152 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-77 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.div-block-11153 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-111 {
  margin-top: 10px;
}

.image-155 {
  transition: all .6s;
}

.image-155:hover {
  transform: scale(1.05);
}

.div-block-11155 {
  text-align: center;
}

.container-111 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-84 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-11157 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.text-block-112 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5rem;
}

.paragraph-48 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.div-block-10943 {
  margin-top: 60px;
}

.image-156 {
  width: 25px;
  height: 25px;
}

.text-block-113 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11158 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11159 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-114 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11160 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11161 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-115 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-115:hover {
  color: #fff;
}

.div-block-11162 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11163 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-78 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.div-block-11164 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-116 {
  margin-top: 10px;
}

.image-157 {
  transition: all .6s;
}

.image-157:hover {
  transform: scale(1.05);
}

.div-block-11166 {
  text-align: center;
}

.container-112 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-85 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-11168 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.text-block-117 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5rem;
}

.paragraph-49 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.div-block-11169 {
  margin-top: 60px;
}

.image-158 {
  width: 25px;
  height: 25px;
}

.text-block-118 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11170 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11171 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-119 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11172 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11173 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-120 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-120:hover {
  color: #fff;
}

.div-block-11174 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11175 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-79 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.div-block-11176 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-121 {
  margin-top: 10px;
}

.image-159 {
  transition: all .6s;
}

.image-159:hover {
  transform: scale(1.05);
}

.image-160 {
  width: 25px;
  height: 25px;
}

.div-block-11178 {
  text-align: center;
}

.text-block-122 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.grid-48-copy-copygh {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
  margin-bottom: 60px;
}

.div-block-11179 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11180 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.container-113 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-86 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-11182 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.text-block-123 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5rem;
}

.paragraph-50 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.div-block-11183 {
  margin-top: 60px;
}

.image-161 {
  width: 25px;
  height: 25px;
}

.text-block-124 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-11184 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11185 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-125 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11186 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11187 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-126 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-126:hover {
  color: #fff;
}

.div-block-11188 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11189 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-block-127 {
  color: #000;
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 35px;
}

.div-block-11190 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-128 {
  margin-top: 10px;
}

.image-162 {
  transition: all .6s;
}

.image-162:hover {
  transform: scale(1.05);
}

.image-163 {
  width: 25px;
  height: 25px;
}

.div-block-11192 {
  text-align: center;
}

.div-block-11193 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11194 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.container-114 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-87 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-11196 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.text-block-129 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5rem;
}

.paragraph-51 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.div-block-11197 {
  margin-top: 60px;
}

.image-164 {
  width: 25px;
  height: 25px;
}

.div-block-11198 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11199 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-130 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11200 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11201 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-131 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-131:hover {
  color: #fff;
}

.div-block-11202 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11203 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-81 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-block-132 {
  color: #000;
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 35px;
}

.div-block-11204 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-133 {
  margin-top: 10px;
}

.image-165 {
  transition: all .6s;
}

.image-165:hover {
  transform: scale(1.05);
}

.image-166 {
  width: 25px;
  height: 25px;
}

.div-block-11206 {
  text-align: center;
}

.div-block-11207 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11208 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.container-115 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.heading-88 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-11210 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.text-block-134 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5rem;
}

.paragraph-52 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.div-block-11211 {
  margin-top: 60px;
}

.image-167 {
  width: 25px;
  height: 25px;
}

.div-block-11212 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11213 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-135 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11214 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11215 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-136 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-136:hover {
  color: #fff;
}

.div-block-11216 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11217 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-82 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-block-137 {
  color: #000;
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 35px;
}

.div-block-11218 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-138 {
  margin-top: 10px;
}

.image-168 {
  transition: all .6s;
}

.image-168:hover {
  transform: scale(1.05);
}

.div-block-11220 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-53 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.image-169 {
  width: 25px;
  height: 25px;
}

.div-block-11221 {
  text-align: center;
}

.div-block-11222 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11223 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-139 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11224 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-11225 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.text-block-140 {
  color: #fff;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
}

.text-block-140:hover {
  color: #fff;
}

.div-block-11226 {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.div-block-11227 {
  background-color: #c5a97454;
  border: 0 solid #c5a974;
  border-radius: 10px;
  padding: 5px 8px;
  display: inline-flex;
}

.section-83 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-block-141 {
  color: #000;
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 35px;
}

.div-block-11228 {
  border-radius: 20px;
  overflow: hidden;
}

.text-block-142 {
  margin-top: 10px;
}

.image-170 {
  transition: all .6s;
}

.image-170:hover {
  transform: scale(1.05);
}

.div-block-11230 {
  width: 750px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-54 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.image-171 {
  width: 25px;
  height: 25px;
}

.div-block-11231 {
  text-align: center;
}

.div-block-11232 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 15px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.div-block-11233 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.bold-text-85 {
  color: var(--burlywood);
}

.text-block-67-copy, .text-block-86-copy, .text-block-108-copy, .text-block-124-copy {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.title-small-copy-copy {
  color: var(--burlywood);
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 auto 30px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.title-small-co {
  color: var(--burlywood);
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 20px auto 30px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.image-211 {
  border-radius: 20px;
  width: 100%;
}

.list-item-9 {
  margin-bottom: 10px;
}

.bloco-dr-icones {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-11234 {
  justify-content: flex-start;
  align-items: center;
  margin-right: 10px;
  display: inline-flex;
}

.image-212 {
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  margin-top: 3px;
}

.text-block-copy {
  text-align: left;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 20px;
}

.list-12 {
  margin-bottom: 20px;
}

.container-hero-equipe {
  text-align: center;
  background-color: #0000;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: block;
}

.text-block-190 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11322 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.text-block-191 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.div-block-11323 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.image-91 {
  width: 20px;
}

.div-block-10863 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 35px;
  min-height: 35px;
  margin-right: 10px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.text-block-192 {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.heading-139 {
  color: #906e2b;
  margin-top: 0;
  margin-bottom: 25px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  line-height: 55px;
}

.section-129 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.grid-44-copy {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.paragraph-55 {
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  line-height: 30px;
}

.div-block-10902 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.div-block-10860 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-193 {
  color: #906e2b;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
}

.list-item-16 {
  margin-bottom: 20px;
}

.image-213 {
  width: 20px;
}

.paragraph-56 {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.container-929 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.div-block-11325 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 35px;
  min-height: 35px;
  margin-right: 10px;
  display: flex;
  box-shadow: 0 2px 5px #0000001f;
}

.image-214 {
  width: 30px;
  height: 30px;
}

.text-block-194 {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.heading-140 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 25px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  line-height: 55px;
}

.section-130 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.image-92 {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.text-block-195 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}

.paragraph-57 {
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  line-height: 30px;
}

.div-block-10903-co {
  text-align: center;
  background-color: #906e2b21;
  border-radius: 20px;
  margin: 60px 0 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.heading-141 {
  color: var(--burlywood);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  max-width: none;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}

.div-block-10933 {
  text-align: center;
  margin-bottom: 60px;
}

.div-block-11326 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.div-bloco-destaque-14 {
  text-align: center;
  background-color: #ffffff24;
  border: 2px solid #c5a9744a;
  border-radius: 20px;
  padding: 40px 30px;
  text-decoration: none;
  color: #fff;
  transition: all .5s;
}

.div-bloco-destaque-14:hover {
  background-color: #c5a97433;
}

.div-block-11328 {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

.text-block-196 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
}

.div-block-11329 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.paragrafo-fun3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}

.div-block-11330 {
  background-color: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 25px;
  display: inline-flex;
  box-shadow: 0 2px 5px #0000001c;
}

.list-item-17 {
  margin-bottom: 20px;
}

.div-block-10868 {
  margin-top: 60px;
}

.section-131 {
  padding-top: 0;
  padding-bottom: 100px;
}

.div-block-11331 {
  margin-top: 60px;
}

.bloco-titulo2-2 {
  color: #000;
  background-color: #000;
  padding-top: 60px;
  padding-bottom: 60px;
}

.heading-142 {
  color: #fff;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 60px;
}

.div-block-11332 {
  aspect-ratio: auto;
  display: block;
}

.code-embed-3 {
  margin-bottom: 0;
}

.analise {
  background-color: #000;
  padding-top: 0;
  padding-bottom: 0;
}

.container-930 {
  width: 1200px;
  max-width: 90%;
}

.text-span-57 {
  color: #c5a974;
}

.div-block-1089975 {
  margin-top: 60px;
}

.text-block-2-copy {
  color: #fff;
  text-transform: uppercase;
  background-color: #0000;
  background-image: url('../assets/topico-de-tendencias.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 17px;
  border: 1px solid #bea46d;
  border-radius: 15px;
  padding: 11px 10px 9px 35px;
  font-size: 15px;
  font-weight: 700;
}

.div-block-226-copy {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  display: block;
}

.text-block-210 {
  color: #fff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.div-block-10845 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-1089976 {
  margin-top: 40px;
}

.text-span-53-copy {
  color: #c5a974;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.heading-55-copsdc-copy {
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}

.text-block-209 {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.heading-55-cop {
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 65px;
}

.bloco-diagnostico {
  background-image: linear-gradient(360deg, #0009, #0000 21%), linear-gradient(#000000db, #000000db), url('../assets/194231590.webp');
  background-position: 0 0, 0 0, 50% 75%;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  border-radius: 0;
  margin-top: 0;
  padding: 100px 40px 10px;
}

.btn-inicio-copy-v-5 {
  background-color: var(--dark-goldenrod);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #906e2b;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all .9s;
  display: inline-flex;
}

.btn-inicio-copy-v-5:hover {
  color: #fff;
  background-color: #a58546;
  transform: translate(-2px, -2px);
}

.div-block-1089971 {
  background-color: #c5a97424;
  border: 1px solid #c5a97461;
  border-radius: 15px;
  padding: 15px 20px;
}

.text-block-208 {
  color: #fff;
  background-image: url('../assets/background-image.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 25px;
  font-weight: 600;
}

.text-block-208._2 {
  background-image: url('../assets/velocimetro.svg');
  background-size: 17px;
}

.text-block-208._3 {
  background-image: url('../assets/prancheta.svg');
  background-size: 17px;
}

.text-block-208._1 {
  background-image: url('../assets/estrela.svg');
}

.div-block-1089972 {
  text-align: center;
}

.grid-528-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 750px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.text-span-56 {
  color: var(--burlywood);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.div-block-1089977 {
  margin-top: 80px;
}

.heading-55-copsdc {
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 55px;
}

.div-block-1089970 {
  margin-top: 10px;
}

.div-block-1089978 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-span-55 {
  border-bottom: 2px solid #c5a974;
  margin-left: 3px;
  margin-right: 3px;
}

.text-block-211 {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.grid-528 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 880px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
}

.div-block-1089979 {
  background-color: #c5a97424;
  border: 1px solid #c5a97461;
  border-radius: 15px;
  padding: 15px 20px;
}

.text-block-212 {
  color: #fff;
  background-image: url('../assets/background-image.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 25px;
  font-weight: 600;
}

.text-block-212._2 {
  background-image: url('../assets/velocimetro.svg');
  background-size: 17px;
}

.text-block-212._3 {
  background-image: url('../assets/prancheta.svg');
  background-size: 17px;
}

.text-block-212._1 {
  background-image: url('../assets/estrela.svg');
}

.div-block-1089980 {
  text-align: center;
}

.text-block-207 {
  color: #fff;
  background-image: url('../assets/clock-1.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 15px;
  margin-top: 0;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.heading-55-copsdc-copy-2 {
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 65px;
}

.section-132 {
  background-color: #000;
  padding-top: 100px;
  padding-bottom: 100px;
}

.heading-69-copydv {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3em;
}

.text-span-58 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(117deg, #aa7e32, #ebc65e);
  -webkit-background-clip: text;
  background-clip: text;
}

.btn-inicio-copy-v-6 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #a58546;
  border-radius: 200px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all .9s;
  display: inline-flex;
}

.btn-inicio-copy-v-6:hover {
  color: #fff;
  background-color: #a58546;
  transform: translate(-2px, -2px);
}

.div-block-10899 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.text-block-213 {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.div-block-1089981 {
  background-color: #c5a97424;
  border: 1px solid #c5a97461;
  border-radius: 15px;
  padding: 15px 20px;
}

.bas-image-after-h {
  z-index: 1;
  object-fit: cover;
  width: 50%;
  height: 100%;
  margin-left: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.grid-521 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-1089982 {
  margin-top: 60px;
}

.bas-label-before-h {
  z-index: 3;
  color: #aa7e32;
  cursor: pointer;
  background-color: #fff;
  border-radius: 6px;
  padding: 4px 12px;
  position: absolute;
  top: 24px;
  left: 24px;
}

.div-block-1089955 {
  max-width: none;
}

.bas-handle-h {
  z-index: 2;
  background-color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-span-28 {
  color: #fff;
}

.heading-143 {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  line-height: 1.3em;
}

.bas-icon-regular {
  color: #aa7e32;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.div-block-1089983 {
  margin-top: 10px;
}

.bas-wrapper2 {
  border: 8px solid #c5a974;
  border-radius: 12px;
  width: 100%;
  max-width: 946px;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.div-block-1089984 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-133 {
  color: #1f2022;
  background-color: #000;
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-span-53-copy-2 {
  color: #c5a974;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(110deg, #aa7e32, #ebc65e);
  -webkit-background-clip: text;
  background-clip: text;
}

.bas-wrapper {
  border: 8px solid #c5a974;
  border-radius: 12px;
  width: 100%;
  max-width: 946px;
  height: 536px;
  position: relative;
  overflow: hidden;
}

.container-939 {
  width: 1200px;
  max-width: 90%;
  margin-top: 100px;
}

.heading-69-copygv {
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  line-height: 1.3em;
}

.div-block-10900 {
  margin-top: 20px;
}

.div-block-1089957 {
  margin-top: 20px;
  display: inline-flex;
}

.bas-image-before {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.grid-526 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr .75fr .75fr;
  margin-top: 40px;
}

.paragraph-lg-copydv {
  color: #fff;
  letter-spacing: 0;
  margin-bottom: .7em;
  font-size: .9rem;
  line-height: 1.6em;
}

.paragraph-lg {
  letter-spacing: 0;
  margin-bottom: .7em;
  font-size: 1.13rem;
  line-height: 1.6em;
}

.paragraph-lg.utility-margin-bottom-2rem {
  color: #fff;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
}

.grid-529 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 880px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
}

.div-block-1089954 {
  text-align: left;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: block;
}

.btn-inicio-copy-v-7 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #906e2b;
  border: 1px solid #906e2b;
  border-radius: 200px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all .9s;
  display: inline-flex;
}

.btn-inicio-copy-v-7:hover {
  color: #fff;
  background-color: #a58546;
  transform: translate(-2px, -2px);
}

.image-223 {
  width: 100px;
}

.bas-line-h {
  z-index: 1;
  background-color: #fff;
  width: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.text-block-214 {
  color: #fff;
  background-image: url('../assets/background-image.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 25px;
  font-weight: 600;
}

.text-block-214._2 {
  background-image: url('../assets/velocimetro.svg');
  background-size: 17px;
}

.text-block-214._1 {
  background-image: url('../assets/estrela.svg');
}

.text-block-214._3 {
  background-image: url('../assets/prancheta.svg');
  background-size: 17px;
}

.div-block-11399 {
  border-radius: 10px;
  overflow: hidden;
}

.bloco-diagnostico-2 {
  background-image: linear-gradient(360deg, #0009, #0000 21%), linear-gradient(#000c, #000c), url('../assets/194231590.webp');
  background-position: 0 0, 0 0, 50% 75%;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  border-radius: 20px;
  margin-top: 0;
  padding: 80px 40px 10px;
}

.div-block-1089985 {
  text-align: center;
}

.container-940 {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.container-940.rg {
  width: 1200px;
  max-width: 90%;
}

.text-block-215 {
  color: #fff;
  background-image: url('../assets/clock-1.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 15px;
  margin-top: 0;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.paragraph-lg-copydv-copysc {
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 0;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.6em;
}

.image-224 {
  border-radius: 20px;
  width: 100%;
}

.bas-label-after-h {
  z-index: 3;
  color: #aa7e32;
  cursor: pointer;
  background-color: #fff;
  border-radius: 6px;
  padding: 4px 12px;
  position: absolute;
  top: 24px;
  right: 24px;
}

.div-block-1089956 {
  justify-content: flex-start;
  align-items: center;
  margin-right: 10px;
  display: flex;
}

.div-block-1089986 {
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-1089987 {
  border: 1px solid var(--burlywood);
  background-image: url('../assets/Marcus-Torres-2118.webp');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 200px;
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  margin-right: 10px;
  display: inline-flex;
}

.image-225 {
  border-radius: 200px;
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
}

.text-block-216 {
  color: #fff;
  font-weight: 700;
}

.text-block-217 {
  color: #fff;
}

@media screen and (min-width: 1280px) {
  .image-27 {
    width: 90px;
    font-size: 1px;
  }

  .nav-link-2, .nav-dropdown-toggle-2, .nav-link-2-copy {
    font-size: 13px;
  }

  .navbar_submenu {
    max-width: 56.25rem;
  }

  .button-2.is-navbar-button {
    display: block;
  }
}

@media screen and (min-width: 1920px) {
  .image-27 {
    width: 90px;
  }

  .image-31 {
    width: 17px;
  }

  .link-block {
    width: 40px;
    height: 40px;
  }

  .address-big {
    font-size: 2rem;
  }

  .shape-arrow {
    width: 20px;
    height: 20px;
  }

  .section-wrapper {
    max-width: 1800px;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .contact-info-wrap {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .button_text {
    font-size: 1.1rem;
  }

  .contact-wrap {
    width: 100%;
    max-width: 1500px;
  }

  .section-header {
    font-size: 3.2rem;
  }

  .container-regular-2 {
    width: 1300px;
  }

  .nav-link-2, .nav-dropdown-toggle-2, .nav-link-2-copy {
    font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  .navbar-no-shadow-container {
    display: block;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu {
    background-color: #1d1d1d;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    min-height: 100vh;
    padding-left: 0;
    display: block;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .mobile-margin-top-10 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-button-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .menu-button {
    background-color: var(--dark-goldenrod);
    border-radius: 5px;
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: var(--dark-goldenrod);
    color: #fff;
    border-radius: 5px;
  }

  .h1 {
    font-size: 65px;
    line-height: 70px;
  }

  .div-block-4 {
    width: auto;
    height: auto;
  }

  .container-3 {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .footer-link, .footer-link.w--current {
    font-size: 13px;
  }

  .div-block-5 {
    font-size: 12px;
  }

  .div-block-11 {
    width: auto;
  }

  .creator_block {
    display: block;
  }

  .bloco-banners {
    max-width: 400px;
  }

  .image-21 {
    width: auto;
  }

  .container-18 {
    padding: 40px;
  }

  .heading-13 {
    margin-bottom: 30px;
  }

  .text-block-11 {
    font-size: 14px;
  }

  .grid-20 {
    grid-template-columns: 1fr;
  }

  .paragraph-16 {
    font-size: 22px;
    line-height: 30px;
  }

  .image-27 {
    width: 90px;
  }

  .text-block-12 {
    font-size: 13px;
  }

  .grid-23 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .image-31 {
    width: 13px;
  }

  .link-block {
    width: 30px;
    height: 30px;
  }

  .list-item-6 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .div-block-80 {
    max-width: none;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 20px;
  }

  .text-block-14 {
    font-size: 50px;
  }

  .text-block-15 {
    font-size: 20px;
    line-height: 25px;
  }

  .c-card-btn-text.default, .c-card-btn-text.focus {
    transform: translate(0, -100%);
  }

  .carousel-mask {
    width: 60%;
  }

  .card-body-2 {
    min-height: 400px;
  }

  .nav-button-wrapper-copy {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .grid-32 {
    grid-template-columns: 1fr 1fr;
  }

  .h1-2 {
    font-size: 65px;
    line-height: 70px;
  }

  .grid-3-columns {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .countup-title---brix-agency {
    font-size: 22px;
    line-height: 33px;
  }

  .countup-number---brix {
    font-size: 80px;
    line-height: 87px;
  }

  .navbar-no-shadow-container-mobile {
    display: none;
  }

  .grid-19-copyvvn {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .container-67, .container-68, .container-70 {
    max-width: 90%;
  }

  .contact-form-section {
    flex-direction: row;
    justify-content: flex-start;
  }

  .submit-button-4 {
    padding: 12px 16px;
  }

  .form_field {
    font-size: 16px;
  }

  .is--tag {
    font-size: 14px;
  }

  .button_text {
    margin-right: 24px;
  }

  .header-subtitle {
    letter-spacing: 5px;
    font-size: .7rem;
  }

  .primary-button {
    padding: 12px 16px;
  }

  .contact-page-1 {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .contact-wrap {
    padding: 0;
  }

  .contact-form {
    padding-left: 1.3rem;
  }

  .verticle-line {
    width: 100%;
  }

  .footer-content-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-rows: auto 1px auto;
    grid-template-columns: 1fr 1fr;
  }

  .footer-wrapper-2 {
    grid-row-gap: 100px;
    padding-top: 100px;
  }

  .section-41 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .image-49, .image-49.menu-img {
    width: 30%;
    max-width: 30%;
  }

  .dropdown-list-2.submenu-list {
    position: fixed;
  }

  .image-51 {
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  .down-arrow {
    width: 30px;
    height: 17px;
    display: block;
  }

  .container-74 {
    z-index: 6;
    background-color: #181818;
    grid-template-columns: 1fr;
    position: relative;
  }

  .up-image {
    width: 30px;
    height: 17px;
  }

  .dropdown-toggle.nav-link {
    z-index: 5;
    justify-content: space-between;
    transition: all .5s;
    display: flex;
  }

  .text-block-32 {
    margin-bottom: 20px;
  }

  .desktop {
    display: none;
  }

  .nav-menu-wrapper-2 {
    text-align: right;
    background-color: #0f0f0f;
    margin-top: 77px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: scroll;
  }

  .nav-menu-3 {
    color: #fff;
    text-align: right;
    background-color: #0a0a0a00;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 0;
    padding: 20px;
    display: block;
    overflow: visible;
  }

  .nav-link-2 {
    width: 100%;
    margin-right: 0;
    padding-left: 5px;
    padding-right: 0;
    font-size: 13px;
  }

  .nav-dropdown-2 {
    width: 100%;
  }

  .nav-dropdown-toggle-2 {
    text-align: right;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
    display: block;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper-2 {
    width: 100%;
    margin-left: 0;
  }

  .menu-button-2 {
    background-color: var(--dark-goldenrod);
    border-radius: 10px;
    padding: 12px;
  }

  .menu-button-2.w--open {
    background-color: var(--burlywood);
    color: #fff;
  }

  .list-item-8 {
    text-align: right;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .mobile {
    height: 77px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .text-block-33 {
    color: #7e7e7e;
    margin-top: 0;
    margin-bottom: 5px;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 600;
  }

  .nav-link-2-copy {
    width: 100%;
    margin-right: 0;
    padding-left: 5px;
    padding-right: 0;
    font-size: 13px;
  }

  .link-6 {
    color: #fff;
    width: auto;
    margin-bottom: 5px;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
  }

  .navbar_dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    font-size: 1.125rem;
    display: flex;
  }

  .navbar_link {
    text-align: center;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .navbar_submenu-item.is-bold {
    font-size: 1.5rem;
  }

  .navbar_submenu {
    border-left-style: none;
    border-right-style: none;
    flex-direction: column;
    max-width: 100%;
    position: static;
    top: 0;
  }

  .navbar_dropdown-toggle {
    color: #ffffffb3;
    border-bottom: 1px solid #ffffff80;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: .75rem 0;
    display: flex;
  }

  .navbar_dropdown-toggle:hover {
    color: #ffffff4d;
    border-bottom-color: #ffffff4d;
  }

  .navbar_left-widget {
    width: 100%;
    max-width: 20rem;
    height: 100%;
    margin-top: 2rem;
    position: relative;
    top: 0;
  }

  .navbar_dropdown-link {
    width: auto;
    padding: .75rem 0;
  }

  .hide-desktop-only {
    display: block;
  }

  .navbar_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar_dropdown-list.w--open {
    border-style: none;
    height: auto;
    padding: 1rem 0;
    position: static;
  }

  .menu-icon_line-top {
    background-color: #fff;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_dropdown-2 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    font-size: 1.125rem;
    display: flex;
  }

  .navbar_link-2 {
    text-align: center;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

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

  .navbar_mobile-search-wrap {
    border-right: 1px solid #fff;
    display: block;
  }

  .navbar_dropdown-toggle-2 {
    color: #ffffffb3;
    border-bottom: 1px solid #ffffff80;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: .75rem 0;
    display: flex;
  }

  .navbar_dropdown-toggle-2:hover {
    color: #ffffff4d;
    border-bottom-color: #ffffff4d;
  }

  .navbar_menu-button {
    padding: 0;
  }

  .navbar_menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar_mobile-view {
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .menu-icon_line-bottom {
    background-color: #fff;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .hide-desktop-only-2 {
    display: block;
  }

  .navbar_menu {
    -webkit-text-fill-color: inherit;
    background-color: #000;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    justify-content: center;
    padding: 1rem 5% 2.5rem;
    position: absolute;
    overflow: auto;
  }

  .navbar_desktop-view {
    display: none;
  }

  .menu-icon_line-middle {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar_container {
    grid-template-columns: .25fr 1fr;
    display: flex;
  }

  .navbar_dropdown-3 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 1.125rem;
    display: flex;
  }

  .navbar_link-3 {
    text-align: center;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .navbar_mobile-view-2 {
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .hide-desktop-only-3 {
    display: block;
  }

  .navbar_container-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .grid-funciona-3-col {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .img-tecnologias {
    height: 250px;
  }

  .container-hero-quemsomos, .container-87 {
    max-width: 90%;
  }

  .grid-funciona-copyvb, .grid-funcio {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .container-92 {
    max-width: 90%;
  }

  .btn-inicio-2b-copyd {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .grid-layout.tablet-1-column {
    grid-template-columns: 1fr;
  }

  .btn-inicio-c {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .heading-67 {
    font-size: 30px;
    line-height: 40px;
  }

  .cta {
    margin-top: 140px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-layout-2.tablet-1-column {
    grid-template-columns: 1fr;
  }

  .subheading {
    font-size: 1.13rem;
  }

  .section-56 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .container-95 {
    max-width: 90%;
  }

  .grid-layout-3.desktop-1-column {
    grid-template-columns: 1fr;
  }

  .btn-inicio-copy-v-4 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

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

  .container-96 {
    max-width: 90%;
  }

  .heading-50-copy-cop {
    font-size: 25px;
    line-height: 35px;
  }

  .grid-layout-4.desktop-1-column {
    grid-template-columns: 1fr;
  }

  .utility-margin-bottom-2 {
    margin-bottom: 0;
  }

  .container-hero-r24 {
    max-width: 90%;
  }

  .grid-funciona-3-col-2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .grid-48 {
    grid-template-columns: 1fr;
  }

  .heading-63 {
    font-size: 30px;
    line-height: 40px;
  }

  .container-99, .container-101 {
    max-width: 90%;
  }

  .grid-49 {
    grid-template-columns: 1fr;
  }

  .grid-funciona-2-col {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .heading-72 {
    font-size: 30px;
    line-height: 40px;
  }

  .container-103 {
    max-width: 90%;
  }

  .faq-question-wrap {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .grid-50 {
    grid-template-columns: 1fr;
  }

  .heading-74 {
    font-size: 30px;
    line-height: 40px;
  }

  .container-106 {
    max-width: 90%;
  }

  .grid-51 {
    grid-template-columns: 1fr;
  }

  .container-107 {
    max-width: 90%;
  }

  .grid-52 {
    grid-template-columns: 1fr;
  }

  .heading-77 {
    font-size: 30px;
    line-height: 40px;
  }

  .grid-53 {
    grid-template-columns: 1fr;
  }

  .heading-78 {
    font-size: 30px;
    line-height: 40px;
  }

  .container-108 {
    max-width: 90%;
  }

  .grid-48-copy {
    grid-template-columns: 1fr;
  }

  .heading-80 {
    font-size: 30px;
    line-height: 40px;
  }

  .grid-48-copyn-v {
    grid-template-columns: 1fr;
  }

  .heading-81 {
    font-size: 30px;
    line-height: 40px;
  }

  .container-109 {
    max-width: 90%;
  }

  .grid-490, .grid-491, .grid-48-copy-df, .grid-48-copy-copybkh {
    grid-template-columns: 1fr;
  }

  .container-110 {
    max-width: 90%;
  }

  .grid-492 {
    grid-template-columns: 1fr;
  }

  .container-hero-r25 {
    max-width: 90%;
  }

  .grid-493, .grid-48-copygfn-copy, .grid-494 {
    grid-template-columns: 1fr;
  }

  .btn-inicio-copy-v {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .grid-48-copyg, .grid-48ntgn {
    grid-template-columns: 1fr;
  }

  .container-111, .container-112 {
    max-width: 90%;
  }

  .grid-48-copy-copygh {
    grid-template-columns: 1fr;
  }

  .container-113, .container-114, .container-115, .container-hero-equipe {
    max-width: 90%;
  }

  .heading-139 {
    font-size: 30px;
    line-height: 40px;
  }

  .container-929 {
    max-width: 90%;
  }

  .heading-140 {
    font-size: 30px;
    line-height: 40px;
  }

  .div-block-10903-co {
    margin-top: 140px;
  }

  .text-span-53-copy {
    font-size: 45px;
    line-height: 60px;
  }

  .heading-55-copsdc-copy {
    font-size: 35px;
    line-height: 45px;
  }

  .heading-55-cop {
    font-size: 50px;
    line-height: 55px;
  }

  .btn-inicio-copy-v-5 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .div-block-1089971 {
    padding: 10px;
  }

  .text-block-208._2, .text-block-208._3, .text-block-208._1 {
    padding-left: 23px;
    font-size: 10px;
    line-height: 18px;
  }

  .grid-528-copy {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .heading-55-copsdc {
    font-size: 35px;
    line-height: 45px;
  }

  .grid-528 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .div-block-1089979 {
    padding: 10px;
  }

  .text-block-212._2, .text-block-212._3, .text-block-212._1 {
    padding-left: 23px;
    font-size: 10px;
    line-height: 18px;
  }

  .heading-55-copsdc-copy-2 {
    font-size: 50px;
    line-height: 55px;
  }

  .btn-inicio-copy-v-6 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .div-block-1089981 {
    padding: 10px;
  }

  .grid-521 {
    grid-template-columns: 1fr 1fr;
  }

  .section-133 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .text-span-53-copy-2 {
    font-size: 45px;
    line-height: 60px;
  }

  .grid-526 {
    grid-template-columns: 1.5fr;
  }

  .paragraph-lg-copydv, .paragraph-lg {
    font-size: 1.13rem;
  }

  .grid-529 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .btn-inicio-copy-v-7 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .text-block-214._2, .text-block-214._1, .text-block-214._3 {
    padding-left: 23px;
    font-size: 10px;
    line-height: 18px;
  }

  .paragraph-lg-copydv-copysc {
    font-size: 1.13rem;
  }
}

@media screen and (max-width: 767px) {
  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .section {
    padding-bottom: 100px;
  }

  .h1 {
    font-size: 45px;
    line-height: 50px;
  }

  .heading {
    font-size: 30px;
    line-height: 40px;
  }

  .container {
    max-width: 90%;
  }

  .grid-3 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-2 {
    height: 600px;
  }

  .div-block-3 {
    margin: -70px auto 0;
    padding-top: 40px;
    padding-bottom: 40px;
    display: block;
  }

  .container-2 {
    max-width: 90%;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .footer-brand {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .grid-5 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .section-21 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .paragraph-14 {
    font-size: 18px;
    line-height: 23px;
  }

  .creator_block {
    display: block;
  }

  .bloco-banners {
    max-width: 80%;
  }

  .grid-unique-day {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .container-18 {
    max-width: 90%;
  }

  .section-23 {
    padding-top: 60px;
  }

  .grid-21 {
    grid-template-columns: 1fr;
  }

  .image-28 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .container-52 {
    max-width: 90%;
  }

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

  .container-53 {
    max-width: 90%;
  }

  .grid-22 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .container-55, .container-56, .container-2-copy, .container-2-copycd, .div-block-80 {
    max-width: 90%;
  }

  .grid-26 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .container-57, .container-58, .utility-page-content, .container-2-copy, .container-2-copy-copy {
    max-width: 90%;
  }

  .grid-28-copycdac {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .text-block-15 {
    font-size: 15px;
    line-height: 20px;
  }

  .container-59 {
    max-width: 90%;
  }

  .div-block-98 {
    margin-left: auto;
    margin-right: auto;
  }

  .carousel-mask {
    width: 80%;
  }

  .card-body-2 {
    min-height: 380px;
  }

  .collection-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .container-63 {
    max-width: 90%;
  }

  .paragraph2 {
    font-size: 16px;
  }

  .grid-33 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .heading-48 {
    font-size: 25px;
    line-height: 30px;
  }

  .paragraph-19-copy {
    font-size: 20px;
    line-height: 30px;
  }

  .title-small-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .container-65 {
    max-width: 90%;
  }

  .h1-2 {
    font-size: 45px;
    line-height: 50px;
  }

  .grid-3-columns {
    grid-column-gap: 40px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .button-primary-2 {
    padding: 16px 34px;
    font-size: 16px;
    line-height: 18px;
  }

  .countup-title---brix-agency {
    margin-top: 4px;
    font-size: 20px;
    line-height: 28px;
  }

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .countup-number---brix {
    font-size: 60px;
    line-height: 70px;
  }

  .countup-number---brix.count-number.timer {
    font-size: 60px;
  }

  .countup-number-top---brix-agency {
    font-size: 13px;
  }

  .ebook {
    width: 100%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px;
  }

  .grid-ebook {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .ebook-copy {
    width: 100%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px;
  }

  .container-66 {
    max-width: 90%;
  }

  .grid-19-copyvvn {
    grid-row-gap: 50px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .container-67 {
    max-width: 90%;
  }

  .paragraph-25-copysdv {
    font-size: 16px;
    line-height: 27px;
  }

  .heading-4-copyac {
    font-size: 35px;
    line-height: 45px;
  }

  .section-tecnologias {
    padding-bottom: 40px;
  }

  .container-68 {
    max-width: 90%;
  }

  .grid-41 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .text-block-30 {
    align-items: center;
    display: flex;
  }

  .div-block-157 {
    text-align: center;
  }

  .contact-form-section {
    flex-direction: column;
  }

  .contact-address {
    width: 50%;
    margin-bottom: 1.6rem;
  }

  .address-big {
    padding-right: 28px;
  }

  .is--tag {
    font-size: 12px;
  }

  .contact-info-wrap {
    border-right-style: none;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
  }

  .header-subtitle {
    margin-top: 0;
  }

  .contact-wrap {
    flex-direction: column;
  }

  .contact-form {
    width: 100%;
    margin-top: 1.6rem;
  }

  .button-wrapper.contact-buttons {
    margin-top: 0;
  }

  .footer-content-2 {
    grid-template-columns: 1fr;
  }

  .footer-wrapper-2 {
    grid-row-gap: 60px;
    padding-top: 60px;
  }

  .section-41 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-credits {
    grid-template-columns: 1fr;
  }

  .container-74 {
    flex-wrap: wrap;
  }

  .services-block {
    width: 50%;
  }

  .desktop {
    display: none;
  }

  .navbar-brand-2 {
    padding-left: 0;
  }

  .nav-menu-3 {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list-2.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list-2.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-11 {
    margin-top: 10px;
  }

  .mobile {
    display: block;
  }

  .nav-link-2-copy {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar, .navbar-3 {
    min-height: 4rem;
  }

  .grid-funciona-3-col {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .img-tecnologias {
    height: 200px;
  }

  .heading-7-c6 {
    font-size: 35px;
    line-height: 50px;
  }

  .container-hero-quemsomos {
    max-width: 90%;
  }

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

  .grid-funciona-copyvb, .grid-funcio {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

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

  .heading-67 {
    margin-bottom: 0;
  }

  .cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .subheading {
    font-size: 1.1rem;
  }

  .section-56 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

  .grid-layout-3.mobile-landscape-1-column {
    grid-template-columns: 1fr;
  }

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

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

  .grid-layout-4.mobile-landscape-1-column {
    grid-template-columns: 1fr;
  }

  .utility-margin-bottom-2 {
    margin-bottom: 0;
  }

  .container-hero-r24 {
    max-width: 90%;
  }

  .grid-funciona-3-col-2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-10912 {
    margin-bottom: 40px;
  }

  .grid-48 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .heading-63 {
    margin-bottom: 0;
  }

  .container-99, .container-101 {
    text-align: center;
  }

  .div-block-11010 {
    margin-bottom: 40px;
  }

  .grid-49 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .grid-funciona-2-col {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .heading-72 {
    margin-bottom: 0;
  }

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

  .div-block-11021 {
    margin-bottom: 40px;
  }

  .grid-50 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .heading-74 {
    margin-bottom: 0;
  }

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

  .div-block-11026 {
    margin-bottom: 40px;
  }

  .grid-51 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

  .div-block-11029 {
    margin-bottom: 40px;
  }

  .grid-52 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .heading-77 {
    margin-bottom: 0;
  }

  .div-block-11038 {
    margin-bottom: 40px;
  }

  .grid-53 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .heading-78 {
    margin-bottom: 0;
  }

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

  .grid-48-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-11042 {
    margin-bottom: 40px;
  }

  .heading-80 {
    margin-bottom: 0;
  }

  .div-block-11052 {
    margin-bottom: 40px;
  }

  .grid-48-copyn-v {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .heading-81 {
    margin-bottom: 0;
  }

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

  .div-block-11054, .div-block-11063 {
    margin-bottom: 40px;
  }

  .grid-490 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-11073 {
    margin-bottom: 40px;
  }

  .grid-491 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-11084 {
    margin-bottom: 40px;
  }

  .grid-48-copy-df, .grid-48-copy-copybkh {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

  .div-block-11088, .div-block-11097 {
    margin-bottom: 40px;
  }

  .grid-492 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .container-hero-r25 {
    max-width: 90%;
  }

  .div-block-11108 {
    margin-bottom: 40px;
  }

  .grid-493 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-11118 {
    margin-bottom: 40px;
  }

  .grid-48-copygfn-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-11126 {
    margin-bottom: 40px;
  }

  .grid-494 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-11135 {
    margin-bottom: 40px;
  }

  .grid-48-copyg {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-11144 {
    margin-bottom: 40px;
  }

  .grid-48ntgn {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-11154 {
    margin-bottom: 40px;
  }

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

  .div-block-11156, .div-block-11165 {
    margin-bottom: 40px;
  }

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

  .div-block-11167, .div-block-11177 {
    margin-bottom: 40px;
  }

  .grid-48-copy-copygh {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

  .div-block-11181, .div-block-11191 {
    margin-bottom: 40px;
  }

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

  .div-block-11195, .div-block-11205 {
    margin-bottom: 40px;
  }

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

  .div-block-11209, .div-block-11219, .div-block-11229 {
    margin-bottom: 40px;
  }

  .title-small-copy-copy, .title-small-co {
    margin-left: auto;
    margin-right: auto;
  }

  .container-hero-equipe {
    max-width: 90%;
  }

  .heading-139 {
    margin-bottom: 0;
  }

  .grid-44-copy {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-11324 {
    margin-bottom: 40px;
  }

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

  .heading-140 {
    margin-bottom: 0;
  }

  .div-block-10903-co {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-11327 {
    margin-bottom: 40px;
  }

  .text-span-53-copy {
    font-size: 40px;
    line-height: 35px;
  }

  .heading-55-copsdc-copy {
    font-size: 30px;
    line-height: 45px;
  }

  .heading-55-cop {
    font-size: 50px;
    line-height: 50px;
  }

  .heading-55-copsdc {
    font-size: 30px;
    line-height: 45px;
  }

  .heading-55-copsdc-copy-2 {
    font-size: 50px;
    line-height: 50px;
  }

  .section-133 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .text-span-53-copy-2 {
    font-size: 40px;
    line-height: 35px;
  }

  .paragraph-lg-copydv, .paragraph-lg, .paragraph-lg-copydv-copysc {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 479px) {
  .navbar-no-shadow-container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-menu-wrapper {
    position: absolute;
    overflow: scroll;
  }

  .nav-menu {
    flex-direction: column;
    min-height: auto;
    position: static;
    overflow: visible;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .menu-button {
    background-color: var(--dark-goldenrod);
    border-radius: 5px;
  }

  .h1 {
    font-size: 30px;
    line-height: 35px;
  }

  .container {
    max-width: 90%;
  }

  .sobre {
    padding-bottom: 0;
  }

  .div-block {
    max-width: 90%;
  }

  .div-block-2 {
    height: 400px;
  }

  .div-block-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-2 {
    max-width: 90%;
  }

  .paragraph {
    font-size: 14px;
  }

  .div-block-4 {
    width: auto;
    height: auto;
  }

  .container-3 {
    max-width: none;
  }

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

  .footer-link:hover {
    color: #ffffffbf;
  }

  .section-7 {
    padding-top: 40px;
  }

  .tab-link-tab-1 {
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .tab-link-tab-1.w--current {
    margin-bottom: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .div-block-8 {
    padding: 40px 20px;
  }

  .heading-4 {
    font-size: 23px;
    line-height: 30px;
  }

  .paragraph-2 {
    max-width: 90%;
  }

  .grid-5 {
    max-width: none;
  }

  .tabs {
    display: block;
  }

  .div-block-10 {
    max-width: none;
  }

  .grid-5-copy {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .clientes {
    overflow: hidden;
  }

  .div-block-11 {
    width: auto;
  }

  .heading-35 {
    margin-bottom: 20px;
  }

  .creator_block {
    display: block;
  }

  .section-links {
    padding-top: 0;
  }

  .descricao {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 18px;
  }

  .bloco-info {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .image-6 {
    margin-bottom: 20px;
  }

  .bloco-banners {
    max-width: 90%;
  }

  .image-24 {
    max-width: 250px;
  }

  .grid-unique-day._2 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .container-18 {
    margin-bottom: 40px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-13 {
    font-family: Poppins, sans-serif;
  }

  .grid-27-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .paragraph-16 {
    font-size: 20px;
  }

  .container-53 {
    max-width: 90%;
  }

  .grid-22 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .grid-24 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .heading-40 {
    font-size: 30px;
    line-height: 40px;
  }

  .list-item-6 {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
  }

  .tabs-menu {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .bloco-1, .bloco-2, .bloco-3, .bloco-4, .bloco-5, .bloco-6, .bloco-7, .bloco-8 {
    max-width: none;
    padding: 40px 20px;
  }

  .heading-41 {
    font-size: 30px;
    line-height: 35px;
  }

  .div-block-79 {
    font-family: Poppins, sans-serif;
  }

  .container-2-copy, .container-2-copycd {
    max-width: 90%;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .h3 {
    font-size: 15px;
  }

  .paragraph-18 {
    font-size: 16px;
  }

  .p-m-wrap {
    margin-left: 40px;
  }

  .heading-42 {
    font-size: 40px;
    line-height: 45px;
  }

  .grid-27 {
    grid-template-columns: 1fr 1fr;
  }

  .imagem {
    width: 150px;
    height: 150px;
    margin-top: -75px;
  }

  .container-2-copy, .container-2-copy-copy {
    max-width: 90%;
  }

  .background-video {
    min-height: 60vh;
    padding-top: 60px;
  }

  .text-block-13 {
    font-size: 15px;
  }

  .grid-28-copycdac {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .grid-28 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-94 {
    margin-top: 40px;
  }

  .div-block-95 {
    height: 300px;
  }

  .numeros {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid-29 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .nav-button-wrapper-copy {
    width: auto;
  }

  .div-block-100 {
    border-radius: 5px;
  }

  .container-60 {
    max-width: 90%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .sonho {
    max-width: none;
  }

  .container-61 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .paragraph-20 {
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .c-content {
    justify-content: center;
    align-items: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .c-card-back {
    width: 100%;
    max-width: 250px;
  }

  .cloneable-area {
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 20px;
  }

  ._w-content {
    margin-left: auto;
    margin-right: auto;
  }

  .c-flipping-cards-list {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .c-card-front {
    width: 100%;
    max-width: 250px;
  }

  ._w-flip-card {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .carousel-mask {
    width: 100%;
    margin-bottom: -100px;
  }

  .carousel-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .card-body-2 {
    min-height: 520px;
    padding: 20px;
  }

  .carousel.is_contained {
    height: 600px;
  }

  .bloco-9 {
    max-width: none;
    padding: 40px 20px;
  }

  .capa-blog {
    height: 70vh;
  }

  .grid-31 {
    grid-template-columns: 1fr;
    max-width: 90%;
  }

  .collection-list {
    grid-template-columns: 1fr;
  }

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

  .nav-button-wrapper-copy {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-45 {
    text-align: left;
    font-size: 40px;
    font-style: normal;
  }

  .capa-blog-interno {
    height: 70vh;
  }

  .dropdown-list.w--open {
    margin-left: 0;
    margin-right: 0;
    position: static;
    inset: 0%;
    overflow: visible;
  }

  .bloco-1-proced {
    max-width: none;
    padding: 40px 20px;
  }

  .section-34 {
    padding-bottom: 40px;
  }

  .grid-32 {
    grid-template-columns: 1fr;
  }

  .section-4-co {
    height: 70vh;
  }

  .paragraph2 {
    font-size: 14px;
  }

  .grid-33 {
    grid-template-columns: 1fr;
  }

  .section-4-co2, .section-4-co3, .section-4-co4, .section-4-co5 {
    height: 70vh;
  }

  .div-block-120 {
    width: 95%;
  }

  .form-block {
    max-width: 100%;
  }

  .div-block-123 {
    height: 500px;
  }

  .container-65 {
    max-width: 90%;
  }

  .h1-2 {
    font-size: 30px;
    line-height: 35px;
  }

  .text-block-21 {
    font-size: 15px;
  }

  .button-primary-2 {
    padding: 15px 34px 16px;
  }

  .countup-title---brix-agency {
    margin-top: 10px;
    font-size: 15px;
    line-height: 20px;
  }

  .container-default {
    padding-left: 16px;
    padding-right: 16px;
  }

  .countup-number---brix {
    font-size: 66px;
    line-height: 77px;
  }

  .countup-number---brix.color-primary, .countup-number---brix.count-number.timer {
    font-size: 30px;
    line-height: 30px;
  }

  .text-uppercase.subtitle {
    font-size: 14px;
  }

  .text-block-22 {
    font-size: 20px;
    line-height: 30px;
  }

  .bloco-a1 {
    max-width: none;
    padding: 140px 20px 40px;
  }

  .bloco-a2 {
    max-width: none;
    padding: 40px 20px;
  }

  .div-block-131 {
    max-width: none;
  }

  .grid-ebook {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .heading-51 {
    font-size: 25px;
    line-height: 35px;
  }

  .image-43 {
    padding-left: 30px;
  }

  .secao-ebook {
    padding-bottom: 0;
  }

  .ebook-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown {
    text-align: center;
    overflow: visible;
  }

  .nav-menu-2 {
    position: absolute;
  }

  .navbar-no-shadow-container-mobile {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-38 {
    padding-bottom: 0;
  }

  .grid-19-copyvvn {
    grid-column-gap: 15px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .text-block-7, .text-block-27 {
    font-size: 16px;
  }

  .heading-53 {
    font-size: 25px;
    line-height: 35px;
  }

  .container-67 {
    max-width: 90%;
  }

  .heading-54 {
    font-size: 25px;
    line-height: 35px;
  }

  .heading-51-c-3 {
    font-size: 35px;
    line-height: 40px;
  }

  .paragraph-27-copy-2 {
    line-height: 25px;
  }

  .divblock-ebook {
    text-align: center;
    margin-bottom: 60px;
  }

  .bloco-2-copysc {
    max-width: none;
    padding: 110px 20px 40px;
  }

  .heading-4-copyasc, .heading-4-copyac {
    font-size: 23px;
    line-height: 30px;
  }

  .section-tecnologias {
    padding-bottom: 60px;
  }

  .container-68 {
    max-width: 90%;
  }

  .grid-41 {
    grid-template-columns: 1fr;
  }

  .heading-42-copyzv {
    font-size: 35px;
    line-height: 50px;
  }

  .text-block-30 {
    font-size: 17px;
    line-height: 28px;
  }

  .container-69 {
    padding-bottom: 60px;
  }

  .bloco-capa {
    min-height: 25vh;
  }

  .contact-form-section {
    margin-bottom: 29px;
  }

  .contact-address {
    width: 100%;
    margin-bottom: .9rem;
  }

  .address-big {
    line-height: 1;
  }

  .is--tag {
    font-size: 14px;
  }

  .section-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .contact-text {
    font-size: 1rem;
  }

  .button_text {
    font-size: .8rem;
  }

  .header-subtitle {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 9px;
    padding-right: 5.7rem;
    font-size: .8rem;
  }

  .contact-page-1 {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .contact-form {
    padding-left: 0;
  }

  .button-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .button-wrapper.contact-buttons {
    margin-top: .3rem;
  }

  .section-41 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .image-49, .image-49.menu-img {
    width: 20%;
    max-width: 20%;
  }

  .desktop {
    display: none;
  }

  .nav-menu-wrapper-2 {
    text-align: center;
    margin-top: 0;
    position: absolute;
    overflow: visible;
  }

  .nav-menu-3 {
    text-align: center;
    flex-direction: column;
    padding-left: 20px;
    overflow: visible;
  }

  .nav-button-wrapper-2 {
    width: auto;
  }

  .list-item-8 {
    text-align: center;
  }

  .mobile {
    display: block;
  }

  .navbar_dropdown {
    text-align: right;
    justify-content: center;
    align-items: flex-end;
  }

  .navbar_link {
    text-align: center;
    border: 0 solid #000;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    font-size: 13px;
  }

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

  .navbar_submenu {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar_dropdown-toggle {
    text-align: right;
    border-bottom-width: 0;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 13px;
    display: block;
  }

  .navbar_dropdown-toggle.w--open {
    text-align: justify;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

  .navbar_dropdown-link.is-small {
    text-align: center;
    width: 100%;
    font-size: .8rem;
  }

  .navbar_dropdown-link.is-small.w--current {
    color: var(--burlywood);
  }

  .navbar_dropdown-link.is-bold {
    text-align: right;
  }

  .hide-desktop-only {
    display: none;
  }

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

  .navbar_dropdown-list.w--open {
    margin-top: 0;
    padding: 0 20px;
  }

  .navbar_dropdown-toggle-2 {
    border-bottom-color: #fff0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .menu-icon {
    margin-top: 10px;
  }

  .navbar_mobile-view {
    display: block;
  }

  .padding-global {
    background-color: #0000;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: auto;
    padding: .5em 0;
  }

  .navbar_bg {
    background-color: #000;
  }

  .navbar_menu {
    width: 100%;
    margin-top: 71px;
    font-family: Poppins, sans-serif;
    position: fixed;
    inset: 0%;
    overflow: scroll;
  }

  .navbar_link-3 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .navbar_link-3.w--current {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hide-desktop-only-3 {
    width: auto;
    font-size: 1rem;
  }

  .navbar-3 {
    background-color: #000;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar_container-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .grid-funciona-3-col {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .div-bloco-destaque {
    padding-left: 20px;
    padding-right: 20px;
  }

  .img-tecnologias._8, .img-tecnologias._7, .img-tecnologias._3, .img-tecnologias._6, .img-tecnologias._9, .img-tecnologias._11, .img-tecnologias._12, .img-tecnologias._2, .img-tecnologias._5, .img-tecnologias._4, .img-tecnologias._10, .img-tecnologias._1 {
    height: 250px;
  }

  .div-grade-funciona {
    padding-bottom: 40px;
  }

  .text-block-50 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-162 {
    margin-top: 10px;
  }

  .capa-hero {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 60px;
  }

  .heading-7-c6 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 35px;
    line-height: 48px;
  }

  .container-hero-quemsomos {
    padding-left: 0;
    padding-right: 0;
  }

  .container-86 {
    max-width: 90%;
  }

  .text-block-44 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 25px;
  }

  .bloco-titulo2 {
    padding-bottom: 60px;
  }

  .heading-59 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-bloco-destaque-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-funciona-copyvb {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .div-bloco-destaque-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-funcio {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .heading-66 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .btn-inicio-2b-copyd, .btn-inicio-c {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
  }

  .div-block-10881fb {
    display: block;
  }

  .paragraph-35 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .heading-67 {
    margin-bottom: 40px;
    font-size: 25px;
    line-height: 35px;
  }

  .div-block-10880-copy {
    margin-top: 10px;
    margin-left: 0;
  }

  .cta {
    margin-top: 60px;
    padding: 80px 20px;
  }

  .div-block-18-copy {
    max-width: none;
  }

  .text-block-46-b {
    font-size: 13px;
  }

  .list-item-12-b {
    margin-bottom: 20px;
  }

  .grid-layout-2.tablet-1-column.grid-gap-lg.jh {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-10857 {
    min-height: 300px;
  }

  .subheading {
    font-size: 1rem;
  }

  .image-118.cover-image.utility-shadow-xl.off {
    display: block;
  }

  .section-56 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid-42 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .heading-68 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

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

  .heading-69 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .heading-50-copy-cop {
    text-align: left;
    margin-top: 10px;
    font-size: 17px;
    line-height: 30px;
  }

  .utility-margin-bottom-2 {
    margin-bottom: 0;
  }

  .text-block-51 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .container-hero-r24 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-11006 {
    margin-top: 10px;
  }

  .container-19-copy {
    max-width: 90%;
  }

  .text-block-53 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 25px;
  }

  .grid-funciona-3-col-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .text-block-34-cop {
    text-align: center;
    margin-top: 40px;
  }

  .div-block-10912 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .section-59 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .list-item-12-copyh {
    margin-bottom: 20px;
  }

  .paragraph-32-co {
    text-align: center;
  }

  .text-block-43 {
    margin-top: 20px;
    font-size: 15px;
  }

  .heading-63 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 35px;
  }

  .div-block-10911 {
    display: inline-flex;
  }

  .div-block-10913 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .heading-70, .heading-71 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11010 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .grid-funciona-2-col {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .text-block-55 {
    margin-top: 20px;
    font-size: 15px;
  }

  .heading-72 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 35px;
  }

  .div-block-11014 {
    display: inline-flex;
  }

  .div-block-11015 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .heading-73 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .faq-h3.noselect {
    line-height: 26px;
  }

  .faq {
    flex-flow: column;
    align-items: flex-start;
    min-width: auto;
    padding-left: 15px;
  }

  .paragraph-36 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .paragraph-5 {
    color: #6e6e6e;
    margin-left: 15px;
    font-size: 14px;
  }

  .faq-circle {
    margin-bottom: 9px;
  }

  .text-block-56 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11016 {
    margin-top: 10px;
  }

  .text-block-58 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 25px;
  }

  .div-block-11021 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .section-63 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .text-block-60 {
    margin-top: 20px;
    font-size: 15px;
  }

  .heading-74 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 35px;
  }

  .div-block-11024 {
    display: inline-flex;
  }

  .div-block-11025 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .heading-75 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11026 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .text-block-61 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11027 {
    display: inline-flex;
  }

  .div-block-11028 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .heading-76 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11029 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-37 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-34-cop-c {
    text-align: center;
    margin-top: 40px;
  }

  .text-block-62 {
    margin-top: 20px;
    font-size: 15px;
  }

  .heading-77 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 35px;
  }

  .div-block-11031 {
    display: inline-flex;
  }

  .div-block-11032 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-63 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11033 {
    margin-top: 10px;
  }

  .div-block-11038 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .section-65 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .div-block-10959 {
    height: 200px;
  }

  .grid-489 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .text-block-66 {
    margin-top: 20px;
    font-size: 15px;
  }

  .heading-78 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 35px;
  }

  .div-block-11040 {
    display: inline-flex;
  }

  .div-block-11041 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .heading-79 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11042 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-38 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-67 {
    margin-top: 20px;
    font-size: 15px;
  }

  .heading-80 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 35px;
  }

  .div-block-11045 {
    display: inline-flex;
  }

  .div-block-11046 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-68 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11047 {
    margin-top: 10px;
  }

  .div-block-11052 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .heading-81 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 35px;
  }

  .heading-82 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11054 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .div-bloco-destaque-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-39 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-72 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11056 {
    display: inline-flex;
  }

  .div-block-11057 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-73 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11058 {
    margin-top: 10px;
  }

  .text-block-34-cop-co {
    text-align: center;
    margin-top: 40px;
  }

  .div-block-11063 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-40, .paragraph-35-copyfb {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-76 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11066 {
    display: inline-flex;
  }

  .div-block-11067 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-77 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11068 {
    margin-top: 10px;
  }

  .div-block-11073 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-41 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-80 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11077 {
    display: inline-flex;
  }

  .div-block-11078 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-81 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11079 {
    margin-top: 10px;
  }

  .div-block-11084 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .text-block-84 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11086 {
    display: inline-flex;
  }

  .div-block-11087 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .heading-83 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11088 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-42 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-86 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11090 {
    display: inline-flex;
  }

  .div-block-11091 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-87 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11092 {
    margin-top: 10px;
  }

  .div-block-11097 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-43 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-90 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11101 {
    display: inline-flex;
  }

  .div-block-11102 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-91 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11103 {
    margin-top: 10px;
  }

  .container-hero-r25 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-11108 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-44 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-94 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11112 {
    display: inline-flex;
  }

  .div-block-11113 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-95 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11114 {
    margin-top: 10px;
  }

  .div-block-11118 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .grid-48-copygfn-copy {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .paragraph-45 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-97 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11120 {
    display: inline-flex;
  }

  .div-block-11121 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-98 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11122 {
    margin-top: 10px;
  }

  .div-block-11126 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-46 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-100 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11128 {
    display: inline-flex;
  }

  .div-block-11129 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-101 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11130 {
    margin-top: 10px;
  }

  .btn-inicio-copy-v {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    line-height: 1.2rem;
  }

  .div-block-11135 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .text-block-104 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11137 {
    display: inline-flex;
  }

  .div-block-11138 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-105 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11139 {
    margin-top: 10px;
  }

  .div-block-11144 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-47, .paragraph-35-copygc {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-108 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11147 {
    display: inline-flex;
  }

  .div-block-11148 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-109 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11149 {
    margin-top: 10px;
  }

  .div-block-11154 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .heading-84 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11156 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-48 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-113 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11158 {
    display: inline-flex;
  }

  .div-block-11159 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-114 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11160 {
    margin-top: 10px;
  }

  .div-block-11165 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .heading-85 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11167 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-49 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-118 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11170 {
    display: inline-flex;
  }

  .div-block-11171 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-119 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11172 {
    margin-top: 10px;
  }

  .div-block-11177 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .text-block-122 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11179 {
    display: inline-flex;
  }

  .div-block-11180 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .heading-86 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11181 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-50 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .text-block-124 {
    margin-top: 20px;
    font-size: 15px;
  }

  .div-block-11184 {
    display: inline-flex;
  }

  .div-block-11185 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-125 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11186 {
    margin-top: 10px;
  }

  .text-block-127 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 25px;
  }

  .div-block-11191 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .div-block-11193 {
    display: inline-flex;
  }

  .div-block-11194 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .heading-87 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11195 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-51 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .div-block-11198 {
    display: inline-flex;
  }

  .div-block-11199 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-130 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11200 {
    margin-top: 10px;
  }

  .text-block-132 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 25px;
  }

  .div-block-11205 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .div-block-11207 {
    display: inline-flex;
  }

  .div-block-11208 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .heading-88 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-11209 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-52 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .div-block-11212 {
    display: inline-flex;
  }

  .div-block-11213 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-135 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11214 {
    margin-top: 10px;
  }

  .text-block-137 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 25px;
  }

  .div-block-11219 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-53 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .div-block-11222 {
    display: inline-flex;
  }

  .div-block-11223 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-139 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11224 {
    margin-top: 10px;
  }

  .text-block-141 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 25px;
  }

  .div-block-11229 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .paragraph-54 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .div-block-11232 {
    display: inline-flex;
  }

  .div-block-11233 {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
  }

  .text-block-67-copy, .text-block-86-copy, .text-block-108-copy, .text-block-124-copy {
    margin-top: 20px;
    font-size: 15px;
  }

  .container-hero-equipe {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-190 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11322 {
    margin-top: 10px;
  }

  .text-block-191 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-11323 {
    margin-top: 10px;
  }

  .heading-139 {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 40px;
  }

  .section-129 {
    padding-top: 40px;
  }

  .div-block-11324 {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .list-item-16 {
    margin-bottom: 15px;
  }

  .paragraph-56 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .heading-140 {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 40px;
  }

  .section-130 {
    padding-top: 40px;
  }

  .text-block-195 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .div-block-10903-co {
    margin-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-141 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 45px;
  }

  .div-bloco-destaque-14 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-11327 {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .div-block-11329 {
    margin-top: 10px;
  }

  .list-item-17 {
    margin-bottom: 15px;
  }

  .div-block-10868 {
    margin-top: 0;
  }

  .section-131 {
    padding-top: 10px;
    padding-bottom: 80px;
  }

  .bloco-titulo2-2 {
    padding-bottom: 60px;
  }

  .heading-142 {
    max-width: none;
    margin-bottom: 0;
    font-size: 30px;
    line-height: 40px;
  }

  .text-block-2-copy {
    font-size: 13px;
  }

  .div-block-226-copy {
    margin-top: 30px;
  }

  .text-span-53-copy {
    font-size: 30px;
  }

  .heading-55-copsdc-copy {
    margin-top: 15px;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    line-height: 30px;
  }

  .text-block-209 {
    font-size: 11px;
    line-height: 14px;
  }

  .heading-55-cop {
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    line-height: 43px;
  }

  .bloco-diagnostico {
    background-image: linear-gradient(#000000e0, #000000e0), url('../assets/194231590.webp');
    background-position: 0 0, 100%;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-inicio-copy-v-5 {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    line-height: 1.2rem;
  }

  .text-block-208._2 {
    width: 190px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
  }

  .text-block-208._3 {
    width: 215px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
  }

  .text-block-208._1 {
    text-align: center;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    display: block;
  }

  .grid-528-copy {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-55-copsdc {
    margin-top: 15px;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    line-height: 30px;
  }

  .text-block-211 {
    font-size: 11px;
    line-height: 14px;
  }

  .grid-528 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .text-block-212._2 {
    width: 190px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
  }

  .text-block-212._3 {
    width: 215px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
  }

  .text-block-212._1 {
    text-align: center;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    display: block;
  }

  .heading-55-copsdc-copy-2 {
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    line-height: 43px;
  }

  .heading-69-copydv {
    font-size: 2.5rem;
    line-height: 1.4em;
  }

  .div-block-10899 {
    text-align: center;
  }

  .text-block-213 {
    font-size: 11px;
    line-height: 14px;
  }

  .grid-521 {
    grid-template-columns: 1fr;
  }

  .heading-143 {
    font-size: 1.5rem;
    line-height: 1.4em;
  }

  .section-133 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .text-span-53-copy-2 {
    font-size: 30px;
  }

  .heading-69-copygv {
    font-size: 1.5rem;
    line-height: 1.4em;
  }

  .div-block-1089957 {
    display: block;
  }

  .paragraph-lg-copydv {
    font-size: .9rem;
  }

  .paragraph-lg {
    font-size: 1.1rem;
  }

  .paragraph-lg.utility-margin-bottom-2rem {
    font-size: 1rem;
  }

  .grid-529 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block-1089954 {
    text-align: center;
  }

  .btn-inicio-copy-v-7 {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    line-height: 1.2rem;
  }

  .image-223 {
    width: 40px;
    margin-bottom: 10px;
  }

  .text-block-214._2 {
    width: 190px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
  }

  .text-block-214._1 {
    text-align: center;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    display: block;
  }

  .text-block-214._3 {
    width: 215px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
  }

  .bloco-diagnostico-2 {
    background-image: linear-gradient(#000000b8, #000000b8), url('../assets/194231590.webp');
    background-position: 0 0, 100%;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-lg-copydv-copysc {
    font-size: .8rem;
    line-height: 1.5em;
  }

  .div-block-1089956, .div-block-1089986 {
    justify-content: center;
    align-items: center;
  }
}

#w-node-ef15f3e1-a34a-67d0-fbcd-70b246c28dbf-985f8232, #w-node-e8aa8813-d56f-9120-5cd2-c017a87274a0-985f8232, #w-node-_56087986-ba89-9010-b98f-44a081724739-985f8232, #w-node-f8e743e9-31e3-5aff-fd88-38751feeaf7a-985f8232, #w-node-_1f6d87dc-8777-283c-658a-d0a2855a50a8-985f8232, #w-node-_87d791b1-1405-9b1e-32d4-ffa5a1e9508e-985f8232 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-d2dde62e-760b-f4fd-ddc0-f67283f10bf2-985f8232 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_35b0fea6-14e2-7a37-9f1d-4b9df415a9b5-985f8232 {
  order: -9999;
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5803bbca-47a3-15cc-27a3-5a0411a2a341-985f8232 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0712a2a7-81e2-0411-2372-e2591186b2fa-1186b2f7.w-node-b0fc6f07-0aca-b03b-b75c-698e75d1f91f-985f8232, #w-node-_0712a2a7-81e2-0411-2372-e2591186b2fa-1186b2f7.w-node-b0fc6f07-0aca-b03b-b75c-698e75d1f92c-985f8232, #w-node-_0712a2a7-81e2-0411-2372-e2591186b2fa-1186b2f7.w-node-b0fc6f07-0aca-b03b-b75c-698e75d1f936-985f8232 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_1ba7b99a-3200-beec-6daf-bd0a7c3f35dc-985f8232 {
  justify-self: auto;
}

#w-node-af591f67-162e-c18e-93c6-faa3118ff870-985f8232, #w-node-_84a741e5-63d5-0d5b-c755-65f138f993d1-985f8232, #w-node-_4bce2ef2-f67b-c9d5-16f7-09586f172fb6-985f8232, #w-node-_74510d07-7f1d-e7da-1d58-8486cf8e6181-985f8232, #w-node-_48f4d14b-ff3b-c8a0-dd24-3184a8846991-985f8232, #w-node-_55a32345-ada5-d8d7-de2d-b2840ff82fb0-985f8232, #w-node-_49929ab0-41b3-1f2e-98d6-f946ee75c783-985f8232, #w-node-_0dbff334-38c4-fe28-a275-b44db0763eac-985f8232, #w-node-ee07b81e-fde6-13fb-ffc1-bfefef34fca2-985f8232, #w-node-b3c7c336-9240-8495-33f9-490eee0c7e73-985f8232, #w-node-bb77c5a1-2e66-59dc-7623-d4d85ba675a4-985f8232, #w-node-ebd3f870-2948-60b7-9474-3ab8aab56384-985f8232 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a4bf4d11-9943-8133-a2dc-a2b606805108-985f8232 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-a4bf4d11-9943-8133-a2dc-a2b606805109-985f8232 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_51ac36f6-eed7-a473-18c7-a2f145439887-985f8232 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_48ac7e87-ac3b-d756-18de-f44e2fdf6148-985f8232 {
  order: -9999;
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_578d836b-154d-94e5-9933-ce86814853cc-985f8232, #w-node-b47a2b32-34e7-bab4-86c0-4e4e1ea3ae84-985f8232, #w-node-_2358bd94-761a-10da-a529-42ddda30fad1-985f8232, #w-node-_66c65c79-392a-5ed9-c8aa-3665f6b7a0dd-985f8232 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-fe3f5d41-a7cb-ddec-8fa4-c5a59da81af1-9da81aee {
  justify-self: start;
}

#w-node-fe3f5d41-a7cb-ddec-8fa4-c5a59da81afa-9da81aee, #w-node-_6c761e48-3331-ee91-1eb7-cefc6654ef49-9da81aee, #w-node-a333922d-5a04-15f1-b76f-6837bd0765ec-9da81aee, #w-node-ff34913b-40a8-fb57-eb18-07d1dc0eff50-9da81aee {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_19058ac5-7893-1ade-515f-3b0287cd14c3-9da81aee, #w-node-_10d7f0a4-eda7-2342-a4bf-e78d88e12e69-9da81aee {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_15ae67e1-59dd-2336-b967-272fc0f7ecf3-87a13f24 {
  justify-self: start;
}

#w-node-_15ae67e1-59dd-2336-b967-272fc0f7ecf5-87a13f24 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: stretch stretch;
}

#w-node-_15ae67e1-59dd-2336-b967-272fc0f7ee76-87a13f24 {
  justify-self: end;
}

#w-node-e84a265c-ce92-8ac7-ada7-1cbbca4ded3b-985f823d, #w-node-_51b80468-56c4-d5b6-9ef4-6879bf3e201f-985f823d, #w-node-_84f40741-eab6-55aa-8e54-93bc6829bc4d-985f823f, #w-node-_84f40741-eab6-55aa-8e54-93bc6829bc4f-985f823f, #w-node-_84f40741-eab6-55aa-8e54-93bc6829bc51-985f823f, #w-node-d0d28c9d-3f4a-911f-ddb5-9a8c20d7cbb9-985f8246, #w-node-d0d28c9d-3f4a-911f-ddb5-9a8c20d7cbc6-985f8246, #w-node-d0d28c9d-3f4a-911f-ddb5-9a8c20d7cbd3-985f8246, #w-node-d0d28c9d-3f4a-911f-ddb5-9a8c20d7cbe0-985f8246, #w-node-f851fa32-e460-ec9d-4700-681f0d6100c8-985f824d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_93b7758d-9601-b818-9ae3-938d64c2260f-985f824d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_3dcaec96-9259-c26c-c1b6-3e06ab2883d9-985f824d, #w-node-_169b6946-1961-7c8a-bdd3-a0f20d6602d9-985f824d, #w-node-c6bdf6c7-0b5f-1307-1d1f-b3b7d3b4e320-985f824d, #w-node-d0514c75-1075-504d-054c-adb2f6155d2a-985f824d, #w-node-_3dcaec96-9259-c26c-c1b6-3e06ab2883f3-985f824d, #w-node-_57635602-3cc2-a07a-0819-dbbdeca6eaed-985f824e, #w-node-_126e9434-a01b-2d3a-9b6c-d4b45a13583a-985f824e, #w-node-f48a73e1-abbf-6732-f238-e6d50cefeacd-985f824e, #w-node-bd1f5ffb-ee5a-723b-1ee1-2c33d6ae8fc5-985f824e, #w-node-e77ef5cf-8588-b39b-036f-421e78f4e672-985f824e, #w-node-cc9ea56a-e7ba-30ba-1ddd-e73ccad7e3f1-985f824e, #w-node-e726a55f-5c48-a615-20ed-c024b1fa6d02-985f824e, #w-node-_10b90f8d-136e-2701-136e-6974dc659dd5-985f824e, #w-node-eb079425-699b-c27c-f758-8b24cb668d02-985f824e, #w-node-eb079425-699b-c27c-f758-8b24cb668d04-985f824e, #w-node-eb079425-699b-c27c-f758-8b24cb668d06-985f824e, #w-node-eb079425-699b-c27c-f758-8b24cb668d08-985f824e, #w-node-eb079425-699b-c27c-f758-8b24cb668d0a-985f824e, #w-node-eb079425-699b-c27c-f758-8b24cb668d0c-985f824e, #w-node-ac3a8a88-b3e6-4ea1-c562-c36307776f0c-985f824f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ac3a8a88-b3e6-4ea1-c562-c36307776f0e-985f824f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_25642563-2ffa-007b-d3e7-b3c83943e91f-985f8250 {
  align-self: center;
}

#w-node-cffaef48-2b4e-5eda-7d8d-768fd6d4b67b-d6d4b66c.w-node-_25642563-2ffa-007b-d3e7-b3c83943e92e-985f8250 {
  grid-area: 2 / 2 / 6 / 9;
}

#w-node-cffaef48-2b4e-5eda-7d8d-768fd6d4b67d-d6d4b66c.w-node-_25642563-2ffa-007b-d3e7-b3c83943e930-985f8250 {
  grid-area: 5 / 1 / 7 / 4;
  align-self: center;
}

#w-node-cffaef48-2b4e-5eda-7d8d-768fd6d4b67f-d6d4b66c.w-node-_25642563-2ffa-007b-d3e7-b3c83943e932-985f8250 {
  grid-area: 1 / 6 / 3 / 10;
  align-self: center;
}

#w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5b0-1e06e5ad.w-node-dee9604f-3253-a9b8-0bad-cf00adc57831-985f8250, #w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5b5-1e06e5ad.w-node-dee9604f-3253-a9b8-0bad-cf00adc57839-985f8250, #w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5ba-1e06e5ad.w-node-dee9604f-3253-a9b8-0bad-cf00adc57844-985f8250, #w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5ba-1e06e5ad.w-node-dee9604f-3253-a9b8-0bad-cf00adc5784c-985f8250, #w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5ba-1e06e5ad.w-node-dee9604f-3253-a9b8-0bad-cf00adc5785a-985f8250 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5b0-1e06e5ad.w-node-_3d92fbd7-0f6a-b2dc-fc03-965876a193a6-985f8250 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_3d92fbd7-0f6a-b2dc-fc03-965876a193a7-985f8250 {
  align-self: auto;
}

#w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5b5-1e06e5ad.w-node-_3d92fbd7-0f6a-b2dc-fc03-965876a193af-985f8250, #w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5ba-1e06e5ad.w-node-_3d92fbd7-0f6a-b2dc-fc03-965876a193b8-985f8250, #w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5ba-1e06e5ad.w-node-_3d92fbd7-0f6a-b2dc-fc03-965876a193c2-985f8250, #w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5ba-1e06e5ad.w-node-_3d92fbd7-0f6a-b2dc-fc03-965876a193ce-985f8250, #w-node-_0e5e29ba-f675-1e16-1118-9d5b1e06e5ba-1e06e5ad.w-node-_3d92fbd7-0f6a-b2dc-fc03-965876a193d7-985f8250, #w-node-_254f0219-03e1-29d9-5645-a6a657eca21e-985f8251, #w-node-_254f0219-03e1-29d9-5645-a6a657eca220-985f8251, #w-node-_254f0219-03e1-29d9-5645-a6a657eca222-985f8251, #w-node-c17a3059-95f1-1fb6-e5b9-72690cb0484e-985f8252, #w-node-c17a3059-95f1-1fb6-e5b9-72690cb04850-985f8252, #w-node-c17a3059-95f1-1fb6-e5b9-72690cb04852-985f8252 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1ee9e65-4038-5bc0-6419-2892138089c2-985f8254 {
  align-self: start;
}

#w-node-e1ee9e65-4038-5bc0-6419-2892138089c8-985f8254 {
  justify-self: start;
}

#w-node-e1ee9e65-4038-5bc0-6419-2892138089cf-985f8254 {
  place-self: center;
}

#w-node-e1ee9e65-4038-5bc0-6419-2892138089d1-985f8254 {
  order: -9999;
}

#w-node-e1ee9e65-4038-5bc0-6419-2892138089d5-985f8254 {
  justify-self: center;
}

#w-node-e1ee9e65-4038-5bc0-6419-2892138089dc-985f8254 {
  place-self: center;
}

#w-node-e1ee9e65-4038-5bc0-6419-2892138089e2-985f8254 {
  place-self: end center;
}

#w-node-_9c7c5f28-8956-6873-5a91-510e726cfaac-985f8255 {
  justify-self: auto;
}

#w-node-d1fd30f0-4c67-2e00-325a-797910ea4f15-985f8255, #w-node-d1fd30f0-4c67-2e00-325a-797910ea4f42-985f8255 {
  align-self: center;
}

#w-node-_8fa69c96-7a11-3375-82cc-9964b481c0c9-985f827e, #w-node-_8fa69c96-7a11-3375-82cc-9964b481c0cf-985f827e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8fa69c96-7a11-3375-82cc-9964b481c0d7-985f827e, #w-node-_75f827c4-5f26-2732-92c1-70fd187d1699-985f8292, #w-node-_75f827c4-5f26-2732-92c1-70fd187d16c1-985f8292, #w-node-_75f827c4-5f26-2732-92c1-70fd187d16e1-985f8292, #w-node-_5da79108-e132-64df-872f-4cc7f6573ca5-985f82a3, #w-node-_5da79108-e132-64df-872f-4cc7f6573ccf-985f82a3, #w-node-_5da79108-e132-64df-872f-4cc7f6573cea-985f82a3, #w-node-_486e176c-dd63-da18-f2a2-d4362a600547-985f82a4, #w-node-_486e176c-dd63-da18-f2a2-d4362a600575-985f82a4, #w-node-_486e176c-dd63-da18-f2a2-d4362a600596-985f82a4, #w-node-ac789c25-4a56-d5db-9972-f3926c17dcda-985f82a5, #w-node-_9d6c1213-7ab9-942a-36f5-1cf6ff5c4a61-985f82a5, #w-node-_9d6c1213-7ab9-942a-36f5-1cf6ff5c4a8f-985f82a5, #w-node-_9d6c1213-7ab9-942a-36f5-1cf6ff5c4ab1-985f82a5, #w-node-_90b35ffe-0e45-b573-3822-7206cf8b0f35-985f82a6, #w-node-_90b35ffe-0e45-b573-3822-7206cf8b0f5d-985f82a6, #w-node-_90b35ffe-0e45-b573-3822-7206cf8b0f85-985f82a6, #w-node-_5cd488f5-84d1-30e7-8290-be618fc91c9c-985f82b8, #w-node-_5cd488f5-84d1-30e7-8290-be618fc91cc6-985f82b8, #w-node-_5cd488f5-84d1-30e7-8290-be618fc91ce8-985f82b8 {
  order: -9999;
}

#w-node-_58a3509e-7c5a-4fc1-5847-b1a579c6ecff-985f82b9 {
  align-self: center;
}

#w-node-_58a3509e-7c5a-4fc1-5847-b1a579c6ed16-985f82b9, #w-node-_58a3509e-7c5a-4fc1-5847-b1a579c6ed38-985f82b9, #w-node-_58a3509e-7c5a-4fc1-5847-b1a579c6ed5c-985f82b9, #w-node-c3143d20-9679-d13f-4f13-1cf38d136f3e-985f82ba, #w-node-c3143d20-9679-d13f-4f13-1cf38d136f6f-985f82ba, #w-node-_7fd71386-563f-7f32-1c68-90467bfbb1aa-985f82bb, #w-node-_7fd71386-563f-7f32-1c68-90467bfbb1d2-985f82bb, #w-node-_7fd71386-563f-7f32-1c68-90467bfbb1f4-985f82bb, #w-node-_197a492a-4d60-ea28-5a6d-3d7afe583c8d-985f82bc, #w-node-_197a492a-4d60-ea28-5a6d-3d7afe583cb5-985f82bc, #w-node-fae25a48-c856-ee84-07b4-709fe6abacc0-985f82bd, #w-node-fae25a48-c856-ee84-07b4-709fe6abacee-985f82bd, #w-node-fae25a48-c856-ee84-07b4-709fe6abad10-985f82bd, #w-node-_307cc291-1c34-946c-d6ef-3593869302c9-985f82be, #w-node-_307cc291-1c34-946c-d6ef-3593869302f7-985f82be, #w-node-_307cc291-1c34-946c-d6ef-359386930319-985f82be, #w-node-c4314b02-68d8-f518-0c5f-a1c90c02a43f-985f82bf, #w-node-bcc85091-d1de-0b50-4adf-deff90f20745-985f82bf, #w-node-bcc85091-d1de-0b50-4adf-deff90f2076d-985f82bf, #w-node-bcc85091-d1de-0b50-4adf-deff90f2078f-985f82bf, #w-node-c41c184d-e00a-26b3-5437-ecbf2953754c-985f82c0, #w-node-b9fbe5ce-c4a7-431d-e038-fa14bbbc845c-985f82c0, #w-node-b9fbe5ce-c4a7-431d-e038-fa14bbbc8487-985f82c0, #w-node-b9fbe5ce-c4a7-431d-e038-fa14bbbc84ac-985f82c0, #w-node-_451971c0-db80-bcd2-46c1-c384080a73a2-985f82c1, #w-node-ae143c6c-85d2-89e5-2a10-aefbd3c0c83c-985f82c1, #w-node-ae143c6c-85d2-89e5-2a10-aefbd3c0c867-985f82c1, #w-node-ae143c6c-85d2-89e5-2a10-aefbd3c0c889-985f82c1, #w-node-ad2dd696-d6fc-de80-cad0-19d2dae715fc-985f82d3, #w-node-ad2dd696-d6fc-de80-cad0-19d2dae71642-985f82d3, #w-node-ad2dd696-d6fc-de80-cad0-19d2dae71668-985f82d3, #w-node-_53b7ac37-41d9-19f1-1a42-884119e67f15-985f82d4, #w-node-_53b7ac37-41d9-19f1-1a42-884119e67f4c-985f82d4, #w-node-_53b7ac37-41d9-19f1-1a42-884119e67f72-985f82d4, #w-node-_53b7ac37-41d9-19f1-1a42-884119e67f94-985f82d4 {
  order: -9999;
}

@media screen and (max-width: 991px) {
  #w-node-_0712a2a7-81e2-0411-2372-e2591186b2fa-1186b2f7.w-node-b0fc6f07-0aca-b03b-b75c-698e75d1f91f-985f8232, #w-node-_0712a2a7-81e2-0411-2372-e2591186b2fa-1186b2f7.w-node-b0fc6f07-0aca-b03b-b75c-698e75d1f92c-985f8232 {
    order: 9999;
  }

  #w-node-e1ee9e65-4038-5bc0-6419-2892138089c2-985f8254 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e1ee9e65-4038-5bc0-6419-2892138089cd-985f8254 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_433ad58a-0f01-7de9-fe94-09f172289f2d-985f8259, #w-node-_917193f4-87b6-e772-0913-962cd7df4af0-985f8259, #w-node-b1c178e9-a865-689b-0e74-d7a590186a35-985f825a, #w-node-aa0a6604-2d1d-e3dc-fab8-c9f2a9298fb8-985f825a, #w-node-ed90ff96-e2ac-8df7-2b5e-cf9548588c13-985f825a, #w-node-d9af707d-5bae-960b-ff78-35c92d247ac1-985f827e, #w-node-_8fa69c96-7a11-3375-82cc-9964b481c0d8-985f827e, #w-node-af346ffc-74d1-ac07-cbbb-d463e5190037-985f8292, #w-node-_75f827c4-5f26-2732-92c1-70fd187d169a-985f8292, #w-node-_75f827c4-5f26-2732-92c1-70fd187d16c2-985f8292, #w-node-_75f827c4-5f26-2732-92c1-70fd187d16e2-985f8292, #w-node-_5da79108-e132-64df-872f-4cc7f6573c5b-985f82a3, #w-node-_5da79108-e132-64df-872f-4cc7f6573ca6-985f82a3, #w-node-_5da79108-e132-64df-872f-4cc7f6573cd0-985f82a3, #w-node-_5da79108-e132-64df-872f-4cc7f6573ceb-985f82a3, #w-node-_486e176c-dd63-da18-f2a2-d4362a600501-985f82a4, #w-node-_486e176c-dd63-da18-f2a2-d4362a600548-985f82a4, #w-node-_486e176c-dd63-da18-f2a2-d4362a600576-985f82a4, #w-node-_486e176c-dd63-da18-f2a2-d4362a600597-985f82a4, #w-node-ac789c25-4a56-d5db-9972-f3926c17dc99-985f82a5, #w-node-ac789c25-4a56-d5db-9972-f3926c17dcdb-985f82a5, #w-node-_9d6c1213-7ab9-942a-36f5-1cf6ff5c4a62-985f82a5, #w-node-_9d6c1213-7ab9-942a-36f5-1cf6ff5c4a90-985f82a5, #w-node-_9d6c1213-7ab9-942a-36f5-1cf6ff5c4ab2-985f82a5, #w-node-_90b35ffe-0e45-b573-3822-7206cf8b0ef5-985f82a6, #w-node-_90b35ffe-0e45-b573-3822-7206cf8b0f36-985f82a6, #w-node-_90b35ffe-0e45-b573-3822-7206cf8b0f5e-985f82a6, #w-node-_90b35ffe-0e45-b573-3822-7206cf8b0f86-985f82a6, #w-node-_5cd488f5-84d1-30e7-8290-be618fc91c7e-985f82b8, #w-node-_5cd488f5-84d1-30e7-8290-be618fc91c9d-985f82b8, #w-node-_5cd488f5-84d1-30e7-8290-be618fc91cc7-985f82b8, #w-node-_5cd488f5-84d1-30e7-8290-be618fc91ce9-985f82b8, #w-node-_58a3509e-7c5a-4fc1-5847-b1a579c6ed17-985f82b9, #w-node-_58a3509e-7c5a-4fc1-5847-b1a579c6ed39-985f82b9, #w-node-_58a3509e-7c5a-4fc1-5847-b1a579c6ed5d-985f82b9, #w-node-c3143d20-9679-d13f-4f13-1cf38d136f1a-985f82ba, #w-node-c3143d20-9679-d13f-4f13-1cf38d136f3f-985f82ba, #w-node-c3143d20-9679-d13f-4f13-1cf38d136f70-985f82ba, #w-node-c3143d20-9679-d13f-4f13-1cf38d136f94-985f82ba, #w-node-_7fd71386-563f-7f32-1c68-90467bfbb183-985f82bb, #w-node-_7fd71386-563f-7f32-1c68-90467bfbb188-985f82bb, #w-node-_7fd71386-563f-7f32-1c68-90467bfbb1ab-985f82bb, #w-node-_7fd71386-563f-7f32-1c68-90467bfbb1d3-985f82bb, #w-node-_7fd71386-563f-7f32-1c68-90467bfbb1f5-985f82bb, #w-node-_197a492a-4d60-ea28-5a6d-3d7afe583c5b-985f82bc, #w-node-_197a492a-4d60-ea28-5a6d-3d7afe583c8e-985f82bc, #w-node-_197a492a-4d60-ea28-5a6d-3d7afe583cb6-985f82bc, #w-node-_95f0da53-6e89-b700-4987-06e1b52c1035-985f82bd, #w-node-fae25a48-c856-ee84-07b4-709fe6abacc1-985f82bd, #w-node-fae25a48-c856-ee84-07b4-709fe6abacef-985f82bd, #w-node-fae25a48-c856-ee84-07b4-709fe6abad11-985f82bd, #w-node-_3f45d4bf-03a1-86cb-c499-f40808c62ab1-985f82be, #w-node-_3f45d4bf-03a1-86cb-c499-f40808c62ab6-985f82be, #w-node-_307cc291-1c34-946c-d6ef-3593869302ca-985f82be, #w-node-_307cc291-1c34-946c-d6ef-3593869302f8-985f82be, #w-node-_307cc291-1c34-946c-d6ef-35938693031a-985f82be, #w-node-c4314b02-68d8-f518-0c5f-a1c90c02a440-985f82bf, #w-node-bcc85091-d1de-0b50-4adf-deff90f20746-985f82bf, #w-node-bcc85091-d1de-0b50-4adf-deff90f2076e-985f82bf, #w-node-bcc85091-d1de-0b50-4adf-deff90f20790-985f82bf, #w-node-c41c184d-e00a-26b3-5437-ecbf2953754d-985f82c0, #w-node-b9fbe5ce-c4a7-431d-e038-fa14bbbc845d-985f82c0, #w-node-b9fbe5ce-c4a7-431d-e038-fa14bbbc8488-985f82c0, #w-node-b9fbe5ce-c4a7-431d-e038-fa14bbbc84ad-985f82c0, #w-node-_451971c0-db80-bcd2-46c1-c384080a73a3-985f82c1, #w-node-ae143c6c-85d2-89e5-2a10-aefbd3c0c83d-985f82c1, #w-node-ae143c6c-85d2-89e5-2a10-aefbd3c0c868-985f82c1, #w-node-ae143c6c-85d2-89e5-2a10-aefbd3c0c88a-985f82c1, #w-node-ad2dd696-d6fc-de80-cad0-19d2dae715fd-985f82d3, #w-node-ad2dd696-d6fc-de80-cad0-19d2dae71643-985f82d3, #w-node-ad2dd696-d6fc-de80-cad0-19d2dae71669-985f82d3, #w-node-_53b7ac37-41d9-19f1-1a42-884119e67f16-985f82d4, #w-node-_53b7ac37-41d9-19f1-1a42-884119e67f4d-985f82d4, #w-node-_53b7ac37-41d9-19f1-1a42-884119e67f73-985f82d4, #w-node-_53b7ac37-41d9-19f1-1a42-884119e67f95-985f82d4, #w-node-_9b33f105-1e8f-17c3-c7fb-b0c784b14687-985f82d7 {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e1ee9e65-4038-5bc0-6419-2892138089c2-985f8254 {
    grid-column: span 1 / span 1;
  }

  #w-node-e1ee9e65-4038-5bc0-6419-2892138089cd-985f8254 {
    grid-column-end: 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_35b0fea6-14e2-7a37-9f1d-4b9df415a9b5-985f8232, #w-node-_48ac7e87-ac3b-d756-18de-f44e2fdf6148-985f8232, #w-node-b47a2b32-34e7-bab4-86c0-4e4e1ea3ae84-985f8232, #w-node-_66c65c79-392a-5ed9-c8aa-3665f6b7a0dd-985f8232 {
    order: 9999;
  }

  #w-node-_51b80468-56c4-d5b6-9ef4-6879bf3e201f-985f823d {
    order: -9999;
  }

  #w-node-d1fd30f0-4c67-2e00-325a-797910ea4f42-985f8255 {
    order: 9999;
  }
}


@font-face {
  font-family: 'Garamond';
  src: url('../assets/garamond.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-ExtraBold.woff2') format('woff2'), url('../assets/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-BoldItalic.woff2') format('woff2'), url('../assets/Poppins-ExtraBoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-ExtraLightItalic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/Poppins-ThinItalic.woff2') format('woff2');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cinzel variablefont wght';
  src: url('../assets/Cinzel-VariableFont_wght.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
/* ── Navbar centering fix ── */
@media screen and (min-width: 992px) {
  /* Container ocupa 90% da tela e fica centralizado */
  .navbar-3 .padding-global {
    justify-content: center;
  }
  .navbar_container-2 {
    width: 90%;
    max-width: 90%;
  }
  /* Stretch navbar_menu to fill the 1fr grid column */
  .navbar_menu {
    position: relative;
    justify-content: center;
    /* pad-right = lang selector width so nav links are truly centered between logo and lang */
    padding-right: 120px;
  }
  /* Center the desktop nav links */
  .navbar_desktop-view {
    justify-content: center;
  }
  /* Pin language selector to the right edge (outside the padding zone) */
  .navbar_menu .hide-tablet.nav-button-wrapper.language-selector {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ── Crisalix Fixed Top Banner ── */
.crisalix-header .crisalix-widget-micro {
  display: flex !important;
  justify-content: center !important;
  width: 100%;
}
@media (max-width: 768px) {
  .crisalix-header .crisalix-widget-micro {
    flex-direction: row !important;
  }
  .crisalix-header .crisalix-widget-micro .crisalix-widget-logo {
    order: initial !important;
    margin-top: 0 !important;
    margin-right: 20px !important;
  }
  .crisalix-header .crisalix-widget-micro__content {
    flex-direction: row !important;
    align-items: center !important;
    gap: 4px;
  }
  .crisalix-header .crisalix-widget-rate-text,
  .crisalix-header .carousel-reviews-count {
    font-size: 12px;
  }
  .crisalix-header .crisalix-widget-stars__rating__svg {
    width: 17px !important;
    height: 17px !important;
  }
}
html:not(.wf-editor) body {
  padding-top: 56px;
}

/* ── Preloader Progress Bar ── */
#preloader-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #b29158, #dbc08d, #b29158);
  background-size: 200% 100%;
  box-shadow: 0 0 8px rgba(178, 145, 88, 0.5);
  z-index: var(--z-preloader-bar);
  pointer-events: none;
  animation: preloader-shimmer 1.2s linear infinite;
}
@keyframes preloader-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ── Video Player Customizado – Espaco Unique ── */
.video-container-unique {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;          /* remove gap abaixo do <video> */
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.32) 100%);
  border-radius: 8px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.35s ease, background 0.3s ease;
}

.video-play-overlay:hover {
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.42) 100%);
}

.video-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), filter 0.3s ease;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.55));
}

.video-play-btn svg {
  width: 88px;
  height: 88px;
  display: block;
}

.video-play-overlay:hover .video-play-btn {
  transform: scale(1.12);
  filter: drop-shadow(0 6px 28px rgba(219,192,141,0.70));
}

@media (max-width: 767px) {
  .video-play-btn svg {
    width: 68px;
    height: 68px;
  }
}

.site-breadcrumb-wrapper {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(178, 145, 88, 0.10);
  padding: 14px 20px;
}
.site-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #ffffffb3;
  flex-wrap: wrap;
}
.site-breadcrumb a {
  color: #dbc08d;
  text-decoration: none;
}
.site-breadcrumb a:hover {
  text-decoration: underline;
}
.site-breadcrumb .separator-img {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}
.site-breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 500;
}

.related-surgeries {
  background: #0e0f12;
  padding: 60px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.related-surgeries__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.related-surgeries__title {
  color: #dbc08d;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 28px;
  text-align: center;
}
.related-surgeries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.related-surgeries__card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #1a1b1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.related-surgeries__card:hover {
  border-color: #dbc08d;
  transform: translateY(-2px);
}
.related-surgeries__card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #0e0f12;
}
.related-surgeries__card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
}
.related-surgeries__card-body::after {
  content: '→';
  color: #dbc08d;
  font-weight: 600;
}

/* ========================================================================
   Página /sobre/conheca.html — editorial premium (2026-04-28)
   ghost numbers + dropcaps + asymmetric grids
   ======================================================================== */

/* —— atomic helpers —— */
.conheca-dropcap::first-letter {
  font-family: 'Poppins', sans-serif;
  font-size: 4em;
  font-weight: 300;
  float: left;
  line-height: 0.9;
  margin: 4px 14px -2px 0;
  color: var(--burlywood);
}
.conheca-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--burlywood);
  opacity: 0.85;
  text-indent: 0.42em;
}
.conheca-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 38px;
  background: var(--dark-goldenrod);
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--dark-goldenrod);
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease, transform 0.25s ease;
}
.conheca-cta:hover {
  background: transparent;
  color: var(--burlywood);
  border-color: var(--burlywood);
  letter-spacing: 0.38em;
  transform: translateY(-1px);
}
.conheca-cta--lg {
  min-height: 62px;
  padding: 18px 60px;
  font-size: 13px;
  letter-spacing: 0.36em;
  text-indent: 0.36em;
}

/* —— scroll reveal (graceful sem JS) —— */
.conheca-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.conheca-reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .conheca-reveal { opacity: 1; transform: none; transition: none; }
}

/* —— [1] HERO —— */
.site-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86vh;
  padding: 140px 24px 100px;
  overflow: hidden;
  background: #050505;
}
.site-hero__bg { position: absolute; inset: 0; z-index: 0; }
.site-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.78) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(5,5,5,0.85) 100%);
}
.site-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%) contrast(1.05) brightness(0.9);
}
.site-hero__frame {
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(178, 145, 88, 0.22);
  pointer-events: none;
  z-index: 1;
}
.site-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.site-hero__title {
  margin: 4px 0 8px;
  font-size: clamp(41px, 6vw, 89px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--burlywood);
  text-transform: uppercase;
}
.site-hero__rule {
  display: none !important;
}
.site-hero__sub {
  margin: 18px auto 0;
  max-width: 720px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  text-align: center;
}
.site-hero__sub strong {
  color: var(--burlywood);
  font-weight: 500;
}

/* —— [2] STATEMENT —— */
.conheca-statement {
  background: #0a0a0a;
  padding: 120px 24px;
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}
.conheca-statement__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.conheca-statement__text {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(17px, 1.35vw, 19px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.005em;
  text-align: left;
}

/* —— [3] CHAPTERS — sistema editorial —— */
.conheca-chapter {
  position: relative;
  background: #0a0a0a;
  padding: 140px 24px;
  border-top: 1px solid rgba(178, 145, 88, 0.10);
  overflow: hidden;
}
.conheca-chapter__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.conheca-chapter__inner--narrow { max-width: 720px; text-align: center; }
.conheca-chapter__num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: var(--burlywood);
  opacity: 0.85;
  margin-bottom: 22px;
}
.conheca-chapter__title {
  margin: 0 0 36px;
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--burlywood);
  text-transform: uppercase;
}
.conheca-chapter__body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 1.05vw, 16.5px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}
.conheca-chapter__ghost {
  position: absolute;
  top: -28px;
  right: -8px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0;
  -webkit-text-stroke: 1px rgba(178, 145, 88, 0.18);
  -webkit-text-fill-color: transparent;
  color: transparent;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* —— [3a] split — asymmetric 7/5 —— */
.conheca-chapter--split .conheca-chapter__inner--split {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 96px;
  align-items: center;
  position: relative;
}
.conheca-chapter--reverse .conheca-chapter__inner--split {
  grid-template-columns: 5fr 7fr;
}
.conheca-chapter--reverse .conheca-chapter__media { order: 2; }
.conheca-chapter--reverse .conheca-chapter__content { order: 1; }
.conheca-chapter__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.conheca-chapter__media::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  z-index: 1;
  pointer-events: none;
  transition: inset 0.5s ease;
}
.conheca-chapter__media:hover::before { inset: 8px; }
.conheca-chapter__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.04) brightness(0.95);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.conheca-chapter__media:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.06) brightness(1);
}
.conheca-chapter__content {
  position: relative;
  z-index: 1;
}
.conheca-chapter--split .conheca-chapter__ghost {
  font-size: clamp(180px, 24vw, 360px);
  top: -64px;
  right: -28px;
  opacity: 0.9;
}
.conheca-chapter--reverse .conheca-chapter__ghost {
  right: auto;
  left: -28px;
}

/* —— [3b] text-only — Unique Travel —— */
.conheca-chapter--text .conheca-chapter__inner {
  text-align: center;
}
.conheca-chapter--text .conheca-chapter__ghost {
  top: -40px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  font-size: clamp(180px, 28vw, 380px);
}
.conheca-chapter--text .conheca-chapter__body {
  margin: 0 auto;
  max-width: 640px;
  text-align: left;
}
.conheca-chapter--text::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  margin: 56px auto 0;
  background: var(--burlywood);
  opacity: 0.35;
  letter-spacing: 0;
}

/* —— [3c] showcase — Tecnologias —— */
.conheca-chapter--showcase {
  padding-bottom: 160px;
}
.conheca-chapter--showcase .conheca-chapter__inner { text-align: center; }
.conheca-chapter--showcase .conheca-chapter__ghost {
  top: -44px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  font-size: clamp(180px, 26vw, 360px);
}
.conheca-tech {
  list-style: none;
  margin: 72px 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.conheca-tech__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.conheca-tech__figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(178, 145, 88, 0.16);
  transition: border-color 0.4s ease;
}
.conheca-tech__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.45));
  pointer-events: none;
  z-index: 1;
}
.conheca-tech__item:hover .conheca-tech__figure {
  border-color: rgba(219, 192, 141, 0.6);
}
.conheca-tech__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.04) brightness(0.92);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.conheca-tech__item:hover img {
  filter: grayscale(0%) contrast(1.08) brightness(1);
  transform: scale(1.04);
}
.conheca-tech__name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  color: var(--burlywood);
  opacity: 0.9;
}
.conheca-chapter__caption {
  margin: 24px auto 0;
  max-width: 580px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

/* —— [4] CLOSING —— */
.conheca-closing {
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  padding: 120px 24px 140px;
  border-top: 1px solid rgba(178, 145, 88, 0.18);
  text-align: center;
}
.conheca-closing__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* —— responsive —— */
@media (max-width: 991px) {
  .site-hero { min-height: 70vh; padding: 110px 20px 80px; }
  .site-hero__frame { inset: 20px; }
  .conheca-statement { padding: 90px 20px; }
  .conheca-chapter { padding: 100px 20px; }
  .conheca-chapter__title { margin-bottom: 28px; }
  .conheca-chapter--split .conheca-chapter__inner--split,
  .conheca-chapter--reverse .conheca-chapter__inner--split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .conheca-chapter--reverse .conheca-chapter__media { order: 0; }
  .conheca-chapter--reverse .conheca-chapter__content { order: 0; }
  .conheca-chapter__media { aspect-ratio: 3 / 2; }
  .conheca-chapter__ghost,
  .conheca-chapter--split .conheca-chapter__ghost,
  .conheca-chapter--reverse .conheca-chapter__ghost,
  .conheca-chapter--text .conheca-chapter__ghost,
  .conheca-chapter--showcase .conheca-chapter__ghost {
    top: -22px;
    right: -8px;
    left: auto;
    transform: none;
    font-size: clamp(120px, 28vw, 200px);
  }
  .conheca-tech { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .conheca-dropcap::first-letter {
    font-size: 3.6em;
    margin-right: 10px;
  }
}
@media (max-width: 575px) {
  .site-hero__frame { display: none; }
  .conheca-chapter { padding: 72px 20px; }
  .conheca-chapter--showcase { padding-bottom: 96px; }
  .conheca-tech { grid-template-columns: repeat(2, 1fr); margin-top: 48px; gap: 18px; }
  .conheca-tech__item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  .conheca-closing { padding: 80px 20px 96px; }
  .conheca-dropcap::first-letter { font-size: 3.2em; }
}

/* ========================================================================
   SISTEMA UNIFICADO DE BOTÕES — sitewide (2026-04-28)
   Padrão: gold filled, square (radius 0), letter-spaced uppercase
   Hover: inverte pra ghost (transparent + gold text + gold border)
          + letter-spacing expande + lift -1px
   Variantes: primary (filled), ghost (outlined), text (link),
              sm/lg (tamanhos)
   ======================================================================== */

/* —— PRIMARY (filled gold) —— */
a.btn,
a.btn.w-button,
a.btn-janela,
a.btn-janela.w-button,
a.btn-janela-2,
a.btn-janela-2.w-button,
a.btn-janela-copy,
a.btn-janela-copy.w-button,
a.btn-home,
a.btn-home.w-button,
a.btn-ebook,
a.btn-ebook.w-button,
a.btn-ebook-download,
a.btn-ebook-download.w-button,
a.btn-agendar-c,
a.btn-agendar-c.w-button,
a.btn-inicio-c,
a.btn-inicio-c.w-button,
a.btn-inicio-2b-copyd,
a.btn-inicio-2b-copyd.w-button,
a.botao-blog,
a.botao-blog.w-button,
a.botao-midia,
a.botao-midia.w-button,
button.cookie-btn.cookie-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  width: auto !important;
  height: auto !important;
  min-height: 52px !important;
  padding: 14px 36px !important;
  margin: 0 !important;
  background: var(--dark-goldenrod) !important;
  color: #1a1a1a !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.30em !important;
  text-indent: 0.30em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-align: center !important;
  white-space: normal !important;
  border: 1px solid var(--dark-goldenrod) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease, transform 0.25s ease !important;
}

a.btn:hover, a.btn.w-button:hover,
a.btn-janela:hover, a.btn-janela.w-button:hover,
a.btn-janela-2:hover, a.btn-janela-2.w-button:hover,
a.btn-janela-copy:hover, a.btn-janela-copy.w-button:hover,
a.btn-home:hover, a.btn-home.w-button:hover,
a.btn-ebook:hover, a.btn-ebook.w-button:hover,
a.btn-ebook-download:hover, a.btn-ebook-download.w-button:hover,
a.btn-agendar-c:hover, a.btn-agendar-c.w-button:hover,
a.btn-inicio-c:hover, a.btn-inicio-c.w-button:hover,
a.btn-inicio-2b-copyd:hover, a.btn-inicio-2b-copyd.w-button:hover,
a.botao-blog:hover, a.botao-blog.w-button:hover,
a.botao-midia:hover, a.botao-midia.w-button:hover,
button.cookie-btn.cookie-btn-primary:hover {
  background: transparent !important;
  color: var(--burlywood) !important;
  border-color: var(--burlywood) !important;
  letter-spacing: 0.36em !important;
  transform: translateY(-1px) !important;
}

/* —— GHOST (outlined) — pra fundos gold/claros ou ações secundárias —— */
.outline-button,
.outline-button.w-inline-block,
.cookie-btn.cookie-btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  width: auto !important;
  height: auto !important;
  min-height: 52px !important;
  padding: 14px 36px !important;
  margin: 0 !important;
  background: transparent !important;
  color: var(--burlywood) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.30em !important;
  text-indent: 0.30em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 1px solid var(--burlywood) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease, transform 0.25s ease !important;
}
.outline-button:hover, .outline-button.w-inline-block:hover,
.cookie-btn.cookie-btn-secondary:hover {
  background: var(--burlywood) !important;
  color: #1a1a1a !important;
  border-color: var(--burlywood) !important;
  letter-spacing: 0.36em !important;
  transform: translateY(-1px) !important;
}

/* —— TEXT (link minimal) — terciário —— */
.cookie-btn.cookie-btn-text,
.back-button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: transparent !important;
  color: var(--burlywood) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-indent: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(219, 192, 141, 0.4) !important;
  border-radius: 0 !important;
  padding: 8px 0 6px !important;
  cursor: pointer !important;
  transition: color 0.3s ease, border-color 0.3s ease !important;
}
.cookie-btn.cookie-btn-text:hover,
.back-button:hover {
  color: #fff !important;
  border-bottom-color: var(--burlywood) !important;
}

/* —— TAMANHOS — modificadores aplicáveis a primary/ghost —— */
.btn--lg, .btn-janela--lg, .conheca-cta--lg {
  min-height: 60px !important;
  padding: 18px 56px !important;
  letter-spacing: 0.34em !important;
  text-indent: 0.34em !important;
}
.btn--sm, .btn-janela--sm {
  min-height: 42px !important;
  padding: 10px 24px !important;
  font-size: 11px !important;
  letter-spacing: 0.26em !important;
  text-indent: 0.26em !important;
}

/* —— OVERRIDE: cookie banner — botões compactos pra caber no banner —— */
button.cookie-btn.cookie-btn-primary,
.cookie-btn.cookie-btn-secondary,
.cookie-btn.cookie-btn-text {
  min-height: 40px !important;
  padding: 8px 18px !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-indent: 0.18em !important;
}
.cookie-btn.cookie-btn-text {
  padding: 6px 0 4px !important;
  font-size: 11px !important;
}

/* —— EXCEÇÕES INTENCIONAIS (NÃO padronizar — icon-only/funcionais) ——
   .search-button, .navbar_search-button — busca (lupa SVG icon-only)
   .navbar_menu-button — hambúrguer mobile
   .lang-btn — bandeira do seletor de idioma (icon-only)
   .audio-btn-pause/play, .audio-play-btn, .video-play-btn — controles de mídia
   .filter-btn — chips de filtro (visual de tag)
   .whatsapp-btn — FAB flutuante (formato circular intencional)
   .w-password-page — página de senha (Webflow)
   .hide.w-button — submit hidden
   .nav-button-wrapper, .navbar_button-wrapper, .back-button-wrapper — wrappers
   ============================================================ */

/* ========================================================================
   FRAME UNIFICADO PARA IMAGEM+TEXTO (2026-04-28)
   Padrão referência: .conheca-chapter__media (página Conheça)
   Selectors:
     - .media-frame              : wrapper genérico (figure injetada via Python
                                   em .image-ebook, .image-26, .post-featured-image)
     - .related-surgeries__card  : cards "Outras cirurgias" (20 páginas)
     - .lite-video               : depoimentos em vídeo (home)
     - .conheca-tech__figure     : showcase tecnologias (conheça)
     - .conheca-chapter__media   : splits do conheça (já tinha tratamento próprio)
   Visual: cantos retos, frame inset gold 14px que fecha pra 8px no hover,
           imagem cresce scale(1.04), grayscale 15% → 0%, brighten.
   ======================================================================== */
.media-frame,
.related-surgeries__card,
.lite-video,
.conheca-tech__figure,
.conheca-chapter__media,
.video-container-unique,
.img-tecnologias {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 6px !important;
  margin: 0;
}
.img-tecnologias { margin-bottom: 20px !important; }
.media-frame::before,
.related-surgeries__card::before,
.lite-video::before,
.conheca-tech__figure::before,
.conheca-chapter__media::before,
.video-container-unique::before,
.img-tecnologias::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

/* .img-tecnologias é div com background-image (sem <img> filho) —
   move bg pro ::after pra escalar igual aos outros via transform: scale(1.04) */
.img-tecnologias {
  background: transparent !important;
}
.img-tecnologias::after {
  content: '';
  position: absolute;
  inset: 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}
.img-tecnologias:hover::after {
  transform: scale(1.04);
}
/* Cada variante carrega seu bg-image no ::after */
.img-tecnologias._1::after,
.img-tecnologias._1c::after,
.img-tecnologias._001::after { background-image: url('../assets/Argoplasma.webp'); }
.img-tecnologias._2::after,
.img-tecnologias._1d::after { background-image: url('../assets/Safer.webp'); }
.img-tecnologias._3::after,
.img-tecnologias._1e::after,
.img-tecnologias._003::after { background-image: url('../assets/Vibrolipo.webp'); }
.img-tecnologias._4::after,
.img-tecnologias._1f::after,
.img-tecnologias._002::after { background-image: url('../assets/Morpheus.webp'); }
.img-tecnologias._5::after { background-image: url('../assets/Bioimpedancia.webp'); }
.img-tecnologias._6::after { background-image: url('../assets/crisalix.webp'); }
.img-tecnologias._7::after { background-image: url('../assets/CM-Slim.webp'); }
.img-tecnologias._8::after { background-image: url('../assets/ultrassom-_1_.webp'); }
.img-tecnologias._9::after { background-image: url('../assets/CO2.webp'); }
.img-tecnologias._10::after { background-image: url('../assets/Ultraformer.webp'); }
.img-tecnologias._11::after { background-image: url('../assets/Microagulhamento.webp'); }
.img-tecnologias._12::after { background-image: url('../assets/ignite-rf.webp'); }
/* Variantes Laser CO₂ Fracionado em páginas de cirurgias faciais */
.img-tecnologias.d4::after,
.img-tecnologias.l2::after,
.img-tecnologias.n1::after,
.img-tecnologias.u1::after { background-image: url('../assets/CO2.webp'); }
/* Variantes Morpheus8® */
.img-tecnologias.d5::after,
.img-tecnologias.l3::after,
.img-tecnologias.n2::after,
.img-tecnologias.u2::after { background-image: url('../assets/Morpheus.webp'); }
/* Variantes LEDs e soroterapia regenerativa */
.img-tecnologias.d6::after,
.img-tecnologias.n3::after,
.img-tecnologias.u3::after { background-image: url('../assets/WhatsApp-Image-2025-06-17-at-11.41.42.webp'); }
/* Mentoplastia: Piezo (ultrassom) + Crisalix */
.img-tecnologias.p1::after { background-image: url('../assets/ultrassom-_1_.webp'); }
.img-tecnologias.p2::after { background-image: url('../assets/crisalix.webp'); }
.media-frame img,
.media-frame video,
.related-surgeries__card-img,
.lite-video img.lite-poster,
.conheca-tech__figure img,
.conheca-chapter__media img,
.video-container-unique > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.6s ease;
}
/* Override inline border-radius do video#video-unique */
#video-unique[style*="border-radius"] {
  border-radius: 0 !important;
}
.media-frame:hover img,
.related-surgeries__card:hover .related-surgeries__card-img,
.conheca-tech__figure:hover img,
.conheca-chapter__media:hover img {
  transform: scale(1.04);
}

/* Override: cards de "Outras cirurgias" precisam altura fixa pra grid uniforme.
   Sem isso, height: 100% (do bloco FRAME UNIFICADO acima) faz a imagem esticar
   pra preencher o card flex, e fica visualmente quebrado entre cards diferentes. */
.related-surgeries__card-img {
  height: 180px !important;
}

/* Garantir que play button e overlays do lite-video fiquem acima do frame */
.lite-video .lite-play,
.lite-video iframe,
.lite-video video {
  z-index: 3;
}

/* ========================================================================
   FOOTER REFINADO — padrão Conheça (2026-04-28)
   Override sitewide do `.footer-dark` em todas as 48 páginas
   ======================================================================== */
.footer-dark {
  background-color: #0a0a0a !important;
  border-bottom: none !important;
  border-top: 1px solid rgba(178, 145, 88, 0.15) !important;
  padding: 100px 0 40px !important;
  font-family: 'Poppins', sans-serif !important;
  color: rgba(255, 255, 255, 0.7) !important;
}
.footer-dark .div-block-117 {
  width: 100% !important;
  max-width: 1240px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  margin: 0 auto !important;
}
.footer-dark .footer-wrapper {
  grid-template-columns: 1.6fr 1.1fr 1.4fr 1.4fr 1fr !important;
  gap: 48px !important;
}
/* Brand column */
.footer-dark .footer-brand .image-28 {
  width: 80px !important;
  height: auto !important;
  margin-bottom: 28px !important;
  opacity: 0.95 !important;
}
.footer-dark .div-block-5 {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.footer-dark .text-block-12 {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}
.footer-dark .text-block-12:hover {
  color: var(--burlywood) !important;
}
/* Social icons row */
.footer-dark .div-block-99 {
  margin-top: 4px !important;
}
.footer-dark .nav-button-wrapper-copy {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin: 0 !important;
}
.footer-dark .nav-button-wrapper-copy .link-block {
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(178, 145, 88, 0.3) !important;
  border-radius: 50% !important;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease !important;
}
.footer-dark .nav-button-wrapper-copy .link-block:hover {
  border-color: var(--burlywood) !important;
  background-color: rgba(178, 145, 88, 0.08) !important;
  transform: translateY(-2px) !important;
}
.footer-dark .nav-button-wrapper-copy .image-31 {
  width: 16px !important;
  height: 16px !important;
  opacity: 0.85 !important;
  transition: opacity 0.25s ease !important;
}
.footer-dark .nav-button-wrapper-copy .link-block:hover .image-31 {
  opacity: 1 !important;
}
/* Column titles (eyebrow) */
.footer-dark .title-small-copy {
  color: var(--burlywood) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.32em !important;
  text-indent: 0.32em !important;
  text-transform: uppercase !important;
  margin: 0 0 28px 0 !important;
  opacity: 0.9 !important;
}
/* Links — remove decorative arrow img + refine typography */
.footer-dark .div-block-74 {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
.footer-dark .div-block-74 .image-32 {
  display: none !important;
}
.footer-dark .div-block-74 .image-32[alt^="Ícone Instagram"],
.footer-dark .div-block-74 .image-32[alt^="Ícone Youtube"],
.footer-dark .div-block-74 .image-32[alt^="TikTok"],
.footer-dark .div-block-74 .image-32[alt^="Ícone Facebook"] {
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  margin-right: 10px !important;
  opacity: 0.7 !important;
  vertical-align: middle !important;
}
.footer-dark .footer-link {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 0.015em !important;
  line-height: 1.5 !important;
  padding: 7px 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: color 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease !important;
}
.footer-dark .footer-link:hover {
  color: var(--burlywood) !important;
  letter-spacing: 0.04em !important;
}
.footer-dark .footer-link.w--current {
  color: var(--burlywood) !important;
}
/* Divider */
.footer-dark .footer-divider {
  background-color: rgba(178, 145, 88, 0.16) !important;
  height: 1px !important;
  margin: 80px 0 28px !important;
}
/* Bottom row */
.footer-dark .grid-25 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  align-items: center !important;
}
.footer-dark .footer-copyright-center,
.footer-dark .footer-copyright-center-copy {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 11px !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.6 !important;
}
.footer-dark .footer-copyright-center-copy {
  text-align: right !important;
}
.footer-dark .footer-copyright-center-copy .link {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}
.footer-dark .footer-copyright-center-copy .link:hover {
  color: var(--burlywood) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-dark { padding: 70px 0 32px !important; }
  .footer-dark .footer-wrapper {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }
  .footer-dark .footer-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    grid-column: 1 / -1 !important;
  }
  .footer-dark .footer-divider { margin: 56px 0 24px !important; }
  .footer-dark .grid-25 { grid-template-columns: 1fr !important; gap: 8px !important; }
  .footer-dark .footer-copyright-center-copy { text-align: left !important; }
}
@media (max-width: 575px) {
  .footer-dark .footer-wrapper { grid-template-columns: 1fr !important; gap: 36px !important; }
  .footer-dark .footer-content { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-dark .div-block-117 { padding-left: 20px !important; padding-right: 20px !important; }
}

/* ========================================================================
   STATS SECTION — números animados (home, 2026-04-29)
   ======================================================================== */
.stats-section {
  background-color: #0a0a0a;
  padding: clamp(96px, 11vw, 160px) 24px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  isolation: isolate;
}
.stats-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/UNIQUE-51-1.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.stats-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.9);
}
.stats-section__container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stats-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-card {
  position: relative;
  padding: 8px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.stat-card + .stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 96px;
  background: linear-gradient(180deg, transparent 0%, rgba(219, 192, 141, 0.45) 50%, transparent 100%);
}
.stat-card__number-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 1;
  color: var(--burlywood);
  letter-spacing: 0.01em;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.stat-card__number {
  display: inline-block;
  min-width: 1ch;
}
.stat-card__suffix {
  color: var(--dark-goldenrod);
  font-weight: 200;
  font-size: 0.7em;
  margin-left: 8px;
  align-self: center;
  line-height: 1;
}
.stat-card__sep {
  color: var(--dark-goldenrod);
  font-weight: 200;
  font-size: 0.85em;
  margin: 0 6px;
  opacity: 0.9;
}
.stat-card__label {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .stats-section__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 64px;
  }
  .stat-card:nth-child(odd)::before { display: none; }
  .stat-card:nth-child(2)::before {
    height: 80px;
  }
  .stat-card:nth-child(4)::before {
    height: 80px;
  }
}
@media (max-width: 575px) {
  .stats-section__grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
  .stat-card::before { display: none; }
  .stat-card + .stat-card { padding-top: 0; }
}

/* Método CPI section (home): centraliza coluna esquerda na vertical */
.grid-layout-2 > .div-block-10899 {
  align-self: center;
}

/* "O Resultado?" section (home): centraliza coluna esquerda na vertical */
.grid-526 > .div-block-1089954 {
  align-self: center;
}

/* ========================================================================
   TECNOLOGIAS SECTION — refinamento (home, 2026-04-29)
   ======================================================================== */
/* Cabeçalho com eyebrow + título refinado */
.tecno-heading {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 0 8px;
}
.tecno-heading__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--burlywood);
  opacity: 0.95;
}
.tecno-heading__title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 200 !important;
  font-size: clamp(36px, 4.4vw, 64px) !important;
  letter-spacing: -0.005em !important;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.1 !important;
}
.tecno-heading__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin-top: 8px;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

/* Flip cards refinados */
.c-card-front {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.c-card-front::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  pointer-events: none;
}
.c-card-back {
  border-radius: 6px;
  overflow: hidden;
}
.heading-38 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(18px, 1.6vw, 22px) !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}
.c-card-back .paragraph-21 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.005em;
}

/* Grid cards refinados — frame premium 6px + label uppercase + hover sutil */
.div-bloco-destaque.img {
  text-decoration: none;
  display: block;
}
.div-grade-funciona {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.div-grade-funciona .img-tecnologias {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  transition: none;
}
.div-grade-funciona .img-tecnologias::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.div-grade-funciona .img-tecnologias::after {
  transition: transform 0.6s ease, background-size 0.6s ease;
}
.div-bloco-destaque.img:hover .img-tecnologias::after {
  transform: scale(1.04);
}
.div-grade-funciona .text-block-38 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: var(--burlywood) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}
.div-grade-funciona .text-block-38 strong {
  font-weight: 400;
}
.div-grade-funciona .paragrafo-funciona {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  letter-spacing: 0.005em !important;
  margin: 0 !important;
}

/* Espaçamento da seção */
.tecno {
  padding-top: clamp(80px, 9vw, 120px);
  padding-bottom: clamp(60px, 7vw, 100px);
}
.tecno .container-75 {
  margin-top: clamp(48px, 6vw, 72px);
}
.tecno .grid-funciona-3-col {
  gap: clamp(32px, 3vw, 48px);
}

/* ========================================================================
   REFINED SECTION HEADING — pattern reutilizável (eyebrow + título + rule)
   Usado na home Tecnologias e na metodo-cpi (Como funciona / 7 Pilares /
   Resultados / Para quem é indicado).
   ======================================================================== */
.refined-heading {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  margin: 0 auto;
  padding: clamp(40px, 4vw, 56px) 0 clamp(14px, 1.6vw, 20px);
}
.refined-heading--left {
  align-items: flex-start;
  text-align: left;
  padding: 0;
  margin-bottom: 20px;
}
.refined-heading__eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--burlywood);
  opacity: 0.85;
}
.refined-heading__title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 200 !important;
  font-size: clamp(34px, 4vw, 56px) !important;
  letter-spacing: -0.005em !important;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.15 !important;
}
.refined-heading--left .refined-heading__title {
  font-size: clamp(28px, 3.2vw, 44px) !important;
}
.refined-heading__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}
/* Variante left (Benefícios / Indicações): SEM rule */
.refined-heading--left .refined-heading__rule {
  display: none;
}

/* Remove o BG preto dos blocos de título da metodo-cpi */
.bloco-titulo2 {
  background-color: transparent !important;
}

/* ========================================================================
   MÉTODO CPI — todos os cards padronizados (sobre/metodo-cpi.html)
   - Phase cards (Fase 1/2/3/4)        : .section-49 .div-bloco-destaque-3
   - Pillar cards (7 pilares)          : .section-54 .div-bloco-destaque-4
   - Resultados/Indicado list-items    : .section-55 .list-item-12-b
   - Diagnostic CTA block              : .bloco-diagnostico
   `display: contents` no .div-grade-funciona-2 e wrappers internos
   resolve a inconsistência de nesting do Webflow.
   ======================================================================== */

/* ========================================================================
   CPI JOURNEY — editorial premium das 4 fases (sobre/metodo-cpi.html)
   Números gigantes em gradient gold + zigzag desktop / stack mobile.
   Usa grid-template-areas pra alinhamento sólido e zigzag previsível.
   ======================================================================== */
.cpi-timeline {
  display: flex !important;
  flex-direction: column;
  gap: clamp(56px, 6vw, 100px) !important;
  position: relative;
  counter-reset: cpi-phase;
  grid-template-columns: 1fr !important;
  padding: clamp(40px, 5vw, 64px) 0;
}
.cpi-timeline.conheca-reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Cada item: grid 2 cols × 2 rows usando areas pra controle preciso */
.cpi-timeline .cpi-timeline__item {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) !important;
  grid-template-rows: auto auto;
  grid-template-areas:
    "num label"
    "num content";
  column-gap: clamp(24px, 4vw, 72px);
  row-gap: 16px;
  align-items: center;
  /* Reseta o card (era border/bg/padding do phase cards) */
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  text-align: left !important;
}
/* Itens pares: zigzag — label/content esquerda, número direita */
.cpi-timeline .cpi-timeline__item:nth-child(even) {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) !important;
  grid-template-areas:
    "label num"
    "content num";
}

/* NÚMERO gigante em gradient gold (ocupa as 2 rows da coluna num) */
.cpi-timeline .cpi-timeline__item::before {
  counter-increment: cpi-phase;
  content: counter(cpi-phase, decimal-leading-zero);
  grid-area: num;
  align-self: center;
  justify-self: end;
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: clamp(96px, 14vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--burlywood) 0%, var(--dark-goldenrod) 60%, rgba(178, 145, 88, 0.3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Reveal animado */
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1);
  filter: drop-shadow(0 4px 24px rgba(178, 145, 88, 0.15));
}
.cpi-timeline .cpi-timeline__item:nth-child(even)::before {
  justify-self: start;
}
.cpi-timeline .cpi-timeline__item.is-visible::before {
  clip-path: inset(0 0 0 0);
}

/* Wrapper do label "Fase N" — display: contents pra label virar grid child direto */
.cpi-timeline .div-block-10883-copya {
  display: contents !important;
}

/* Label "Fase N" centralizada junto com título e descrição */
.cpi-timeline .text-block-45 {
  grid-area: label;
  align-self: end !important;
  justify-self: center !important;
  margin: 0 !important;
}

/* Conteúdo (h3 + paragraph) no slot 'content' — flex column centralizada */
.cpi-timeline .div-grade-funciona-2 {
  grid-area: content;
  align-self: start !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Título + descrição centralizados (mesmo alinhamento da tag) */
.cpi-timeline .heading-64,
.cpi-timeline .paragrafo-funciona-copy {
  text-align: center !important;
  margin: 0 !important;
}

/* Mobile: stack vertical (número, label, conteúdo), sem zigzag */
@media (max-width: 768px) {
  .cpi-timeline .cpi-timeline__item,
  .cpi-timeline .cpi-timeline__item:nth-child(even) {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    grid-template-areas:
      "num"
      "label"
      "content" !important;
    row-gap: 4px !important;
    column-gap: 0 !important;
  }
  .cpi-timeline .cpi-timeline__item::before,
  .cpi-timeline .cpi-timeline__item:nth-child(even)::before {
    justify-self: start !important;
    align-self: start !important;
    margin-bottom: -8px;
  }
  .cpi-timeline .text-block-45 {
    align-self: start !important;
    margin-top: 8px !important;
  }
}

/* ===== PHASE CARDS — label centralizada (chip), título+descrição centralizados ===== */
.section-49 .div-bloco-destaque-3 {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: clamp(28px, 2.6vw, 40px) clamp(20px, 2vw, 32px);
  border: 1px solid rgba(178, 145, 88, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(178, 145, 88, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.section-49 .div-bloco-destaque-3:hover {
  border-color: rgba(178, 145, 88, 0.55);
  background: linear-gradient(180deg, rgba(178, 145, 88, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
  transform: translateY(-2px);
}
.section-49 .div-bloco-destaque-3 .div-grade-funciona-2,
.section-49 .div-bloco-destaque-3 .div-block-10883-copya {
  display: contents;
}
/* Tag "Fase N" — chip dourado centralizado, NÃO ocupa largura total */
.section-49 .div-bloco-destaque-3 .text-block-45 {
  display: inline-block !important;
  align-self: center !important;
  padding: 6px 16px !important;
  border: 1px solid rgba(178, 145, 88, 0.45) !important;
  border-radius: 999px !important;
  background: rgba(178, 145, 88, 0.08) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 10.5px !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  color: var(--burlywood) !important;
  line-height: 1 !important;
  width: auto !important;
  max-width: max-content !important;
}
.section-49 .div-bloco-destaque-3 .heading-64 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(20px, 1.8vw, 24px) !important;
  letter-spacing: -0.005em !important;
  line-height: 1.3 !important;
  color: #fff !important;
  margin: 0 !important;
  text-align: center !important;
}
.section-49 .div-bloco-destaque-3 .paragrafo-funciona-copy {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  margin: 0 !important;
  text-align: center !important;
}

/* ========================================================================
   CPI CONSTELLATION — 7 Pilares em layout circular (desktop)
   Medalhão central + 7 satélites posicionados em círculo + raios SVG
   Mobile/tablet: cai pra grid funcional 1-2 colunas
   ======================================================================== */

/* Elementos da constelação ficam ESCONDIDOS por padrão (mobile-first) */
.cpi-constellation__rays,
.cpi-constellation__core {
  display: none;
}

/* DESKTOP ≥1100px: ativa modo constelação */
@media (min-width: 1100px) {
  .grid-funcio.cpi-constellation {
    display: block !important;
    position: relative;
    width: min(1100px, 100%);
    aspect-ratio: 1;
    margin: clamp(40px, 5vw, 80px) auto !important;
    padding: 0 !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }

  /* SVG dos 7 raios — animados desenhando do centro */
  .cpi-constellation__rays {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
  }
  .cpi-constellation__rays line {
    stroke: var(--dark-goldenrod);
    stroke-width: 0.16;
    stroke-linecap: round;
    opacity: 0.5;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .cpi-constellation.is-visible .cpi-constellation__rays line { stroke-dashoffset: 0; }
  .cpi-constellation.is-visible .cpi-constellation__rays line:nth-child(1) { transition-delay: 0.1s; }
  .cpi-constellation.is-visible .cpi-constellation__rays line:nth-child(2) { transition-delay: 0.2s; }
  .cpi-constellation.is-visible .cpi-constellation__rays line:nth-child(3) { transition-delay: 0.3s; }
  .cpi-constellation.is-visible .cpi-constellation__rays line:nth-child(4) { transition-delay: 0.4s; }
  .cpi-constellation.is-visible .cpi-constellation__rays line:nth-child(5) { transition-delay: 0.5s; }
  .cpi-constellation.is-visible .cpi-constellation__rays line:nth-child(6) { transition-delay: 0.6s; }
  .cpi-constellation.is-visible .cpi-constellation__rays line:nth-child(7) { transition-delay: 0.7s; }

  /* Medalhão central — selo Método CPI */
  .cpi-constellation__core {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    border-radius: 50%;
    background: transparent;
    z-index: 3;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(178, 145, 88, 0.5),
      0 0 0 8px rgba(178, 145, 88, 0.06),
      0 0 60px rgba(178, 145, 88, 0.18);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.9s ease, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .cpi-constellation.is-visible .cpi-constellation__core {
    opacity: 1;
    transform: scale(1);
  }
  .cpi-constellation__core img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }

  /* Satélites refinados — alinhados ao padrão editorial do site
     (Poppins, gold burlywood, radius 6px, border gold sutil, hover discreto)
     Cards SEMPRE estáticos (transform travado pra evitar regra base :hover) */
  .cpi-constellation__pillar {
    position: absolute;
    width: 230px;
    padding: 20px 18px !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2;
    background: #0a0a0a !important;
    border: 1px solid rgba(178, 145, 88, 0.28) !important;
    border-radius: 6px !important;
    gap: 14px !important;
    opacity: 0;
    transition: opacity 0.6s ease,
                border-color 0.35s ease,
                background 0.35s ease !important;
  }
  .cpi-constellation.is-visible .cpi-constellation__pillar {
    opacity: 1;
  }
  .cpi-constellation__pillar:hover {
    border-color: rgba(178, 145, 88, 0.55) !important;
    background: #0d0d0d !important;
    transform: translate(-50%, -50%) !important;
    z-index: 4;
  }

  /* Ícone em círculo gold sutil (consistente com .section-54 base) */
  .cpi-constellation__pillar .div-block-10883 {
    width: 48px !important;
    height: 48px !important;
    border: 1px solid rgba(178, 145, 88, 0.45) !important;
    border-radius: 50% !important;
    background: rgba(178, 145, 88, 0.06) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
  }
  .cpi-constellation__pillar .image-87 {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain;
  }

  /* Título — Poppins 400 uppercase gold burlywood */
  .cpi-constellation__pillar .heading-65 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    letter-spacing: 0.22em !important;
    line-height: 1.35 !important;
    color: var(--burlywood) !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    text-align: center !important;
  }

  /* Descrição — Poppins 300 white 78% */
  .cpi-constellation__pillar .paragrafo-funciona-copy {
    display: block !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 300 !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    text-align: center !important;
    margin: 0 !important;
  }

  /* Posições — pilar 1 (Corporal) é o ápice no topo
     restante girando clockwise: 2, 3, 4, 5, 6, 7 ao redor */
  .cpi-constellation__pillar:nth-of-type(1) { top: 13%; left: 50%; }
  .cpi-constellation__pillar:nth-of-type(2) { top: 26%; left: 78.5%; }
  .cpi-constellation__pillar:nth-of-type(3) { top: 56%; left: 86.5%; }
  .cpi-constellation__pillar:nth-of-type(4) { top: 81%; left: 67%; }
  .cpi-constellation__pillar:nth-of-type(5) { top: 81%; left: 33%; }
  .cpi-constellation__pillar:nth-of-type(6) { top: 56%; left: 13.5%; }
  .cpi-constellation__pillar:nth-of-type(7) { top: 26%; left: 21.5%; }

  /* Stagger entrada satélites (começa pelo ápice e segue clockwise) */
  .cpi-constellation.is-visible .cpi-constellation__pillar:nth-of-type(1) { transition-delay: 0.5s; }
  .cpi-constellation.is-visible .cpi-constellation__pillar:nth-of-type(2) { transition-delay: 0.6s; }
  .cpi-constellation.is-visible .cpi-constellation__pillar:nth-of-type(3) { transition-delay: 0.7s; }
  .cpi-constellation.is-visible .cpi-constellation__pillar:nth-of-type(4) { transition-delay: 0.8s; }
  .cpi-constellation.is-visible .cpi-constellation__pillar:nth-of-type(5) { transition-delay: 0.9s; }
  .cpi-constellation.is-visible .cpi-constellation__pillar:nth-of-type(6) { transition-delay: 1.0s; }
  .cpi-constellation.is-visible .cpi-constellation__pillar:nth-of-type(7) { transition-delay: 1.1s; }
}

/* MOBILE/TABLET <1100px: layout em grid funcional
   SVG escondido (decorativo do desktop). Medalhão central aparece centralizado
   ao final, depois dos 7 cards, como selo decorativo. */
@media (max-width: 1099px) {
  .cpi-constellation__rays {
    display: none !important;
  }
  .grid-funcio.cpi-constellation {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(16px, 2vw, 24px) !important;
  }
  /* Medalhão Método CPI — selo no final da seção */
  .cpi-constellation__core {
    display: flex !important;
    order: 99;
    grid-column: 1 / -1 !important;
    justify-self: center;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    margin: clamp(28px, 4vw, 48px) auto 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(178, 145, 88, 0.5),
      0 0 0 6px rgba(178, 145, 88, 0.06),
      0 0 40px rgba(178, 145, 88, 0.16);
  }
  .cpi-constellation__core img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }
}
@media (max-width: 991px) {
  .grid-funcio.cpi-constellation {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 575px) {
  .grid-funcio.cpi-constellation {
    grid-template-columns: 1fr !important;
  }
  .cpi-constellation__core {
    width: 160px;
    height: 160px;
  }
}

/* ========================================================================
   METODO-CPI INTRO — tratamento editorial criativo
   Drop cap "O" gigante gold, layout asymmétrico left-aligned, corner
   brackets gold, glow radial sutil. Sem alterar a copy.
   ======================================================================== */
.cpi-intro {
  padding-top: clamp(48px, 6vw, 96px) !important;
  padding-bottom: clamp(48px, 6vw, 96px) !important;
  position: relative;
  overflow: hidden;
}
/* Glow radial sutil ao fundo */
.cpi-intro::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle at center, rgba(178, 145, 88, 0.08) 0%, rgba(178, 145, 88, 0) 65%);
  pointer-events: none;
  z-index: 0;
}
.cpi-intro .container-86 {
  position: relative;
  z-index: 1;
  max-width: 820px !important;
  margin: 0 auto !important;
  padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 48px) !important;
}
/* Corner brackets gold — top-left e bottom-right do container */
.cpi-intro .container-86::before,
.cpi-intro .container-86::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(178, 145, 88, 0.55);
  pointer-events: none;
}
.cpi-intro .container-86::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.cpi-intro .container-86::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
/* Texto base — Poppins 300, line-height confortável, alinhado à esquerda */
.cpi-intro__text {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(15px, 1.3vw, 17px) !important;
  line-height: 1.78 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  margin: 0 !important;
  text-align: left !important;
}
/* Drop cap — primeira letra "O" gigantesca, gold light, flutuante */
.cpi-intro__text::first-letter {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: clamp(74px, 8vw, 124px);
  line-height: 0.82;
  color: var(--burlywood);
  float: left;
  margin: 6px 16px 0 0;
  padding: 0;
  letter-spacing: -0.04em;
}
/* Bolds em gold burlywood weight 500 */
.cpi-intro__text .bold-text-15 {
  color: var(--burlywood) !important;
  font-weight: 500 !important;
}
/* Primeira frase (lead) — peso editorial maior */
.cpi-intro__text > .bold-text-15:first-child {
  display: inline;
  font-weight: 400 !important;
  font-size: clamp(19px, 1.6vw, 23px) !important;
  line-height: 1.45 !important;
  letter-spacing: -0.005em;
  color: #fff !important;
}
/* Mobile — drop cap menor + reduz glow */
@media (max-width: 575px) {
  .cpi-intro::before {
    width: 380px;
    height: 380px;
  }
  .cpi-intro .container-86::before,
  .cpi-intro .container-86::after {
    width: 32px;
    height: 32px;
  }
  .cpi-intro__text::first-letter {
    margin: 4px 12px 0 0;
  }
}

/* ========================================================================
   METODO-CPI BENEFÍCIOS / INDICAÇÕES — frame nas imagens (.image-98)
   Aspect-ratio consistente + alinhamento vertical com a coluna de texto.
   ======================================================================== */
.section-55 .media-frame {
  align-self: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 580px;
}
.section-55 .media-frame .image-98 {
  border-radius: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
@media (max-width: 767px) {
  .section-55 .media-frame {
    aspect-ratio: 5 / 4;
    max-height: 380px;
    margin: 0 auto;
  }
}

/* ========================================================================
   SESSÃO DE CTA — padrão global (todas as páginas com .cta)
   BG image cta-quem-somos.webp + frame inset gold, radius 6px, tipografia
   Poppins 200 light editorial, bolds em gold, rule decorativa, ritmo de
   espaçamento. Aplica em todas as 20 páginas que têm <div class="cta">.
   ======================================================================== */
.cta {
  position: relative;
  overflow: hidden;
  background-color: transparent !important;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.88) 100%),
    radial-gradient(circle at 50% 50%, rgba(178, 145, 88, 0.18) 0%, rgba(178, 145, 88, 0) 60%),
    url('../assets/cta-quem-somos.webp') !important;
  background-position: 0 0, 50% 50%, 50% 50% !important;
  background-size: auto, auto, cover !important;
  background-repeat: no-repeat, no-repeat, no-repeat !important;
  border-radius: 6px !important;
  margin: clamp(48px, 6vw, 80px) auto 0 !important;
  padding: clamp(72px, 8vw, 120px) clamp(24px, 4vw, 56px) !important;
}
/* Frame inset gold — mesmo padrão .media-frame::before */
.cta::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.28);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}
.cta > * {
  position: relative;
  z-index: 2;
}

/* Tipografia editorial — Poppins 200 light, branco, centralizado */
.cta > h3,
.cta > p {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 200 !important;
  font-size: clamp(22px, 2.4vw, 36px) !important;
  line-height: 1.35 !important;
  letter-spacing: -0.005em !important;
  color: #fff !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center !important;
}
.cta > h3 {
  margin-bottom: clamp(14px, 1.8vw, 22px) !important;
}
/* Bolds em gold burlywood weight 500 */
.cta > h3 strong,
.cta > p strong {
  color: var(--burlywood) !important;
  font-weight: 500 !important;
}

/* Wrapper do botão — rule decorativa gold + ritmo de espaçamento.
   Pega a div que vem logo depois do texto (h3/p) — funciona com qualquer
   `.div-block-XXXXX` (cada página tem um número diferente). */
.cta > h3 + div,
.cta > p + div {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin-top: clamp(28px, 3.5vw, 44px) !important;
  gap: clamp(20px, 2.4vw, 32px) !important;
}
.cta > h3 + div::before,
.cta > p + div::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}
.cta .div-block-10881fb {
  margin: 0 !important;
}

/* Mobile — ajusta padding e frame inset */
@media (max-width: 575px) {
  .cta {
    margin-left: -8px !important;
    margin-right: -8px !important;
    padding: 56px 20px !important;
  }
  .cta::before {
    inset: 10px;
  }
}

/* ========================================================================
   METODO-CPI — fundo preto na seção "O Processo"
   (título "Como funciona o Método CPI?" + timeline 4 Fases)
   Section EXTERNA cobre 100% da largura do body (full-bleed).
   Container INTERNO (.div-block-10884) mantém width 1200px centralizado
   pra preservar o layout original dos cards.
   ======================================================================== */
.bloco-titulo2:has([data-translate="pages.cpiMethod.howItWorksEyebrow"]) {
  background-color: #000 !important;
  padding-bottom: 30px !important;
}
.section-49:has(.cpi-timeline) {
  background-color: #000 !important;
  margin: 0 !important;
  padding-top: 30px !important;
  padding-bottom: 60px !important;
  width: 100% !important;
  max-width: none !important;
}
/* Conteúdo interno centralizado — preserva os cards no layout original */
.section-49:has(.cpi-timeline) > .div-block-10884 {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto !important;
}

/* Espaçamento extra (60px) entre o container do diagnóstico CPI e a seção
   Benefícios/Indicações — usa padding-bottom no wrapper section-49 (NÃO
   colapsa, garante o gap visual) */
.section-49:has(.bloco-diagnostico) {
  padding-bottom: 60px !important;
  margin-top: -50px !important; /* puxa pra cima reduzindo o gap visual da seção Estrutura pela metade */
}

/* Seção Estrutura (7 Pilares) — espaço inferior reduzido pela metade.
   sec54 padding-bottom 40 → 0 + constellation margin-bottom clamp(40-80) → 36 */
.section-54 {
  padding-bottom: 0 !important;
}
@media (min-width: 1100px) {
  .grid-funcio.cpi-constellation {
    margin-bottom: 36px !important;
  }
}
@media (max-width: 1099px) {
  .cpi-constellation {
    margin-bottom: 24px !important;
  }
}

/* ===== PILLAR CARDS — ícone + título + descrição centralizados ===== */
.section-54 .div-bloco-destaque-4 {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: clamp(28px, 2.6vw, 40px) clamp(20px, 2vw, 32px);
  border: 1px solid rgba(178, 145, 88, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(178, 145, 88, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.section-54 .div-bloco-destaque-4:hover {
  border-color: rgba(178, 145, 88, 0.55);
  background: linear-gradient(180deg, rgba(178, 145, 88, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
  transform: translateY(-2px);
}
.section-54 .div-bloco-destaque-4 .div-grade-funciona-2 {
  display: contents;
}
.section-54 .div-bloco-destaque-4 .div-block-10883 {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(178, 145, 88, 0.45);
  border-radius: 50%;
  background: rgba(178, 145, 88, 0.06);
  flex-shrink: 0;
  align-self: center !important;
  margin: 0 !important;
}
.section-54 .div-bloco-destaque-4 .image-87 {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
}
.section-54 .div-bloco-destaque-4 .heading-65 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: var(--burlywood) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}
.section-54 .div-bloco-destaque-4 .paragrafo-funciona-copy {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  margin: 0 !important;
}

/* ===== RESULT / INDICATED LIST ITEMS ===== */
.section-55 .list-item-12-b {
  margin-bottom: 12px;
}
.section-55 .div-block-10918 {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 14px !important;
}
.section-55 .div-block-10914 {
  flex-shrink: 0 !important;
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(178, 145, 88, 0.5) !important;
  border-radius: 50% !important;
  background: rgba(178, 145, 88, 0.08) !important;
  margin: 0 !important;
  /* vertically center with first line of text (lh 24px → icon top 0px) */
  align-self: flex-start;
}
.section-55 .image-96 {
  width: 11px !important;
  height: 11px !important;
  margin: 0 !important;
}
.section-55 .text-block-46-b {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  text-align: left !important;
  flex: 1 1 auto;
}
.section-55 .list-8,
.section-55 .list-item-12-b {
  text-align: left !important;
}
.section-55 .text-block-46-b strong {
  font-weight: 500;
  color: #fff;
}

/* ========================================================================
   DIAGNOSTIC CTA — refinamento editorial (alinhado ao sistema)
   Mantém BG image 194231590.webp + chips com ícones. Tipografia Poppins,
   hierarquia clara, frame gold sutil, radius 6px.
   ======================================================================== */
.bloco-diagnostico {
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.94), rgba(10,10,10,0.86)),
    url('../assets/194231590.webp') !important;
  background-position: 0 0, 50% 50% !important;
  background-size: auto, cover !important;
  background-attachment: scroll, fixed !important;
  border-radius: 6px !important;
  margin: clamp(48px, 6vw, 80px) auto 60px !important;
  padding: clamp(72px, 7vw, 112px) clamp(28px, 4vw, 80px) clamp(56px, 5vw, 80px) !important;
  position: relative;
  max-width: 1240px;
  overflow: hidden;
}

/* Frame inset gold sutil (mesmo padrão .media-frame::before) */
.bloco-diagnostico::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.22);
  border-radius: 4px;
  pointer-events: none;
  z-index: 0;
}
.bloco-diagnostico > * {
  position: relative;
  z-index: 1;
}

/* Eyebrow "Método CPI®" — converte de pílula com ícone p/ eyebrow refinado */
.bloco-diagnostico .div-block-10845 {
  margin-bottom: 22px !important;
}
.bloco-diagnostico .text-block-2-copy {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  letter-spacing: 0.42em !important;
  text-indent: 0.42em !important;
  text-transform: uppercase !important;
  color: var(--burlywood) !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  opacity: 0.85;
}

/* Título principal — Poppins 200 light */
.bloco-diagnostico .heading-55-cop {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 200 !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  line-height: 1.15 !important;
  color: #fff !important;
  margin: 0 0 18px 0 !important;
  letter-spacing: -0.005em !important;
}
.bloco-diagnostico .heading-55-cop .text-span-53-copy {
  color: var(--burlywood) !important;
  font-weight: 200 !important;
  background: none !important;
  -webkit-text-fill-color: var(--burlywood) !important;
}

/* Subtítulo */
.bloco-diagnostico .heading-55-copsdc-copy {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.78) !important;
  max-width: 720px !important;
  margin: 0 auto clamp(40px, 4vw, 56px) !important;
}

/* Wrapper grid */
.bloco-diagnostico .div-block-1089972 {
  margin: 0 auto;
}

/* Grid de chips — 4 colunas em desktop, 2 em tablet, 1 em mobile */
.bloco-diagnostico .grid-528-copy {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
  max-width: 1000px !important;
  margin: 0 auto clamp(36px, 3.6vw, 48px) !important;
}

/* Chip individual */
.bloco-diagnostico .div-block-1089971 {
  background: rgba(197, 169, 116, 0.08) !important;
  border: 1px solid rgba(197, 169, 116, 0.24) !important;
  border-radius: 6px !important;
  padding: 18px 16px !important;
  text-align: left !important;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.bloco-diagnostico .div-block-1089971:hover {
  background: rgba(197, 169, 116, 0.14) !important;
  border-color: rgba(197, 169, 116, 0.42) !important;
}

/* Texto dentro dos chips — preserva o background-image do ícone existente */
.bloco-diagnostico .text-block-208 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.92) !important;
  background-position: 0 50% !important;
  padding-left: 28px !important;
}

/* Stat "87% das cirurgias..." */
.bloco-diagnostico .div-block-1089976 {
  margin-top: 0 !important;
  margin-bottom: clamp(36px, 3.6vw, 48px) !important;
}
.bloco-diagnostico .text-block-210 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(14px, 1.3vw, 17px) !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,0.82) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
}

/* CTA wrapper */
.bloco-diagnostico .div-block-226-copy {
  margin-top: 0 !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Chevron decorativo — menor, opacidade reduzida */
.bloco-diagnostico .lottie-animation-2 {
  width: 22px !important;
  height: 14px !important;
  opacity: 0.5;
}

/* Disclaimer */
.bloco-diagnostico .div-block-1089975 {
  margin-top: 12px !important;
}
.bloco-diagnostico .text-block-209 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  color: rgba(255,255,255,0.5) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .bloco-diagnostico .grid-528-copy {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 600px !important;
  }
}
@media (max-width: 575px) {
  .bloco-diagnostico {
    background-attachment: scroll, scroll !important;
  }
  .bloco-diagnostico .grid-528-copy {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
  }
}

/* ========================================================================
   DIAGNOSTIC CTA (HOME) — variante .bloco-diagnostico-2
   Mesmo sistema editorial; adapta pra 3 chips + badge "Últimas vagas".
   ======================================================================== */
.bloco-diagnostico-2 {
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.94), rgba(10,10,10,0.86)),
    url('../assets/194231590.webp') !important;
  background-position: 0 0, 50% 50% !important;
  background-size: auto, cover !important;
  background-attachment: scroll, fixed !important;
  border-radius: 6px !important;
  margin: clamp(48px, 6vw, 80px) auto 0 !important;
  padding: clamp(72px, 7vw, 112px) clamp(28px, 4vw, 80px) clamp(56px, 5vw, 80px) !important;
  position: relative;
  max-width: 1240px;
  overflow: hidden;
}

.bloco-diagnostico-2::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.22);
  border-radius: 4px;
  pointer-events: none;
  z-index: 0;
}
.bloco-diagnostico-2 > * {
  position: relative;
  z-index: 1;
}

/* Eyebrow "NOVIDADE EXCLUSIVA" — wrapper diferente do cpi page */
.bloco-diagnostico-2 .div-block-1089978 {
  justify-content: center !important;
  align-items: center !important;
  display: flex !important;
  margin-bottom: 22px !important;
}
.bloco-diagnostico-2 .text-block-2-copy {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  letter-spacing: 0.42em !important;
  text-indent: 0.42em !important;
  text-transform: uppercase !important;
  color: var(--burlywood) !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  opacity: 0.85;
}

/* Título "DIAGNÓSTICO CPI GRATUITO!" — Poppins 200, gold */
.bloco-diagnostico-2 .heading-55-copsdc-copy-2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 200 !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  line-height: 1.15 !important;
  color: #fff !important;
  margin: 0 0 18px 0 !important;
  letter-spacing: -0.005em !important;
}
.bloco-diagnostico-2 .heading-55-copsdc-copy-2 .text-span-53-copy {
  color: var(--burlywood) !important;
  font-weight: 200 !important;
  background: none !important;
  -webkit-text-fill-color: var(--burlywood) !important;
}

/* Subtítulo "Descubra em 3 minutos..." — Poppins 300 */
.bloco-diagnostico-2 .heading-55-copsdc {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.78) !important;
  max-width: 720px !important;
  margin: 0 auto clamp(40px, 4vw, 56px) !important;
}
.bloco-diagnostico-2 .heading-55-copsdc .text-span-56 {
  color: var(--burlywood) !important;
  font-weight: 400 !important;
  -webkit-text-fill-color: var(--burlywood) !important;
  background: none !important;
}

/* Wrapper grid */
.bloco-diagnostico-2 .div-block-1089980 {
  margin: 0 auto;
}

/* Grid de 3 chips */
.bloco-diagnostico-2 .grid-528 {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  max-width: 820px !important;
  margin: 0 auto clamp(36px, 3.6vw, 48px) !important;
  display: grid !important;
}

/* Chip individual */
.bloco-diagnostico-2 .div-block-1089979 {
  background: rgba(197, 169, 116, 0.08) !important;
  border: 1px solid rgba(197, 169, 116, 0.24) !important;
  border-radius: 6px !important;
  padding: 18px 16px !important;
  text-align: left !important;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.bloco-diagnostico-2 .div-block-1089979:hover {
  background: rgba(197, 169, 116, 0.14) !important;
  border-color: rgba(197, 169, 116, 0.42) !important;
}

/* Texto dos chips — preserva os ícones SVG */
.bloco-diagnostico-2 .text-block-212 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.92) !important;
  background-position: 0 50% !important;
  padding-left: 28px !important;
}

/* CTA wrapper */
.bloco-diagnostico-2 .div-block-226-copy {
  margin-top: 0 !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Chevron decorativo */
.bloco-diagnostico-2 .lottie-animation-2 {
  width: 22px !important;
  height: 14px !important;
  opacity: 0.5;
}

/* Badge "Últimas X vagas hoje!" */
.bloco-diagnostico-2 .div-block-1089970 {
  margin-top: 4px !important;
}
.bloco-diagnostico-2 .text-block-207 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.85) !important;
  background-size: 14px !important;
  background-position: 0 50% !important;
  padding-left: 22px !important;
}
.bloco-diagnostico-2 .text-block-207 .text-span-55 {
  color: var(--burlywood) !important;
  border-bottom: none !important;
  margin: 0 !important;
}

/* Disclaimer */
.bloco-diagnostico-2 .div-block-1089977 {
  margin-top: 12px !important;
}
.bloco-diagnostico-2 .text-block-211 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  color: rgba(255,255,255,0.5) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .bloco-diagnostico-2 .grid-528 {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 680px !important;
  }
}
@media (max-width: 767px) {
  .bloco-diagnostico-2 .grid-528 {
    grid-template-columns: 1fr !important;
    max-width: 380px !important;
  }
}
@media (max-width: 575px) {
  .bloco-diagnostico-2 {
    background-attachment: scroll, scroll !important;
  }
}

/* ========================================================================
   ICON CHIP — padrão unificado sitewide (2026-05-04)
   Wrappers de ícones de conceito (procedimento, benefício, diferencial,
   tecnologia) recebem o mesmo visual editorial: círculo 48×48 com bg gold
   burlywood @ 6% + border gold @ 35% + SVG 24×24 centralizado.

   Excluídos: .div-block-74 (footer social/seta), navbar, whatsapp-btn,
              flags, search/hamburger — UI, não conceito.
              Também excluído: .div-block-11153 (wrappa foto img-2.webp).

   Truque com :has(> img) — Webflow exporta a MESMA classe pra wrapper
   de ícone E pra wrapper de texto (ex: 11234 com seta + texto). Aplicando
   chip só quando tem <img> filho direto, wrappers de texto ficam intactos.

   Override exception: .section-54 .div-bloco-destaque-4 .div-block-10883
   (metodo-cpi constellation) mantém 60×60 + ícone 30×30 (rule já existe
   acima — mais específica, vence o seletor genérico abaixo).
   ======================================================================== */
.div-block-10883:has(> img),
.div-block-10907:has(> img),
.div-block-10911:has(> img),
.div-block-10914:has(> img),
.div-block-11009:has(> img),
.div-block-11013:has(> img),
.div-block-11014:has(> img),
.div-block-11024:has(> img),
.div-block-11027:has(> img),
.div-block-11031:has(> img),
.div-block-11040:has(> img),
.div-block-11044:has(> img),
.div-block-11045:has(> img),
.div-block-11056:has(> img),
.div-block-11066:has(> img),
.div-block-11077:has(> img),
.div-block-11086:has(> img),
.div-block-11090:has(> img),
.div-block-11101:has(> img),
.div-block-11112:has(> img),
.div-block-11120:has(> img),
.div-block-11128:has(> img),
.div-block-11137:has(> img),
.div-block-11147:has(> img),
.div-block-11158:has(> img),
.div-block-11170:has(> img),
.div-block-11179:has(> img),
.div-block-11184:has(> img),
.div-block-11193:has(> img),
.div-block-11198:has(> img),
.div-block-11207:has(> img),
.div-block-11212:has(> img),
.div-block-11222:has(> img),
.div-block-11232:has(> img) {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  border-radius: 50% !important;
  background: rgba(178, 145, 88, 0.06) !important;
  border: 1px solid rgba(178, 145, 88, 0.35) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: none !important;
  margin: 0 14px 0 0 !important;
  padding: 0 !important;
  vertical-align: middle !important;
}

/* Cards com chip stand-alone no topo (.div-bloco-destaque-* etc) — quando
   o chip é filho direto do card e o card é display block + text-align
   center, o chip 48×48 fica encostado à esquerda. Forçando flex column
   centra o chip e mantém texto centralizado embaixo. */
.div-bloco-destaque-4,
.div-bloco-destaque-3,
.div-bloco-destaque-5,
.div-bloco-destaque-14,
.topicos,
.paragrafo-funciona-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
}

/* Espaço título → primeiro card: Webflow exporta 60px no padding do título +
   60px no margin-bottom de .div-block-11007 + 60px no margin-top de
   .div-block-11008 = 180px (excessivo). Zera os 2 últimos quando vêm
   logo após .bloco-titulo2 (mantém só os 60px do título como respiro). */
.bloco-titulo2 + section .div-block-11007,
.bloco-titulo2 + section .div-block-11008 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* Ícone SVG dentro do chip — 24×24 centralizado */
.div-block-10883 > img,
.div-block-10907 > img,
.div-block-10911 > img,
.div-block-10914 > img,
.div-block-11009 > img,
.div-block-11013 > img,
.div-block-11014 > img,
.div-block-11024 > img,
.div-block-11027 > img,
.div-block-11031 > img,
.div-block-11040 > img,
.div-block-11044 > img,
.div-block-11045 > img,
.div-block-11056 > img,
.div-block-11066 > img,
.div-block-11077 > img,
.div-block-11086 > img,
.div-block-11090 > img,
.div-block-11101 > img,
.div-block-11112 > img,
.div-block-11120 > img,
.div-block-11128 > img,
.div-block-11137 > img,
.div-block-11147 > img,
.div-block-11158 > img,
.div-block-11170 > img,
.div-block-11179 > img,
.div-block-11184 > img,
.div-block-11193 > img,
.div-block-11198 > img,
.div-block-11207 > img,
.div-block-11212 > img,
.div-block-11222 > img,
.div-block-11232 > img {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  object-fit: contain !important;
}


/* ========================================================================
   ANTES x DEPOIS — frame premium (2026-05-05)
   18 páginas de cirurgia, 52 cards. Aplica o mesmo padrão .media-frame
   (radius 6 + frame inset gold + hover scale 1.04) nos wrappers de imagem
   e tipografia eyebrow gold uppercase letter-spaced no label.
   ======================================================================== */
.div-block-10935,
.div-block-11020,
.div-block-11037,
.div-block-11051,
.div-block-11062,
.div-block-11072,
.div-block-11083,
.div-block-11096,
.div-block-11107,
.div-block-11134,
.div-block-11143,
.div-block-11153,
.div-block-11164,
.div-block-11176,
.div-block-11190,
.div-block-11204,
.div-block-11218,
.div-block-11228 {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 6px !important;
  aspect-ratio: 4 / 5;
  margin: 0 0 14px 0 !important;
}
.div-block-10935::before,
.div-block-11020::before,
.div-block-11037::before,
.div-block-11051::before,
.div-block-11062::before,
.div-block-11072::before,
.div-block-11083::before,
.div-block-11096::before,
.div-block-11107::before,
.div-block-11134::before,
.div-block-11143::before,
.div-block-11153::before,
.div-block-11164::before,
.div-block-11176::before,
.div-block-11190::before,
.div-block-11204::before,
.div-block-11218::before,
.div-block-11228::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
.div-block-10935 > img,
.div-block-11020 > img,
.div-block-11037 > img,
.div-block-11051 > img,
.div-block-11062 > img,
.div-block-11072 > img,
.div-block-11083 > img,
.div-block-11096 > img,
.div-block-11107 > img,
.div-block-11134 > img,
.div-block-11143 > img,
.div-block-11153 > img,
.div-block-11164 > img,
.div-block-11176 > img,
.div-block-11190 > img,
.div-block-11204 > img,
.div-block-11218 > img,
.div-block-11228 > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  transition: transform 0.6s ease;
}
.div-block-10935:hover > img,
.div-block-11020:hover > img,
.div-block-11037:hover > img,
.div-block-11051:hover > img,
.div-block-11062:hover > img,
.div-block-11072:hover > img,
.div-block-11083:hover > img,
.div-block-11096:hover > img,
.div-block-11107:hover > img,
.div-block-11134:hover > img,
.div-block-11143:hover > img,
.div-block-11153:hover > img,
.div-block-11164:hover > img,
.div-block-11176:hover > img,
.div-block-11190:hover > img,
.div-block-11204:hover > img,
.div-block-11218:hover > img,
.div-block-11228:hover > img {
  transform: scale(1.04);
}
/* Label "Antes x Depois" — eyebrow gold uppercase letter-spaced */
.text-block-54,
.text-block-59,
.text-block-65,
.text-block-70,
.text-block-75,
.text-block-79,
.text-block-83,
.text-block-89,
.text-block-93,
.text-block-103,
.text-block-107,
.text-block-111,
.text-block-116,
.text-block-121,
.text-block-128,
.text-block-133,
.text-block-138,
.text-block-142 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  color: var(--burlywood) !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ========================================================================
   FAQ ACCORDION REFINADO (2026-05-05) — perguntas-frequentes + r24r
   Padrão premium consistente com o sistema:
   - Card: bg gold tint 4%, border 1px gold 25%, radius 6px, padding 24×32
   - Hover/active: bg gold 8%, border 45%
   - Circle: 32×32 chip gold burlywood
   - Icon: 12×12, rotate 45° quando aberto (vira "×")
   - H3: Poppins 16 weight 400 letter-spacing 0.01em
   - Content: Poppins 14 line-height 1.7, opacity 0.78
   ======================================================================== */
.faq-question-wrap {
  margin-bottom: 12px !important;
}
.faq-question-wrap > .faq {
  background-color: rgba(178, 145, 88, 0.04) !important;
  border: 1px solid rgba(178, 145, 88, 0.25) !important;
  border-radius: 6px !important;
  min-width: 0 !important;
  min-height: 72px !important;
  padding: 22px 28px !important;
  transition: background-color 0.25s ease, border-color 0.25s ease !important;
  box-shadow: none !important;
  align-items: center !important;
  gap: 18px !important;
}
.faq-question-wrap > .faq:hover {
  background-color: rgba(178, 145, 88, 0.08) !important;
  border-color: rgba(178, 145, 88, 0.40) !important;
  box-shadow: none !important;
}
.faq-question-wrap.active > .faq {
  background-color: rgba(178, 145, 88, 0.08) !important;
  border-color: rgba(178, 145, 88, 0.45) !important;
}
.faq-circle {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  background-color: rgba(178, 145, 88, 0.10) !important;
  border: 1px solid rgba(178, 145, 88, 0.40) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  flex-shrink: 0 !important;
  transition: background-color 0.25s ease, border-color 0.25s ease !important;
}
.faq-question-wrap.active .faq-circle {
  background-color: rgba(178, 145, 88, 0.20) !important;
  border-color: rgba(178, 145, 88, 0.60) !important;
}
.faq-icon,
.faq-icon.noselect {
  width: 12px !important;
  height: 12px !important;
  filter: brightness(0) invert(1) !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.faq-question-wrap.active .faq-icon {
  transform: rotate(45deg) !important;
}
/* Transição mais suave do accordion (Sistema 2) */
.faq-content {
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease !important;
  opacity: 0;
}
.faq-question-wrap.active .faq-content {
  opacity: 1;
}
.faq-h3,
.faq-h3.noselect {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.45 !important;
  color: #fff !important;
  margin: 0 !important;
}
.faq-content {
  padding: 0 28px !important;
}
.faq-content .paragraph-5,
.faq-content > div,
.faq-content > p {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  margin: 0 !important;
  padding: 18px 0 24px 0 !important;
}

/* ========================================================================
   .div-bloco-destaque-4 — refino premium (2026-05-05)
   22 cards em 3 páginas (r24r, metodo-cpi, abdominoplastia-hd).
   Frame premium consistente com FAQ + media-frame + CTA:
   - bg gold 4%, border 1px gold 25%, radius 6px
   - ::before frame inset 14px (border gold 35% radius 4px)
   - padding 36×28, gap 18px (chip → texto)
   - min-height 200 pra alturas uniformes na grid
   - tipografia Poppins 14 weight 300 line-height 1.65 white 92%
   - hover: lift -2px, bg gold 7%, border gold 40%
   Override metodo-cpi constellation: já tem own rules — nada quebra.
   ======================================================================== */
.div-bloco-destaque-4:not(.cpi-constellation__pillar) {
  position: relative !important;
  background-color: rgba(178, 145, 88, 0.04) !important;
  border: 1px solid rgba(178, 145, 88, 0.25) !important;
  border-radius: 6px !important;
  padding: 36px 28px !important;
  gap: 18px !important;
  min-height: 200px !important;
  text-decoration: none !important;
  text-align: center !important;
  transition: background-color 0.3s ease,
              border-color 0.3s ease,
              transform 0.3s ease !important;
  overflow: hidden !important;
}
.div-bloco-destaque-4:not(.cpi-constellation__pillar):hover {
  background-color: rgba(178, 145, 88, 0.08) !important;
  border-color: rgba(178, 145, 88, 0.45) !important;
  transform: translateY(-2px) !important;
}
/* Tipografia interna do card — texto centralizado consistente */
.div-bloco-destaque-4 .div-grade-funciona-2,
.div-bloco-destaque-4 .paragrafo-funciona-copy-2,
.div-bloco-destaque-4 .text-block-43 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  text-align: center !important;
  margin: 0 !important;
}

/* ========================================================================
   BULLET DOT (2026-05-05) — substitui setas .seta.svg por bullet circular
   com borda externa gold (estilo lista premium). Aplicado nos wrappers
   .div-block-11234 que contêm <img> direta (seta de marcador).
   Wrappers de texto (.div-block-11234 sem <img>) ficam intactos via :has().
   ======================================================================== */
.div-block-11234:has(> img) {
  position: relative !important;
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--burlywood) !important;
  background: transparent !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 14px 0 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}
.div-block-11234:has(> img)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--burlywood);
}
.div-block-11234:has(> img) > img {
  display: none !important;
}
/* Parent .bloco-dr-icones — flex pra alinhar bullet + texto verticalmente */
.bloco-dr-icones {
  display: flex !important;
  align-items: center !important;
}

/* ========================================================================
   INTRO STATEMENT — padronização pós-hero estilo .cpi-intro (2026-05-05)
   Aplica o visual da seção intro do metodo-cpi nas 20 cirurgias:
   - Section parent: position relative, overflow hidden, glow gold radial
   - Container: max-width 820, corner brackets gold (top-left + bottom-right)
   - Texto: Poppins 300 editorial + drop cap gigante gold flutuante

   Bg permanece o mesmo do body (sem cor própria) — sem "vão" entre hero
   e seção. Glow é o efeito dourado de fundo.
   ======================================================================== */
section:has(> .container-19-copy.w-container),
div:has(> .container-19-copy.w-container) {
  position: relative !important;
  overflow: hidden !important;
  padding-top: clamp(48px, 6vw, 96px) !important;
  padding-bottom: clamp(48px, 6vw, 96px) !important;
}
section:has(> .container-19-copy.w-container)::before,
div:has(> .container-19-copy.w-container)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle at center, rgba(178, 145, 88, 0.08) 0%, rgba(178, 145, 88, 0) 65%);
  pointer-events: none;
  z-index: 0;
}
.container-19-copy.w-container {
  position: relative !important;
  z-index: 1 !important;
  max-width: 820px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 48px) !important;
  background: transparent !important;
  border: none !important;
}
/* Corner brackets gold — top-left + bottom-right do container */
.container-19-copy.w-container::before,
.container-19-copy.w-container::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(178, 145, 88, 0.55);
  pointer-events: none;
}
.container-19-copy.w-container::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.container-19-copy.w-container::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
/* Texto editorial — Poppins 300, line-height confortável */
.container-19-copy.w-container .text-block-53 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(15px, 1.3vw, 17px) !important;
  line-height: 1.78 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  margin: 0 !important;
  text-align: left !important;
  max-width: none !important;
}
/* Drop cap — primeira letra grande, gold light, flutuante */
.container-19-copy.w-container .text-block-53::first-letter {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 100 !important;
  font-size: clamp(74px, 8vw, 124px) !important;
  line-height: 0.82 !important;
  color: var(--burlywood) !important;
  float: left !important;
  margin: 6px 16px 0 0 !important;
  padding: 0 !important;
  letter-spacing: -0.04em !important;
}
@media (max-width: 575px) {
  section:has(> .container-19-copy.w-container)::before,
  div:has(> .container-19-copy.w-container)::before {
    width: 380px;
    height: 380px;
  }
  .container-19-copy.w-container::before,
  .container-19-copy.w-container::after {
    width: 32px !important;
    height: 32px !important;
  }
  .container-19-copy.w-container .text-block-53::first-letter {
    margin: 4px 12px 0 0 !important;
  }
}

/* ========================================================================
   INTRO STATEMENT — blog posts (.lead) + experiências (.paragraph)
   Aplica dropcap gold + tipografia editorial Poppins no parágrafo intro.
   Não toca em container/section pra preservar layout específico de cada
   página (blog tem audio-player, experiências tem layouts variados).
   ======================================================================== */
.lead,
.paragraph,
.paragraph2 {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(17px, 1.35vw, 19px) !important;
  font-weight: 300 !important;
  line-height: 1.85 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  letter-spacing: 0.005em !important;
  text-align: left !important;
  max-width: 720px !important;
  margin: 0 auto !important;
}
.lead::first-letter,
.paragraph::first-letter,
.paragraph2::first-letter {
  font-family: 'Poppins', sans-serif !important;
  font-size: 4em !important;
  font-weight: 300 !important;
  float: left !important;
  line-height: 0.9 !important;
  margin: 4px 14px -2px 0 !important;
  color: var(--burlywood) !important;
}
@media (max-width: 768px) {
  .lead::first-letter,
  .paragraph2::first-letter {
    font-size: 3.2em !important;
  }
}

/* ========================================================================
   CONHECA STATEMENT — refinar pro mesmo visual de .cpi-intro (2026-05-05)
   Glow gold + corner brackets, removendo o BG sólido que criava "vão".
   ======================================================================== */
.conheca-statement {
  background: transparent !important;
  border-top: none !important;
  padding: clamp(48px, 6vw, 96px) 24px !important;
  position: relative;
  overflow: hidden;
}
.conheca-statement::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle at center, rgba(178, 145, 88, 0.08) 0%, rgba(178, 145, 88, 0) 65%);
  pointer-events: none;
  z-index: 0;
}
.conheca-statement__inner {
  position: relative !important;
  z-index: 1 !important;
  max-width: 820px !important;
  padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 48px) !important;
  gap: 32px !important;
}
.conheca-statement__inner::before,
.conheca-statement__inner::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(178, 145, 88, 0.55);
  pointer-events: none;
}
.conheca-statement__inner::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.conheca-statement__inner::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
@media (max-width: 575px) {
  .conheca-statement::before {
    width: 380px;
    height: 380px;
  }
  .conheca-statement__inner::before,
  .conheca-statement__inner::after {
    width: 32px !important;
    height: 32px !important;
  }
}

/* ========================================================================
   PADRÃO EDITORIAL UNIFICADO (2026-05-05) — replica visual conheca.html
   - bg uniforme #0a0a0a no body
   - border-top gold 10% entre cada <section> (traço sutil)
   - exceções: hero, footer, navbar (mantêm bg/border próprios)
   ======================================================================== */
body.body {
  background-color: #0a0a0a !important;
}
section,
.bloco-titulo2 {
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}
/* Quando título (.bloco-titulo2) precede a section, o traço fica no título.
   Remove o traço da section seguinte pra não duplicar entre título e conteúdo. */
.bloco-titulo2 + section,
.bloco-titulo2 + div + section,
section.site-hero,
section.footer-dark,
section.conheca-statement,
.site-hero,
.footer-dark {
  border-top: none !important;
}

/* Remove gradient feio do .section-59 (20 cirurgias) — deixa herdar #0a0a0a */
.section-59 {
  background-image: none !important;
  background-color: transparent !important;
}
/* .related-surgeries — bg sólido fora do padrão; alinha com #0a0a0a */
.related-surgeries {
  background-color: #0a0a0a !important;
}

/* ========================================================================
   PADRÃO DE TÍTULOS — replica .refined-heading nos .bloco-titulo2 (2026-05-05)
   - Container: display flex column align-items center
   - H2: Poppins 200 clamp(34-56) white
   - Rule gold 56px gradient depois do título (via ::after)
   ======================================================================== */
.bloco-titulo2 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: clamp(60px, 6vw, 90px) 20px clamp(20px, 2vw, 30px) !important;
}
.bloco-titulo2 > * {
  width: 100%;
  max-width: 100%;
}
.bloco-titulo2 h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 200 !important;
  font-size: clamp(34px, 4vw, 56px) !important;
  letter-spacing: -0.005em !important;
  line-height: 1.15 !important;
  color: #fff !important;
  margin: 0 auto !important;
  text-align: center !important;
}
/* Rule gold depois do título — gradient horizontal.
   Exclui h2 que já é .refined-heading__title (esse tem rule próprio via span) */
.bloco-titulo2 h2:not(.refined-heading__title)::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  margin: 22px auto 0 auto;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

/* ========================================================================
   FAQ INTERATIVO — Dark + paleta Dr. André (2026-05-05)
   Replica visual do faq.html (Downloads) adaptado pra dark editorial
   #0a0a0a + gold burlywood + Poppins. Aplicado em perguntas-frequentes.html.
   ======================================================================== */

/* SEARCH SECTION */
.faq-search-section {
  background: transparent !important;
  padding: clamp(60px, 8vw, 96px) 20px 30px !important;
  text-align: center;
  border-top: none;
}
.faq-search-container {
  max-width: 700px;
  margin: 0 auto;
}
.faq-search-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--burlywood);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  opacity: 0.85;
  margin-bottom: 14px;
}
.faq-search-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 200;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.faq-search-input-wrap {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}
.faq-search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 1px solid rgba(178, 145, 88, 0.30);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
  background: rgba(178, 145, 88, 0.04);
  outline: none;
  transition: border-color 0.3s, background-color 0.3s;
  box-sizing: border-box;
}
.faq-search-input:focus {
  border-color: rgba(178, 145, 88, 0.55);
  background: rgba(178, 145, 88, 0.07);
}
.faq-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--burlywood);
  pointer-events: none;
}
.faq-search-count {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  min-height: 20px;
}
.faq-no-results {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Poppins', sans-serif;
}
.faq-no-results h4 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

/* TABS */
.faq-tabs-section {
  background: transparent !important;
  padding: 0 20px;
  border-top: 1px solid rgba(178, 145, 88, 0.10);
  border-bottom: 1px solid rgba(178, 145, 88, 0.10);
}
.faq-tabs-scroll {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.faq-tabs-scroll::-webkit-scrollbar { display: none; }
.faq-tabs {
  display: flex;
  gap: 4px;
  padding: 14px 0;
  min-width: max-content;
  justify-content: center;
}
.faq-tab {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: 1px solid transparent;
  padding: 9px 18px;
  border-radius: 25px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.faq-tab:hover {
  color: var(--burlywood);
  background: rgba(178, 145, 88, 0.06);
  border-color: rgba(178, 145, 88, 0.25);
}
.faq-tab.active {
  color: #1a1a1a;
  background: var(--burlywood);
  border-color: var(--burlywood);
}
.faq-tab .faq-tab-count {
  display: inline-block;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 11px;
  margin-left: 6px;
  font-weight: 400;
}
.faq-tab.active .faq-tab-count {
  background: rgba(26, 26, 26, 0.20);
  color: #1a1a1a;
}

/* MAIN CONTENT AREA */
.faq-main-content {
  background: transparent !important;
  padding: 60px 20px 96px;
}
.faq-main-container {
  max-width: 920px;
  margin: 0 auto;
}

/* CATEGORY GROUPS */
.faq-category-group {
  margin-bottom: 60px;
  scroll-margin-top: 140px;
}
.faq-category-group.hidden { display: none; }
.faq-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(178, 145, 88, 0.25);
}
.faq-category-number {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  background: var(--burlywood);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-category-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

/* FAQ ITEMS */
.faq-item {
  background: rgba(178, 145, 88, 0.04);
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid rgba(178, 145, 88, 0.25);
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
  background: rgba(178, 145, 88, 0.07);
  border-color: rgba(178, 145, 88, 0.40);
}
.faq-item.active {
  background: rgba(178, 145, 88, 0.08);
  border-color: rgba(178, 145, 88, 0.45);
}
.faq-item-header {
  display: flex;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  gap: 18px;
  user-select: none;
}
.faq-item-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(178, 145, 88, 0.10);
  border: 1px solid rgba(178, 145, 88, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s, border-color 0.3s;
}
.faq-item.active .faq-item-icon {
  background: rgba(178, 145, 88, 0.20);
  border-color: rgba(178, 145, 88, 0.60);
}
.faq-item-icon svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-item-icon svg {
  transform: rotate(45deg);
}
.faq-item-question {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  flex: 1;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.faq-item-question mark {
  background: rgba(178, 145, 88, 0.30);
  color: var(--burlywood);
  border-radius: 2px;
  padding: 0 2px;
}
.faq-item-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.faq-item.active .faq-item-body {
  max-height: 3000px;
  opacity: 1;
}
.faq-item-answer {
  padding: 0 28px 26px 78px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-weight: 300;
}
.faq-item-answer strong {
  color: #fff;
  font-weight: 500;
}
.faq-item-answer p {
  margin: 0 0 12px 0;
}
.faq-item-answer ul {
  padding-left: 20px;
  margin: 12px 0;
}
.faq-item-answer ul li {
  margin-bottom: 6px;
  position: relative;
}
.faq-item-answer ul li::marker {
  color: var(--burlywood);
}

.faq-item-answer .faq-highlight-box {
  background: rgba(178, 145, 88, 0.08);
  border-left: 3px solid var(--burlywood);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin: 16px 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}
.faq-item-answer .faq-highlight-box strong {
  color: var(--burlywood);
}

.faq-item-answer .faq-cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-goldenrod);
  color: #1a1a1a;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: 14px;
  transition: background 0.25s, transform 0.2s;
  text-transform: uppercase;
}
.faq-item-answer .faq-cta-inline:hover {
  background: var(--burlywood);
  transform: translateY(-1px);
}
.faq-item-answer .faq-cta-inline svg {
  width: 14px;
  height: 14px;
  fill: #1a1a1a;
}

.faq-item-answer .faq-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 14px 0;
}
.faq-item-answer .faq-pillar {
  background: rgba(178, 145, 88, 0.06);
  border: 1px solid rgba(178, 145, 88, 0.20);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}
.faq-item-answer .faq-pillar strong {
  color: var(--burlywood);
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.faq-item-answer .faq-timeline {
  position: relative;
  padding-left: 24px;
  margin: 14px 0;
}
.faq-item-answer .faq-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--burlywood), rgba(178, 145, 88, 0.30));
  border-radius: 2px;
}
.faq-item-answer .faq-timeline-step {
  position: relative;
  margin-bottom: 12px;
  padding-left: 12px;
  font-size: 13.5px;
}
.faq-item-answer .faq-timeline-step::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--burlywood);
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 0 1px var(--burlywood);
}
.faq-item-answer .faq-timeline-step strong {
  color: #fff;
  font-size: 14px;
}

@media (max-width: 767px) {
  .faq-tab { font-size: 11px; padding: 8px 14px; }
  .faq-category-title { font-size: 18px; }
  .faq-item-header { padding: 16px 18px; gap: 14px; }
  .faq-item-question { font-size: 14.5px; }
  .faq-item-answer { padding: 0 18px 20px 50px; font-size: 13.5px; }
  .faq-item-answer .faq-pillar-grid { grid-template-columns: 1fr; }
  .faq-main-content { padding: 40px 15px 70px; }
  .faq-category-group { scroll-margin-top: 100px; }
}

/* ========================================================================
   WHATSAPP FAB — efeito de ondas animado (2026-05-05)
   3 anéis pulsando em loop infinito (mesma cor do botão), defasados
   no tempo pra criar efeito de ondas. Aplicado sitewide via CSS global.
   ======================================================================== */
.whatsapp-btn {
  position: fixed;
  overflow: visible;
}
.whatsapp-btn::before,
.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(46, 156, 46, 0.55);
  z-index: -1;
  pointer-events: none;
  animation: whatsappRipple 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.whatsapp-btn::after {
  animation-delay: 1.5s;
}
@keyframes whatsappRipple {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-btn::before,
  .whatsapp-btn::after {
    animation: none;
    display: none;
  }
}

/* ========================================================================
   FALE CONOSCO — bloco de intro + cards de contato refinados (2026-05-06)
   .bloco-titulo2--contact: variante do título com subtítulo + link "Enviar email"
   .contact-cards-grid + .contact-card: padrão visual editorial
   ======================================================================== */
.section-40 {
  border-top: none !important;
}
.bloco-titulo2--contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(60px, 8vw, 90px) clamp(20px, 4vw, 30px) clamp(24px, 4vw, 36px);
  max-width: 760px;
  margin: 0 auto;
  background: transparent !important;
  border-top: none !important;
}
.bloco-titulo2--contact .heading-55 {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
  text-align: center;
}
.bloco-titulo2--contact .heading-55::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}
.bloco-titulo2--contact .contact-intro__sub {
  margin: 24px 0 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
}
/* Grid de cards de contato */
.section-40 .contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  max-width: 920px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding: 0 clamp(16px, 4vw, 24px) clamp(60px, 8vw, 90px);
}
@media (max-width: 640px) {
  .section-40 .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Card individual */
.section-40 .contact-card {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
  background: rgba(178, 145, 88, 0.04);
  border: 1px solid rgba(178, 145, 88, 0.25);
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
/* Defesa contra IDs/regras Webflow legadas (order, align-self, justify-self).
   Garante ordem ícone → título → botão e centraliza horizontal/vertical. */
.section-40 .contact-card > * {
  order: 0 !important;
  align-self: center !important;
  justify-self: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.section-40 .contact-card .contact-card__icon { order: 1 !important; }
.section-40 .contact-card .contact-card__title { order: 2 !important; }
.section-40 .contact-card .btn { order: 3 !important; }
.section-40 .contact-card:hover {
  background: rgba(178, 145, 88, 0.08);
  border-color: rgba(178, 145, 88, 0.45);
  transform: translateY(-2px);
}

/* Chip do ícone — 48×48 gold */
.section-40 .contact-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background: rgba(178, 145, 88, 0.06);
  border: 1px solid rgba(178, 145, 88, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.section-40 .contact-card__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Título do card */
.section-40 .contact-card__title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.01em;
  color: #fff;
}

/* Botão dentro do card herda o sistema unificado .btn */
.section-40 .contact-card .btn {
  margin-top: 4px;
}

/* Frame premium no Typeform */
.s-form .s-form__frame {
  position: relative;
  margin: 0 auto;
  max-width: 880px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(178, 145, 88, 0.04);
}
.s-form .s-form__frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.s-form .s-form__frame .code-embed-2 {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 3vw, 32px);
}
/* Typeform: força altura grande pra eliminar scroll interno do iframe.
   Usuário rola a página, não o widget. */
.s-form .s-form__frame [data-tf-live],
.s-form .s-form__frame [data-tf-live] iframe {
  width: 100% !important;
  height: 80vh !important;
  min-height: 720px !important;
  display: block;
}

/* ========================================================================
   NAVBAR REFINED — refino editorial premium (2026-05-06)
   - Tipografia: Poppins 300 / 11.5px / letter-spacing 0.22em / uppercase
   - Cor sutil: white 75% (era #fff sólido)
   - Hover: cor full white + underline animado deslizando da esquerda
   - .w--current: cor gold + underline permanente
   - Dropdown: dark editorial #0a0a0a + frame inset gold + radius 6
   - Dropdown links: Poppins 300 / 11px / uppercase + indicador gold no hover
   ======================================================================== */

/* Link principal — reset & tipografia */
.navbar-3 .navbar_link-3 {
  position: relative;
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  font-weight: 300 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 22px 7px !important;
  transition: color 0.25s ease !important;
  white-space: nowrap;
}

/* Underline animado — ::after sliding from left */
.navbar-3 .navbar_link-3::after {
  content: '';
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 14px;
  height: 1px;
  background: var(--burlywood);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}

/* Hover state — cor full + slide underline */
.navbar-3 .navbar_link-3:hover {
  color: #fff !important;
}
.navbar-3 .navbar_link-3:hover::after {
  transform: scaleX(1);
}

/* Active page (.w--current) — gold + underline permanente sólido */
.navbar-3 .navbar_link-3.w--current {
  color: var(--burlywood) !important;
}
.navbar-3 .navbar_link-3.w--current::after {
  transform: scaleX(1);
  background: var(--burlywood);
  opacity: 0.9;
}

/* Quando dropdown aberto, link toggle ganha tratamento de hover */
.navbar-3 .navbar_link-3.w--open {
  color: var(--burlywood) !important;
}
.navbar-3 .navbar_link-3.w--open::after {
  transform: scaleX(1);
}

/* Dropdown panel — dark editorial com frame inset gold */
.navbar-3 .dropdown-list-3 {
  margin-top: 6px !important;
}
.navbar-3 .dropdown-list-3.w--open {
  background-color: #0a0a0a !important;
  border: 1px solid rgba(178, 145, 88, 0.25) !important;
  border-radius: 6px !important;
  padding: 8px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.4) !important;
  overflow: visible !important;
  min-width: 240px;
  position: absolute !important;
}
/* Frame inset gold sutil dentro do dropdown */
.navbar-3 .dropdown-list-3.w--open::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(178, 145, 88, 0.18);
  border-radius: 4px;
  pointer-events: none;
}

/* Dropdown links — uppercase editorial com indicador gold no hover */
.navbar-3 .dropdown-link-2 {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.75) !important;
  background: transparent !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  font-weight: 300 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 12px 18px 12px 26px !important;
  border-radius: 4px !important;
  transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease !important;
}

/* Indicador gold à esquerda — slide-in no hover */
.navbar-3 .dropdown-link-2::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  width: 8px;
  height: 1px;
  background: var(--burlywood);
  transition: transform 0.25s ease;
}

.navbar-3 .dropdown-link-2:hover {
  color: #fff !important;
  background: rgba(178, 145, 88, 0.08) !important;
  padding-left: 32px !important;
}
.navbar-3 .dropdown-link-2:hover::before {
  transform: translateY(-50%) scaleX(1);
}

.navbar-3 .dropdown-link-2.w--current {
  color: var(--burlywood) !important;
  background: rgba(178, 145, 88, 0.06) !important;
}
.navbar-3 .dropdown-link-2.w--current::before {
  transform: translateY(-50%) scaleX(1);
}

/* Reduce motion — respeita preferência do usuário */
@media (prefers-reduced-motion: reduce) {
  .navbar-3 .navbar_link-3::after,
  .navbar-3 .dropdown-link-2,
  .navbar-3 .dropdown-link-2::before {
    transition: none !important;
  }
}

/* Força menu numa linha só — impede quebra entre links em viewport apertado */
.navbar-3 .navbar_desktop-view {
  flex-wrap: nowrap !important;
  gap: 4px;
}

/* ========================================================================
   NAVBAR MOBILE REFINED — refino completo do menu mobile (2026-05-06)
   - Tudo alinhado à esquerda
   - Sub-páginas sempre visíveis (sem dropdown)
   - Hambúrguer com animação X premium
   - Scroll interno no menu se overflow
   - Tipografia maior + padding superior generoso
   - Fechar pelo X (mesmo hambúrguer transformado)
   ======================================================================== */
@media (max-width: 991px) {
  /* Container do menu aberto — bg dark editorial + scroll + padding generoso */
  .navbar-3 .navbar_menu {
    background-color: #0a0a0a !important;
    border: none !important;
    border-top: 1px solid rgba(178, 145, 88, 0.12) !important;
    padding: 3rem 8% 5rem !important;
    max-height: calc(100vh - 72px);
    overflow-y: auto !important;
    overflow-x: hidden;
    align-items: stretch !important;
    -webkit-overflow-scrolling: touch;
  }

  /* View mobile: alinhar tudo à esquerda */
  .navbar-3 .navbar_mobile-view-2 {
    align-items: flex-start !important;
    width: 100%;
    gap: 0.5rem;
  }

  /* Links top-level (HOME, APRENDA) — left-align + tipografia maior */
  .navbar-3 .navbar_link-3,
  .navbar-3 .navbar_dropdown-toggle-2 .navbar_link-3 {
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 17px !important;
    font-weight: 300 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 14px 0 !important;
    width: 100%;
    white-space: normal !important;
  }

  /* Estado .w--current — gold */
  .navbar-3 .navbar_link-3.w--current,
  .navbar-3 .navbar_dropdown-toggle-2.w--current .navbar_link-3 {
    color: var(--burlywood) !important;
  }

  /* Esconder underline animado do desktop no mobile */
  .navbar-3 .navbar_link-3::after,
  .navbar-3 .navbar_dropdown-toggle-2::after {
    display: none !important;
  }

  /* Toggle de dropdown — tratar como header de seção (sem clique necessário,
     já que sub-páginas ficam visíveis sempre) */
  .navbar-3 .navbar_dropdown-3 {
    width: 100%;
    align-items: stretch !important;
    margin-top: 4px;
  }
  .navbar-3 .navbar_dropdown-toggle-2 {
    border: none !important;
    border-bottom: none !important;
    padding: 14px 0 6px !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: flex-start !important;
    pointer-events: none; /* não clicável — sub-itens já visíveis */
  }
  .navbar-3 .navbar_dropdown-toggle-2:hover {
    border: none !important;
  }

  /* Ocultar chevron à direita do toggle (SVG ".hide-desktop-only-3") */
  .navbar-3 .navbar_dropdown-toggle-2 .hide-desktop-only-3 {
    display: none !important;
  }

  /* Forçar lista de sub-itens sempre visível APENAS dentro do menu mobile,
     escapando o search dropdown (.navbar_mobile-search-wrap) */
  .navbar-3 .navbar_mobile-view-2 .navbar_dropdown-list,
  .navbar-3 .navbar_mobile-view-2 .navbar_dropdown-list.w--open {
    display: block !important;
    position: static !important;
    height: auto !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding: 0 0 8px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100%;
    transform: none !important;
  }
  .navbar-3 .navbar_mobile-view-2 .navbar_dropdown-list .container-large {
    padding: 0 !important;
    max-width: none !important;
  }
  .navbar-3 .navbar_mobile-view-2 .navbar_dropdown-list .navbar_submenu,
  .navbar-3 .navbar_mobile-view-2 .navbar_dropdown-list .navbar_submenu-col {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .navbar-3 .navbar_mobile-view-2 .navbar_dropdown-list ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
  }

  /* Sub-páginas indentadas com indicador gold sutil à esquerda */
  .navbar-3 .navbar_dropdown-link,
  .navbar-3 .navbar_dropdown-link.is-small {
    position: relative;
    display: block !important;
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 300 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    color: rgba(255, 255, 255, 0.65) !important;
    padding: 9px 0 9px 18px !important;
    background: transparent !important;
    border-left: 1px solid rgba(178, 145, 88, 0.18) !important;
    margin-left: 4px;
    transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease !important;
  }
  .navbar-3 .navbar_dropdown-link:hover {
    color: #fff !important;
    border-left-color: var(--burlywood) !important;
    padding-left: 22px !important;
  }
  .navbar-3 .navbar_dropdown-link.w--current {
    color: var(--burlywood) !important;
    border-left-color: var(--burlywood) !important;
  }

  /* Remove dashes/borders extras entre seções (limpeza visual) */
  .navbar-3 .navbar_mobile-view-2 > a.navbar_link-3 {
    border: none !important;
  }

  /* === Hambúrguer animado → X (refino linhas) === */
  .navbar-3 .navbar_menu-button {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50%;
    transition: background-color 0.25s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .navbar-3 .navbar_menu-button:hover {
    background-color: rgba(178, 145, 88, 0.08);
  }
  .navbar-3 .navbar_menu-button .menu-icon {
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    display: block;
    background-color: transparent !important;
    background: transparent !important;
    border-radius: 0 !important;
  }
  .navbar-3 .navbar_menu-button .menu-icon_line-top,
  .navbar-3 .navbar_menu-button .menu-icon_line-middle,
  .navbar-3 .navbar_menu-button .menu-icon_line-bottom {
    position: absolute;
    left: 0;
    right: 0;
    width: 24px !important;
    height: 2px !important;
    background-color: #fff !important;
    margin: 0 !important;
    border-radius: 2px;
    transform-origin: 50% 50%;
    will-change: transform, top, opacity, background-color;
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1),
                opacity 0.2s ease,
                top 0.35s cubic-bezier(0.65, 0, 0.35, 1),
                background-color 0.25s ease;
  }
  /* 3 linhas: 6px / 11px / 16px (gaps de 5px, perfeitamente centralizadas em 24px) */
  .navbar-3 .navbar_menu-button .menu-icon_line-top    { top: 6px !important; }
  .navbar-3 .navbar_menu-button .menu-icon_line-middle { top: 11px !important; }
  .navbar-3 .navbar_menu-button .menu-icon_line-bottom { top: 16px !important; }

  /* Zera estilos antigos do middle-inner (vinha como bola interna) */
  .navbar-3 .navbar_menu-button .menu-icon_line-middle-inner {
    display: none !important;
  }

  /* Estado aberto — vira X dourado (todas convergem no centro top:12) */
  body .navbar-3 .navbar_menu-button.w--open .menu-icon_line-top {
    top: 11px !important;
    transform: rotate(45deg) !important;
    background-color: var(--burlywood) !important;
  }
  body .navbar-3 .navbar_menu-button.w--open .menu-icon_line-middle {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }
  body .navbar-3 .navbar_menu-button.w--open .menu-icon_line-bottom {
    top: 11px !important;
    transform: rotate(-45deg) !important;
    background-color: var(--burlywood) !important;
  }

  /* Reduce motion — desativa transições do hambúrguer e do dropdown link */
  @media (prefers-reduced-motion: reduce) {
    .navbar-3 .navbar_menu-button .menu-icon_line-top,
    .navbar-3 .navbar_menu-button .menu-icon_line-middle,
    .navbar-3 .navbar_menu-button .menu-icon_line-bottom,
    .navbar-3 .navbar_dropdown-link {
      transition: none !important;
    }
  }
}

/* Hambúrguer X — fallback FORA do @media (debug 2026-05-06) */
body .navbar-3 .navbar_menu-button.w--open .menu-icon_line-top {
  top: 12px !important;
  transform: rotate(45deg) !important;
  background-color: var(--burlywood) !important;
}
body .navbar-3 .navbar_menu-button.w--open .menu-icon_line-middle {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}
body .navbar-3 .navbar_menu-button.w--open .menu-icon_line-bottom {
  top: 12px !important;
  transform: rotate(-45deg) !important;
  background-color: var(--burlywood) !important;
}

/* ========================================================================
   SEARCH BUTTON — refino editorial gold (2026-05-06)
   Sobrescreve search-modal.css que tinha estilo "premium white" antigo:
   bg branco 8% + border branca 20% destoava do dark+gold.
   ======================================================================== */
.navbar-3 .search-button,
.navbar-3 .search-button-mobile {
  background: transparent !important;
  border: 1px solid rgba(178, 145, 88, 0.35) !important;
  box-shadow: none !important;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
}
.navbar-3 .search-button::before,
.navbar-3 .search-button-mobile::before {
  display: none !important;
}
.navbar-3 .search-button svg,
.navbar-3 .search-button-mobile svg {
  fill: var(--burlywood) !important;
  filter: none !important;
}
.navbar-3 .search-button:hover,
.navbar-3 .search-button-mobile:hover {
  background: rgba(178, 145, 88, 0.10) !important;
  border-color: rgba(178, 145, 88, 0.55) !important;
  box-shadow: none !important;
  transform: none !important;
}
.navbar-3 .search-button:hover svg,
.navbar-3 .search-button-mobile:hover svg {
  fill: #fff !important;
  transform: none !important;
}
/* Mobile mantém a regra anterior de translate(-50%) no hover */
@media (max-width: 991px) {
  .navbar-3 .search-button-mobile:hover {
    transform: translateY(-50%) !important;
  }
}

/* ========================================================================
   AJUSTES MOBILE — hero + logo (2026-05-06)
   - Frame interno do hero VISÍVEL em mobile (estava display: none ≤575px)
   - +30px padding-top em todas as heroes mobile (compensa navbar fixa)
   - Logo 10% menor (90px → 81px)
   ======================================================================== */
@media (max-width: 991px) {
  .site-hero {
    padding-top: 140px !important;
  }
  .image-27 {
    width: 81px !important;
  }
}
@media (max-width: 575px) {
  /* Reativa frame interno em mobile pequeno (estava display: none) */
  .site-hero__frame {
    display: block !important;
    inset: 16px !important;
  }
  .site-hero {
    padding-top: 140px !important;
  }
  .image-27 {
    width: 81px !important;
  }
}

/* ========================================================================
   EXPERIÊNCIAS UNIQUE / spa-unique.html — refino editorial (2026-05-06)
   - Section 35 (intro): H2 Poppins 200 + rule gold + paragraph editorial + CTA
   - Section 36 (cards): 6 serviços em padrão dark editorial premium
   ======================================================================== */

/* SECTION 35 — Hello bloco editorial (padding balanceado top/bottom) */
.section-35 {
  padding: clamp(72px, 8vw, 110px) 0 clamp(72px, 8vw, 110px) !important;
}
.section-35 .grid-33 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: clamp(40px, 5vw, 80px) !important;
  align-items: start !important;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto !important;
}
.section-35 .heading-48 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 200 !important;
  font-size: clamp(28px, 3.6vw, 44px) !important;
  letter-spacing: -0.005em !important;
  line-height: 1.2 !important;
  color: #fff !important;
  margin: 0 0 28px !important;
  text-align: left !important;
}
.section-35 .heading-48::after {
  display: none !important;
}
.section-35 .paragraph2 {
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(15px, 1.3vw, 17px) !important;
  line-height: 1.75 !important;
  margin: 0 !important;
  text-align: left !important;
}
.section-35 .paragraph2 strong {
  color: var(--burlywood) !important;
  font-weight: 500 !important;
}
.section-35 .btn.w-button {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .section-35 .grid-33 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* SECTION 36 — cards de serviços em dark editorial premium */
.section-36 {
  padding: 0 0 clamp(48px, 5vw, 80px) !important;
}
.section-36 .grid-32 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(20px, 2.5vw, 32px) !important;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto !important;
}
.section-36 .div-block-113 {
  position: relative;
  background: rgba(178, 145, 88, 0.04) !important;
  border: 1px solid rgba(178, 145, 88, 0.25) !important;
  border-radius: 6px !important;
  padding: clamp(28px, 3vw, 36px) clamp(22px, 2.5vw, 30px) !important;
  min-height: 200px;
  display: flex !important;
  flex-direction: column;
  gap: 14px;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
}
.section-36 .div-block-113:hover {
  background: rgba(178, 145, 88, 0.08) !important;
  border-color: rgba(178, 145, 88, 0.45) !important;
  transform: translateY(-2px);
}
.section-36 .div-block-113 .text-block-20 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--burlywood) !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4;
}
.section-36 .div-block-113 .paragraph-23 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .section-36 .grid-32 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 575px) {
  .section-36 .grid-32 {
    grid-template-columns: 1fr !important;
  }
}

/* ========================================================================
   SPA UNIQUE — refino editorial premium V2 (2026-05-06)
   Mais ousado: drop cap, glow gold, corner brackets, gallery com media-frame
   ======================================================================== */

/* SECTION 35 — vira .cpi-intro com glow radial gold + corner brackets */
.section-35 {
  position: relative;
  overflow: hidden;
}
.section-35::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle at center, rgba(178, 145, 88, 0.07) 0%, rgba(178, 145, 88, 0) 65%);
  pointer-events: none;
  z-index: 0;
}
.section-35 .grid-33 {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 3vw, 48px) clamp(20px, 3vw, 40px) !important;
  border-radius: 6px;
}
/* Corner brackets removidos a pedido do cliente — só glow gold radial */
@media (max-width: 575px) {
  .section-35::before { width: 380px; height: 380px; }
}

/* Drop cap no parágrafo intro — primeira letra "N" gold gigantesca */
.section-35 .paragraph2::first-letter {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: clamp(64px, 7vw, 100px);
  line-height: 0.85;
  color: var(--burlywood);
  float: left;
  margin: 6px 14px 0 0;
  padding: 0;
  letter-spacing: -0.04em;
}

/* Title via .bloco-titulo2 (HTML element) — segue padrão do site */
.section-36 {
  position: relative;
}

/* SECTION 36 — número discreto antes de cada card pra dar editorial feel */
.section-36 .div-block-113 {
  counter-increment: spa-services;
}
.section-36 .grid-32 {
  counter-reset: spa-services;
}
.section-36 .div-block-113::before {
  content: counter(spa-services, decimal-leading-zero);
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 1;
  color: rgba(178, 145, 88, 0.30);
  letter-spacing: -0.02em;
  pointer-events: none;
}

/* CTA final (.div-block-114) — bloco editorial com bg + frame
   Selector global pq agora vive fora da section-36 (após fotos) */
body .div-block-114 {
  position: relative;
  margin: clamp(40px, 5vw, 72px) auto clamp(72px, 8vw, 120px) !important;
  max-width: 1200px;
  width: 90%;
  padding: clamp(56px, 6vw, 96px) clamp(32px, 4vw, 64px) !important;
  background:
    radial-gradient(circle at center, rgba(178, 145, 88, 0.10) 0%, transparent 65%),
    linear-gradient(180deg, rgba(178, 145, 88, 0.06) 0%, rgba(178, 145, 88, 0.02) 100%) !important;
  border-radius: 6px;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}
body .div-block-114::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.28);
  border-radius: 4px;
  pointer-events: none;
}
body .div-block-114 .paragraph-19-copy {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 200 !important;
  font-size: clamp(20px, 2.2vw, 30px) !important;
  line-height: 1.45 !important;
  color: #fff !important;
  margin: 0 !important;
  max-width: 820px;
  letter-spacing: -0.005em;
}
body .div-block-114 .text-span-3 {
  color: var(--burlywood) !important;
  font-weight: 300 !important;
  font-size: inherit !important;
  line-height: inherit !important;
  display: inline !important;
  margin: 0 !important;
}
body .div-block-114 .div-block-115 {
  margin: 0 !important;
}

/* GALERIA SPA (.grid-unique-day) — 6 fotos em frame premium */
.grid-unique-day {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(20px, 2.5vw, 32px) !important;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto clamp(72px, 8vw, 120px) !important;
  padding: 0 !important;
}
.grid-unique-day .div-block-68 {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(178, 145, 88, 0.04);
  aspect-ratio: 4 / 5;
}
.grid-unique-day .div-block-68::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.30);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  transition: inset 0.4s ease, border-color 0.4s ease;
}
.grid-unique-day .div-block-68:hover::before {
  inset: 8px;
  border-color: rgba(178, 145, 88, 0.55);
}
.grid-unique-day .image-30 {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.grid-unique-day .div-block-68:hover .image-30 {
  transform: scale(1.04);
}
@media (max-width: 991px) {
  .grid-unique-day { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 575px) {
  .grid-unique-day { grid-template-columns: 1fr !important; }
}

/* Hero da terapias-injetaveis: object-position pra mostrar mais da parte inferior da foto */
.site-hero__bg img[src*="TERAPIAS-INJETAVEIS"] {
  object-position: 50% 65% !important;
}

/* ==========================================================================
   TERAPIAS INTEGRATIVAS — refino dark editorial
   Aplica em experiencias-unique/terapias-injetaveis.html APENAS.
   Classes exclusivas: .terapias-section, .grid-20, .div-block-80,
   .list-item-5, .text-block-11, .div-block-87b, .image-26 (dentro de .terapias-section).
   ========================================================================== */

.terapias-section {
  position: relative;
  background-color: #0a0a0a;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px);
  overflow: hidden;
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.terapias-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(420px, 60vw, 720px);
  height: clamp(420px, 60vw, 720px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(178, 145, 88, 0.07) 0%, rgba(178, 145, 88, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.terapias-section .grid-20 {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  grid-template-rows: auto !important;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.terapias-section .grid-20 > div:first-child {
  align-self: stretch;
  display: flex;
}

.terapias-section .grid-20 .media-frame {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 720px;
}

.terapias-section .grid-20 .media-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  transition: inset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.terapias-section .grid-20 .image-26 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.terapias-section .grid-20 .media-frame:hover .image-26 {
  transform: scale(1.04);
}

.terapias-section .grid-20 .media-frame:hover::before {
  inset: 8px;
}

.terapias-section .div-block-80 {
  max-width: none !important;
  margin: 0 !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.terapias-section .div-block-80 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.terapias-section .list-item-5 {
  margin: 0 !important;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.terapias-section .list-item-5::before {
  content: "";
  flex-shrink: 0;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--burlywood);
  background-color: var(--burlywood);
  background-clip: content-box;
  padding: 2.5px;
  transition: transform 0.25s ease;
}

.terapias-section .list-item-5:hover::before {
  transform: scale(1.15);
}

.terapias-section .text-block-11 {
  background-image: none !important;
  background-color: transparent !important;
  padding-left: 0 !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(14px, 1.05vw, 15.5px) !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  letter-spacing: 0.01em;
  flex: 1;
}

.terapias-section .div-block-87b {
  display: none !important;
}

.terapias-section .btn.w-button {
  align-self: flex-start;
  margin-top: 8px;
}

/* Reveal animation — herdada do padrão .conheca-reveal mas aplicada localmente */
.terapias-section .conheca-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.terapias-section .conheca-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .terapias-section .conheca-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .terapias-section .grid-20 {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .terapias-section .grid-20 > div:first-child {
    order: 2;
  }
  .terapias-section .grid-20 .div-block-80 {
    order: 1;
  }
  .terapias-section .grid-20 .media-frame {
    aspect-ratio: 4 / 5;
    max-height: 560px;
  }
  .terapias-section .div-block-80 {
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .terapias-section {
    padding: clamp(48px, 12vw, 80px) clamp(16px, 5vw, 32px);
  }
  .terapias-section .grid-20 {
    gap: 32px;
  }
  .terapias-section .grid-20 .media-frame {
    max-height: 460px;
  }
  .terapias-section .list-item-5 {
    gap: 12px;
  }
  .terapias-section .text-block-11 {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
}

/* ==========================================================================
   UNIQUE DAY — refino dark editorial
   Escopado em .unique-day-page (no <body>) pra não vazar pra outras páginas
   que reusam classes Webflow (text-span-17, grid-layout-3, etc.)
   ========================================================================== */

.unique-day-page .section-56 {
  position: relative;
  background-color: transparent;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px) clamp(48px, 6vw, 80px) !important;
  overflow: hidden;
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.unique-day-page .section-56::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(420px, 60vw, 720px);
  height: clamp(420px, 60vw, 720px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(178, 145, 88, 0.07) 0%, rgba(178, 145, 88, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.unique-day-page .section-56 .container-83 {
  position: relative;
  z-index: 1;
  max-width: 1240px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.unique-day-page .section-56 .grid-42 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.unique-day-page .subheading {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(15px, 1.15vw, 17.5px) !important;
  line-height: 1.75 !important;
  letter-spacing: 0.005em;
}

.unique-day-page .subheading strong {
  color: var(--burlywood);
  font-weight: 500;
}

/* Drop cap na primeira letra do parágrafo intro */
.unique-day-page .subheading::first-letter {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: clamp(64px, 7vw, 100px);
  color: var(--burlywood);
  float: left;
  line-height: 0.9;
  margin: 4px 14px 0 0;
  padding-top: 4px;
}

/* Galeria 3 fotos com frame premium */
.unique-day-page .div-block-10857 {
  position: relative;
}

.unique-day-page .grid-layout-2.desktop-9-column {
  position: relative;
  z-index: 2;
}

.unique-day-page .grid-layout-2.desktop-9-column > div {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.unique-day-page .grid-layout-2.desktop-9-column > div::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  transition: inset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-day-page .grid-layout-2.desktop-9-column .image-118 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: none !important;
  box-shadow: none !important;
}

.unique-day-page .grid-layout-2.desktop-9-column > div:hover .image-118 {
  transform: scale(1.04);
}

.unique-day-page .grid-layout-2.desktop-9-column > div:hover::before {
  inset: 6px;
}

/* Sections dos steps — bg transparent (herda body #0a0a0a) */
.unique-day-page .section-2,
.unique-day-page .section-2-b {
  background-color: transparent !important;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 48px) !important;
  position: relative;
}

.unique-day-page .container-84,
.unique-day-page .container-97 {
  max-width: 1240px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Esconder dividers entre steps — agora cards têm gap próprio */
.unique-day-page .divider,
.unique-day-page .divider-2 {
  display: none !important;
}

/* ----------- TIMELINE — zigzag premium com animações sincronizadas -----------*/

/* Container da timeline (parent dos steps) */
.unique-day-page .grid-layout-3.desktop-1-column,
.unique-day-page .grid-layout-4.desktop-1-column {
  display: block !important;
  position: relative;
  counter-reset: ud-step;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) 0;
}

/* Linha vertical central — desenha de cima pra baixo quando entra no viewport */
.unique-day-page .grid-layout-3.desktop-1-column::before,
.unique-day-page .grid-layout-4.desktop-1-column::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(178, 145, 88, 0.45) 6%,
    rgba(178, 145, 88, 0.45) 94%,
    transparent 100%
  );
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  z-index: 0;
}

.unique-day-page .grid-layout-3.desktop-1-column.is-visible::before,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible::before {
  transform: translateX(-50%) scaleY(1);
}

/* Cada step — grid 3-col [card-left | marker | card-right] */
.unique-day-page .grid-layout-3.mobile-landscape-1-column,
.unique-day-page .grid-layout-4.mobile-landscape-1-column {
  display: grid !important;
  grid-template-columns: 1fr 96px 1fr !important;
  align-items: center;
  gap: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  margin: clamp(36px, 4.5vw, 72px) 0;
  position: relative;
  counter-increment: ud-step;
  transform: none !important;
}

.unique-day-page .grid-layout-3.mobile-landscape-1-column:hover,
.unique-day-page .grid-layout-4.mobile-landscape-1-column:hover {
  background: none !important;
  border: none !important;
  transform: none !important;
}

/* Marker central — círculo com counter "01", "02", "03"... */
.unique-day-page .grid-layout-3.mobile-landscape-1-column::before,
.unique-day-page .grid-layout-4.mobile-landscape-1-column::before {
  content: counter(ud-step, decimal-leading-zero);
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #0a0a0a;
  border: 1px solid rgba(178, 145, 88, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  color: var(--burlywood);
  font-size: 17px;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
  transform: scale(0);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, background-color 0.4s ease;
  box-shadow: 0 0 0 6px rgba(10, 10, 10, 1);
}

/* Halo pulse atrás do marker (entrada) */
.unique-day-page .grid-layout-3.mobile-landscape-1-column::after,
.unique-day-page .grid-layout-4.mobile-landscape-1-column::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  align-self: center;
  justify-self: center;
  border-radius: 50%;
  border: 1px solid rgba(178, 145, 88, 0.45);
  position: relative;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: scale(1);
}

/* h3 + p posicionados em colunas — zigzag baseado em :nth-of-type
   Sequência DOM: step1, divider, step2, divider, step3, divider, step4, divider, step5, divider, step6
   Indices nth-of-type: step1=1, step2=3, step3=5, step4=7, step5=9, step6=11
   LEFT: 4n+1 → 1, 5, 9
   RIGHT: 4n+3 → 3, 7, 11 */
.unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+1) > h3,
.unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+1) > p,
.unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+1) > h3,
.unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+1) > p {
  grid-column: 1 !important;
  text-align: right;
  padding-right: clamp(20px, 3vw, 40px);
}

.unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+3) > h3,
.unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+3) > p,
.unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+3) > h3,
.unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+3) > p {
  grid-column: 3 !important;
  text-align: left;
  padding-left: clamp(20px, 3vw, 40px);
}

.unique-day-page .grid-layout-3.mobile-landscape-1-column h3,
.unique-day-page .grid-layout-4.mobile-landscape-1-column h3 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  color: #fff !important;
  font-size: clamp(18px, 1.5vw, 24px) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.005em;
  margin: 0 0 10px 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  grid-row: 1;
  align-self: end;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-30px);
}

.unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+3) > h3,
.unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+3) > h3 {
  transform: translateX(30px);
}

/* Esconder o "1.", "2." inline no h3 — visualmente vai ficar no marker */
.unique-day-page .grid-layout-3.mobile-landscape-1-column h3 .text-span-17,
.unique-day-page .grid-layout-4.mobile-landscape-1-column h3 .text-span-18 {
  display: none !important;
}

.unique-day-page .grid-layout-3.mobile-landscape-1-column p,
.unique-day-page .grid-layout-4.mobile-landscape-1-column p {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: clamp(13.5px, 1.05vw, 15px) !important;
  line-height: 1.7 !important;
  letter-spacing: 0.005em;
  margin: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  grid-row: 2;
  align-self: start;
  max-width: 460px;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  transform: translateX(-30px);
}

.unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+1) > p {
  margin-left: auto !important;
  transform: translateX(-30px);
}

.unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+3) > p,
.unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+3) > p {
  transform: translateX(30px);
}

.unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+1) > p {
  margin-left: auto !important;
}

.unique-day-page .grid-layout-3.mobile-landscape-1-column p strong,
.unique-day-page .grid-layout-4.mobile-landscape-1-column p strong {
  color: var(--burlywood);
  font-weight: 500;
}

/* Animations: parent .is-visible dispara cascata sincronizada */
/* Marker scale-in com stagger */
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(4n+1)::before,
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(4n+3)::before,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(4n+1)::before,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(4n+3)::before {
  transform: scale(1);
}

/* h3 e p fade-in com stagger */
.unique-day-page .grid-layout-3.desktop-1-column.is-visible .grid-layout-3.mobile-landscape-1-column > h3,
.unique-day-page .grid-layout-3.desktop-1-column.is-visible .grid-layout-3.mobile-landscape-1-column > p,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible .grid-layout-4.mobile-landscape-1-column > h3,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible .grid-layout-4.mobile-landscape-1-column > p {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays — 0.55s base + 0.13s per step */
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(1)::before,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(1)::before {
  transition-delay: 0.55s;
}
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(3)::before,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(3)::before {
  transition-delay: 0.68s;
}
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(5)::before,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(5)::before {
  transition-delay: 0.81s;
}
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(7)::before,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(7)::before {
  transition-delay: 0.94s;
}
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(9)::before,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(9)::before {
  transition-delay: 1.07s;
}
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(11)::before {
  transition-delay: 1.2s;
}

/* Texto stagger — sincronizado com o marker mas com offset suave */
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(1) > h3,
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(1) > p,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(1) > h3,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(1) > p {
  transition-delay: 0.7s;
}
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(3) > h3,
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(3) > p,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(3) > h3,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(3) > p {
  transition-delay: 0.83s;
}
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(5) > h3,
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(5) > p,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(5) > h3,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(5) > p {
  transition-delay: 0.96s;
}
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(7) > h3,
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(7) > p,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(7) > h3,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(7) > p {
  transition-delay: 1.09s;
}
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(9) > h3,
.unique-day-page .grid-layout-3.desktop-1-column.is-visible > div:nth-of-type(9) > p,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(9) > h3,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(9) > p {
  transition-delay: 1.22s;
}
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(11) > h3,
.unique-day-page .grid-layout-4.desktop-1-column.is-visible > div:nth-of-type(11) > p {
  transition-delay: 1.35s;
}

/* Hover no marker — pulse sutil + glow gold */
.unique-day-page .grid-layout-3.mobile-landscape-1-column:hover::before,
.unique-day-page .grid-layout-4.mobile-landscape-1-column:hover::before {
  border-color: rgba(178, 145, 88, 0.85);
  background-color: rgba(178, 145, 88, 0.12);
  box-shadow: 0 0 0 6px rgba(10, 10, 10, 1), 0 0 18px rgba(178, 145, 88, 0.35);
}

/* CTA wrappers */
.unique-day-page .div-block-10859,
.unique-day-page .div-block-11004 {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 5vw, 64px);
}

.unique-day-page .div-block-10889,
.unique-day-page .div-block-11005 {
  display: flex;
  justify-content: center;
}

/* Subtítulo da seção online */
.unique-day-page .heading-50-copy-cop {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: clamp(14px, 1.1vw, 16px) !important;
  line-height: 1.6 !important;
  margin-top: 12px !important;
  letter-spacing: 0.005em;
  text-align: center;
}

/* Reveal animation */
.unique-day-page .conheca-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-day-page .conheca-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .unique-day-page .conheca-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive — timeline reta com linha à esquerda, todos os cards à direita */
@media (max-width: 991px) {
  /* Section-56 (intro): grid 1-col + container respeita viewport */
  .unique-day-page .section-56 {
    overflow-x: clip;
  }
  .unique-day-page .section-56 .container-83 {
    max-width: 100% !important;
  }
  .unique-day-page .section-56 .grid-42 {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  /* Galeria de 3 fotos: vira 1-col em mobile (fotos uma embaixo da outra) */
  .unique-day-page .div-block-10857 {
    width: 100% !important;
  }
  .unique-day-page .div-block-10857 .utility-position-relative.flex-horizontal {
    width: 100% !important;
    display: block !important;
  }
  .unique-day-page .grid-layout-2.desktop-9-column {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
  }
  .unique-day-page .grid-layout-2.desktop-9-column > div {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  /* Containers das timelines — overflow clip pra evitar que box-shadow/translate vazem horizontalmente */
  .unique-day-page .section-2,
  .unique-day-page .section-2-b {
    overflow-x: clip;
  }
  .unique-day-page .grid-layout-3.desktop-1-column,
  .unique-day-page .grid-layout-4.desktop-1-column {
    padding: 20px 0 !important;
    max-width: 100% !important;
  }
  /* Linha vai pra esquerda — alinhada com o center do marker (28px do edge) */
  .unique-day-page .grid-layout-3.desktop-1-column::before,
  .unique-day-page .grid-layout-4.desktop-1-column::before {
    left: 28px !important;
    transform: scaleY(0) !important;
    transform-origin: top center;
  }
  .unique-day-page .grid-layout-3.desktop-1-column.is-visible::before,
  .unique-day-page .grid-layout-4.desktop-1-column.is-visible::before {
    transform: scaleY(1) !important;
  }
  /* Cada step: 2-col [marker | conteúdo] empilhado h3 → p */
  .unique-day-page .grid-layout-3.mobile-landscape-1-column,
  .unique-day-page .grid-layout-4.mobile-landscape-1-column {
    grid-template-columns: 56px 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    gap: 0 !important;
    margin: 28px 0 !important;
    padding-left: 0 !important;
    min-height: 56px;
  }
  /* Marker mais compacto em mobile */
  .unique-day-page .grid-layout-3.mobile-landscape-1-column::before,
  .unique-day-page .grid-layout-4.mobile-landscape-1-column::before {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    margin: 0 !important;
    width: 56px !important;
    height: 56px !important;
    font-size: 15px !important;
    align-self: start !important;
    justify-self: start !important;
    box-shadow: 0 0 0 5px rgba(10, 10, 10, 1) !important;
  }
  .unique-day-page .grid-layout-3.mobile-landscape-1-column::after,
  .unique-day-page .grid-layout-4.mobile-landscape-1-column::after {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 56px !important;
    height: 56px !important;
    align-self: start !important;
    justify-self: start !important;
    margin: 0 !important;
  }
  /* h3 + p sempre à direita do marker, empilhados, sem zigzag */
  .unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+1) > h3,
  .unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+3) > h3,
  .unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+1) > h3,
  .unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+3) > h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: left !important;
    padding: 0 0 0 18px !important;
    margin: 0 0 6px 0 !important;
    transform: translateX(-20px);
    align-self: start !important;
  }
  .unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+1) > p,
  .unique-day-page .grid-layout-3.desktop-1-column > div:nth-of-type(4n+3) > p,
  .unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+1) > p,
  .unique-day-page .grid-layout-4.desktop-1-column > div:nth-of-type(4n+3) > p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    text-align: left !important;
    padding: 0 0 0 18px !important;
    margin: 0 !important;
    transform: translateX(-20px);
    align-self: start !important;
    max-width: none !important;
  }
  .unique-day-page .grid-layout-3.mobile-landscape-1-column h3,
  .unique-day-page .grid-layout-4.mobile-landscape-1-column h3 {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }
  .unique-day-page .grid-layout-3.mobile-landscape-1-column p,
  .unique-day-page .grid-layout-4.mobile-landscape-1-column p {
    font-size: 13.5px !important;
    line-height: 1.65 !important;
  }
}

@media (max-width: 575px) {
  .unique-day-page .section-56 {
    padding: clamp(48px, 12vw, 80px) clamp(16px, 5vw, 32px) clamp(32px, 8vw, 56px) !important;
  }
  .unique-day-page .section-2,
  .unique-day-page .section-2-b {
    padding: clamp(40px, 10vw, 64px) clamp(16px, 5vw, 32px) !important;
  }
  .unique-day-page .subheading {
    font-size: 14.5px !important;
    line-height: 1.7 !important;
  }
  .unique-day-page .subheading::first-letter {
    font-size: 64px;
    margin: 2px 10px 0 0;
  }
  .unique-day-page .grid-layout-3.mobile-landscape-1-column,
  .unique-day-page .grid-layout-4.mobile-landscape-1-column {
    padding: 24px 20px !important;
  }
  .unique-day-page .grid-layout-2.desktop-9-column > div::before {
    inset: 8px;
  }
  .unique-day-page .grid-layout-2.desktop-9-column > div:hover::before {
    inset: 5px;
  }
}

/* ==========================================================================
   UNIQUE TRAVEL EXPERIENCE — refino dark editorial
   Escopado em .unique-travel-page (no <body>) pra não vazar pra outras páginas
   que reusam classes Webflow (paragraph, div-block-76, bloco-efeito, etc.)
   ========================================================================== */

/* Wrapper outer — section editorial dark com glow */
.unique-travel-page > .div-block-76 {
  position: relative !important;
  background-color: transparent;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px) !important;
  overflow: hidden;
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.unique-travel-page > .div-block-76::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(420px, 60vw, 720px);
  height: clamp(420px, 60vw, 720px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(178, 145, 88, 0.07) 0%, rgba(178, 145, 88, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.unique-travel-page > .div-block-76 > .container-2-copy {
  position: relative !important;
  z-index: 1 !important;
  max-width: 920px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Marca d'água "Unique Travel" — logo decorativo gold acima do texto */
.unique-travel-page .div-block-4 {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 auto clamp(36px, 5vw, 56px) !important;
  padding: 0 !important;
  background: transparent !important;
  width: 100%;
  max-width: 480px;
}

.unique-travel-page .image-21 {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 420px;
  margin: 0 auto !important;
  opacity: 0.92;
  filter: brightness(0) invert(1);
}

/* Inner wrapper (.div-block-76 aninhado) — só centraliza */
.unique-travel-page .div-block-76 .div-block-76 {
  background: transparent !important;
  padding: 0 !important;
  overflow: visible;
  border: none;
}
.unique-travel-page .div-block-76 .div-block-76::before {
  display: none;
}

/* Parágrafo principal — Poppins 300 com drop cap "A" gold */
.unique-travel-page .paragraph {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(15px, 1.15vw, 17.5px) !important;
  line-height: 1.85 !important;
  letter-spacing: 0.005em;
  text-align: left;
  margin: 0 0 clamp(36px, 5vw, 56px) 0 !important;
  padding: 0 !important;
}

.unique-travel-page .paragraph::first-letter {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: clamp(64px, 7vw, 100px);
  color: var(--burlywood);
  float: left;
  line-height: 0.9;
  margin: 4px 14px 0 0;
  padding-top: 4px;
}

/* Botão Agendar consulta */
.unique-travel-page .div-block-90 {
  display: flex !important;
  justify-content: center;
  margin: clamp(8px, 2vw, 24px) 0 0 0 !important;
  padding: 0 !important;
}

/* Esconder o "tras" decorativo */
.unique-travel-page .div-block-87b {
  display: none !important;
}

/* Galeria 3 fotos — frame premium gold */
.unique-travel-page .grid-28-copycdac {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 28px) !important;
  max-width: 1240px;
  margin: 0 auto clamp(72px, 9vw, 120px) !important;
  padding: 0 clamp(20px, 5vw, 60px) !important;
}

.unique-travel-page .bloco-efeito {
  position: relative !important;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  background: transparent;
}

.unique-travel-page .bloco-efeito::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  transition: inset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-travel-page .bloco-efeito .img-efeito {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: none !important;
}

.unique-travel-page .bloco-efeito:hover .img-efeito {
  transform: scale(1.04);
}

.unique-travel-page .bloco-efeito:hover::before {
  inset: 7px;
}

/* Reveal animation */
.unique-travel-page .conheca-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-travel-page .conheca-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .unique-travel-page .conheca-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .unique-travel-page > .div-block-76 {
    overflow-x: clip;
  }
  .unique-travel-page > .div-block-76 > .container-2-copy {
    max-width: 100% !important;
  }
  .unique-travel-page .grid-28-copycdac {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }
}

@media (max-width: 575px) {
  .unique-travel-page > .div-block-76 {
    padding: clamp(48px, 12vw, 80px) clamp(16px, 5vw, 32px) !important;
  }
  .unique-travel-page .paragraph {
    font-size: 14.5px !important;
    line-height: 1.75 !important;
  }
  .unique-travel-page .paragraph::first-letter {
    font-size: 64px;
    margin: 2px 10px 0 0;
  }
  .unique-travel-page .grid-28-copycdac {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 0 clamp(16px, 5vw, 32px) !important;
  }
  .unique-travel-page .bloco-efeito::before {
    inset: 9px;
  }
  .unique-travel-page .bloco-efeito:hover::before {
    inset: 5px;
  }
}

/* ==========================================================================
   UNIQUE EXPERIENCE — refino dark editorial (2026-05-07)
   Escopado em .unique-experience-page (no <body>) — redesign completo
   do miolo: manifesto centralizado + 4 pilares + galeria + CTA editorial.
   ========================================================================== */

.unique-experience-page .ux-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--burlywood);
  text-indent: 0.42em;
  opacity: 0.92;
  margin: 0 0 18px 0;
}

.unique-experience-page .ux-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
  max-width: 760px;
}

.unique-experience-page .ux-section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto clamp(48px, 6vw, 72px);
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: 920px;
}

.unique-experience-page .ux-section-head .ux-section-title {
  margin: 0 auto;
}

/* ---------- Section 2 — Manifesto centralizado ---------- */
.unique-experience-page .ux-manifesto {
  position: relative;
  background-color: transparent;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 60px) clamp(72px, 9vw, 110px);
  overflow: hidden;
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.unique-experience-page .ux-manifesto__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(420px, 60vw, 760px);
  height: clamp(420px, 60vw, 760px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(178, 145, 88, 0.08) 0%, rgba(178, 145, 88, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.unique-experience-page .ux-manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.unique-experience-page .ux-manifesto__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.unique-experience-page .ux-manifesto__logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0.94;
  filter: brightness(0) invert(1);
}

.unique-experience-page .ux-manifesto__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 clamp(20px, 2.6vw, 28px);
  max-width: 720px;
}

.unique-experience-page .ux-manifesto__lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.18vw, 17.5px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 680px;
}

.unique-experience-page .ux-manifesto__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: clamp(36px, 4.5vw, 52px) auto 0;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

/* ---------- Section 3 — Pilares ---------- */
.unique-experience-page .ux-pillars {
  position: relative;
  padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.unique-experience-page .ux-pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: 1180px;
  margin: 0 auto;
}

.unique-experience-page .ux-pillar {
  position: relative;
  background: rgba(178, 145, 88, 0.04);
  border: 1px solid rgba(178, 145, 88, 0.25);
  border-radius: 6px;
  padding: clamp(32px, 3.6vw, 44px) clamp(28px, 3.2vw, 38px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.unique-experience-page .ux-pillar:hover {
  background: rgba(178, 145, 88, 0.08);
  border-color: rgba(178, 145, 88, 0.45);
  transform: translateY(-2px);
}

.unique-experience-page .ux-pillar__num {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--burlywood);
  opacity: 0.55;
  margin-bottom: clamp(20px, 2.4vw, 28px);
}

.unique-experience-page .ux-pillar__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burlywood);
  margin: 0 0 14px 0;
}

.unique-experience-page .ux-pillar__body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.05vw, 15.5px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ---------- Section 4 — Galeria editorial ---------- */
.unique-experience-page .ux-gallery {
  position: relative;
  padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.unique-experience-page .ux-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  max-width: 1240px;
  margin: 0 auto;
}

.unique-experience-page .ux-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  background: transparent;
  margin: 0;
}

.unique-experience-page .ux-gallery__item::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  transition: inset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-experience-page .ux-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-experience-page .ux-gallery__item:hover .ux-gallery__img {
  transform: scale(1.04);
}

.unique-experience-page .ux-gallery__item:hover::before {
  inset: 7px;
}

/* ---------- Section 5 — CTA editorial ---------- */
.unique-experience-page .ux-cta {
  position: relative;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.unique-experience-page .ux-cta__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at center, rgba(178, 145, 88, 0.10) 0%, rgba(178, 145, 88, 0) 70%),
    linear-gradient(180deg, rgba(178, 145, 88, 0.06) 0%, rgba(10, 10, 10, 0.4) 100%);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.unique-experience-page .ux-cta__inner::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.28);
  border-radius: 4px;
  pointer-events: none;
}

.unique-experience-page .ux-cta__text {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 720px;
}

.unique-experience-page .ux-cta__text strong {
  color: var(--burlywood);
  font-weight: 500;
}

.unique-experience-page .ux-cta__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: clamp(28px, 3.5vw, 40px) auto;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

.unique-experience-page .ux-cta .btn-janela {
  position: relative;
  z-index: 1;
}

/* ---------- Reveal animation ---------- */
.unique-experience-page .conheca-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-experience-page .conheca-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .unique-experience-page .conheca-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .unique-experience-page .ux-pillars__grid {
    grid-template-columns: 1fr;
  }
  .unique-experience-page .ux-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .unique-experience-page .ux-manifesto {
    padding: clamp(56px, 14vw, 88px) clamp(18px, 5vw, 32px);
  }
  .unique-experience-page .ux-manifesto__logo-img {
    max-width: 320px;
  }
  .unique-experience-page .ux-pillars,
  .unique-experience-page .ux-gallery,
  .unique-experience-page .ux-cta {
    padding: clamp(56px, 14vw, 88px) clamp(18px, 5vw, 32px);
  }
  .unique-experience-page .ux-gallery__grid {
    grid-template-columns: 1fr;
  }
  .unique-experience-page .ux-pillar {
    min-height: auto;
    padding: 32px 26px;
  }
  .unique-experience-page .ux-cta__inner {
    padding: 48px 22px;
  }
  .unique-experience-page .ux-cta__inner::before {
    inset: 10px;
  }
}


/* ==========================================================================
   UNIQUE TRAVEL EXPERIENCE — refino dark editorial (2026-05-07)
   Escopado em .unique-travel-experience-page (no <body>) — redesign completo
   do miolo: manifesto centralizado + 4 pilares + galeria + CTA editorial.
   ========================================================================== */

.unique-travel-experience-page .utx-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--burlywood);
  text-indent: 0.42em;
  opacity: 0.92;
  margin: 0 0 18px 0;
}

.unique-travel-experience-page .utx-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
  max-width: 760px;
}

.unique-travel-experience-page .utx-section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto clamp(48px, 6vw, 72px);
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: 920px;
}

.unique-travel-experience-page .utx-section-head .utx-section-title {
  margin: 0 auto;
}

/* ---------- Section 2 — Manifesto centralizado ---------- */
.unique-travel-experience-page .utx-manifesto {
  position: relative;
  background-color: transparent;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 60px) clamp(72px, 9vw, 110px);
  overflow: hidden;
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.unique-travel-experience-page .utx-manifesto__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(420px, 60vw, 760px);
  height: clamp(420px, 60vw, 760px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(178, 145, 88, 0.08) 0%, rgba(178, 145, 88, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.unique-travel-experience-page .utx-manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.unique-travel-experience-page .utx-manifesto__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.unique-travel-experience-page .utx-manifesto__logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0.94;
  filter: brightness(0) invert(1);
}

.unique-travel-experience-page .utx-manifesto__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 clamp(20px, 2.6vw, 28px);
  max-width: 720px;
}

.unique-travel-experience-page .utx-manifesto__lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.18vw, 17.5px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 680px;
}

.unique-travel-experience-page .utx-manifesto__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: clamp(36px, 4.5vw, 52px) auto 0;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

/* ---------- Section 3 — Pilares ---------- */
.unique-travel-experience-page .utx-pillars {
  position: relative;
  padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.unique-travel-experience-page .utx-pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: 1180px;
  margin: 0 auto;
}

.unique-travel-experience-page .utx-pillars__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
}

.unique-travel-experience-page .utx-pillars__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}

.unique-travel-experience-page .utx-pillars--secondary {
  padding-top: 0;
  border-top: none;
}

.unique-travel-experience-page .utx-section-lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.18vw, 17.5px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.unique-travel-experience-page .utx-pillar {
  position: relative;
  background: rgba(178, 145, 88, 0.04);
  border: 1px solid rgba(178, 145, 88, 0.25);
  border-radius: 6px;
  padding: clamp(32px, 3.6vw, 44px) clamp(28px, 3.2vw, 38px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.unique-travel-experience-page .utx-pillar:hover {
  background: rgba(178, 145, 88, 0.08);
  border-color: rgba(178, 145, 88, 0.45);
  transform: translateY(-2px);
}

.unique-travel-experience-page .utx-pillar__num {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--burlywood);
  opacity: 0.55;
  margin-bottom: clamp(20px, 2.4vw, 28px);
}

.unique-travel-experience-page .utx-pillar__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burlywood);
  margin: 0 0 14px 0;
}

.unique-travel-experience-page .utx-pillar__body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.05vw, 15.5px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ---------- Section 4 — Galeria editorial ---------- */
.unique-travel-experience-page .utx-gallery {
  position: relative;
  padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.unique-travel-experience-page .utx-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  max-width: 1240px;
  margin: 0 auto;
}

.unique-travel-experience-page .utx-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  background: transparent;
  margin: 0;
}

.unique-travel-experience-page .utx-gallery__item::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  transition: inset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-travel-experience-page .utx-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-travel-experience-page .utx-gallery__item:hover .utx-gallery__img {
  transform: scale(1.04);
}

.unique-travel-experience-page .utx-gallery__item:hover::before {
  inset: 7px;
}

/* ---------- Section 5 — CTA editorial ---------- */
.unique-travel-experience-page .utx-cta {
  position: relative;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.unique-travel-experience-page .utx-cta__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at center, rgba(178, 145, 88, 0.10) 0%, rgba(178, 145, 88, 0) 70%),
    linear-gradient(180deg, rgba(178, 145, 88, 0.06) 0%, rgba(10, 10, 10, 0.4) 100%);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.unique-travel-experience-page .utx-cta__inner::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.28);
  border-radius: 4px;
  pointer-events: none;
}

.unique-travel-experience-page .utx-cta__text {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 720px;
}

.unique-travel-experience-page .utx-cta__text strong {
  color: var(--burlywood);
  font-weight: 500;
}

.unique-travel-experience-page .utx-cta__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: clamp(28px, 3.5vw, 40px) auto;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

.unique-travel-experience-page .utx-cta .btn-janela {
  position: relative;
  z-index: 1;
}

/* ---------- Reveal animation ---------- */
.unique-travel-experience-page .conheca-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-travel-experience-page .conheca-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .unique-travel-experience-page .conheca-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .unique-travel-experience-page .utx-pillars__grid {
    grid-template-columns: 1fr;
  }
  .unique-travel-experience-page .utx-pillars__grid--3,
  .unique-travel-experience-page .utx-pillars__grid--2 {
    grid-template-columns: 1fr;
  }
  .unique-travel-experience-page .utx-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .unique-travel-experience-page .utx-manifesto {
    padding: clamp(56px, 14vw, 88px) clamp(18px, 5vw, 32px);
  }
  .unique-travel-experience-page .utx-manifesto__logo-img {
    max-width: 320px;
  }
  .unique-travel-experience-page .utx-pillars,
  .unique-travel-experience-page .utx-gallery,
  .unique-travel-experience-page .utx-cta {
    padding: clamp(56px, 14vw, 88px) clamp(18px, 5vw, 32px);
  }
  .unique-travel-experience-page .utx-gallery__grid {
    grid-template-columns: 1fr;
  }
  .unique-travel-experience-page .utx-pillar {
    min-height: auto;
    padding: 32px 26px;
  }
  .unique-travel-experience-page .utx-cta__inner {
    padding: 48px 22px;
  }
  .unique-travel-experience-page .utx-cta__inner::before {
    inset: 10px;
  }
}

/* ==========================================================================
   EXPERIÊNCIAS — template SHARED (2026-05-07)
   Classes .exp-* compartilhadas entre as 3 páginas:
   - unique-travel-experience.html
   - unique-experience.html
   - dia-das-empoderadas.html
   Layout: Intro unificada (logo + 2 parágrafos) + Lista vertical editorial
   numerada + Galeria 3 fotos + CTA polida.
   ========================================================================== */

/* ---------- Section Intro unificada ---------- */
.exp-intro {
  position: relative;
  background-color: transparent;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 60px);
  overflow: hidden;
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.exp-intro__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(420px, 60vw, 760px);
  height: clamp(420px, 60vw, 760px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(178, 145, 88, 0.08) 0%, rgba(178, 145, 88, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.exp-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.exp-intro__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.exp-intro__logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0.94;
  filter: brightness(0) invert(1);
}

.exp-intro__logo-img--natural {
  filter: none;
  opacity: 1;
}

.exp-intro__lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15.5px, 1.22vw, 18.5px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  max-width: 700px;
}

.exp-intro__lead + .exp-intro__lead {
  margin-top: clamp(20px, 2.4vw, 28px);
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(14.5px, 1.12vw, 17px);
}

.exp-intro__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: clamp(36px, 4.5vw, 52px) auto 0;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

/* ---------- Section Lista vertical editorial ---------- */
.exp-list-section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.exp-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;
}

.exp-list__item {
  display: grid;
  grid-template-columns: minmax(72px, 96px) 1fr;
  gap: clamp(28px, 3.6vw, 56px);
  padding: clamp(30px, 3.6vw, 44px) clamp(8px, 1.5vw, 16px);
  border-top: 1px solid rgba(178, 145, 88, 0.16);
  align-items: start;
  transition: background-color 0.4s ease;
}

.exp-list__item:first-child {
  border-top: none;
}

.exp-list__item:hover {
  background-color: rgba(178, 145, 88, 0.04);
}

.exp-list__num {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.005em;
  color: var(--burlywood);
  line-height: 1;
  opacity: 0.9;
  align-self: start;
  margin-top: 4px;
}

.exp-list__content {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
}

.exp-list__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.05vw, 14.5px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burlywood);
  margin: 0;
}

.exp-list__body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 720px;
}

/* ---------- Section Galeria editorial ---------- */
.exp-gallery {
  position: relative;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.exp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  max-width: 1240px;
  margin: 0 auto;
}

.exp-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  background: transparent;
  margin: 0;
}

.exp-gallery__item::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  transition: inset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-gallery__item:hover .exp-gallery__img {
  transform: scale(1.04);
}

.exp-gallery__item:hover::before {
  inset: 7px;
}

/* ---------- Section CTA editorial polida ---------- */
.exp-cta {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
}

.exp-cta__inner {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) clamp(32px, 6vw, 88px);
  background-color: transparent;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.88) 100%),
    radial-gradient(circle at 50% 50%, rgba(178, 145, 88, 0.18) 0%, rgba(178, 145, 88, 0) 60%),
    url('../assets/cta-quem-somos.webp');
  background-position: 0 0, 50% 50%, 50% 50%;
  background-size: auto, auto, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.exp-cta__inner::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(178, 145, 88, 0.28);
  border-radius: 4px;
  pointer-events: none;
}

.exp-cta__text {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 720px;
}

.exp-cta__text strong {
  color: var(--burlywood);
  font-weight: 500;
}

.exp-cta__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: clamp(32px, 4vw, 48px) auto;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

.exp-cta .btn-janela {
  position: relative;
  z-index: 1;
}

/* ---------- Reveal animation ---------- */
.exp-intro.conheca-reveal,
.exp-list-section .conheca-reveal,
.exp-gallery .conheca-reveal,
.exp-cta.conheca-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-intro.conheca-reveal.is-visible,
.exp-list-section .conheca-reveal.is-visible,
.exp-gallery .conheca-reveal.is-visible,
.exp-cta.conheca-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .exp-intro.conheca-reveal,
  .exp-list-section .conheca-reveal,
  .exp-gallery .conheca-reveal,
  .exp-cta.conheca-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .exp-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .exp-list__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: clamp(28px, 7vw, 36px) 4px;
  }
  .exp-list__num {
    font-size: 32px;
    margin-bottom: 6px;
  }
}

@media (max-width: 575px) {
  .exp-intro {
    padding: clamp(56px, 14vw, 88px) clamp(18px, 5vw, 32px);
  }
  .exp-intro__logo-img {
    max-width: 320px;
  }
  .exp-list-section,
  .exp-gallery,
  .exp-cta {
    padding: clamp(56px, 14vw, 88px) clamp(18px, 5vw, 32px);
  }
  .exp-gallery__grid {
    grid-template-columns: 1fr;
  }
  .exp-cta__inner {
    padding: 52px 24px;
  }
  .exp-cta__inner::before {
    inset: 10px;
  }
}

/* Logo natural (Empoderadas) — usa mix-blend-mode pra eliminar fundo preto opaco
   e revelar apenas o dourado da marca sobre o body dark */
.exp-intro__logo-img--natural {
  mix-blend-mode: screen;
}

/* ==========================================================================
   EXP TIMELINE — zigzag editorial premium (mesmo padrão da .unique-day-page)
   Substitui o .exp-list nas 3 páginas (travel-experience, unique-experience,
   dia-empoderadas). Funciona com qualquer número de steps (2, 4, 5...).
   ========================================================================== */

.exp-timeline-section {
  position: relative;
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
  overflow-x: clip;
}

.exp-timeline {
  position: relative;
  counter-reset: exp-step;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) 0;
}

/* Linha vertical central — desenha de cima pra baixo quando entra no viewport */
.exp-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(178, 145, 88, 0.45) 6%,
    rgba(178, 145, 88, 0.45) 94%,
    transparent 100%
  );
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  z-index: 0;
}

.exp-timeline.is-visible::before {
  transform: translateX(-50%) scaleY(1);
}

/* Each step — grid 3-col [card-left | marker | card-right] */
.exp-timeline__step {
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: center;
  margin: clamp(36px, 4.5vw, 72px) 0;
  position: relative;
  counter-increment: exp-step;
}

/* Marker central — círculo com counter "01", "02", "03"... */
.exp-timeline__step::before {
  content: counter(exp-step, decimal-leading-zero);
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #0a0a0a;
  border: 1px solid rgba(178, 145, 88, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  color: var(--burlywood);
  font-size: 17px;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
  transform: scale(0);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, background-color 0.4s ease;
  box-shadow: 0 0 0 6px rgba(10, 10, 10, 1);
  align-self: center;
}

.exp-timeline.is-visible .exp-timeline__step::before {
  transform: scale(1);
}

/* Hover no marker — pulse sutil + glow gold */
.exp-timeline__step:hover::before {
  border-color: rgba(178, 145, 88, 0.85);
  background-color: rgba(178, 145, 88, 0.12);
  box-shadow: 0 0 0 6px rgba(10, 10, 10, 1), 0 0 18px rgba(178, 145, 88, 0.35);
}

/* Zigzag: nth-of-type(4n+1) = LEFT, nth-of-type(4n+3) = RIGHT.
   Sequência DOM: step1, divider, step2, divider, step3, divider, step4, divider, step5
   Indices: step1=1 (4n+1), step2=3 (4n+3), step3=5 (4n+1), step4=7 (4n+3), step5=9 (4n+1). */
.exp-timeline > div:nth-of-type(4n+1) > h3,
.exp-timeline > div:nth-of-type(4n+1) > p {
  grid-column: 1;
  text-align: right;
  padding-right: clamp(20px, 3vw, 40px);
}

.exp-timeline > div:nth-of-type(4n+3) > h3,
.exp-timeline > div:nth-of-type(4n+3) > p {
  grid-column: 3;
  text-align: left;
  padding-left: clamp(20px, 3vw, 40px);
}

.exp-timeline__step h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--burlywood);
  font-size: clamp(13px, 1.05vw, 14.5px);
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  grid-row: 1;
  align-self: end;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-30px);
}

.exp-timeline > div:nth-of-type(4n+3) > h3 {
  transform: translateX(30px);
}

.exp-timeline__step p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  line-height: 1.7;
  letter-spacing: 0.005em;
  margin: 0;
  grid-row: 2;
  align-self: start;
  max-width: 460px;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  transform: translateX(-30px);
}

.exp-timeline > div:nth-of-type(4n+1) > p {
  margin-left: auto;
  transform: translateX(-30px);
}

.exp-timeline > div:nth-of-type(4n+3) > p {
  transform: translateX(30px);
}

.exp-timeline.is-visible .exp-timeline__step > h3,
.exp-timeline.is-visible .exp-timeline__step > p {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger marker delays — 0.55s + 0.13s per step */
.exp-timeline.is-visible > div:nth-of-type(1)::before { transition-delay: 0.55s; }
.exp-timeline.is-visible > div:nth-of-type(3)::before { transition-delay: 0.68s; }
.exp-timeline.is-visible > div:nth-of-type(5)::before { transition-delay: 0.81s; }
.exp-timeline.is-visible > div:nth-of-type(7)::before { transition-delay: 0.94s; }
.exp-timeline.is-visible > div:nth-of-type(9)::before { transition-delay: 1.07s; }

/* Texto stagger — sincronizado com offset suave */
.exp-timeline.is-visible > div:nth-of-type(1) > h3,
.exp-timeline.is-visible > div:nth-of-type(1) > p { transition-delay: 0.7s; }
.exp-timeline.is-visible > div:nth-of-type(3) > h3,
.exp-timeline.is-visible > div:nth-of-type(3) > p { transition-delay: 0.83s; }
.exp-timeline.is-visible > div:nth-of-type(5) > h3,
.exp-timeline.is-visible > div:nth-of-type(5) > p { transition-delay: 0.96s; }
.exp-timeline.is-visible > div:nth-of-type(7) > h3,
.exp-timeline.is-visible > div:nth-of-type(7) > p { transition-delay: 1.09s; }
.exp-timeline.is-visible > div:nth-of-type(9) > h3,
.exp-timeline.is-visible > div:nth-of-type(9) > p { transition-delay: 1.22s; }

/* Mobile — timeline reta com linha à esquerda + cards alinhados à direita */
@media (max-width: 991px) {
  .exp-timeline::before {
    left: 28px;
  }
  .exp-timeline__step {
    grid-template-columns: 56px 1fr;
    margin: 32px 0;
    align-items: start;
  }
  .exp-timeline__step::before {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 56px;
    height: 56px;
    font-size: 15px;
    margin: 0;
    align-self: start;
  }
  .exp-timeline > div:nth-of-type(4n+1) > h3,
  .exp-timeline > div:nth-of-type(4n+1) > p,
  .exp-timeline > div:nth-of-type(4n+3) > h3,
  .exp-timeline > div:nth-of-type(4n+3) > p {
    grid-column: 2 !important;
    text-align: left !important;
    padding-left: 18px !important;
    padding-right: 0 !important;
    transform: translateX(0) !important;
    margin-left: 0 !important;
    max-width: none !important;
  }
  .exp-timeline__step h3 {
    align-self: start;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exp-timeline::before,
  .exp-timeline__step::before,
  .exp-timeline__step > h3,
  .exp-timeline__step > p {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ==========================================================================
   SURG MIOLO — refino editorial das 4 sections internas das CIRURGIAS
   (2026-05-07, r232). Aplicado primeiro em rinoplastia-estruturada.
   Padrões shared .surg-* — replicar nas outras 19 cirurgias quando aprovado.
   - Bloco 1: .surg-intro (editorial 2-col com glow + corner brackets)
   - Bloco 2: .surg-numgrid (4 cards numerados 01-04)
   - Bloco 3: .surg-checks (checklist 2-col com chip gold)
   - Bloco 4: .surg-roadmap (4 stages horizontal com linha gold)
   ========================================================================== */

.surg-miolo {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 1vw, 12px);
}

.surg-block__title,
.surg-intro__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
}

.surg-block__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: clamp(20px, 2.6vw, 28px) auto clamp(36px, 4.5vw, 56px);
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

.surg-block {
  position: relative;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(178, 145, 88, 0.10);
  text-align: center;
}

/* === Bloco 1: Intro editorial 2-col === */
.surg-intro {
  position: relative;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 60px) clamp(72px, 9vw, 120px);
  overflow: hidden;
  border-top: none;
}

.surg-intro__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(420px, 60vw, 760px);
  height: clamp(420px, 60vw, 760px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(178,145,88,0.07) 0%, rgba(178,145,88,0) 65%);
  pointer-events: none;
  z-index: 0;
}

.surg-intro__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.surg-intro__title {
  text-align: left;
  font-size: clamp(32px, 4vw, 56px);
  max-width: none;
}

.surg-intro__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin-top: clamp(20px, 2vw, 28px);
  background: linear-gradient(90deg, var(--dark-goldenrod), transparent);
}

.surg-intro__lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15.5px, 1.18vw, 17.5px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.surg-intro__lead::first-letter {
  font-weight: 100;
  font-size: clamp(64px, 7vw, 100px);
  color: var(--burlywood);
  float: left;
  line-height: 0.9;
  margin: 4px 14px 0 0;
}

.surg-intro__lead strong { color: var(--burlywood); font-weight: 500; }

@media (max-width: 768px) {
  .surg-intro__inner { grid-template-columns: 1fr; }
  .surg-intro__title { text-align: center; }
  .surg-intro__title::after { margin-left: auto; margin-right: auto; }
}

/* === Bloco 2: Timeline zigzag (.surg-timeline) — clone do .exp-timeline mas só com p (sem h3) ===
   DOM expected: <div class="surg-timeline">
                   <div class="surg-timeline__step"><p>texto</p></div>
                   <div class="surg-timeline__divider"></div>
                   ... repete ...
                 </div>
   Linha vertical central + markers numerados 01-04 + zigzag esq/dir + animação stagger via .is-visible. */
.surg-timeline {
  position: relative;
  counter-reset: surg-step;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) 0;
}

.surg-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(178, 145, 88, 0.45) 6%,
    rgba(178, 145, 88, 0.45) 94%,
    transparent 100%);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  z-index: 0;
}

.surg-timeline.is-visible::before {
  transform: translateX(-50%) scaleY(1);
}

.surg-timeline__step {
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: center;
  margin: clamp(36px, 4.5vw, 56px) 0;
  position: relative;
  counter-increment: surg-step;
}

.surg-timeline__step::before {
  content: counter(surg-step, decimal-leading-zero);
  grid-column: 2;
  grid-row: 1;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #0a0a0a;
  border: 1px solid rgba(178, 145, 88, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  color: var(--burlywood);
  font-size: 17px;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
  transform: scale(0);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 0 12px #0a0a0a;
  align-self: center;
}

.surg-timeline.is-visible .surg-timeline__step::before {
  transform: scale(1);
}

.surg-timeline__step:hover::before {
  border-color: rgba(178, 145, 88, 0.85);
  background-color: rgba(178, 145, 88, 0.12);
  box-shadow: 0 0 0 12px #0a0a0a, 0 0 18px rgba(178, 145, 88, 0.35);
}

/* Zigzag: nth-of-type(4n+1)=LEFT, (4n+3)=RIGHT.
   DOM: step1, divider, step2, divider, step3, divider, step4
   indices: step1=1, step2=3, step3=5, step4=7 */
.surg-timeline > div:nth-of-type(4n+1) > p {
  grid-column: 1;
  text-align: right;
  padding-right: clamp(20px, 3vw, 40px);
  margin-left: auto;
}

.surg-timeline > div:nth-of-type(4n+3) > p {
  grid-column: 3;
  text-align: left;
  padding-left: clamp(20px, 3vw, 40px);
}

.surg-timeline__step > p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.6;
  letter-spacing: 0.005em;
  margin: 0;
  grid-row: 1;
  align-self: center;
  max-width: 460px;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  transform: translateX(-30px);
}

.surg-timeline > div:nth-of-type(4n+3) > p {
  transform: translateX(30px);
}

.surg-timeline.is-visible .surg-timeline__step > p {
  opacity: 1;
  transform: translateX(0);
}

.surg-timeline__step > p strong {
  color: var(--burlywood);
  font-weight: 500;
}

/* Stagger marker delays */
.surg-timeline.is-visible > div:nth-of-type(1)::before { transition-delay: 0.55s; }
.surg-timeline.is-visible > div:nth-of-type(3)::before { transition-delay: 0.68s; }
.surg-timeline.is-visible > div:nth-of-type(5)::before { transition-delay: 0.81s; }
.surg-timeline.is-visible > div:nth-of-type(7)::before { transition-delay: 0.94s; }

/* Texto stagger */
.surg-timeline.is-visible > div:nth-of-type(1) > p { transition-delay: 0.7s; }
.surg-timeline.is-visible > div:nth-of-type(3) > p { transition-delay: 0.83s; }
.surg-timeline.is-visible > div:nth-of-type(5) > p { transition-delay: 0.96s; }
.surg-timeline.is-visible > div:nth-of-type(7) > p { transition-delay: 1.09s; }

/* Mobile — timeline reta com linha à esquerda */
@media (max-width: 991px) {
  .surg-timeline::before {
    left: 28px;
  }
  .surg-timeline__step {
    grid-template-columns: 56px 1fr;
    margin: 32px 0;
    align-items: start;
  }
  .surg-timeline__step::before {
    grid-column: 1;
    width: 56px;
    height: 56px;
    font-size: 15px;
    margin: 0;
    align-self: start;
    box-shadow: 0 0 0 8px #0a0a0a;
  }
  .surg-timeline > div:nth-of-type(4n+1) > p,
  .surg-timeline > div:nth-of-type(4n+3) > p {
    grid-column: 2 !important;
    text-align: left !important;
    padding-left: 18px !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    transform: translateX(0) !important;
    max-width: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .surg-timeline::before,
  .surg-timeline__step::before,
  .surg-timeline__step > p {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* === Bloco 3: Checklist editorial (.surg-checks) === */
.surg-checks {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0px, 1vw, 12px) clamp(28px, 4vw, 56px);
  max-width: 1000px;
  text-align: left;
}

.surg-check {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: center;
  padding: clamp(20px, 2.4vw, 28px) 0;
  border-bottom: 1px solid rgba(178, 145, 88, 0.14);
}

.surg-check__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(178, 145, 88, 0.06);
  border: 1px solid rgba(178, 145, 88, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burlywood);
  flex-shrink: 0;
}
.surg-check__icon svg { width: 16px; height: 16px; }

.surg-check__body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.surg-check__body strong { color: var(--burlywood); font-weight: 500; }

@media (max-width: 768px) {
  .surg-checks { grid-template-columns: 1fr; }
}

/* === Bloco 4: Roadmap horizontal (.surg-roadmap) === */
.surg-roadmap {
  list-style: none;
  margin: 0 auto;
  padding: clamp(8px, 1vw, 16px) 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  max-width: 1200px;
  position: relative;
  text-align: center;
}

/* Linha gold conectando os 4 stages no desktop */
.surg-roadmap::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(178, 145, 88, 0.45) 10%,
    rgba(178, 145, 88, 0.55) 50%,
    rgba(178, 145, 88, 0.45) 90%,
    transparent 100%);
  z-index: 0;
}

.surg-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.surg-stage__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #0a0a0a;
  border: 1px solid rgba(178, 145, 88, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  color: var(--burlywood);
  font-size: 18px;
  letter-spacing: 0.06em;
  z-index: 1;
  margin-bottom: clamp(20px, 2.4vw, 28px);
  box-shadow: 0 0 0 14px #0a0a0a;
  transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 3;
}

.surg-stage:hover .surg-stage__num {
  border-color: rgba(178, 145, 88, 0.85);
  background-color: rgba(178, 145, 88, 0.12);
  box-shadow: 0 0 0 14px #0a0a0a, 0 0 22px rgba(178, 145, 88, 0.32);
}

.surg-stage__body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(13.5px, 1.05vw, 15px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 240px;
}
.surg-stage__body strong { color: var(--burlywood); font-weight: 500; }

@media (max-width: 991px) {
  .surg-roadmap { grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 40px); }
  .surg-roadmap::before { display: none; }
}

@media (max-width: 575px) {
  .surg-roadmap { grid-template-columns: 1fr; }
}

/* === Bloco 4 NOVO: .surg-cpi (logo Método CPI à esq + título + lista vertical à dir) ===
   Substitui o .surg-roadmap horizontal a partir de r234 (cliente pediu logo CPI). */

.surg-block--cpi {
  text-align: left;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px);
}

.surg-cpi {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.surg-cpi__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.surg-cpi__logo::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(178,145,88,0.14) 0%, rgba(178,145,88,0) 65%);
  pointer-events: none;
  z-index: 0;
}

.surg-cpi__logo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  height: auto;
}

.surg-cpi__content {
  display: flex;
  flex-direction: column;
}

.surg-cpi__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
  max-width: 520px;
}

.surg-cpi__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: clamp(20px, 2.4vw, 28px) 0 clamp(28px, 3vw, 36px);
  background: linear-gradient(90deg, var(--dark-goldenrod), transparent);
}

.surg-cpi__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.surg-cpi__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: center;
  padding: clamp(18px, 2.2vw, 24px) 0;
  border-bottom: 1px solid rgba(178, 145, 88, 0.16);
}

.surg-cpi__item:last-child {
  border-bottom: none;
}

.surg-cpi__num {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--burlywood);
  line-height: 1;
  letter-spacing: -0.005em;
  opacity: 0.9;
}

.surg-cpi__body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.surg-cpi__body strong { color: var(--burlywood); font-weight: 500; }

@media (max-width: 768px) {
  .surg-cpi { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 40px); }
  .surg-cpi__logo-img { max-width: 240px; }
  .surg-cpi__content { text-align: center; align-items: center; }
  .surg-cpi__rule { margin-left: auto; margin-right: auto; }
  .surg-cpi__title { text-align: center; }
}

/* Lucide icons no .surg-check__icon — color/stroke herdados; svg lucide tem viewBox 24 */
.surg-check__icon svg.lucide {
  width: 20px;
  height: 20px;
}

/* === Variants .surg-* pra cirurgias com estrutura diferente da rinoplastia (r236+) === */

/* Variant: .surg-intro--steps — bloco "O que é" com subtítulo + lista numerada (3-5 steps) */
.surg-intro--steps .surg-intro__inner {
  align-items: start;
}

.surg-intro__subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: clamp(20px, 2vw, 28px) 0 0 0;
  max-width: 460px;
}

.surg-intro__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.surg-intro__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: center;
  padding: clamp(18px, 2.2vw, 24px) 0;
  border-bottom: 1px solid rgba(178, 145, 88, 0.16);
}
.surg-intro__step:last-child { border-bottom: none; }

.surg-intro__step-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--burlywood);
  line-height: 1;
  letter-spacing: -0.005em;
  opacity: 0.9;
}

.surg-intro__step-body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.surg-intro__step-body strong { color: var(--burlywood); font-weight: 500; }

@media (max-width: 768px) {
  .surg-intro--steps .surg-intro__inner { grid-template-columns: 1fr; }
}

/* Variant: .surg-cpi__paragraph — quando o bloco 4 não tem lista, só parágrafo único */
.surg-cpi__paragraph {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.18vw, 17.5px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.surg-cpi__paragraph strong { color: var(--burlywood); font-weight: 500; }

/* Variant extra: .surg-intro__result — parágrafo de fechamento do Bloco 1 (após lista de steps) */
.surg-intro__result {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: clamp(20px, 2.4vw, 28px) 0 0 0;
  padding-top: clamp(20px, 2.4vw, 28px);
  border-top: 1px solid rgba(178, 145, 88, 0.16);
  font-style: italic;
}

.surg-intro__result strong { color: var(--burlywood); font-weight: 500; font-style: normal; }

/* Timeline com 6 steps (cirurgias corporais com mais diferenciais) — nth-of-type(11) */
.surg-timeline.is-visible > div:nth-of-type(11)::before { transition-delay: 1.20s; }
.surg-timeline.is-visible > div:nth-of-type(11) > p { transition-delay: 1.35s; }

/* Variants extras pra cirurgias com texto introdutório antes do conteúdo do bloco */
.surg-block__intro {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.18vw, 17.5px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto clamp(28px, 3.2vw, 36px);
  max-width: 760px;
  text-align: center;
}
.surg-block__intro strong { color: var(--burlywood); font-weight: 500; }

.surg-block__subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burlywood);
  text-align: center;
  margin: clamp(20px, 2.4vw, 28px) auto clamp(20px, 2.4vw, 28px);
  opacity: 0.85;
}

/* Timeline com 7 steps (mastopexia tem 7 benefícios) — nth-of-type(13) */
.surg-timeline.is-visible > div:nth-of-type(13)::before { transition-delay: 1.33s; }
.surg-timeline.is-visible > div:nth-of-type(13) > p { transition-delay: 1.48s; }

/* Quando section-59 tem .surg-miolo dentro (página refinada), zera padding/bg pra eliminar vão preto */
.section-59:has(.surg-miolo) {
  background-image: none !important;
  background-color: transparent !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Grid Tecnologias com 4 cards (lipo-ultra-hd) → 2 colunas × 2 linhas */
.grid-funciona-3-col-2:has(> :nth-child(4):last-child) {
  grid-template-columns: 1fr 1fr;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   HOME — refino seção "O Resultado?" (coluna esquerda) — r259
   Aplica em .div-block-1089955 (texto à esquerda dos vídeos)
   ========================================================================== */

.div-block-1089955 {
  position: relative;
}

/* Rule gold decorativa entre H2 e parágrafo principal */
.div-block-1089955 .heading-69-copydv {
  position: relative;
  margin-bottom: clamp(28px, 3vw, 36px);
  padding-bottom: clamp(20px, 2.4vw, 28px);
}

.div-block-1089955 .heading-69-copydv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--dark-goldenrod), transparent);
}

/* Parágrafo principal — strong em gold burlywood */
.div-block-1089955 .paragraph-lg-copydv strong {
  color: var(--burlywood);
  font-weight: 500;
}

/* Bloco "Agende sua avaliação" — clean, sem barra/bg, só espaçamento de respiro */
.div-block-1089955 .div-block-1089957 {
  margin-top: clamp(20px, 2.4vw, 28px);
}

.div-block-1089955 .div-block-1089956 {
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

.div-block-1089955 .paragraph-lg-copydv-copysc {
  margin: 0;
  opacity: 0.78;
  font-style: italic;
}

/* Botão "Agendar Avaliação" wrapper — espaçamento refinado */
.div-block-1089955 .div-block-10900 {
  margin-top: clamp(32px, 3.6vw, 44px);
}

/* HOME — refino seção "Porque a cirurgia plástica..." revertido (r261) */

/* ==========================================================================
   HOME — Hero — overlay 40% preto + degradê lateral + h1 reduzido
   Fotos do Dr. André: reveal escalonado via IntersectionObserver (r271)
   ========================================================================== */

.background-video {
  background-image: none !important;
}

.background-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40)),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.15) 22%,
      rgba(0, 0, 0, 0) 32%,
      rgba(0, 0, 0, 0) 68%,
      rgba(0, 0, 0, 0.15) 78%,
      rgba(0, 0, 0, 0.55) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Frame inset gold — mesmo padrão .site-hero__frame das outras páginas */
.background-video::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(178, 145, 88, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 768px) {
  .background-video::after {
    inset: 16px;
  }
}

.background-video > .container-65 {
  position: relative;
  z-index: 3;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* Vinheta dark radial atrás do conteúdo — backdrop pra elevar contraste/legibilidade */
.background-video > .container-65::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(620px, 78vw, 1180px);
  height: clamp(440px, 56vw, 780px);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 72%);
  pointer-events: none;
  z-index: -1;
  filter: blur(16px);
}

/* Reordena via flexbox order: eyebrow → H1 → chevron */
.background-video > .container-65 .text-block-21 { order: 1; }
.background-video > .container-65 .h1-2 { order: 2; }
.background-video > .container-65 .div-block-124 { order: 3; }

/* Subtítulo vira EYEBROW CHIP — chip premium uppercase letter-spaced acima do H1 */
.background-video .text-block-21 {
  font-family: Poppins, sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(10.5px, 0.82vw, 12.5px) !important;
  line-height: 1 !important;
  letter-spacing: 0.42em !important;
  text-indent: 0.42em;
  text-transform: uppercase !important;
  color: var(--burlywood) !important;
  margin: 0 0 clamp(32px, 3.4vw, 48px) 0 !important;
  padding: 14px 32px !important;
  border-top: 1px solid rgba(178, 145, 88, 0.35);
  border-bottom: 1px solid rgba(178, 145, 88, 0.35);
  text-align: center !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
}

/* H1 GIGANTE — display cinematográfico, light gold com sombra forte */
.background-video .h1-2 {
  font-family: Poppins, sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(54px, 6.8vw, 92px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.018em !important;
  color: var(--burlywood) !important;
  -webkit-text-fill-color: var(--burlywood) !important;
  background-image: none !important;
  margin: 0 !important;
  text-align: center !important;
  text-shadow: 0 6px 36px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.55);
  position: relative;
  word-break: keep-all;
  hyphens: none;
  max-width: 1100px;
}

/* Rule gold gradient ABAIXO do H1 — maior, mais presente */
.background-video .h1-2::after {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  margin: clamp(32px, 3.6vw, 48px) auto 0;
  background: linear-gradient(90deg, transparent, var(--burlywood) 50%, transparent);
  box-shadow: 0 0 12px rgba(219, 192, 141, 0.4);
}

/* Chevron com pulso vertical animado */
.background-video .div-block-124 {
  margin-top: clamp(56px, 6.4vw, 88px) !important;
  justify-content: center !important;
  opacity: 0.72;
  animation: hero-chevron-pulse 2.6s ease-in-out infinite;
}

@keyframes hero-chevron-pulse {
  0%, 100% { opacity: 0.45; transform: translateY(-4px); }
  50%      { opacity: 0.95; transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .background-video .div-block-124 { animation: none; opacity: 0.7; }
}

@media (max-width: 768px) {
  .background-video {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    max-height: 100dvh;
  }

  .background-video > .container-65 {
    padding-inline: 20px !important;
  }

  .background-video > .container-65::before {
    width: 92vw;
    height: 60vh;
  }

  .background-video .text-block-21 {
    padding: 9px 16px !important;
    font-size: 10px !important;
    letter-spacing: 0.34em !important;
    text-indent: 0.34em;
    margin: 0 0 28px 0 !important;
  }

  .background-video .h1-2 {
    font-size: clamp(34px, 9vw, 46px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.012em !important;
  }

  .background-video .h1-2::after {
    width: 56px;
    margin-top: 24px !important;
  }

  .background-video .div-block-124 {
    margin-top: 36px !important;
  }
}

@media (max-width: 380px) {
  .background-video .text-block-21 {
    font-size: 9px !important;
    letter-spacing: 0.28em !important;
    padding: 8px 12px !important;
  }
  .background-video .h1-2 {
    font-size: clamp(28px, 9vw, 38px) !important;
  }
}

@media (max-width: 768px) {
  .background-video::before {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  }
}

/* ============================================================================
   "OS SONHOS ACONTECEM AQUI" — refino editorial premium (r284)
============================================================================ */

.sonho {
  padding: clamp(60px, 7vw, 100px) clamp(20px, 3vw, 32px) clamp(40px, 5vw, 64px) !important;
  position: relative;
  border-top: 1px solid rgba(178, 145, 88, 0.18);
}

.sonho::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

.sonho > .w-container:first-child {
  text-align: center;
  margin-bottom: clamp(20px, 2.4vw, 32px);
}

.sonho .heading {
  font-family: Poppins, sans-serif !important;
  font-weight: 200 !important;
  font-size: clamp(34px, 4.6vw, 56px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.005em !important;
  color: var(--burlywood) !important;
  margin: 0 auto !important;
  max-width: 820px !important;
  position: relative;
  padding-bottom: clamp(20px, 2.2vw, 28px);
}

.sonho .heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

.sonho .container-61 {
  margin-top: clamp(20px, 2.4vw, 32px) !important;
  margin-bottom: clamp(36px, 4vw, 56px) !important;
  max-width: 820px;
}

.sonho .paragraph-20 {
  font-family: Poppins, sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(15px, 1.1vw, 17px) !important;
  line-height: 1.72 !important;
  letter-spacing: 0.005em !important;
  color: rgba(255, 255, 255, 0.78) !important;
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 720px;
}

.sonho .div-block-101 {
  margin-top: clamp(28px, 3vw, 40px) !important;
}

@media (max-width: 768px) {
  .sonho {
    padding: clamp(48px, 12vw, 64px) 20px clamp(32px, 8vw, 48px) !important;
  }
}

/* ============================================================================
   MÉTODO CPI HOME — refino editorial premium (r281)
   Seção .section-133 > .grid-layout-2 (1ª linha do bloco CPI da home)
   Imagem direita (Mandala) aprovada — não tocar.
============================================================================ */

.section-133 .grid-layout-2 .div-block-10899 {
  align-self: center;
  max-width: 600px;
  padding: 8px 0;
}

/* "Método CPI®" — vira eyebrow refinado */
.section-133 .grid-layout-2 .heading-69-copygv {
  font-family: Poppins, sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(11px, 0.85vw, 13px) !important;
  line-height: 1.4 !important;
  letter-spacing: 0.42em !important;
  text-indent: 0.42em;
  text-transform: uppercase !important;
  color: var(--burlywood) !important;
  margin: 0 0 clamp(14px, 1.4vw, 18px) 0 !important;
  opacity: 0.85;
}

/* "Cirurgia Plástica Integrativa" — H2 principal Poppins light com rule gold */
.section-133 .grid-layout-2 .heading-143 {
  font-family: Poppins, sans-serif !important;
  font-weight: 200 !important;
  font-size: clamp(30px, 3.2vw, 48px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.005em !important;
  color: #fff !important;
  margin: 0 0 clamp(22px, 2.4vw, 32px) 0 !important;
  padding-bottom: clamp(20px, 2.2vw, 28px) !important;
  position: relative;
}

.section-133 .grid-layout-2 .heading-143::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

/* Parágrafo descritivo — Poppins 300 white 78% */
.section-133 .grid-layout-2 .paragraph-lg.utility-margin-bottom-2rem {
  font-family: Poppins, sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(15px, 1.1vw, 17px) !important;
  line-height: 1.72 !important;
  letter-spacing: 0.005em !important;
  color: rgba(255, 255, 255, 0.78) !important;
  margin: 0 !important;
  max-width: 540px;
}

/* Bloco assinatura (avatar + nome + cargo) */
.section-133 .grid-layout-2 .div-block-1089986 {
  margin-top: clamp(36px, 3.6vw, 52px) !important;
  padding-top: clamp(24px, 2.4vw, 32px);
  border-top: 1px solid rgba(178, 145, 88, 0.18);
  gap: 14px;
}

.section-133 .grid-layout-2 .div-block-1089987 {
  border: 1px solid rgba(178, 145, 88, 0.55) !important;
  width: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  height: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  margin-right: 0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.section-133 .grid-layout-2 .text-block-216 {
  font-family: Poppins, sans-serif !important;
  font-weight: 500 !important;
  font-size: clamp(14px, 1vw, 16px) !important;
  line-height: 1.3 !important;
  color: #fff !important;
  margin-bottom: 4px;
}

.section-133 .grid-layout-2 .text-block-217 {
  font-family: Poppins, sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(10px, 0.78vw, 12px) !important;
  line-height: 1.3 !important;
  letter-spacing: 0.32em !important;
  text-indent: 0.32em;
  text-transform: uppercase !important;
  color: var(--burlywood) !important;
  opacity: 0.85;
}

/* Imagem Mandala — leve refino de aspect, mantém proporção quadrada */
.section-133 .grid-layout-2 .image-224 {
  border-radius: 0 !important;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .section-133 .grid-layout-2 .div-block-10899 {
    max-width: 100%;
  }
  .section-133 .grid-layout-2 .div-block-1089986 {
    flex-wrap: wrap;
  }
}

/* Manifesto (.jh) — texto centralizado, rule gold também centralizado, max-width maior */
.section-133 .grid-layout-2.jh .div-block-10899 {
  max-width: 900px !important;
  text-align: center;
}

.section-133 .grid-layout-2.jh .heading-143 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 820px;
}

.section-133 .grid-layout-2.jh .heading-143::after {
  left: 50% !important;
  transform: translateX(-50%);
}

.section-133 .grid-layout-2.jh .div-block-10900 {
  text-align: center;
}

/* ============================================================================
   EBOOKS HOME — refino editorial premium (r280)
   Lado esquerdo/direito (fotos): aprovado, não tocar.
   Lado oposto (título + descrição + botão): refino tipográfico + rule gold.
============================================================================ */

.secao-ebook .grid-ebook {
  align-items: center !important;
  grid-column-gap: clamp(40px, 5vw, 80px) !important;
  grid-row-gap: clamp(40px, 5vw, 80px) !important;
  margin-bottom: clamp(60px, 7vw, 110px) !important;
}

.secao-ebook .divblock-ebook {
  align-self: center;
  max-width: 540px;
  padding: 8px 0;
  position: relative;
}

.secao-ebook .divblock-ebook .heading-51 {
  font-family: Poppins, sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(26px, 2.6vw, 38px) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.005em !important;
  margin: 0 0 clamp(20px, 2vw, 28px) 0 !important;
  background-image: linear-gradient(121deg, var(--dark-goldenrod), var(--burlywood)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  position: relative;
  padding-bottom: clamp(18px, 2vw, 24px);
}

.secao-ebook .divblock-ebook .heading-51::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-goldenrod), transparent);
}

.secao-ebook .divblock-ebook .paragraph-24,
.secao-ebook .divblock-ebook .paragraph-29 {
  font-family: Poppins, sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(14.5px, 1.05vw, 16px) !important;
  line-height: 1.72 !important;
  letter-spacing: 0.005em !important;
  color: rgba(255, 255, 255, 0.78) !important;
  margin: 0 0 clamp(10px, 1.2vw, 16px) 0 !important;
  max-width: 520px;
}

.secao-ebook .divblock-ebook .paragraph-24:last-of-type,
.secao-ebook .divblock-ebook .paragraph-29:last-of-type {
  margin-bottom: 0 !important;
}

.secao-ebook .divblock-ebook .text-span-4,
.secao-ebook .divblock-ebook .text-span-14 {
  font-weight: 500 !important;
  background-image: linear-gradient(121deg, var(--burlywood), var(--dark-goldenrod)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.secao-ebook .divblock-ebook > div:last-child,
.secao-ebook .divblock-ebook .div-block-137,
.secao-ebook .divblock-ebook .div-block-153 {
  margin-top: clamp(24px, 3vw, 36px) !important;
}

@media (max-width: 768px) {
  .secao-ebook .divblock-ebook {
    text-align: left;
    margin-bottom: 0;
    padding: 4px 0;
  }
  .secao-ebook .divblock-ebook .heading-51::after {
    left: 0;
  }
}

