html {
  font-size: 0.51vw;
  scroll-behavior: smooth;
}

@media screen and (max-width: 860px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Lato", sans-serif;
  text-rendering: optimizeSpeed;
}

.menu__idioma a,
.button,
.belleza,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Belleza", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.button {
  color: white;
  font-size: 1.8rem;
  letter-spacing: 0.36rem;
  padding: 1.5rem 3.3rem;
  border-radius: 2.5rem;
  border: solid 1px white;
  background-color: transparent;
  display: table;
  transition: all 400ms ease;
}

@media screen and (min-width: 861px) {
  .button:hover {
    background-color: white;
    color: #0E443A;
  }
}

.button--sand {
  color: #D5BC8F;
  border-color: #D5BC8F;
}

@media screen and (min-width: 861px) {
  .button--sand:hover {
    background-color: #D5BC8F;
    color: white;
  }
}

.button--green {
  color: #0E443A;
  border-color: #0E443A;
}

@media screen and (min-width: 861px) {
  .button--green:hover {
    background-color: #0E443A;
    color: white;
  }
}

.button--brown {
  color: #4C4131 !important;
  border-color: #4C4131 !important;
}

@media screen and (min-width: 861px) {
  .button--brown:hover {
    background-color: #4C4131;
    color: white;
  }
}

.button--ivory {
  color: #ECE2D1 !important;
  border-color: #ECE2D1 !important;
}

@media screen and (min-width: 861px) {
  .button--ivory:hover {
    background-color: #ECE2D1;
    color: #0E443A;
  }
}

.container {
  max-width: 148rem;
}

.container--bigger {
  max-width: 170rem;
}

.underline {
  text-decoration: underline;
}

.menu {
  border-top: solid 1.5rem #D5BC8F;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 70rem;
  max-width: 100%;
  background-color: #ECE2D1;
  z-index: 10;
  padding: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 3rem;
  transform: translateX(100%);
  overflow: auto;
  transition: transform 0.3s ease-in-out;
}

@media screen and (max-width: 860px) {
  .menu {
    padding: 9vh;
  }
}


.menu.active {
  transform: translateX(0);
}

.menu__close {
  background-color: transparent;
}

.menu__close svg {
  width: 4.5rem;
  height: 4.5rem;
}

.menu__idioma {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  line-height: 1;
  white-space: nowrap;
}

.menu__idioma a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.1rem;
  border-radius: 0.2rem;
  overflow: hidden;
  transition: all 200ms ease;
  border: 1px solid rgba(213, 188, 143, 0.15);
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 0;
}

.menu__idioma a.act {
  opacity: 1;
  border: 1px solid white;
  box-shadow: 0 0 0.8rem rgba(255, 255, 255, 0.4);
}

.menu__idioma a:hover {
  opacity: 0.8;
}

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

.menu__idioma__divider {
  color: #4c41318f;
  font-weight: 400;
  font-size: 2rem;
  margin: 0 0.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 2.1rem;
}

.menu__main a {
  font-size: 2.2rem;
  letter-spacing: 0.22rem;
  color: #4C4131;
}

.menu__main a:hover {
  text-decoration: underline;
}

.tns__controls {
  display: flex;
  -moz-column-gap: 10rem;
  column-gap: 10rem;
}

@media screen and (max-width: 860px) {
  .tns__controls {
    width: 150px;
    position: absolute;
    right: 40px;
    column-gap: 3rem;
    justify-content: flex-end;
  }
}

.tns__controls__next,
.tns__controls__prev {
  width: 3rem;
  height: 3rem;
  border: solid 2px #D5BC8F;
  border-left: 0;
  border-bottom: 0;
  background-color: transparent;
  transform: rotate(45deg);
}

.tns__controls__prev {
  transform: rotate(-135deg);
}

.page404 {
  padding: 20rem 0 10rem;
  background-color: #0E443A;
  color: #ECE2D1;
}

.header {
  border-top: solid 1.5rem #D5BC8F;
  padding: 5rem 0 2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.header__button {
  border-width: 2px;
}

@media screen and (min-width: 861px) {
  .header__logo {
    position: absolute;
    top: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.header__logo svg {
  width: 8.5rem;
  height: 8.5rem;
}

.header--home {
  padding: 3.5rem 0 2rem;
}

.header--home .header__button {
  position: relative;
  top: 5.5rem;
}

.header--home .header__logo svg {
  width: 16.6rem;
  height: 16.6rem;
}

.header--white .header__logo svg path {
  fill: #ECE2D1;
}

.header--white .header__button {
  border-color: #ECE2D1;
  color: #ECE2D1;
}

@media screen and (max-width: 860px) {
  .header--home .header__button {
    top: 0;
  }

  .header div:empty {
    display: none;
  }

  .header__logo svg {
    width: 9.5rem !important;
    height: 9.5rem !important;
  }
}

.instagram {
  background-color: #F7F2E9;
  padding: 10rem 0 0;
}

.instagram__title {
  color: #0E443A;
  font-size: 2.8rem;
}

.instagram__plugin {
  margin: 5rem 0 -11rem;
}

.instagram__plugin iframe.lightwidget-widget {
  min-height: 480px;
}

@media screen and (max-width: 860px) {

  .instagram {
    padding: 10rem 3rem 0;
  }

  .instagram__plugin {
    margin: 4rem 0 0rem;
    padding-bottom: 10rem;
  }

  .instagram__plugin iframe.lightwidget-widget {
    min-height: 440px;
  }

  .instagram__title {
    margin-bottom: 4rem;
    max-width: 25rem;
  }
}

.footer__content {
  background-color: #0E443A;
  padding: 20rem 0 4rem;
}

@media screen and (max-width: 860px) {
  .footer__content {
    padding: 7rem 3rem 2rem;
  }

  .footer__row {
    align-items: center;
  }

  .footer__content__logo {
    order: 1;
  }

  .footer__content__contato {
    order: 2;
    margin: 5rem 0;
    text-align: center;
    width: 100%;
  }

  .footer__content__menu {
    order: 3;
  }

  .footer__content__menu ul {
    text-align: center;
  }

  .footer .button {
    width: fit-content;
  }

  .footer__content__contato>div {
    align-items: center;
  }
}

.footer__content__logo img {
  width: 31.2rem;
  display: block;
  height: auto;
}

@media screen and (max-width: 860px) {
  .footer__content__logo img {
    width: 28.2rem;
  }
}

.footer__content__menu a {
  color: #D5BC8F;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.14rem;
}

@media screen and (max-width: 860px) {
  .footer__content__menu a {
    line-height: 3rem
  }
}


.footer__content__menu a:hover {
  text-decoration: underline;
}

.footer__content__contato__title {
  color: #D5BC8F;
  font-size: 2.4rem;
  letter-spacing: 0.22rem;
  margin-bottom: 2.7rem;
}

@media screen and (max-width: 860px) {
  .footer__content__contato__title {
    font-size: 3rem;
    margin-bottom: 3.2rem;
  }
}

.footer__content__disclaimer {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 19rem;
  padding-right: 1rem;
}

@media screen and (max-width: 860px) {
  .footer__content__disclaimer {
    flex-direction: column;
    gap: 0;
    padding-right: 0;
  }

  .footer__content__disclaimer .__disclaimer {
    margin-top: 5rem;
  }


  .footer__content__disclaimer .__disclaimer a {
    font-size: 1.2rem;
  }

  .footer__content__disclaimer .__copy {
    max-width: 24rem
  }

  .footer__content__copy.__address {
    padding-bottom: 5rem;
    border-bottom: solid 1px;
  }
}

.footer__content__copy {
  margin-top: 10rem;
  font-size: 1.2rem;
  letter-spacing: 0.12rem;
  color: #D5BC8F;
}

.intro {
  background-color: #0E443A;
  padding: 25rem 0;
}

@media screen and (max-width: 860px) {
  .intro {
    padding: 13rem 3rem 15rem;
  }
}

.intro .container {
  -moz-column-gap: 10rem;
  column-gap: 10rem;
  row-gap: 3rem;
}

@media screen and (max-width: 860px) {
  .intro .container {
    row-gap: 8rem;
  }
}

.intro__title {
  color: #D5BC8F;
  font-size: 2.8rem;
  line-height: 1.4em;
}

@media screen and (max-width: 860px) {
  .intro__title {
    font-size: 4rem;
    line-height: 1.2em;
    max-width: 40rem;
  }
}

.intro__text {
  max-width: 70rem;
  color: white;
}

.intro__text p {
  font-size: 2.4rem;
  line-height: 1.4em;
  font-weight: 400;
}

@media screen and (max-width: 860px) {
  .intro__text p {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.intro__text p+p {
  margin-top: 1em;
}

.intro__text .button {
  margin-top: 7rem;
  color: #D5BC8F;
  border: solid 1px #D5BC8F;
}

@media screen and (max-width: 860px) {
  .intro__text .button {
    margin-top: 7rem;
  }
}

.intro--hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro--hero .banner_title_text__image {
  opacity: 0.62;
}

.intro--hero .banner_title_text__title {
  max-width: 50rem;
}

.intro--circle .banner_title_text__image {
  opacity: 0.6;
}

.intro--circle__title {
  color: #D5BC8F;
  font-size: 4.8rem;
  margin-bottom: 5rem;
}

.intro--circle .intro__text {
  max-width: 60rem;
}

.intro--circle .intro__text p {
  color: #ECE2D1;
}

.intro--circle__image {
  max-width: 26rem;
  height: auto;
  display: block;
}

@media screen and (max-width: 860px) {
  .intro--circle__image {
    max-width: 16rem;
    margin: 0 auto;
  }

  .banner_title_text.intro--circle .container {
    text-align: center;

    .button {
      margin: 5rem auto 0;
    }
  }
}

.hero {
  background-color: black;
  position: relative;
  overflow: hidden;
}

.hero__banner,
.hero__video {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0.5 !important;
  display: block;
}

.hero__video {
  /* Remove controles nativos */
  pointer-events: none;
  /* Força opacity reduzida mesmo com autoplay */
}

/* Responsivo: ajusta altura em telas menores */
@media screen and (max-width: 860px) {

  .hero__banner,
  .hero__video {
    height: 70vh;
    min-height: 500px;
  }
}

@media screen and (max-width: 480px) {

  .hero__banner,
  .hero__video {
    height: 60vh;
    min-height: 95vh;
  }
}

.hero__title {
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  width: 100%;
  color: #D5BC8F;
  font-size: 6.8rem;
  letter-spacing: 1.36rem;
  transform: translateY(-50%);
  z-index: 2;
}

@media screen and (max-width: 860px) {
  .hero__title {
    font-size: 4rem;
    letter-spacing: 0.8rem;
    line-height: 4.6rem;
  }
}

@media screen and (max-width: 480px) {
  .hero__title {
    font-size: 4rem;
    letter-spacing: 0.7rem;
    padding: 0 8rem;
  }
}

.mural {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 860px) {
  .mural {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 480px) {

  .equipe__grid,
  .mural {
    display: block;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE e Edge antigo */
  }

  .equipe__grid::-webkit-scrollbar,
  .mural::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge moderno */
  }
}

.mural img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner_title_text {
  background-color: black;
  position: relative;
  padding: 30rem 0;
  background-attachment: fixed;
  background-size: cover;
}

.banner_title_text::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.58);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 860px) {
  .banner_title_text {
    padding: 15rem 3rem;
    background-attachment: scroll;
  }
}

.banner_title_text__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.42;
  position: absolute;
  top: 0;
  left: 0;
}

.banner_title_text__title {
  font-size: 3.8rem;
  max-width: 57rem;
}

@media screen and (max-width: 860px) {
  .banner_title_text__title {
    font-size: 3rem;
    margin-bottom: 8rem;
    width: 100%;
    letter-spacing: 0.5rem;
    padding-right: 9rem;
    text-align: left;
  }
}

.banner_title_text__title--bigger {
  font-size: 4.8rem;
}

@media screen and (max-width: 860px) {
  .banner_title_text__title--bigger {
    font-size: 4rem;
  }
}

.banner_title_text .container {
  position: relative;
  z-index: 2;
}

.banner_title_text--location .intro__text {
  max-width: 58rem;
}

.banner_title_text--location .banner_title_text__image {
  opacity: 0.31;
}

.banner_title_text--location::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.69);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner_title_text.intro--circle::before {
  background-color: rgba(0, 0, 0, 0.3);
}

.banner_title_text.intro--circle::after {
  content: "";
  width: calc(100% - 7rem);
  height: calc(100% - 7rem);
  border: solid 2px #D5BC8F;
  position: absolute;
  top: 3.5rem;
  left: 3.5rem;
}

@media screen and (max-width: 860px) {
  .banner_title_text.intro--circle::after {
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
    top: 2rem;
    left: 2rem;
  }
}

@media screen and (max-width: 860px) {
  .banner_title_text.intro--circle .container {
    padding: 0 6rem;
  }
}

.banner_title_text.plain--ivory {
  background-color: #ECE2D1;
  padding: 25rem 0 20rem;
}

.banner_title_text.plain--ivory::before {
  display: none;
}

@media screen and (max-width: 860px) {
  .banner_title_text.plain--ivory {
    padding: 10rem 3rem;
  }
}

.banner_title_text.plain--ivory .banner_title_text__title {
  color: #4C4131;
}

.banner_title_text.plain--ivory .intro__text {
  color: #4C4131;
}

.image_text {
  padding: 15rem 0;
  background-color: #F7F2E9;
  display: flex;
  align-items: center;
  -moz-column-gap: 12rem;
  column-gap: 12rem;
  row-gap: 5rem;
}

@media screen and (max-width: 860px) {
  .image_text {
    flex-direction: column;
    row-gap: 9rem;
  }
}

.image_text.reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 860px) {
  .image_text.reverse {
    flex-direction: column;
  }
}

.image_text.reverse .image_text__holder::after {
  left: -2rem;
}

.image_text+.image_text {
  padding-top: 0;
}

.image_text__holder {
  width: 82.4rem;
  aspect-ratio: 824/600;
  position: relative;
}

@media screen and (max-width: 860px) {
  .image_text.reverse .image_text__holder::after {
    top: -1.2rem;
    left: -1.2rem
  }

  .image_text__holder {
    width: calc(100% - 4rem);
    left: -4rem;
  }

  .image_text__holder.herosobre,
  .herosobre--educacional .image_text__holder {
    left: -2rem;
  }

  .image_text.reverse .image_text__holder {
    left: unset;
    right: -4rem;
  }
}

.image_text__holder::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 2rem;
  left: 2rem;
  border: solid 2px #D5BC8F;
}

.image_text__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.image_text__content {
  color: #0E443A;
  max-width: 68rem;
}

@media screen and (max-width: 860px) {
  .image_text__content {
    padding: 0 5rem;
  }

  .image_text__holder::after {
    top: 1.2rem;
    left: 1.2rem;
    border: solid 1.5px #D5BC8F;
  }
}

.image_text__title {
  font-size: 3.8rem;
  letter-spacing: 0.76rem;
  margin-bottom: 3rem;
}

.image_text__text p {
  font-size: 2.4rem;
  line-height: 1.4em;
  font-weight: 400;
}

@media screen and (max-width: 860px) {
  .image_text__title {
    font-size: 3rem;
    letter-spacing: 0.76rem;
    margin-bottom: 3rem;
  }

  .image_text__text p {
    font-size: 2rem;
  }
}

.image_text .button {
  margin-top: 5rem;
}

.herosobre {
  padding: 25rem 0 0;
  background-color: #0E443A;
}

.herosobre__holder {
  width: 76.7rem;
  aspect-ratio: 767/903;
  margin-bottom: -10rem;
}

@media screen and (max-width: 860px) {
  .herosobre {
    padding: 18rem 3rem 0;
  }

  .herosobre__holder {
    max-width: 100%;
    margin: 0 0 5rem 20px;
  }
}

.herosobre .container {
  -moz-column-gap: 12rem;
  column-gap: 12rem;
}

@media screen and (max-width: 860px) {
  .herosobre .container {
    flex-direction: column;
    row-gap: 5rem;
    padding-bottom: 8rem;
  }
}

@media screen and (max-width: 860px) {
  .herosobre.reverse .container {
    flex-direction: column-reverse;
    row-gap: 5rem;
  }
}

.herosobre.reverse .image_text__holder::after {
  left: -2rem;
}

.herosobre__content {
  max-width: 67rem;
}

.herosobre__content__title {
  font-size: 3.8rem;
  line-height: 1.4em;
  color: #D5BC8F;
  margin-bottom: 1em;
}

@media screen and (max-width: 860px) {
  .herosobre__content__title {
    font-size: 2.8rem;
    max-width: 30rem;
    margin-bottom: 7rem;
  }
}

.herosobre__content__title--bigger {
  font-size: 4.8rem;
}

@media screen and (max-width: 860px) {
  .herosobre__content__title--bigger {
    font-size: 4rem;
  }
}

.herosobre__content__text {
  color: white;
}

.herosobre__content__text p {
  font-size: 2.4rem;
  line-height: 1.4em;
  font-weight: 400;
}

@media screen and (max-width: 860px) {
  .herosobre__content__text p {
    font-size: 2rem;
  }

  .herosobre__content__text {
    padding-right: 2rem;
  }
}

.herosobre__content .button {
  margin-top: 5rem;
}

.herosobre+.doubletext {
  padding-top: 26rem;
}

@media screen and (max-width: 860px) {
  .herosobre+.doubletext {
    padding: 10rem 3rem;
  }

  .herosobre__content .button {
    margin-top: 3rem;
  }
}

.herosobre--educacional {
  padding-bottom: 10rem;
}

.herosobre--educacional .herosobre__holder {
  margin-bottom: 0;
}

.localizacao {
  background-color: #4C4131;
  padding: 10rem 0 15rem;
}

@media screen and (max-width: 860px) {
  .localizacao {
    padding: 1px 0 10rem;
  }
}

.localizacao__image {
  margin-top: -20rem;
  display: block;
}

@media screen and (max-width: 860px) {
  .localizacao__image {
    margin: -6rem 0 0;
    aspect-ratio: 16 / 9;
    padding: 0 3rem;
    object-fit: cover;
    object-position: left;
  }
}

.localizacao__text {
  max-width: 70rem;
}

.localizacao__text p {
  color: white;
  font-size: 2.4rem;
  line-height: 1.4em;
}

@media screen and (max-width: 860px) {
  .localizacao__text p {
    font-size: 2rem;
  }
}

.localizacao__title {
  font-size: 4.8rem;
  color: #D5BC8F;
  max-width: 40rem;
}

@media screen and (max-width: 860px) {
  .localizacao__title {
    font-size: 4rem;
  }
}

.localizacao__row {
  margin-top: 15rem;
}

@media screen and (max-width: 860px) {
  .localizacao__row {
    margin-top: 5rem;
    padding: 0 3rem;
  }
}

.doubletext {
  background-color: rgba(213, 188, 143, 0.31);
  padding: 18rem 0;
}

@media screen and (max-width: 860px) {
  .doubletext {
    padding: 10rem 3rem;
  }
}

.doubletext p {
  color: #0E443A;
  font-size: 2.3rem;
  line-height: 1.4em;
  font-weight: 400;
}

@media screen and (max-width: 860px) {
  .doubletext p {
    font-size: 2rem;
  }
}

.doubletext__col {
  max-width: 50%;
}

@media screen and (max-width: 860px) {
  .doubletext__col {
    max-width: 100%;
  }
}

.doubletext--single .doubletext__col {
  max-width: 98rem;
}

.proposito__holder {
  background-color: rgba(213, 188, 143, 0.31);
}

.proposito__image {
  width: 76.7rem;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto -35rem;
}

.proposito__title {
  margin: 10rem auto 0;
  max-width: 105rem;
  font-size: 3.8rem;
  line-height: 1.4em;
  color: #4C4131;
}

@media screen and (max-width: 860px) {
  .proposito__image {
    max-width: 85%;
  }

  .proposito__title {
    font-size: 3rem;
  }
}

.proposito__content {
  padding: 33rem 0 10rem;
  background-color: white;
}

@media screen and (max-width: 860px) {
  .proposito__content {
    padding: 33rem 3rem 10rem;
  }
}

.imprensa {
  background-color: white;
  padding-bottom: 10rem;
}


@media screen and (max-width: 860px) {
  .imprensa {
    padding: 0 3rem;
  }
}

.imprensa__line {
  background-color: #4C4131;
  width: 100%;
  display: block;
  height: 2px;
  margin-bottom: 10rem;
}

.imprensa__title {
  color: #4C4131;
  font-size: 3.8rem;
  margin-bottom: 14rem;
}

.imprensa img {
  max-width: 20rem;
  display: block;
}

.cirurgias {
  background-color: #0E443A;
  padding: 12rem 0;
}

@media screen and (max-width: 860px) {
  .cirurgias {
    padding: 10rem 3rem;
  }
}

.cirurgias__title {
  color: #D5BC8F;
  font-size: 4.8rem;
}

@media screen and (max-width: 860px) {
  .cirurgias__title {
    font-size: 4rem;
  }
}

.cirurgias__item {
  padding: 7rem 0 6rem;
  border-bottom: solid 0.25rem rgba(213, 188, 143, 0.4588235294);
  display: flex;
  display: grid;
  grid-template-columns: 30% 70%;
}

@media screen and (max-width: 860px) {
  .cirurgias__item {
    display: block;
  }
}

.cirurgias__item:last-child {
  border: none;
}

@media screen and (max-width: 860px) {
  .cirurgias__item:last-child {
    padding-bottom: 0;
  }
}

.cirurgias__item__title {
  color: #D5BC8F;
  font-size: 3.8rem;
  text-decoration: underline;
}

@media screen and (max-width: 860px) {
  .cirurgias__item__title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}

.cirurgias__item__list {
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media screen and (max-width: 860px) {
  .cirurgias__item__list {
    gap: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .cirurgias__item__list {
    grid-template-columns: 1fr;
  }
}

.cirurgias__item__list li {
  font-size: 2.4rem;
  font-weight: 400;
}

@media screen and (max-width: 860px) {
  .cirurgias__item__list li {
    font-size: 1.8rem;
  }
}

.tecnologias {
  background-color: rgba(236, 226, 209, 0.2);
  padding: 14rem 0;
  color: #0E443A;
}

@media screen and (max-width: 860px) {
  .tecnologias {
    padding: 10rem 0;
    margin-top: 3rem;
  }
}

.tecnologias__title {
  font-size: 4.8rem;
  margin-bottom: 26rem;
}

@media screen and (max-width: 860px) {
  .tecnologias__title {
    font-size: 4rem;
    margin-bottom: 5rem;
  }

  .title__grid {
    margin-bottom: 3rem;
  }
}

.tecnologias__grid {
  gap: 7.6rem;
  padding: 0 3rem;
}

@media screen and (max-width: 860px) {
  .tecnologias__grid {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
  }
}

.tecnologias__grid--complementares {
  gap: 2rem;
}

@media screen and (max-width: 860px) {
  .tecnologias__grid--complementares {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    padding: 0 3rem;
  }
}

.tecnologias__item__title {
  font-size: 3.8rem;
  text-decoration: underline;
  margin-bottom: 6.9rem;
}

@media screen and (max-width: 860px) {
  .tecnologias__item__title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}

.tecnologias__item__text p {
  font-size: 2.4rem;
  line-height: 1.4em;
  font-weight: 400;
}

@media screen and (max-width: 860px) {
  .tecnologias__item__text p {
    font-size: 2rem;
  }
}

.tecnologias.background35 {
  background-color: rgba(236, 226, 209, 0.35);
}

.tecnologias--complementares__title {
  color: #0E443A;
  font-size: 2.4rem;
  margin-bottom: 9rem;
}

@media screen and (max-width: 860px) {
  .tecnologias--complementares__title {
    padding: 0 3rem;
  }
}


.tratamentos {
  padding: 20rem 0;
  background-color: #F7F2E9;
  color: #0E443A;
}

@media screen and (max-width: 860px) {
  .tratamentos {
    padding: 10rem 3rem;
  }
}

.tratamentos__title {
  font-size: 2.4rem;
  line-height: 1.4em;
  max-width: 65.6rem;
  margin: 0 auto 16rem;
}

@media screen and (max-width: 860px) {
  .tratamentos__title {
    font-size: 2rem;
    margin-bottom: 5rem;
  }
}

.tratamentos__grid {
  row-gap: 10rem;
}

@media screen and (max-width: 860px) {
  .tratamentos__grid {
    row-gap: 0;
    display: flex;
    flex-direction: column;
  }
}

.tratamentos__item {
  padding: 2rem 3rem;
  border-left: solid 1px #0E443A;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 860px) {
  .tratamentos__item {
    border: 0;
    border-bottom: solid 1px #0E443A;
    padding: 3rem;
  }

  .tratamentos__item:last-child {
    border: 0;
  }
}

@media screen and (min-width: 861px) {
  .tratamentos__item:nth-child(3n+1) {
    border-left: none;
  }
}

.tratamentos__item__title {
  font-size: 2.8rem;
  line-height: 1.4em;
  white-space: pre-line;
}

.cursos {
  background-color: #0E443A;
  overflow: hidden;
  padding: 10rem 0;
}

@media screen and (max-width: 860px) {
  .cursos {
    padding: 0 3rem 10rem;
  }
}

.cursos__title {
  color: #D5BC8F;
  font-size: 2.8rem;
}

@media screen and (max-width: 860px) {
  .cursos__title {
    text-align: left;
    max-width: 200px;
  }
}

.cursos .tns-ovh {
  overflow: initial;
}

.cursos__slider {
  margin-top: 6rem;
}

@media screen and (max-width: 860px) {
  .cursos__slider {
    margin-top: 3rem;
  }
}


.cursos__slider__item {
  width: 100%;
  border: solid 1px #D5BC8F;
  padding: 5rem 2.8rem;
  min-height: 40rem;
  display: inline-flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.cursos__slider__item__type {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 3rem;
  color: #ECE2D1;
}

.cursos__slider__item__title {
  color: #D5BC8F;
  font-size: 2.8rem;
  flex: 1 1 100%;
  line-height: 1em;
}

.cursos__slider__item__date {
  font-size: 2rem;
  color: white;
  display: block;
}

.cursos__slider__item__local {
  color: white;
  font-size: 1.8rem;
  display: block;
  margin-top: 0.3rem;
}

.heroequipe {
  padding: 30rem 0;
  background-color: #0E443A;
}

@media screen and (max-width: 860px) {
  .heroequipe {
    padding: 25rem 3rem;
  }
}

.heroequipe__title {
  color: #D5BC8F;
  font-size: 4.8rem;
}

@media screen and (max-width: 860px) {
  .heroequipe__title {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
}

.heroequipe__content {
  max-width: 66rem;
}

.heroequipe__content p {
  color: white;
  font-size: 2.4rem;
  line-height: 1.4em;
  margin-bottom: 1em;
  font-weight: 400;
}

@media screen and (max-width: 860px) {
  .heroequipe__content p {
    font-size: 2rem;
  }
}

.heroequipe__content .button {
  margin-top: 5rem;
}

.heroequipe+.equipe .equipe__grid {
  margin-top: -15rem;
}

.equipe {
  background-color: rgba(236, 226, 209, 0.2);
  padding: 1px 0 9rem;
  position: relative;
}

@media screen and (max-width: 860px) {
  .equipe__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 480px) {
  .equipe {
    background-color: #0E443A;
    padding: 1px 3rem 9rem;
  }

  .equipe__grid {
    display: block;
  }
}


.equipe__item {
  position: relative;
}

.equipe__item img {
  width: 100%;
  display: block;
  height: auto;
  aspect-ratio: 464/546;
  -o-object-fit: cover;
  object-fit: cover;
}

.equipe__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

@media screen and (max-width: 860px) {
  .equipe__item::after {
    height: 65%;
  }
}

.equipe__item__content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 2rem 2.4rem 5rem;
}

@media screen and (max-width: 860px) {
  .equipe__item__content {
    padding: 1.5rem;
  }
}

.equipe__item__name {
  color: #D5BC8F;
  font-size: 3.2rem;
  display: block;
  margin-bottom: 0.7rem;
}

@media screen and (max-width: 860px) {
  .equipe__item__name {
    font-size: 2rem;
  }
}

.equipe__item__cargo {
  font-size: 1.8rem;
  color: white;
}

.equipe--outros {
  padding: 11rem 0;
  background-color: rgba(213, 188, 143, 0.38);
}

@media screen and (max-width: 860px) {
  .equipe--outros {
    padding: 10rem 3rem;
  }
}

.equipe--outros .cursos__title {
  font-size: 4.8rem;
  color: #4C4131;
}

@media screen and (max-width: 860px) {
  .equipe--outros .cursos__title {
    font-size: 3.4rem;
  }
}

.equipe--outros .tns__controls__next,
.equipe--outros .tns__controls__prev {
  border-color: #4C4131;
}

.equipe--outros .cursos__slider__item {
  padding: 0;
  border: 0;
  min-height: initial;
}

.equipe--outros .tns-ovh {
  overflow: initial;
}

.heroequipe--skincare {
  background-color: black;
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20rem 0;
}

@media screen and (max-width: 860px) {
  .heroequipe--skincare {
    padding: 20rem 3rem;
  }
}

.heroequipe--skincare__banner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.46;
  pointer-events: none;
}

.heroequipe--skincare .container {
  position: relative;
  z-index: 2;
}

.skincare {
  background-color: #0E443A;
  padding: 13rem 0 23rem;
}

@media screen and (max-width: 860px) {
  .skincare {
    padding: 10rem 3rem;
  }
}

.skincare__box {
  border: solid 3px #D5BC8F;
  padding: 11rem 14rem 20rem;
}

@media screen and (max-width: 860px) {
  .skincare__box {
    padding: 3rem 3rem 15rem;
  }

  .skincare__box .grid {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}

.skincare__title {
  color: #D5BC8F;
  font-size: 4.8rem;
}

@media screen and (max-width: 860px) {
  .skincare__title {
    font-size: 4rem;
  }
}

.skincare__text {
  max-width: 70rem;
}

.skincare__text p {
  font-size: 2.4rem;
  line-height: 1.4em;
  color: #ECE2D1;
  font-weight: 400;
}

@media screen and (max-width: 860px) {
  .skincare__text p {
    font-size: 2rem;
  }
}

.skincare__grid {
  margin-top: -11rem;
  -moz-column-gap: 2.4rem;
  column-gap: 2.4rem;
  row-gap: 10rem;
}

.skincare__grid__item__image {
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  margin-bottom: 3.8rem;
}

.skincare__grid__item__title {
  color: #D5BC8F;
  font-size: 3.8rem;
  margin-bottom: 1.9rem;
}

@media screen and (max-width: 860px) {
  .skincare__grid__item__title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .skincare__grid {
    grid-template-columns: 1fr;
  }
}

.skincare__grid__item__text {
  color: white;
  font-weight: 400;
}

.skincare__grid__item__text p {
  font-size: 1.8rem;
  line-height: 1.8em;
}

.skincare__grid__item .button {
  margin-top: 6rem;
}

.skincare--exclusiva {
  background-color: #ECE2D1;
  background: linear-gradient(to bottom, #ECE2D1 35%, white 35%);
  padding-bottom: 10rem;
}

@media screen and (max-width: 860px) {
  .skincare--exclusiva {
    background: #ECE2D1;
  }
}

.skincare--exclusiva .skincare__title {
  color: #0E443A;
}

.skincare--exclusiva .skincare__text p {
  color: #0E443A;
}

.skincare--exclusiva .skincare__grid__item__text,
.skincare--exclusiva .skincare__grid__item__title {
  color: #4C4131;
}

.heroequipe--thecircle {
  min-height: 100vh;
}

.heroequipe--thecircle__logo {
  max-width: 42rem;
  display: block;
  margin-top: 5rem;
}

@media screen and (max-width: 860px) {
  .heroequipe--thecircle__logo {
    margin-bottom: 5rem;
    width: 80%;
  }
}

.heroequipe--thecircle__title {
  font-size: 2.8rem;
  line-height: 1.4em;
  margin-bottom: 4.9rem;
  color: #D5BC8F;
}

.heroequipe--thecircle .button {
  margin-top: 7rem;
}

.beneficios {
  padding: 17rem 0;
  background-color: #755175;
}

@media screen and (max-width: 860px) {
  .beneficios {
    padding: 10rem 3rem;
  }
}

.beneficios__title {
  color: #D5BC8F;
  font-size: 4.8rem;
  margin-bottom: 7rem;
}

@media screen and (max-width: 860px) {
  .beneficios__title {
    font-size: 4rem;
  }
}

.beneficios__text {
  max-width: 96rem;
  margin: 0 auto;
}

.beneficios__text p {
  color: #ECE2D1;
  font-size: 2.4rem;
  margin-bottom: 1em;
  line-height: 1.4em;
}

@media screen and (max-width: 860px) {
  .beneficios__text p {
    font-size: 2rem;
  }
}

.beneficios__grid {
  margin: 12rem 0;
  color: #ECE2D1;
}

@media screen and (max-width: 860px) {
  .beneficios__grid {
    margin: 10rem 0;
  }
}

.beneficios__grid .tratamentos__item {
  border-color: #ECE2D1;
}

.beneficios__grid .tratamentos__item__title {
  font-size: 2.4rem;
}

.fazerparte .intro__text p {
  max-width: 50rem;
}

.banner {
  background-attachment: fixed;
  aspect-ratio: 21/7;
  background-size: cover;
}

@media screen and (max-width: 860px) {
  .banner {
    aspect-ratio: 4/5;
    background-attachment: scroll;
  }
}

.glider-dots {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
}

.dots .glider-dot {
  width: 5rem;
  height: .5rem;
  border-radius: 0;
  background-color: white !important;
  opacity: 0.45;
}

.dots .glider-dot.active {
  opacity: 1;
}

.equipe .dots {
  bottom: 3.2rem;
}

#tns1-mw {
  overflow: hidden;
}

.tns__controls__next,
.tns__controls__prev {
  height: 2rem;
  width: 2rem;
}


/* Desktop: O br não existe, o texto fica corrido */
.br-mobile {
  display: none;
}

/* Mobile: O br passa a funcionar */
@media (max-width: 768px) {
  .br-mobile {
    display: block;
    /* ou inline */
  }
}