@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto:wght@300;400;500;700;900&display=swap");

@font-face {
    font-family: "Charmini-400";
    src: url('fontes/Charmini/LDCharmini-ExtraLight.woff2') format('woff2');
}
@font-face {
    font-family: "Charmini-500";
    src: url('fontes/Charmini/LDCharmini-Medium.woff2') format('woff2');
}
@font-face {
    font-family: "Charmini-100";
    src: url('fontes/Charmini/LDCharmini-ExtraLight.woff2') format('woff2');
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: "lora", sans-serif;
}

* ul {
  list-style: none;
}

* button,
* input,
* select,
* textarea {
  outline: unset;
  border: none;
}

* a {
  text-decoration: none;
  color: black;
}
.bg-verde span{
  background-color: #6dd568!important;
}

.conheca-hover-azul a {
  color: #1c2836;
  font-weight: 400;
  height: 54px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.conheca-hover-azul a span {
  width: 30%;
  height: 54px;
  background-color: #d9d0bc;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all 0.4s;
}

.conheca-hover-azul a:hover span {
  width: 100%;
  transition: all 0.4s;
}

.conheca-hover-azul button {
  color: #1c2836;
  font-weight: 400;
  height: 54px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.conheca-hover-azul button span {
  width: 30%;
  height: 54px;
  background-color: #d9d0bc;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all 0.4s;
}

.conheca-hover-azul button:hover span {
  width: 100%;
  transition: all 0.4s;
}

.conheca-hover-branco a {
  color: #fff;
  font-weight: 400;
  height: 54px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.conheca-hover-branco a span {
  width: 30%;
  height: 54px;
  background-color: #8e8a79;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all 0.4s;
}

.conheca-hover-branco a:hover span {
  width: 100%;
  transition: all 0.4s;
}

.conheca-hover-branco button {
  color: #fff;
  font-weight: 400;
  height: 54px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

.conheca-hover-branco button span {
  width: 30%;
  height: 54px;
  background-color: #8e8a79;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all 0.4s;
}

.conheca-hover-branco button:hover span {
  width: 100%;
  transition: all 0.4s;
}

.entre-contato {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 113px;
  background-image: url(../img/agende.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.entre-contato h2 {
  width: 434px;
  font-size: 4.375rem;
  font-weight: 400;
  color: #fff;
  font-family: "charmini-100";
}

@media screen and (max-width: 850px) {
  .area-atuacao-left {
    left: unset !important;
    top: unset !important;
    bottom: 0 !important;
    right: 40px !important;
  }
  .area-atuacao-right {
    left: unset !important;
    top: unset !important;
    bottom: 0 !important;
    right: 0px !important;
  }
  .entre-contato {
    padding: 0px 20px;
  }
  .entre-contato h2 {
    font-size: 3rem;
  }
}

.overlay {
  position: fixed;
  /* Sit on top of the page content */
  display: none;
  /* Hidden by default */
  width: 100%;
  /* Full width (cover the whole page) */
  height: 100%;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black background with opacity */
  z-index: 2;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
  /* Add a pointer on hover */
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 580px) {
  .banner-sobre h1{
    font-size: 10vw;
    margin-top: 40%;
    width: 90%;
    margin: 0 auto;
  }
}