/* CSS Document */

@font-face {
  font-family: Barlow;
  font-display: swap;
  font-weight: 500;
  src: url("../fonts/Barlow-Medium.ttf") format("truetype");
}

@font-face {
  font-family: Barlow;
  font-display: swap;
  font-weight: 700;
  src: url("../fonts/Barlow-Bold.ttf") format("truetype");
}



body {
	font-family: Barlow;
	font-size: 16px;
    font-weight: 500;
	color: #fff;
}

a {
	transition: all 0.3s ease-out;
	text-decoration: none;
}
a:hover {
	color: inherit;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.block {
	display: block;
}

.fade-in-element {
    opacity: 0;
    transform: translateY(20px); /* Inicialmente, mova os elementos para baixo */
    transition: opacity 0.5s, transform 0.5s;
}

.img-fluida img {
    width: 100%;
    height: auto;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; 
}
 /* the slides */
  .slick-slide {
      margin: 0 15px;
  }

  /* the parent */
  .slick-list {
      margin: 0 -15px;
  }


/*************** SITE *************/

.topo {
    background: #F7F3F2;
    padding: 32px 0px;
}

.destaque {
    padding: 50px 0px;
}

.destaque h1 {
    color: #5CAFA9;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 79.2px */
    letter-spacing: -1.44px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.destaque p {
    color: #667085;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 28.8px */
}

.cada-especialidade {
    border-radius: 8px;
    background: #3B545F;
    width: 100%;
    padding: 15px 0px;
    text-align: center;
}

.cada-especialidade img {
    display: inline-block;
}

.cada-especialidade h2 {
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 28.8px */
    margin-top: 15px;
}

.localizacao {
    padding: 50px 0px;
}

.localizacao p {
    color: #667085;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 28.8px */
}

.localizacao iframe {
    border-radius: 8px;
}

.btn-laranja {
    border-radius: 30px;
    background: #DB5913;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 28.8px */
    margin-top: 20px;
    display: inline-block;
    padding: 14px 35px;
}

.whatsapp-action {
    right: 10px;
    bottom: 15px;
    text-align: center;
    z-index: 9;
    transition: all 0.5s;
    display: inline-block;
    position: fixed;
    z-index: 102
}

.whatsapp-action span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.whatsapp-action svg {
    height: 80px;
    width: 80px
}

.whatsapp-action:hover svg rect {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    fill: var(--hover)
}

/*Mobile*/
@media only screen and (max-width: 780px) {
    .localizacao iframe {
        width: 100%;
        height: auto;
    }
    .destaque h1 {
        font-size: 48px;
    }
     /* the slides */
      .slick-slide {
          margin: auto;
      }

      /* the parent */
      .slick-list {
          margin: auto;
      }
    .btn-laranja {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

}