@charset "UTF-8";
:root {
  --primary-font: "Poppins", sans-serif;
  --second-font: "Calistoga", serif;
  --primary-color: #636363;
  --semi-bold: 700;
  --med-bold: 600;
  --low-bold: 500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

.relative {
  position: relative;
}

.all {
  transition: all 0.4s ease;
}

ul li {
  list-style: none;
}

.wpcf7-not-valid {
  border: 1px solid #ff0000 !important;
  animation: shake 150ms 2 linear;
  -moz-animation: shake 150ms 2 linear;
  -webkit-animation: shake 150ms 2 linear;
  -o-animation: shake 150ms 2 linear;
}

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

@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background: red;
  text-align: center;
  padding: 1rem;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  border: 0;
  border-radius: 2rem;
  margin-top: 0;
}

label {
  color: black;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: 0 !important;
  color: white !important;
}

.wpcf7 form.invalid .wpcf7-response-output {
  display: none;
}

.slick-dots li button:before {
  display: none;
}
.slick-prev:before, .slick-next:before {
  display: none;
}
.slick-disabled {
  opacity: 0.4;
}

strong {
  font-weight: var(--semi-bold);
}

html {
  padding: 0;
  margin-top: 0 !important;
}

body {
  font-family: var(--primary-font);
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  padding: 0;
  background-color: #fff;
}

a {
  text-decoration: none;
}
a.ab {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 8;
}
a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  padding-inline: 10px;
  transition: all 0.4s ease;
}
a.btn-vermelho {
  color: #fff;
  background-color: #e2725b;
  border-radius: 3px;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
}
a.btn-vermelho:hover {
  background-color: #d6b321;
}
a.btn-verde {
  color: #fff;
  background-color: #69c1b6;
  border-radius: 3px;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
}
a.btn-verde:hover {
  background-color: #d6b321;
}

p {
  margin: 0.75rem 0;
  line-height: 24px;
}

.container {
  max-width: 1390px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 2rem;
  position: relative;
}
@media (min-width: 1440px) {
  .container {
    max-width: 96%;
  }
}
@media (max-width: 1190px) {
  .container {
    max-width: 990px;
    padding-inline: 1rem;
  }
}
.container-large {
  max-width: 1400px;
}
@media (max-width: 1390px) {
  .container-large {
    max-width: 1210px;
  }
}
.container-space {
  max-width: 1240px;
}
.container-small {
  max-width: 1112px;
}
@media (min-width: 1440px) {
  .container-small {
    max-width: 70%;
  }
}
.container-litle {
  max-width: 880px;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

@media (min-width: 1190px) {
  .desk {
    display: block;
  }
}
@media (max-width: 1189px) {
  .desk {
    display: none;
  }
}

@media (min-width: 1190px) {
  .mob {
    display: none !important;
  }
}
@media (max-width: 1189px) {
  .mob {
    display: block;
  }
}

.hamburger {
  position: absolute;
  left: 1rem;
  z-index: 99;
  top: 3rem;
}
@media (max-width: 770px) {
  .hamburger {
    left: initial;
    right: 1rem;
  }
}

@media (min-width: 1191px) {
  .hamburger {
    display: none;
  }
}
.hamburger .line {
  padding: initial;
  width: 25px;
  height: 3px;
  border-radius: 0;
  background-color: #000000;
  display: block;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger.is-active .line {
  background-color: #000000;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

.hamburger#hamburger-1.is-active .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger#hamburger-1.is-active .line:nth-child(3) {
  transform: translateY(-6px) rotate(-49deg);
}

.line {
  margin-top: 4rem;
  border-top: 1px solid hsla(206, 100%, 33%, 0.3);
  padding-block: 1rem;
}

.center {
  text-align: center;
}

body {
  margin-top: 123px;
}

header {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  left: 0;
  width: 100%;
  height: 123px;
  z-index: 9;
  top: 0;
  display: flex;
  align-items: center;
}
header .grid {
  grid-template-columns: 241px 60% 1fr;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1190px) {
  header .grid {
    display: flex;
    justify-content: space-between;
    padding-inline-start: 2rem;
  }
}
@media (max-width: 1190px) {
  header .grid .menu {
    display: none;
  }
}
header .grid .menu ul {
  display: flex;
  justify-content: space-between;
}
header .grid .menu ul li.current_page_item a, header .grid .menu ul li:hover a {
  color: #d6b321;
}
header .grid .menu ul li a {
  color: #636363;
  transition: all 0.4s ease;
}
header .mini_contatos {
  display: block;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid white;
  border-left: 1px solid #d6b321;
  padding-left: 15px;
}
@media (max-width: 560px) {
  header .mini_contatos {
    display: none;
  }
}
header .mini_contatos > div {
  margin-bottom: 10px;
}
header .mini_contatos > div:last-child {
  margin-bottom: 0;
}
header .mini_contatos a {
  color: #636363;
}
header .mini_contatos .end {
  background: url(../imgs/pin.svg) no-repeat left;
  padding-left: 20px;
}
header .mini_contatos .telefone {
  background: url(../imgs/whats.svg) no-repeat left;
  padding-left: 20px;
}
header .mini_contatos .inst {
  background: url(../imgs/inst.svg) no-repeat left;
  padding-left: 20px;
}
header .mini_contatos .yout {
  background: url(../imgs/yout.svg) no-repeat left;
  padding-left: 20px;
}
header .menuMob {
  position: absolute;
  top: 123px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
}
header .menuMob.active {
  opacity: 1;
  visibility: visible;
}
header .menuMob ul {
  padding-left: 3rem;
  padding-top: 4rem;
}
header .menuMob ul li {
  font-size: 18px;
  margin-bottom: 12px;
}
header .menuMob ul li.current_page_item a, header .menuMob ul li:hover a {
  color: #d6b321;
}
header .menuMob ul li a {
  color: #636363;
  transition: all 0.4s ease;
}
@media (max-width: 559px) {
  header .menuMob .mini_contatos {
    display: block;
    margin-left: 3rem;
    margin-top: 3rem;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

h2 {
  font-size: 32px;
  font-family: var(--second-font);
  font-weight: 400;
}

#banner .slider_banner .content {
  height: 550px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  color: white;
  display: flex !important;
  align-items: center;
  padding-left: 160px;
}
@media (max-width: 770px) {
  #banner .slider_banner .content {
    padding-left: 0;
    height: 400px;
  }
}
#banner .slider_banner .content .text {
  width: 50%;
}
#banner .slider_banner .content h2 {
  font-family: var(--second-font);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
}
#banner .slider_banner .content a {
  font-weight: 600;
}
#banner .slider_banner .slick-dots {
  bottom: 2rem;
}
#banner .slider_banner .slick-dots li button {
  background-color: #4b7f80;
  border-radius: 2rem;
}
#banner .slider_banner .slick-dots li.slick-active button {
  background-color: #69c1b6;
}

#banner_int {
  height: 350px;
  display: flex;
  align-items: center;
  background-size: cover;
}
#banner_int h2 {
  text-align: center;
  color: white;
  font-size: 58px;
}

#quem {
  display: flex;
  align-items: center;
  position: relative;
}
#quem:after {
  content: "";
  display: block;
  width: 211px;
  height: 221px;
  background: url(../imgs/simbol1.svg) no-repeat;
  position: absolute;
  left: 38%;
  bottom: -90px;
  transform: translate(-50%, 0%);
}
@media (max-width: 1100px) {
  #quem:after {
    display: none;
  }
}
@media (max-width: 1100px) {
  #quem {
    display: block;
  }
}
#quem .text {
  color: #d6b321;
  font-family: var(--second-font);
  width: 547px;
}
#quem .text h2 {
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 770px) {
  #quem .text h2 {
    font-size: 26px;
    line-height: normal;
  }
}
@media (max-width: 550px) {
  #quem .text h2 {
    font-size: 20px;
  }
}
@media (max-width: 1100px) {
  #quem .text {
    width: 100%;
    margin-block: 2rem;
    text-align: center;
  }
}
#quem iframe {
  width: 710px;
}
@media (max-width: 1310px) {
  #quem iframe {
    width: 500px;
  }
}
@media (max-width: 1100px) {
  #quem iframe {
    width: 100%;
    height: 300px;
  }
}

#oq {
  background-color: #e2725b;
  min-height: 500px;
  margin-top: -4px;
  padding-block: 80px;
}
#oq h2 {
  color: white;
  font-size: 32px;
}
#oq .lista {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 50px;
}
@media (max-width: 1100px) {
  #oq .lista {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 770px) {
  #oq .lista {
    grid-template-columns: 1fr;
  }
}
#oq .lista img {
  width: 100%;
  height: 207px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 770px) {
  #oq .lista img {
    height: 170px;
  }
}
#oq .lista .servico-item {
  position: relative;
}
#oq .lista .servico-item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 207px;
  background-color: hsla(0, 0%, 0%, 0.33);
  top: 0;
  left: 0;
  border-radius: 6px;
  transition: all 0.4s ease;
}
@media (max-width: 770px) {
  #oq .lista .servico-item:after {
    height: 170px;
  }
}
#oq .lista .servico-item h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  z-index: 3;
  width: 100%;
  padding-inline: 2rem;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 770px) {
  #oq .lista .servico-item h2 {
    font-size: 18px;
  }
}
#oq .lista .servico-item span {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translate(-50%, -50%);
  font-size: 22px;
  z-index: 3;
  width: 100%;
  text-align: center;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  padding-inline: 10px;
  transition: all 0.4s ease;
  color: #fff;
  background-color: #e2725b;
  border-radius: 3px;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
}
#oq .lista .servico-item:hover:after {
  background-color: hsla(48, 73%, 48%, 0.85);
}
#oq .lista .servico-item:hover span {
  opacity: 1;
}

#atividades .intro {
  color: #636363;
  margin-block: 80px;
}
#atividades .intro h2 {
  color: #4b7f80;
  margin-bottom: 20px;
}
#atividades .calendario {
  margin-block-end: 62px;
}

#yogaC {
  background: url(../imgs/bg_yoga.jpg) no-repeat center;
  background-size: cover;
  padding-block-end: 80px;
}
#yogaC h2 {
  color: #e2725b;
  padding-block-start: 80px;
  padding-block-end: 50px;
}
#yogaC .grid {
  grid-template-columns: 50% 1fr;
  gap: 84px;
}
@media (max-width: 990px) {
  #yogaC .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#yogaC .grid iframe {
  width: 100%;
}
@media (max-width: 990px) {
  #yogaC .grid iframe {
    height: 300px;
  }
}
#yogaC .grid .btn {
  margin-top: 50px;
}

#locacao {
  background: url(../imgs/bg_locacao.jpg) center no-repeat;
  background-size: cover;
  color: white;
  padding-block-end: 40px;
}
#locacao h2 {
  padding-block: 40px;
}
#locacao .grid {
  grid-template-columns: 660px 1fr;
  gap: 133px;
}
@media (max-width: 990px) {
  #locacao .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#locacao .img img {
  width: 100%;
}
#locacao .text h2 {
  padding-block: initial;
}
#locacao .text .btn {
  margin-top: 50px;
}

#estrelas {
  background: url(../imgs/bg_estrelas.jpg) no-repeat center;
  background-size: cover;
  padding-block: 80px;
}
@media (max-width: 990px) {
  #estrelas {
    padding-block: 30px;
  }
}
#estrelas h2 {
  color: white;
}
#estrelas .box {
  background-color: #fff;
  border-radius: 8px;
  width: 595px;
  margin-inline: auto;
  position: relative;
  padding-inline-start: 109px;
  padding-inline-end: 40px;
  padding-block: 40px;
}
@media (max-width: 990px) {
  #estrelas .box {
    width: 100%;
    padding-inline-start: 60px;
    padding-inline-end: 40px;
  }
}
#estrelas .box h2 {
  color: #636363;
}
#estrelas .box .foto {
  position: absolute;
  left: -8rem;
  top: 50%;
  transform: translate(0%, -50%);
}
@media (max-width: 770px) {
  #estrelas .box .foto {
    position: initial;
    transform: initial;
    margin-bottom: 20px;
  }
}
#estrelas .box .foto img {
  border-radius: 6px;
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: -1px 9px 5px -4px rgba(0, 0, 0, 0.25);
}
#estrelas .box h3 {
  color: #d6b321;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
#estrelas .box .btn {
  margin-top: 40px;
}
#estrelas .slick-next, #estrelas .slick-prev {
  background: #69c1b6 url(../imgs/arrow.svg) no-repeat center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  transition: all 0.4s ease;
}
#estrelas .slick-next:hover, #estrelas .slick-prev:hover {
  background: #d6b321 url(../imgs/arrow.svg) no-repeat center;
}
#estrelas .slick-next {
  transform: rotate(-180deg);
  right: 0;
}
@media (max-width: 990px) {
  #estrelas .slick-next {
    top: 46%;
  }
}
#estrelas .slick-prev {
  z-index: 2;
  left: 0;
}
#estrelasContent .bb:first-child {
  background-color: #fafafa;
  padding-block: 80px;
}
@media (max-width: 990px) {
  #estrelasContent .bb:first-child {
    padding-block: 30px;
  }
}
#estrelasContent .bb:last-child {
  padding-block: 80px;
  background-color: white;
}
#estrelasContent .bb:last-child .texto {
  background-color: #fafafa;
}
#estrelasHeaders {
  display: grid;
  grid-template-columns: 180px 310px 1fr;
  align-items: end;
  gap: 80px;
  border-bottom: 1px solid #69c1b6;
  padding-bottom: 20px;
}
@media (max-width: 990px) {
  #estrelasHeaders {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 770px) {
  #estrelasHeaders {
    grid-template-columns: 1fr;
  }
}
#estrelasHeaders .foto img {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
#estrelasHeaders .nome .area {
  color: #d6b321;
  font-weight: 500;
  margin-top: 6px;
}
#estrelasHeaders .redes {
  display: flex;
  gap: 2rem;
}
#estrelasHeaders .redes a {
  background: url(../imgs/inst.svg) no-repeat left;
  padding-left: 20px;
  color: #636363;
  font-size: 14px;
}
#estrelasInfos .scroll-content {
  height: 414px;
}
#estrelasInfos .scroll-content:after {
  content: "";
  width: 2px;
  height: 95%;
  position: absolute;
  top: 21px;
  right: 7px;
  background-color: #c1c1c1;
}
#estrelasInfos .texto {
  background-color: white;
  padding-block: 40px;
  padding-block-start: 20px;
  padding-inline: 20px;
  border-radius: 15px;
}
#estrelasInfos .grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 770px) {
  #estrelasInfos .grid {
    grid-template-columns: 1fr;
  }
}
#estrelasInfos .video iframe {
  width: 100%;
  height: 400px;
}
@media (max-width: 770px) {
  #estrelasInfos .video iframe {
    height: 300px;
  }
}
#estrelasInfos .video .cursos {
  margin-top: 40px;
}
@media (max-width: 770px) {
  #estrelasInfos .video .cursos {
    line-height: 28px;
  }
}
#estrelasInfos .video .cursos a {
  color: #636363;
  text-decoration: underline;
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1 !important;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #69c1b6 !important;
  opacity: 1 !important;
}

#depoimentos {
  padding-block: 80px;
  background-color: #69c1b6;
  position: relative;
}
#depoimentos:after {
  content: "";
  background: url(../imgs/simbol2.svg) no-repeat;
  width: 254px;
  height: 267px;
  position: absolute;
  left: 0;
  top: -3rem;
}
@media (max-width: 770px) {
  #depoimentos:after {
    display: none;
  }
}
#depoimentos h2 {
  color: white;
}
#depoimentos .slider_depoimentos {
  margin-top: 40px;
}
#depoimentos .slider_depoimentos .box {
  background-color: white;
  border-radius: 15px;
  padding-block: 40px;
  padding-inline: 20px;
}
#depoimentos .slider_depoimentos .box .foto {
  margin-bottom: 20px;
}
#depoimentos .slider_depoimentos .box .foto img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
}
#depoimentos .slider_depoimentos .box h2 {
  color: #636363;
  text-align: center;
}
#depoimentos .slider_depoimentos .box h3 {
  color: #d6b321;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
#depoimentos .slider_depoimentos .slick-slide {
  margin: 0 10px;
}
#depoimentos .slider_depoimentos .slick-list {
  margin: 0 -10px;
}
#depoimentos .slider_depoimentos .slick-next, #depoimentos .slider_depoimentos .slick-prev {
  background: #69c1b6 url(../imgs/arrow.svg) no-repeat center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  transition: all 0.4s ease;
}
#depoimentos .slider_depoimentos .slick-next:hover, #depoimentos .slider_depoimentos .slick-prev:hover {
  background: #d6b321 url(../imgs/arrow.svg) no-repeat center;
}
#depoimentos .slider_depoimentos .slick-next {
  transform: rotate(-180deg);
  right: 0;
  top: 30%;
}
#depoimentos .slider_depoimentos .slick-prev {
  z-index: 2;
  left: 0;
  top: 35%;
}

#falar {
  padding-block: 80px;
}
#falar h2 {
  color: #636363;
}
#falar .link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#falar .link a {
  text-transform: uppercase;
}

footer {
  background-color: #d6b321;
  color: white;
  padding-block: 40px;
}
footer .intro {
  width: 633px;
  margin-inline: auto;
}
@media (max-width: 990px) {
  footer .intro {
    width: 100%;
  }
}
footer .intro .grid {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 990px) {
  footer .intro .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  footer .intro .grid .logo {
    text-align: center;
  }
}
footer .intro .news form {
  position: relative;
  margin-top: 20px;
}
footer .intro .news form input[type=email] {
  border-radius: 90px;
  height: 64px;
  border: 1px solid white;
  padding-left: 16px;
  padding-right: 104px;
  width: 410px;
  transition: all 0.4s ease;
}
@media (max-width: 990px) {
  footer .intro .news form input[type=email] {
    width: 100%;
  }
}
footer .intro .news form input[type=email]:focus {
  border: 1px solid #e2725b;
}
footer .intro .news form input[type=submit] {
  position: absolute;
  top: 16px;
  border: 0;
  background-color: #e2725b;
  color: white;
  border-radius: 30px;
  right: 16px;
  font-weight: 500;
  height: 34px;
  width: 104px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}
footer .intro .news form input[type=submit]:hover {
  background-color: #d6b321;
}
footer .infos {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid white;
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-top: 40px;
}
@media (max-width: 990px) {
  footer .infos {
    display: block;
    line-height: 32px;
  }
}
footer .infos a {
  color: white;
}
footer .infos .end {
  background: url(../imgs/pin.svg) no-repeat left;
  padding-left: 20px;
}
footer .infos .telefone {
  background: url(../imgs/whats.svg) no-repeat left;
  padding-left: 20px;
}
footer .infos .inst {
  background: url(../imgs/inst.svg) no-repeat left;
  padding-left: 20px;
}
footer .infos .yout {
  background: url(../imgs/yout.svg) no-repeat left;
  padding-left: 20px;
}
footer .horario {
  font-size: 14px;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  background: url(../imgs/clock.svg) no-repeat left;
  padding-left: 20px;
}
@media (max-width: 990px) {
  footer .horario {
    width: 100%;
  }
}

#listaTerapia .grid {
  grid-template-columns: 547px 1fr;
  align-items: start;
  gap: 120px;
}
@media (max-width: 990px) {
  #listaTerapia .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#listaTerapia .grid iframe {
  width: 100%;
}
@media (max-width: 990px) {
  #listaTerapia .grid iframe {
    height: 300px;
  }
}
#listaTerapia .lt {
  padding-block: 80px;
}
#listaTerapia .lt:nth-child(3n+1) {
  background-color: #69c1b6;
}
#listaTerapia .lt:nth-child(3n+2) {
  background-color: #ffffff;
}
#listaTerapia .lt:nth-child(3n+3) {
  background-color: #e2725b;
}
#listaTerapia .lt:nth-child(3n+3) .btn {
  background-color: #69c1b6;
}
#listaTerapia .lt:nth-child(3n+3) .btn:hover {
  background-color: #d6b321;
}
#listaTerapia .lt:nth-child(3n+1), #listaTerapia .lt:nth-child(3n+3) {
  color: white;
}
#listaTerapia .lt:last-child {
  margin-block-end: 0;
}
#listaTerapia .lt h2 {
  margin-bottom: 30px;
}
#listaTerapia .lt p {
  margin: 1.5rem 0;
}
#listaTerapia .lt em {
  font-style: normal;
  text-decoration: underline;
}
#listaTerapia .lt:nth-child(3n+2) .grid {
  grid-template-columns: 1fr 547px;
}
@media (max-width: 990px) {
  #listaTerapia .lt:nth-child(3n+2) .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#listaTerapia .lt:nth-child(3n+2) .video {
  order: 1;
}
@media (max-width: 990px) {
  #listaTerapia .lt:nth-child(3n+2) .video {
    order: 2;
  }
}
#listaTerapia .lt:nth-child(3n+2) .texto {
  order: 2;
}
@media (max-width: 990px) {
  #listaTerapia .lt:nth-child(3n+2) .texto {
    order: 1;
  }
}
#listaTerapia.yogaa .grid {
  grid-template-columns: 547px 1fr;
  align-items: center;
  gap: 120px;
}
@media (max-width: 990px) {
  #listaTerapia.yogaa .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#listaTerapia.yogaa .grid iframe {
  width: 100%;
}
@media (max-width: 990px) {
  #listaTerapia.yogaa .grid iframe {
    height: 300px;
  }
}
#listaTerapia.yogaa .lt {
  padding-block: 98px;
}
@media (max-width: 990px) {
  #listaTerapia.yogaa .lt {
    margin-block-end: 30px;
  }
}
#listaTerapia.yogaa .lt:last-child {
  margin-block-end: 0;
}
#listaTerapia.yogaa .lt .btn {
  margin-top: 50px;
}
#listaTerapia.yogaa .lt:first-child {
  padding-block-start: 80px;
}
@media (max-width: 990px) {
  #listaTerapia.yogaa .lt:first-child {
    padding-block-start: 30px;
  }
}
#listaTerapia.yogaa .lt:nth-child(2) {
  position: relative;
}
#listaTerapia.yogaa .lt:nth-child(2):after {
  content: "";
  display: block;
  width: 260px;
  height: 274px;
  background: url(../imgs/simbol3.svg) no-repeat;
  position: absolute;
  left: 38%;
  top: -16rem;
  transform: translate(-50%, 0%);
}
@media (max-width: 990px) {
  #listaTerapia.yogaa .lt:nth-child(2):after {
    background-size: contain;
    height: 191px;
  }
}
#listaTerapia.yogaa .lt:nth-child(3n+1), #listaTerapia.yogaa .lt:nth-child(3n+3) {
  color: white;
}
#listaTerapia.yogaa .lt .infos {
  margin-top: 80px;
}
@media (max-width: 990px) {
  #listaTerapia.yogaa .lt .infos {
    margin-top: 20px;
  }
}
#listaTerapia.yogaa .lt .infos p {
  margin: 0.75rem 0;
}
#listaTerapia.yogaa .lt ul {
  margin-left: 1.75rem;
}
#listaTerapia.yogaa .lt ul li {
  list-style: disc;
  margin-bottom: 10px;
}

#introOrbe {
  background: url(../imgs/bg_intro.jpg) no-repeat;
  background-size: cover;
  color: white;
  padding-block: 80px;
}
@media (max-width: 1190px) {
  #introOrbe {
    padding-block: 30px;
  }
}
#introOrbe .grid {
  grid-template-columns: 547px 1fr;
  gap: 120px;
}
@media (max-width: 1190px) {
  #introOrbe .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#introOrbe iframe {
  width: 100%;
}
@media (max-width: 660px) {
  #introOrbe iframe {
    height: 300px;
  }
}
#introOrbe h2 {
  margin-bottom: 40px;
}

#listaOrbe {
  padding-block: 80px;
}
@media (max-width: 990px) {
  #listaOrbe {
    padding-block: 30px;
  }
}
#listaOrbe .grid {
  grid-template-columns: 547px 1fr;
  gap: 120px;
  margin-bottom: 60px;
}
@media (max-width: 990px) {
  #listaOrbe .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#listaOrbe .grid:first-child .texto {
  border-bottom: 1px solid #d6b321;
}
@media (max-width: 990px) {
  #listaOrbe .grid:first-child .texto {
    order: 2;
  }
}
@media (max-width: 990px) {
  #listaOrbe .grid:first-child .imagem {
    order: 1;
  }
}
#listaOrbe .grid:first-child h2 {
  color: #d6b321;
}
#listaOrbe .grid:nth-child(2) h2 {
  color: #69c1b6;
}
#listaOrbe .grid:nth-child(2) .texto {
  border-bottom: 1px solid #69c1b6;
}
@media (max-width: 990px) {
  #listaOrbe .grid:nth-child(2) .texto {
    order: 2;
  }
}
@media (max-width: 990px) {
  #listaOrbe .grid:nth-child(2) .imagem {
    order: 1;
  }
}
#listaOrbe .grid:nth-child(3) h2 {
  color: #e2725b;
}
#listaOrbe .grid:nth-child(3) .texto {
  border-bottom: 1px solid #e2725b;
}
@media (max-width: 990px) {
  #listaOrbe .grid:nth-child(3) .texto {
    order: 2;
  }
}
@media (max-width: 990px) {
  #listaOrbe .grid:nth-child(3) .imagem {
    order: 1;
  }
}
#listaOrbe .grid:nth-child(4) h2 {
  color: #4b7f80;
}
#listaOrbe .grid:nth-child(4) .texto {
  border-bottom: 1px solid #4b7f80;
}
@media (max-width: 990px) {
  #listaOrbe .grid:nth-child(4) .texto {
    order: 2;
    border: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 990px) {
  #listaOrbe .grid:nth-child(4) .imagem {
    order: 1;
  }
}
#listaOrbe .texto {
  padding-bottom: 40px;
}
#listaOrbe .texto h2 {
  margin-bottom: 40px;
}
#listaOrbe .imagem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#cartaAberta {
  background: #4b7f80 url(../imgs/simbol4.svg) no-repeat -2rem 126%;
  padding-block: 80px;
  color: white;
}
#cartaAberta .grid {
  grid-template-columns: 340px 1fr;
  gap: 2rem;
}
@media (max-width: 770px) {
  #cartaAberta .grid {
    grid-template-columns: 1fr;
  }
}
#cartaAberta .grid .foto img {
  border-radius: 6px;
  width: 320px;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
#cartaAberta .grid .foto span {
  border-bottom: 1px solid #d6b321;
  padding-bottom: 20px;
  padding-top: 40px;
  display: block;
  line-height: 26px;
}
#cartaAberta .grid .texto strong {
  color: #69c1b6;
}

#cards {
  background-color: #e2725b;
  padding-block: 80px;
  position: relative;
}
#cards:after {
  content: "";
  background: url(../imgs/simbol5.svg) no-repeat center;
  width: 235px;
  height: 248px;
  position: absolute;
  right: 4rem;
  top: -7rem;
}
@media (max-width: 990px) {
  #cards:after {
    display: none;
  }
}
#cards h2 {
  color: white;
}
#cards .grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 990px) {
  #cards .grid {
    grid-template-columns: 1fr;
  }
}
#cards .box {
  background-color: white;
  border-radius: 15px;
  padding-block: 40px;
  padding-inline: 20px;
}
#cards .box a {
  color: #e2725b;
  text-decoration: underline;
}
#cards .box a.btn {
  color: white;
  height: 34px;
  text-decoration: none;
}
#cards .box h2 {
  text-align: center;
  color: #636363;
  line-height: 42px;
}
#cards .box h3 {
  font-size: 24px;
  color: #d6b321;
  font-family: var(--primary-font);
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
#cards .box .img .post_img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

#intinerante {
  padding-block: 80px;
}
#intinerante h2 {
  text-align: center;
  color: #4b7f80;
  margin-bottom: 40px;
}
#intinerante .accordion__item {
  margin: 40px auto;
}
#intinerante .accordion__item .accordion__title {
  background-color: #f5f5f5;
  font-size: 32px;
  color: #4b4b4b;
  font-family: var(--second-font);
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  padding: 20px;
}
#intinerante .accordion__title-text {
  position: relative;
}
#intinerante .accordion__title-text:after {
  content: "";
  position: absolute;
  background: url(../imgs/arrow_acc.svg) no-repeat;
  top: 18px;
  right: -32px;
  width: 16px;
  height: 16px;
  transition: all 0.2s ease-out;
}
#intinerante .accordion__item .accordion-active {
  background-color: #fff;
  box-shadow: -14px 0px 37px -34px rgba(0, 0, 0, 0.35);
}
#intinerante .accordion__item .accordion-active .accordion__title-text:after {
  transform: rotate(180deg);
}
#intinerante .accordion__item .accordion__content {
  padding: 30px;
  margin-bottom: 2px;
  font-size: 14px;
  display: none;
  background-color: #fff;
  box-shadow: 0px 19px 13px -6px rgba(0, 0, 0, 0.15);
}
#intinerante .accordion {
  width: 1100px;
  margin-inline: auto;
}
@media (max-width: 990px) {
  #intinerante .accordion {
    width: 100%;
  }
}
#intinerante .accordion .grid {
  grid-template-columns: 180px 1fr;
  align-items: end;
  gap: 40px;
}
@media (max-width: 550px) {
  #intinerante .accordion .grid {
    grid-template-columns: 1fr;
  }
}
#intinerante .accordion .grid .sub h3 {
  font-size: 36px;
  color: #636363;
  font-family: var(--second-font);
}
#intinerante .accordion .grid .sub h4 {
  color: #d6b321;
  font-weight: 500;
  font-size: 16px;
}

#locacaoIntro {
  background: url(../imgs/bg_locacao_intro.jpg) no-repeat center;
  background-size: cover;
  padding-block: 80px;
  color: white;
}
#locacaoIntro .btn {
  margin-top: 50px;
}
#locacaoIntro .grid {
  grid-template-columns: 547px 1fr;
  gap: 80px;
}
@media (max-width: 990px) {
  #locacaoIntro .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#locacaoIntro .texto h2 {
  margin-bottom: 40px;
}
#locacaoIntro .video iframe {
  width: 100%;
  height: 398px;
}
@media (max-width: 550px) {
  #locacaoIntro .video iframe {
    height: 300px;
  }
}
#locacaoGaleria {
  padding-block-start: 90px;
  padding-block-end: 40px;
  position: relative;
}
#locacaoGaleria:after {
  content: "";
  background: url(../imgs/simbol6.svg) center no-repeat;
  width: 235px;
  height: 248px;
  position: absolute;
  left: 35%;
  transform: translate(-50%, -50%);
  bottom: 45%;
}
@media (max-width: 550px) {
  #locacaoGaleria:after {
    display: none;
  }
}
#locacaoGaleria h2.title {
  color: #d6b321;
  margin-bottom: 50px;
}
#locacaoGaleria .grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 770px) {
  #locacaoGaleria .grid {
    grid-template-columns: 1fr;
  }
}
#locacaoGaleria .locacao-item {
  position: relative;
  cursor: pointer;
}
#locacaoGaleria .locacao-item h2 {
  color: white;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 3;
  text-align: center;
}
#locacaoGaleria .locacao-item .atendimento {
  background-color: #69c1b6;
  color: white;
  font-size: 14px;
  padding-block: 5px;
  padding-inline: 6px;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}
#locacaoGaleria .locacao-item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 207px;
  background-color: hsla(0, 0%, 0%, 0.33);
  top: 0;
  left: 0;
  border-radius: 6px;
  transition: all 0.4s ease;
}
#locacaoGaleria .locacao-item:hover:after, #locacaoGaleria .locacao-item.active:after {
  background-color: hsla(48, 73%, 48%, 0.85);
}
#locacaoGaleria .locacao-thumbnail img {
  border-radius: 6px;
  width: 100%;
  height: 207px;
  -o-object-fit: cover;
     object-fit: cover;
}
#locacaoResultado {
  background-color: #e2725b;
  padding-block: 80px;
  color: white;
}
@media (max-width: 770px) {
  #locacaoResultado {
    padding-block: 30px;
  }
}
#locacaoResultado .flex {
  justify-content: space-between;
}
@media (max-width: 770px) {
  #locacaoResultado .flex {
    display: block;
  }
}
#locacaoResultado .locacao-item-resultado .locacao-item {
  width: 514px;
}
@media (max-width: 770px) {
  #locacaoResultado .locacao-item-resultado .locacao-item {
    width: 100%;
  }
}
#locacaoResultado .locacao-item-resultado .galeria {
  width: 660px;
  padding-inline: 16px;
}
@media (max-width: 770px) {
  #locacaoResultado .locacao-item-resultado .galeria {
    width: 100%;
    margin-top: 30px;
    padding-inline: 0;
  }
}
#locacaoResultado .locacao-item-resultado .galeria .slick-slide img {
  width: 100% !important;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}
#locacaoResultado .btn {
  margin-top: 40px;
}
#locacaoResultado .atendimento {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-block: 10px;
  margin-bottom: 40px;
}
@media (max-width: 770px) {
  #locacaoResultado .atendimento {
    display: block;
  }
}
#locacaoResultado .atendimento h3 {
  font-size: 16px;
  font-weight: 500;
  border-left: 2px solid white;
  padding-left: 1rem;
}
@media (max-width: 770px) {
  #locacaoResultado .atendimento h3 {
    border: 0;
    padding-left: 0;
    margin-top: 10px;
  }
}
#locacaoResultado .slick-next, #locacaoResultado .slick-prev {
  background: #69c1b6 url(../imgs/arrow.svg) no-repeat center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  transition: all 0.4s ease;
}
#locacaoResultado .slick-next:hover, #locacaoResultado .slick-prev:hover {
  background: #d6b321 url(../imgs/arrow.svg) no-repeat center;
}
#locacaoResultado .slick-next {
  transform: rotate(-180deg);
  right: -3rem;
}
@media (max-width: 770px) {
  #locacaoResultado .slick-next {
    right: 0;
    top: 44%;
  }
}
#locacaoResultado .slick-prev {
  z-index: 2;
  left: -3rem;
}
@media (max-width: 770px) {
  #locacaoResultado .slick-prev {
    left: 0;
  }
}

#contatoIntro {
  padding-block: 80px;
  position: relative;
}
@media (max-width: 770px) {
  #contatoIntro {
    padding-block: 30px;
  }
}
#contatoIntro:after {
  content: "";
  background: url(../imgs/simbol5.svg) no-repeat center;
  width: 317px;
  height: 335px;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: -5rem;
}
@media (max-width: 770px) {
  #contatoIntro:after {
    display: none;
  }
}
#contatoIntro .grid {
  grid-template-columns: 660px 1fr;
  gap: 20px;
}
@media (max-width: 770px) {
  #contatoIntro .grid {
    grid-template-columns: 1fr;
  }
}
#contatoIntro .img img {
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}
#contatoIntro .texto h2 {
  margin-bottom: 40px;
}
#contatoIntro .texto .btn {
  margin-top: 40px;
}
#contatoForm {
  background: url(../imgs/bg_form.jpg) center no-repeat;
  background-size: cover;
  padding-block: 80px;
  color: white;
}
@media (max-width: 770px) {
  #contatoForm {
    padding-block: 20px;
  }
}
#contatoForm .grid {
  grid-template-columns: 434px 1fr;
  gap: 134px;
}
@media (max-width: 770px) {
  #contatoForm .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#contatoForm .formulario {
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  width: 546px;
}
@media (max-width: 770px) {
  #contatoForm .formulario {
    width: 100%;
    padding: 10px;
  }
}
#contatoForm .formulario .flex {
  gap: 20px;
}
@media (max-width: 770px) {
  #contatoForm .formulario .flex {
    display: block;
  }
}
#contatoForm .formulario input {
  width: 100%;
  height: 66px;
  border: 1px solid #b2b2b2;
  padding-inline: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
}
#contatoForm .formulario input::-moz-placeholder {
  color: #282828;
}
#contatoForm .formulario input::placeholder {
  color: #282828;
}
#contatoForm .formulario input[type=submit] {
  color: #fff;
  background-color: #e2725b;
  border-radius: 3px;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding-inline: 10px;
  padding-block: 10px;
  height: initial;
  border: 0;
  cursor: pointer;
}
#contatoForm .formulario input[type=submit]:hover {
  background-color: #d6b321;
}
#contatoForm .formulario .enviar {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#contatoForm .formulario textarea {
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #b2b2b2;
  width: 100%;
}
#contatoForm .formulario textarea::-moz-placeholder {
  color: #282828;
}
#contatoForm .formulario textarea::placeholder {
  color: #282828;
}

#estrelasInfos .scroll-content.no-scroll:after {
  display: none; /* Esconde o :after quando não há rolagem */
}/*# sourceMappingURL=main.css.map */