body {
  font-family: "Montserrat Medium";
  background-color: #FFFFFF;
}
body.overflow-hidden::before {
  content: "";
  position: fixed;
  z-index: 1020;
  top: 100px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(10,10,10,0.5);
  transition: opacity 0.25s ease-in;
}
@media(min-width: 768px) {
  body.overflow-hidden::before {
    top: 136px;
  }
}

/* Text Justify */
.content-justify,
.content-justify > * {
  text-align: justify;
}

/* Container */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media(min-width: 1200px) and (max-width: 1399px) {
  .container { width: 100%; max-width: 98%; }
}
@media(min-width: 1400px) {
  .container { max-width: calc(1350px + 2rem); }
}

/* Botão Padrão */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.btn:focus {
  box-shadow: none;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  bottom: 0;
  width: 25%;
  background-color: rgba(255,255,255,0.3);
  transform: skewX(-30deg);
  transition: left 0.5s ease-in-out;
}
.btn.btn-white::after {
  background-color: rgba(0,163,168,0.3);
}
.btn:hover::after {
  left: 125%;
}

/* Botão com Icone do Whatsapp */
.btn.btn-whatsapp::before {
  content: "\f232";
  font: var(--fa-font-brands);
  font-size: 1.75rem;
  position: absolute;
  left: 1.25rem;
  color: #ffffff;
}
@media(min-width: 576px) {
  .btn.btn-whatsapp::before {
    font-size: 1.875rem;
    left: 2rem;
  }
}

/* Botão Gradiente */
.btn-gradient {
  font-family: "Montserrat Bold";
  font-size: 1.125rem;
  border-radius: 2.5rem;
  border: none;
  color: #ffffff;
  height: 69px;
  max-width: 392px;
  background: -webkit-linear-gradient(90deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
  background: -moz-linear-gradient(90deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
  background: -ms-linear-gradient(90deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
  background: linear-gradient(90deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
}
.btn-gradient:hover,
.btn-gradient:focus {
  color: #ffffff;
}
@media(min-width: 576px) {
  .btn-gradient {
    font-size: 1.25rem;
  }
}

/* Botão Branco */
.btn-white {
  font-family: "Montserrat Bold";
  font-size: 1rem;
  color: #00a3b7;
  background-color: #ffffff;
  border-radius: 2.5rem;
  border: none;
  height: 69px;
  max-width: 392px;
}
.btn-white:hover,
.btn-white:focus {
  color: #00a3b7;
}
.btn-white.btn-whatsapp::before {
  font-size: 1.5rem;
  left: 1rem;
  color: #00a3b7;
}
@media(min-width: 400px) {
  .btn-white {
    font-size: 1.125rem;
  }
  .btn-white.btn-whatsapp::before {
    font-size: 1.75rem;
    left: 1.25rem;
  }
}
@media(min-width: 576px) {
  .btn-white {
    font-size: 1.25rem;
  }
  .btn-white.btn-whatsapp::before {
    font-size: 1.875rem;
    left: 2rem;
  }
}

/* Section Title */
.section-title > * {
  font-family: "Montserrat Bold";
  line-height: 1;
}
.section-title h1 {
  font-size: 2.75rem;
  color: #00a3b7;
  margin-bottom: 0.25rem;
}
.section-title h5 {
  font-size: 1.125rem;
  color: #676767;
  margin-bottom: 0.25rem;
}
.section-title span {
  font-size: 0.875rem;
  color: #00a3b7;
}
@media(min-width: 768px) {
  .section-title h1 {
    font-size: 3rem;
  }
  .section-title h5 {
    font-size: 1.375rem;
  }
  .section-title span {
    font-size: 1.125rem;
  }
}

/* Navbar Menu Hamburger */
.navbar .navbar-toggler {
  position: relative;
  cursor: pointer;
  height: 21px;
  width: 28px;
  padding: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  z-index: 1030;
}
.navbar .navbar-toggler span {
  display: block;
  position: absolute;
  width: 28px;
  height: 3px;
  border-radius: 5px;
  background-color: #616060;
  -webkit-transition: -webkit-transform 0.3s;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.navbar .navbar-toggler span:nth-child(1) { top: 0px; }
.navbar .navbar-toggler span:nth-child(2) { top: 9px; }
.navbar .navbar-toggler span:nth-child(3) { top: 18px; }
.navbar .navbar-toggler.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 9px;
}
.navbar .navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 9px;
}

/* Navbar */
.navbar {
  height: 100px;
  background-color: #FFFFFF;
}
.navbar .navbar-brand {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  max-width: 210px;
  z-index: 1030;
}
.navbar .navbar-collapse .nav-item .nav-link {
  position: relative;
  display: inline-block;
  font-family: "Montserrat Bold";
  font-size: 1.25rem;
  line-height: 1;
  color: #616060;
  margin: 1rem 0;
  padding: 0;
}
.navbar .navbar-collapse .nav-item .nav-link:hover,
.navbar .navbar-collapse .nav-item .nav-link:focus,
.navbar .navbar-collapse .nav-item .nav-link.active {
  color: #00a3b7;
}
@media(min-width: 360px) {
  .navbar .navbar-brand {
    max-width: 230px;
  }
}
@media(min-width: 576px) {
  .navbar .navbar-brand {
    max-width: 322px;
  }
  .navbar .navbar-collapse {
    max-width: calc(540px - 2rem);
  }
}
@media(min-width: 768px) {
  .navbar {
    height: 136px;
  }
  .navbar .navbar-brand {
    max-width: 422px;
  }
  .navbar .navbar-collapse {
    max-width: calc(720px - 2rem);
  }
}
@media(min-width: 992px) {
  .navbar .navbar-collapse {
    max-width: calc(960px - 2rem);
  }
}
@media(min-width: 1200px) {
  .navbar .container {
    position: relative;
    height: 100%;
    padding-top: 0.625rem;
  }
  .navbar .navbar-brand {
    position: initial;
    transform: initial;
    width: auto;
    max-width: 100%;
  }
  .navbar .navbar-collapse {
    max-width: 100%;
    justify-content: flex-end;
  }
  .navbar .navbar-collapse .nav-item .nav-link {
    margin: 0 1.5rem;
  }
  .navbar .navbar-collapse .nav-item:nth-child(4) .nav-link {
    margin-right: 0;
  }
  .navbar .navbar-collapse .nav-item:last-child {
    position: absolute;
    top: 0;
    right: 1rem;
  }
}
@media(max-width: 991px) and (orientation: landscape) {
  .navbar .navbar-collapse {
    bottom: 0;
    overflow-y: auto;
  }
}
@media(max-width: 1199px) {
  .navbar .navbar-collapse {
    position: fixed;
    z-index: 1020;
    left: 1rem;
    right: 1rem;
    margin: 0 auto;
    padding: 2em 1.5rem;
    border-radius: 0.625rem;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
  }
  .navbar .navbar-collapse.collapsing {
    transition: height 0.25s ease-in;
  }
}

/* Sobre */
.about {
  padding-top: 1rem;
  padding-bottom: 5.5rem;
}
.about .btn {
  margin: 0 auto;
}
.about .wrap {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.about .wrap-image picture {
  display: block;
  position: relative;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
}
.about .wrap-image picture::before {
  content: "";
  position: absolute;
  top: 5.5rem;
  left: 3rem;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 1.25rem;
  background: -webkit-linear-gradient(0deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
  background: -moz-linear-gradient(0deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
  background: -ms-linear-gradient(0deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
  background: linear-gradient(0deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
}
.about .wrap-image picture img {
  border-radius: 1.25rem;
}
.about .wrap-description .info {
  display: flex;
  align-items: center;
  margin-bottom: 1.375rem;
  gap: 0.75rem;
}
.about .wrap-description .info img {
  width: 90px;
}
.about .wrap-description .content {
  font-family: "Montserrat Medium";
  color: #616060;
}
@media(min-width: 768px) {
  .about .wrap-description .info img {
    width: auto;
  }
}
@media(min-width: 768px) and (max-width: 991px) {
  .about .wrap-image {
    max-width: 590px;
    margin: 0 auto;
  }
}
@media(min-width: 992px) {
  .about .btn {
    margin: 0;
  }
  .about .wrap {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
  }
  .about .wrap-description .content {
    margin-bottom: 3rem;
  }
}
@media(min-width: 992px) and (max-width: 1399px) {
  .about .wrap-image {
    flex-basis: calc(50% - 3.5rem);
  }
  .about .wrap-description {
    flex-basis: calc(50%);
  }
}
@media(min-width: 1400px) {
  .about .wrap {
    gap: 4.25rem;
  }
  .about .wrap-image {
    width: 100%;
    max-width: 590px;
  }
  .about .wrap-description {
    max-width: calc(100% - 590px - 4.25rem);
  }
  .about .wrap-description .content {
    margin-bottom: 4rem;
  }
}

/* Serviços */
.services {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 9rem;
}
.services .wrap {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  gap: 3rem;
}
.services .wrap::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 1rem;
  right: 0;
  bottom: 9rem;
  z-index: -1;
  border-radius: 1.25rem 0 0 1.25rem;
  background-image: -moz-linear-gradient( 0deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
}
.services .wrap-description .section-title {
  margin-bottom: 2rem;
}
.services .wrap-image img {
  border-radius: 1.25rem;
}
.services .btn {
  margin: 0 auto;
}
@media(max-width: 399px) {
  .services .wrap-description .section-title  {
    max-width: 240px;
  }
}
@media(min-width: 576px) {
  .services .wrap {
    padding: 4rem;
  }
  .services .wrap::before {
    left: var(--left-var);
  }
}
@media(min-width: 768px) {
  .services .wrap-description .section-title {
    max-width: 380px;
  }
}
@media(min-width: 992px) {
  .services {
    padding-top: 4rem;
    margin-top: 3rem;
  }
  .services .wrap {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 4rem;
    padding: 3rem 0 3rem 3rem;
  }
  .services .wrap::before {
    top: 4rem;
  }
  .services .wrap-description {
    flex-basis: 50%;
  }
  .services .wrap-description .content {
    margin-bottom: 2rem;
  }
  .services .wrap-image {
    position: relative;
    flex-basis: calc(50% - 4rem);
  }
  .services .wrap-image picture {
    position: absolute;
    top: -7rem;
    width: 100%;
    height: calc(100% + 7rem);
  }
  .services .wrap-image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .services .btn {
    margin: 0;
  }
}
@media(min-width: 1400px) {
  .services {
    padding-top: 7rem;
  }
  .services .wrap {
    gap: 5rem;
    padding: 4rem 0 4rem 4.5rem;
  }
  .services .wrap::before {
    top: 7rem;
  }
  .services .wrap-image {
    flex-basis: calc(50% - 5rem);
  }
  .services .wrap-image picture {
    top: -11rem;
    height: calc(100% + 11rem);
  }
}

/* Saiba Mais */
.know-more {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 3rem;
}
.know-more::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  bottom: 5rem;
  background-color: rgb(236,249,250);
  clip-path: polygon(100% 1%, 100% 100%, 0 99%, 0 0);
  z-index: -1;
}
.know-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 2.5rem;
  background-color: rgb(156,217,224);
  clip-path: polygon(0 1%, 100% 0%, 100% 98%, 0% 100%);
  z-index: -2;
}
.know-more .content {
  margin-bottom: 4rem;
}
.know-more .content > * {
  color: #616060;
}
.know-more .content > *:first-child,
.know-more .content > *:last-child {
  color: #060606;
  font-weight: 600;
}
.know-more .btn {
  margin: 0 auto 8rem;
}
@media(min-width: 576px) {
  .know-more::after {
    clip-path: polygon(0 2%, 100% 0%, 100% 97%, 0% 100%);
  }
}
@media(min-width: 992px) {
  .know-more::before {
    clip-path: polygon(100% 2%, 100% 100%, 0 98%, 0 0);
  }
  .know-more::after {
    clip-path: polygon(0 3%, 100% 0%, 100% 96%, 0% 100%);
  }
}
@media(min-width: 1360px) {
  .know-more::before {
    clip-path: polygon(100% 2%, 100% 100%, 0 97%, 0 0);
  }
  .know-more::after {
    clip-path: polygon(0 2%, 100% 0%, 100% 95%, 0% 100%);
  }
}
@media(min-width: 1600px) {
  .know-more::before {
    clip-path: polygon(100% 3%, 100% 100%, 0 96%, 0 0);
  }
  .know-more::after {
    clip-path: polygon(0 3%, 100% 0%, 100% 94%, 0% 100%);
  }
  .know-more .btn {
    margin: 0 auto 10rem;
  }
}

/* Contato */
.contact {
  position: relative;
  padding-bottom: 5.75rem;
  padding-top: 5rem;
  margin-top: -5rem;
}
.contact::before {
  content: "";
  background-image: url("../images/favicon-xxl.png");
  background-repeat: no-repeat;
  background-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -3;
}
.contact .section-title {
  margin-bottom: 1.375rem;
}
.contact .socials {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
  gap: 1.25rem;
}
.contact .socials .nav-icon {
  width: 60px;
  height: 60px;
}
.contact .socials .nav-icon.instagram::before {
  font-size: 2.25rem;
}
.contact .socials .nav-icon.facebook::before {
  font-size: 1.75rem;
}
.contact .nav-info .nav-item .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat SemiBold";
  font-size: 1.5rem;
  color: #676767;
  padding: 0 0 0 44px;
}
.contact .nav-info .nav-item .nav-link:hover,
.contact .nav-info .nav-item .nav-link:focus {
  opacity: 0.8;
}
.contact .nav-info .nav-item .nav-link::before {
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
}
.contact .nav-info .nav-item .nav-link.whatsapp::before {
  background-image: url("../images/icones/icone-whatsapp.png");
  width: 29px;
  height: 29px;
}
.contact .nav-info .nav-item .nav-link.email::before {
  background-image: url("../images/icones/icone-email.png");
  width: 29px;
  height: 20px;
}
.contact .nav-info .nav-item .nav-link.endereco::before {
  background-image: url("../images/icones/icone-endereco.png");
  width: 32px;
  height: 45px;
}
@media(min-width: 576px) {
  .contact::before {
    background-position: top left;
  }
}
@media(min-width: 992px) {
  .contact::before {
    background-position: top right;
  }
}

/* Footer */
.footer {
  display: flex;
  align-items: center;
  min-height: 100px;
  background-image: -moz-linear-gradient( 0deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(0,163,183) 0%, rgb(0,160,140) 100%);
}
.footer span {
  display: block;
  text-align: center;
  color: #ffffff;
}

/* Botões flutuantes */
.buttons-floating {
  position: fixed;
  bottom: 10px;
  right: 16px;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.buttons-floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  color: #FFF;
}
.buttons-floating a.btn-arrow-up {
  width: 36px;
  height: 36px;
  background-color: rgb(0, 163, 183);
}
.buttons-floating a.btn-whatsapp {
  width: 52px;
  height: 52px;
  background-color: #67d449;
}
.buttons-floating a.btn-whatsapp i {
  font-size: 1.75rem;
}
@media(min-width: 1600px) {
  .buttons-floating {
    bottom: 16px;
    right: 16px;
  }
}

/* Icones Navbar */
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  overflow: hidden;
}
.nav-icon.whatsapp {
  background-color: #29a719;
}
.nav-icon.facebook {
  background-color: #3b5998;
}
.nav-icon.instagram {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.nav-icon.whatsapp::before {
  content: "\f232";
  font-size: 1.6rem;
}
.nav-icon.facebook::before {
  content: "\f39e";
  font-size: 1.125rem;
}
.nav-icon.instagram::before {
  content: "\f16d";
  font-size: 1.375rem;
}
.nav-icon::before {
  font: var(--fa-font-brands);
  color: #ffffff;
}
.nav-icon:hover::before {
  animation: toBottomFromTop 0.4s forwards;
  -moz-animation: toBottomFromTop 0.4s forwards;
  -webkit-animation: toBottomFromTop 0.4s forwards;
}

/* Animação Icones Nav */
@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toBottomFromTop {
  49% {
    -moz-transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}