/********** Template CSS **********/

@import url(font-awesome.min.css);

@font-face {
  font-family: comic;
  src: url(../fonts/comic.ttf);
}

.my-font {
  font-family: 'comic', sans-serif !important;
  font-weight: 100;
}


:root {
  --primary: #cbb4a6;
  --secondary: #d9ccbb;
  --light: #E8F5E9;
  --dark: #cbb4a6;
}

.text-secondary {
  color: #d9ccbb !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}




/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  transition: .5s;
  font-weight: 500;
}

.btn-primary {
  color: #000;
  background-color: #764a3f;
  border-color: #764a3f;
}

.btn-primary:hover {
  color: #000;
  background-color: #764a3f;
  border-color: #764a3f;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
  color: #000;
  background-color: #764a3f;
  border-color: #764a3f;
  box-shadow: 0 0 0 .25rem rgba(44, 121, 48, 0.5)
}

.btn-check:checked+.btn-primary, .btn-check:active+.btn-primary, .btn-primary:active, .btn-primary.active, .show>.btn-primary.dropdown-toggle {
  color: #000;
  background-color: #5da560;
  border-color: #cbb4a6f5
}

.btn-check:checked+.btn-primary:focus, .btn-check:active+.btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .25rem rgba(44, 121, 48, 0.5)
}

.btn-primary:disabled, .btn-primary.disabled {
  color: #000;
  background-color: #764a3f;
  border-color: #764a3f
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.top-menu {
  background-color: #cbb4a6;
}

.top-menu a {
  color: #fff;

}


/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 80px
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #EEEEEE;
    margin-top: 25px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(118, 74, 63, .3);;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

#header-carousel .carousel-item img {
  max-height: 900px;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: linear-gradient(rgba(118, 74, 63, .3), rgba(118, 74, 63, .3)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
  .top-feature {
    position: relative;
    margin-top: -80px;
    z-index: 1;
  }
}


/*** Facts & Quote ***/
.facts,
.quote {
  background: rgba(118, 74, 63, .3);
}


/*** Service ***/
.service-item {
  position: relative;
  text-align: center;
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.2);
  transition: .3s;
  z-index: -1;
}

.service-item:hover .service-img img {
  transform: scale(1);
}

.service-item .service-text {
  background: #FFFFFF;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .3s;
}

.service-item:hover .service-text {
  background: rgba(118, 74, 63, .3);
}

.service-item .service-text h4,
.service-item .service-text p {
  transition: .3;
}

.service-item:hover .service-text h4 {
  color: #FFFFFF;
}

.test  {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;  /* Number of lines displayed before it truncate */
   overflow: hidden;
}


.service-item:hover .service-text p {
  color: var(--light);
}

.service-item .service-text .btn-square {
  width: 100px;
  height: 100px;
  background: transparent;
  transition: .5s;
}

.service-item:hover .service-text .btn-square {
  background: var(--light);
}

.service-item .service-text .btn {
  width: 29px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: var(--light);
  white-space: nowrap;
  overflow: hidden;
  transition: .3s;
}


/*** Service ***/
.service-item-modal {
  position: relative;
  text-align: center;
}

.service-item-modal .service-img-modal {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.service-item-modal .service-img-modal img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.3);
  transition: .3s;
  z-index: -1;
} 

.service-item-modal .btn-close {
  color: #fff;
}


element.style {
}
.modal-content {
 
    z-index: -1;
}
/* 
.service-item-modal .service-img-modal img {
  background-image: url("img/service-2.jpg");
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
} */

.service-item-modal .service-text {
  background: rgba(118, 74, 63, .3);
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .3s;
}

 .service-text h4{ 
text-transform: capitalize;
}

.service-item-modal .service-text h4,
.service-item-modal .service-text p {
  transition: .3;
}

.service-item-modal .service-text h4,
.service-item-modal .service-text p {
  transition: .3;
}

.service-item-modal .service-text h4 {
  color: #FFFFFF;
}

.service-item-modal .service-text p {
  color: var(--light);
}

.card-body h4, h5{
  color: #d9ccbb;
}

.hero{
  background-image: linear-gradient(rgba(118, 74, 63, .6), rgba(118, 74, 63, .6)), url("../img/carousel-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}


.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)) , url("img/service-2.jpg");
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000 !important;
  width: 100%;
  padding: 5px;
}

.over{
  background: rgba(118, 74, 63, .3) !important;
}



.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #555;
  color: white;
}

.service-item:hover .service-text .btn {
  width: 112px;
}

.card-img {
  display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(118, 74, 63, .3);

}


/*** Project Portfolio ***/
#portfolio-flters {
  display: inline-block;
  background: var(--light);
  padding: 10px 15px;
}

#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: .5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--dark);
  border-color: var(--dark);
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(118, 74, 63, .3);
  transition: .5s;
}

.portfolio-inner::after {
  left: auto;
  right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
  width: 50%;
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .5s;
  z-index: 3;
  opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
  transition-delay: .3s;
  opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
  background: var(--light);
  color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
  background: var(--primary);
  color: var(--light);
}


/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
}

.team-item .team-text {
  position: absolute;
  width: calc(100% - 45px);
  left: -100%;
  bottom: 6px;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: .5s;
}

.team-item:hover .team-text {
  left: 0;
  opacity: 1;
}

.team-item .team-social .btn {
  background: var(--light);
  color: var(--primary);
}

.team-item .team-social .btn:hover {
  background: var(--primary);
  color: var(--light);
}

.team-item .team-img .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
  z-index: 3;
  opacity: 0;
}

.team-item:hover .team-img .team-social {
  transition-delay: .3s;
  opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
 
}

.size100{
  width: 100px !important;
  height: 100px !important;

}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  float: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--light);
  border-radius: 4px;
  font-size: 22px;
  transition: .5s;
  
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: var(--light);
  
}


/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  font-weight: normal;
  text-transform: none;
  transition: .3s;
}

/* .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
} */

.footer .btn.btn-link:hover {
  color: #764a3f;
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: var(--light);
  background: #764a3f;
}

.copyright a {
  color: #FFFFFF;
}

.copyright a:hover {
  color: var(--primary);
}

.photo-service {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

CSS
/* WHATSAPP */

.chatpopup-widget-close,
.chatpopup-widget__body-header,
.chatpopup-widget__trigger,
.chatpopup-welcome-msg {
  background-color: #a7d676;
  color: #ffffff;
}

.chatpopup-widget {
  right: 12px;
  align-items: flex-end;
}

.chatpopup-widget-close {
  background-color: #a7d676;
  right: 0;
}

.chatpopup_jwi {
  right: 12px;
}

.chatpopup-welcome-msg {
  border: 1px solid #ccc;
  color: #999;
  background: #fff;
  line-height: 1em;
  padding: 8px 15px 5px 10px;
  position: relative;
}

.chatpopup-welcome-msg:before {
  content: "\1F4AC";
  display: inline;
  top: 0;
  position: relative;
  font-size: 1.1em;
  margin-right: 5px;
}

.chatpopup-welcome-msg:after {
  content: "|";
  position: absolute;
  left: 32px;
  top: 6px;
  animation: cursor 2.5s infinite;
}

@keyframes cursor {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0;
  }
}

@keyframes blink {

  from,
  to {
    color: transparent
  }

  50% {
    color: black
  }
}

@-moz-keyframes blink {

  from,
  to {
    color: transparent
  }

  50% {
    color: black
  }
}

@-webkit-keyframes blink {

  from,
  to {
    color: transparent
  }

  50% {
    color: black
  }
}

@-ms-keyframes blink {

  from,
  to {
    color: transparent
  }

  50% {
    color: black
  }
}

@-o-keyframes blink {

  from,
  to {
    color: transparent
  }

  50% {
    color: black
  }
}

.chatpopup-widget * {
  box-sizing: border-box
}

.chatpopup-widget {
  position: fixed;
  bottom: 12px;
  z-index: 999;
  display: flex;
  flex-direction: column
}

.chatpopup-widget__body {
  margin-bottom: 10px;
  min-width: 300px;
  max-width: 340px;
  display: none;
  margin-left: 12px
}

.chatpopup-widget__body-header {
  padding: 15px;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  border-radius: 4px 4px 0 0;
  position: relative
}

.chatpopup-widget-close {
  position: absolute;
  top: -40px;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none
}

.chatpopup-support-persons {
  background-color: #F0F0F0 !important;
  padding: 15px;
  box-shadow: 0 50px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  max-height: 370px;
  overflow-y: auto;
  min-height: 20px
}

.chatpopup-support-person {
  display: flex;
  margin-bottom: 15px;
  cursor: pointer
}

.chatpopup-support-person__img {
  width: 70px;
  height: 70px;
  margin-right: 15px;
  position: relative
}

.chatpopup-support-person__img img {
  width: 100%;
  border-radius: 100%;
}

.chatpopup-support-person__status {
  background-color: red;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0
}

.chatpopup-support-person__status--avail {
  background-color: #00c853
}

.chatpopup-support-person__status--not-avail {
  background-color: #ffd600
}

.chatpopup-support-person__meta {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.chatpopup-support-person__name,
.chatpopup-support-person__title {
  line-height: 20px
}

.chatpopup-support-person__name {
  font-size: 16px;
  font-weight: 700;
  color: #706F6F
}

.chatpopup-support-person__title {
  color: #706F6F
}

.chatpopup-welcome-msg {
  padding: 5px 15px;
  border-radius: 0 0 4px 4px
}

.chatpopup-custom-offer {
  margin: 10px 0
}

.chatpopup-custom-offer img {
  width: 100%
}

.chatpopup-widget__trigger {
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  display: inline-block;
  user-select: none;
  display: flex;
  align-items: center
}

.chatpopup-gdpr {
  font-size: 14px;
  border: 1px solid transparent;
  padding-left: 15px;
  background-color: #fff
}

.chatpopup-gdpr.error {
  border: 1px solid red
}

a.chatpopup-whatsapp-button {
  padding: 6px 20px !important;
  text-align: center !important;
  text-decoration: none !important;
  margin-right: 5px !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  font-size: 15px !important;
  outline: none !important;
  display: inline-block !important
}

.chatpopup-blinking-cursor {
  font-weight: 100;
  font-size: 15px;
  color: #2E3D48;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite
}

.chatpopup-input-wrapper {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background: #F0F0F0 !important;
  box-shadow: 0 50px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
}

.chatpopup-input-wrapper input {
  width: 100%;
  padding: 9px 12px 11px;
  margin: 5px 0px;
  background-color: #fff;
  border: 1px solid var(--compose-input-border);
  border-radius: 15px;
  box-sizing: border-box;
  flex: 1 1 auto;
  width: inherit;
  min-width: 0;
  min-height: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  outline: none;
  will-change: width;
  /* flex: 1;
    height: 40px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important */
}

.chatpopup-input-wrapper textarea {
  width: 100%;
  padding: 9px 12px 11px;
  margin: 5px 0px;
  background-color: #fff;
  border: 1px solid var(--compose-input-border);
  border-radius: 15px;
  box-sizing: border-box;
  flex: 1 1 auto;
  width: inherit;
  min-width: 0;
  min-height: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  outline: none;
  will-change: width;
}

.chatpopup-input-icon {
  display: block;
  margin: 0 0 10px 80%;
  width: 50px !important;
  cursor: pointer;
}

.chatpopup-input-icon img {
  width: 40px !important;

}


.chatpopup_jwi {
  display: inline-block;
  position: fixed;
  bottom: 12px;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, .1));
  outline: none;
  z-index: 99999
}

.chatpopup-icon-close svg {
  width: 14px
}

.chatpopup-icon-whatsapp {
  line-height: 0 !important;
  margin-right: 5px
}

.chatpopup-icon-whatsapp svg {
  width: 16px
}

.product_img {
  max-width: 100%;
}

.product_view .modal-dialog {
  max-width: 600px;
  width: 100%;
}

.pre-cost {
  text-decoration: line-through;
  color: #a5a5a5;
}

.space-ten {
  padding: 10px 0;
}

#terapias, #pacotes {
  scroll-margin-top: 50px;
}

.nav-logo { 
  max-width: 350px;
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .hide-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
.mb-cel{
  margin-bottom: 2.5rem !important;
}
.nav-logo { 
  max-width: 250px
}
.hide-cel {
  display: none;
}
.img1 {
  order:-1 !important
}
.team-item .team-text {
  left: 0;
  opacity: .9;
}
.team-item:hover .team-text {
  left: 0;
  opacity: 0;
}
}

.elemento-pai {
  display: flex;
  flex-direction: column;
}

.text-light {
  color: #764a3f !important;
}

 h4, .h4{
  color: #764a3f;
}

body {
  
  color: #474344;
  
}

.btn-outline-light {
  color: #764a3f;
  border-color: #764a3f;
}







