* {
  font-family: brandon-grotesque, sans-serif !important;
  font-size: 24px;
}

body {
  overflow-x: hidden;
  width: 100%;
}

a {
  color: #896565;
}
a:hover {
  text-decoration: none;
}

p {
  line-height: 1.4em;
  font-size: 22px;
}
p.content {
  font-size: 22px;
  line-height: 2em;
}

#float-whats {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9995;
  animation: float 4s ease-in-out infinite;
}
#float-whats img {
  width: 75%;
}

strong {
  font-weight: bold;
}

.btn {
  transition: all 0.3s ease-out;
}
.btn:hover {
  transform: scale(1.1);
}
.btn:active {
  transform: scale(1);
}

h2.title {
  font-size: 48px;
  margin-bottom: 15px;
  color: #896565;
  line-height: 1.2em;
}

p.subtitle {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.text-btn {
  margin-top: 30px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  background-color: transparent;
  border: #896565 solid;
  border-width: 0 0 3px 0;
  padding: 0 0 8px 0;
  color: #896565;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease-out;
}
.text-btn:active, .text-btn:focus {
  outline: none;
}
.text-btn:hover {
  transform: scale(1.1);
}
.text-btn:active {
  transform: scale(1);
}

header {
  position: relative;
  z-index: 999;
  background-color: #f0e8e6;
}
header ul.nav-drop {
  display: none;
  position: absolute;
  background: #f0e8e6;
  padding: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-top: 2px solid #b2908e;
  margin-top: 23px;
}
header ul.nav-drop li.nav-drop-item {
  padding-top: 10px;
  padding-bottom: 10px;
}
header .nav-main-item:hover ul.nav-drop {
  display: block;
}

#top-header {
  border-bottom: 1px solid #b2908e;
  height: 45px;
  background-color: #f0e8e6;
}
#top-header .text h2 {
  color: #b2908e;
}
#top-header .top-icons {
  width: 28px;
  transition: transform 0.3s ease-out;
}
#top-header .top-icons:hover {
  transform: scale(1.2);
}
#top-header .top-icons:active {
  transform: scale(1);
}

#header {
  padding: 0 24px;
}
#header nav ul.nav-main .nav-main-item {
  transition: all 0.3s ease-out;
  padding: 24px 0;
}
#header nav ul.nav-main .nav-main-item a:hover {
  color: #896565 !important;
}
#header nav ul.nav-main a {
  color: #3d3d3d;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
}

.smenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  background-color: #f0e8e6;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.smenu .agendesmenu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}
.smenu .agendesmenu a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.smenu .agendesmenu a:hover {
  color: #896565;
}
.smenu .agendesmenu a img {
  width: 35px;
  margin-right: 5px;
}

.bmenu {
  background: linear-gradient(90deg, #b28f8e 0%, #896565 100%);
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  max-width: 53px;
  max-height: 45px;
}
.bmenu .one {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease-out;
  transform-origin: top left;
}
.bmenu .two {
  width: 25px;
  height: 3px;
  background-color: white;
  margin-top: 4px;
  margin-bottom: 4px;
  transition: all 0.3s ease-out;
}
.bmenu .three {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease-out;
  transform-origin: bottom left;
}
.bmenu.opened .one {
  transform: rotate(45deg);
  margin-left: 4px;
}
.bmenu.opened .two {
  opacity: 0;
  margin-top: 5px;
  margin-bottom: 5px;
}
.bmenu.opened .three {
  transform: rotate(-45deg);
  margin-left: 4px;
}

.menu-bmenu {
  position: fixed;
  top: 45px;
  right: -450px;
  width: 450px;
  background-color: #f7f7f7;
  z-index: 9999;
  height: calc(100% - 45px);
  transition: 0.3s all ease-out;
  padding: 25px;
}
.menu-bmenu.opened {
  right: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.menu-bmenu ul {
  flex-direction: column;
  padding-top: 10px;
}
.menu-bmenu ul li {
  padding-top: 13px;
  padding-bottom: 13px;
  border-bottom: 2px solid #f7f7f7;
}
.menu-bmenu ul li:hover {
  border-bottom: 2px solid #f0e8e6;
}
.menu-bmenu ul li a.nav-main-link {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  color: #3d3d3d;
}
.menu-bmenu .bmenu-logo {
  width: 100%;
}
.menu-bmenu .top-icons {
  width: 40px;
}
.menu-bmenu .top {
  border-bottom: 2px solid #f0e8e6;
}

#page-home .banner {
  height: 90vh;
  background-color: #f0e8e6;
  margin-top: -109.64px;
  padding-top: 120px;
}
#page-home .banner .cta {
  height: calc(90vh - 120px);
}
#page-home .banner .cta .logo {
  width: 130%;
  margin-left: -15%;
}
#page-home .banner .cta button {
  border: none;
  border-radius: 0;
  border-top-right-radius: 20px;
  box-shadow: none;
  background: linear-gradient(90deg, #b28f8e 0%, #896565 100%);
  color: #f0e8e6;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 18px;
}
#page-home .banner .cta button img {
  width: 35px;
  margin-right: 10px;
}
#page-home .banner .img {
  height: calc(90vh - 120px);
  background-image: url("../../../uploads/2021/06/simbolo-marcadagua.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
}
#page-home .banner .img img {
  width: 80%;
}
#page-home .mini-banners img {
  width: 100%;
  transition: all 0.3s ease-out;
}
#page-home .mini-banners img:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
#page-home .trat-prod {
  background-color: #f0e8e6;
}
#page-home .trat-prod #tratamentos img {
  width: 55%;
}
#page-home .trat-prod #tratamentos .content {
  width: 55%;
  margin-left: -10%;
}
#page-home .trat-prod #tratamentos .content .box {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 80%;
  padding: 5vw;
}
#page-home .trat-prod #tratamentos .content .box h2 {
  color: #ffffff;
  font-size: 65px;
  font-weight: 300;
}
#page-home .trat-prod #tratamentos .content .box p {
  color: #ffffff;
  font-size: 28px;
}
#page-home .trat-prod #procedimentos img {
  width: 55%;
}
#page-home .trat-prod #procedimentos .content {
  width: 55%;
  margin-right: -10%;
  z-index: 9;
}
#page-home .trat-prod #procedimentos .content .box {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 80%;
  padding: 5vw;
}
#page-home .trat-prod #procedimentos .content .box h2 {
  color: #ffffff;
  font-size: 65px;
  font-weight: 300;
  text-align: right;
}
#page-home .trat-prod #procedimentos .content .box p {
  color: #ffffff;
  font-size: 28px;
  text-align: right;
}
#page-home .trat-prod button {
  width: fit-content;
  border: none;
  border-radius: 0;
  border-top-right-radius: 20px;
  box-shadow: none;
  background: #f0e8e6;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 12px;
  padding: 18px 31px !important;
  font-weight: bold;
  color: #202020;
}
#page-home .cases h2 {
  font-size: 45px;
}
#page-home .cases .cases-carousel .item {
  width: 80%;
}
#page-home .cases .cases-carousel .item .img-cases {
  height: 530px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
#page-home .cases .cases-carousel .item .meta {
  padding: 15px;
  background-color: #f0e8e6;
  min-height: 90px;
}
#page-home .agende {
  background-color: #3d3d3d;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page-home .agende button {
  background-color: transparent;
  border: 2px solid #b2908e;
  border-radius: 0 25px 0 0;
  padding: 30px 45px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
}
#page-home .agende button .btn-whats {
  margin-left: 10px;
  width: 35px;
  filter: brightness(0) invert(1);
}
#page-home .agenda .text {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  border-right: 3px solid #f7f7f7;
}
#page-home .agenda .text .box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
#page-home .agenda .text .box h2 {
  font-size: 55px;
  color: #896565;
  text-align: right;
  width: fit-content;
}
#page-home .agenda .text .box p {
  text-align: right;
  width: fit-content;
  margin-top: 15px;
  font-size: 24px;
}
#page-home .agenda .items p.title {
  color: #896565;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
#page-home .agenda .items .item h3 {
  font-size: 27px;
  font-weight: bold;
  color: #9d9d9d;
}
#page-home .agenda .items .item p.date {
  color: #9d9d9d;
  font-size: 20px;
}
#page-home .agenda .items .item p.date strong {
  font-size: 26px;
}
#page-home .agenda .items .item button {
  background: transparent;
  border: 1px solid #3d3d3d;
  border-radius: 10px;
  padding: 12px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
}
#page-home .agenda .items .divider img {
  width: 100%;
}
#page-home .insta {
  background-color: #896565;
}
#page-home .insta #sb_instagram {
  opacity: 0.3;
}
#page-home .insta .follow {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  cursor: pointer;
}
#page-home .insta .follow p {
  color: #ffffff;
  font-size: 45px;
  font-weight: 300;
  letter-spacing: 1px;
}
#page-home .insta .follow .insta-logo {
  width: 80px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

.bgimgl {
  background-image: url("../../../uploads/2021/06/simbolo-marcadagua.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 500px;
}

.bgimgr {
  background-image: url("../../../uploads/2021/06/simbolo-marcadagua.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 400px;
}

.invista {
  min-height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.invista h2 {
  font-size: 70px;
  color: #ffffff;
  font-weight: 300;
}
.invista p {
  color: #ffffff;
  font-size: 28px;
}
.invista button {
  background-color: #f0e8e6;
  border: none;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  box-shadow: 7px 7px 0px #896565;
  cursor: pointer;
}
.invista button .btn-whats {
  margin-left: 10px;
  margin-top: -5px;
  width: 30px;
  filter: brightness(0%);
}

footer {
  background-color: #3d3d3d;
}
footer .social-footer img {
  width: 30px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease-out;
}
footer .social-footer img:hover {
  transform: scale(1.2);
}
footer .social-footer img:active {
  transform: scale(1);
}
footer .logo img {
  width: 300px;
}
footer .credits p {
  color: #ffffff;
}
footer .credits p a {
  color: #ffffff;
  font-weight: bold;
}

.page-title h2 {
  font-size: 65px;
  font-weight: 300;
  text-align: center;
  margin-top: -40px;
  margin-bottom: 50px;
  color: #3d3d3d;
}
.page-title .title-divider {
  width: 40px;
  height: 4px;
  background-color: #896565;
  margin: 0 auto 50px;
}
.page-title .header-extension {
  width: 100%;
  background-color: #f0e8e6;
  height: 100px;
}

.quote {
  text-align: center;
  padding: 0 150px;
}

.wp-block-eedee-block-gutenslider img {
  margin: 0 auto;
  width: auto !important;
}

#page-lia-caldas .content {
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#page-lia-caldas .content p {
  line-height: 1.8em;
}
#page-lia-caldas .content p.strong {
  font-weight: bold;
  color: #896565;
}
#page-lia-caldas .left .img-container:before {
  content: "";
  width: 1000px;
  height: 120%;
  position: absolute;
  background-color: #f7f7f7;
  top: -10%;
  right: 55%;
  z-index: -1;
}
#page-lia-caldas .left .img-container img {
  width: 100%;
}
#page-lia-caldas .right .img-container:before {
  content: "";
  width: 1000px;
  height: 120%;
  position: absolute;
  background-color: #f7f7f7;
  top: -10%;
  left: 55%;
  z-index: -1;
}
#page-lia-caldas .right .img-container img {
  width: 100%;
}

#page-contato {
  margin-bottom: 100px;
}
#page-contato .boxes {
  padding: 0 100px;
}
#page-contato .boxes a {
  text-align: center;
  font-size: 20px;
}
#page-contato .boxes a:hover {
  color: #3d3d3d;
}
#page-contato .boxes a .box-v {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  transition: all 0.3s ease-out;
}
#page-contato .boxes a .box-v:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
#page-contato .boxes a .box-v img {
  width: 80px;
  margin-bottom: 10px;
}
#page-contato .boxes .box-h {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
#page-contato .boxes .box-h .icontext {
  display: flex;
}
#page-contato .boxes .box-h .icontext p {
  font-size: 20px;
  margin-top: 12px;
}
#page-contato .boxes .box-h .icontext img {
  width: 80px;
  margin-right: 10px;
}
#page-contato .boxes .box-h .buttons {
  position: absolute;
  bottom: -20px;
}
#page-contato .boxes .box-h .buttons button {
  background-color: #b2908e;
  border: none !important;
  border-radius: 0 15px 0 0;
  width: 280px;
  padding: 15px 0;
  color: #ffffff;
  cursor: pointer;
}

.page-tratprod .items {
  margin-top: 100px;
}
.page-tratprod .items:before {
  content: "";
  width: 15%;
  height: 550%;
  position: absolute;
  background-color: #f7f7f7;
  margin-top: -50px;
  left: 0;
  z-index: -1;
}
.page-tratprod .items img {
  width: 100%;
}
.page-tratprod .items h2 {
  font-size: 35px;
  padding-left: 20px;
  border-left: 3px solid #b2908e;
  color: #896565;
  margin-bottom: 35px;
}
.page-tratprod .items button {
  background: linear-gradient(90deg, #b28f8e 0%, #896565 100%);
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 0 20px 0 0;
  margin-top: 40px;
  cursor: pointer;
}
.page-tratprod .items .divider {
  width: 60%;
  height: 3px;
  background-color: #f7f7f7;
  margin-right: 50px;
}
.page-tratprod .items .quote p {
  font-size: 24px !important;
}
.page-tratprod .extras {
  background-color: #f7f7f7;
  padding: 50px 80px;
}
.page-tratprod .extras h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
}
.page-tratprod .extras p {
  color: #896565;
  font-size: 20px;
  margin-top: 10px;
}
.page-tratprod .extras img {
  width: 100%;
}

button {
  transition: all 0.3s ease-out !important;
}
button:hover {
  transform: scale(1.1) !important;
}
button:active {
  transform: scale(1) !important;
}

.single-tratprod h2 {
  font-size: 35px;
  margin-bottom: 30px;
  margin-top: 30px;
  font-weight: 300;
}
.single-tratprod h2 strong {
  font-weight: 300 !important;
}
.single-tratprod .cover-image {
  width: 100%;
}
.single-tratprod h1.title {
  font-size: 48px;
  margin-bottom: 15px;
  color: #896565;
  line-height: 1.2em;
}
.single-tratprod .title-divider {
  width: 40px;
  height: 4px;
  background-color: #896565;
}
.single-tratprod p {
  font-weight: 300;
  line-height: 1.7em;
  margin-bottom: 15px;
}
.single-tratprod p strong {
  font-weight: 500;
}

strong.schema-faq-question strong {
  font-size: 26px;
  font-weight: 400 !important;
  color: #896565;
}

p.schema-faq-answer {
  margin-top: 15px;
  font-size: 22px;
  line-height: 1.2em;
  color: #3d3d3d;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0e8e6;
}

.slick-dots button:before {
  color: #b2908e !important;
  font-size: 40px !important;
}

/* responsivo */
@media only screen and (max-width: 768px) {
  #header, #top-header {
    display: none;
  }

  .slick-list {
    width: 100%;
  }

  .img-cases {
    height: 400px;
  }

  #page-home .banner .cta {
    height: 25vh;
    align-items: center !important;
    padding-top: 140px;
    z-index: 99;
  }

  #page-home .banner .cta .logo {
    width: 100%;
    margin: 0 auto;
  }

  #page-home .banner .img {
    height: 45vh;
    justify-content: center !important;
    align-items: flex-end !important;
  }

  #page-home .banner {
    height: 70vh;
    background-color: #f0e8e6;
    margin-top: 0;
    padding: 0;
  }

  #tratamentos {
    flex-direction: column;
  }

  #page-home .trat-prod #tratamentos img {
    width: 100%;
    margin-left: 0;
  }

  #page-home .trat-prod #tratamentos .content {
    width: 90%;
    margin-left: 5%;
    margin-top: -25px;
  }

  #page-home .trat-prod #tratamentos .content .box {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 80%;
    padding: 5vw;
  }

  #page-home .trat-prod #tratamentos .content .box h2 {
    color: #ffffff;
    font-size: 35px;
  }

  #page-home .trat-prod #tratamentos .content .box p {
    color: #ffffff;
    font-size: 18px;
  }

  #procedimentos {
    flex-direction: column-reverse;
  }

  #page-home .trat-prod #procedimentos img {
    width: 100%;
    margin-left: 0;
  }

  #page-home .trat-prod #procedimentos .content {
    width: 90%;
    margin-left: 5%;
    margin-top: -25px;
  }

  #page-home .trat-prod #procedimentos .content .box {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 80%;
    padding: 5vw;
    align-items: flex-start !important;
  }

  #page-home .trat-prod #procedimentos .content .box h2 {
    color: #ffffff;
    font-size: 35px;
    text-align: left !important;
  }

  #page-home .trat-prod #procedimentos .content .box p {
    color: #ffffff;
    font-size: 18px;
    text-align: left;
  }

  h2.title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 35px;
  }

  p.subtitle {
    text-align: center;
  }

  .invista h2 {
    font-size: 55px;
    text-align: center;
  }

  .invista button {
    line-height: 1.5em;
    color: black !important;
  }

  .agenda button {
    color: black !important;
  }

  .invista p {
    font-size: 22px;
    text-align: center;
  }

  .lia .px-5 {
    padding: 15px !important;
  }

  .menu-bmenu .col-6 {
    padding: 0 !important;
  }

  .menu-bmenu .bmenu-logo {
    margin-top: -7px;
  }

  #page-home .cases h2 {
    font-size: 35px;
    margin-bottom: 25px;
  }

  .cases-carousel {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #page-home .agende button {
    font-size: 20px;
    line-height: 1.5em;
    padding: 20px;
  }

  #page-home .agende {
    padding: 0 25px;
  }

  #page-home .agenda .text .box h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px !important;
  }

  #page-home .agenda .text .box p {
    text-align: center;
  }

  .hide-mobile {
    display: none;
  }

  .agenda {
    text-align: center;
  }

  .page-title h2 {
    font-size: 40px;
    font-weight: 400;
    margin-top: -20px;
    margin-bottom: 30px;
  }

  .quote {
    text-align: center;
    padding: 0 20px;
  }

  .page-tratprod .items h2 {
    margin-top: 30px;
  }

  .page-tratprod .items .divider {
    margin-right: 20%;
  }

  .page-tratprod .extras p {
    text-align: center;
    margin-bottom: 30px;
  }

  .page-tratprod .extras {
    background-color: #f7f7f7;
    padding: 50px 30px;
  }

  #page-lia-caldas .img-container {
    margin-bottom: 25px;
  }

  #page-lia-caldas .right .row {
    flex-direction: column-reverse;
  }

  #page-contato .boxes {
    padding: 0 20px;
  }

  #page-contato .boxes .box-v a {
    font-size: 18px;
  }

  #page-contato .boxes .box-h .icontext {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #page-contato .boxes .box-h .buttons {
    position: relative;
  }

  #page-contato .boxes .box-h .buttons .button {
    margin-bottom: 15px;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #float-whats {
    right: -40px;
  }

  .menu-bmenu {
    position: fixed;
    top: 45px;
    right: -100%;
    width: 100%;
  }

  .menu-bmenu .top-icons {
    width: 30px;
  }

  #content {
    overflow: hidden;
  }

  p.content {
    font-size: 22px;
    line-height: 1.4em;
  }

  .cases p {
    text-align: center;
  }
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}

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