@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
}

/* Icon 1 */
#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 40px;
  height: 20px;
  position: relative;
  margin: 8px auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#nav-icon1:hover span, #nav-icon2:hover span, #nav-icon3:hover span, #nav-icon4:hover span {
  background: #d3531a;
}
#nav-icon1.open span, #nav-icon2.open span, #nav-icon3.open span, #nav-icon4.open span {
  background: #d3531a;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 8px;
}

#nav-icon1 span:nth-child(3) {
  top: 16px;
}

#nav-icon1.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* Icon 2 */
#nav-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #fff;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
  top: 8px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
  top: 16px;
}

#nav-icon2.open span:nth-child(1), #nav-icon2.open span:nth-child(6) {
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2), #nav-icon2.open span:nth-child(5) {
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 4px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 4px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 14px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 14px;
}

/* Icon 3 */
#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
  top: 8px;
}

#nav-icon3 span:nth-child(4) {
  top: 16px;
}

#nav-icon3.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

/* Icon 4 */
#nav-icon4 span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 39px;
  left: 8px;
}

html,
body {
  margin: 0px !important;
  padding: 0px !important;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #f1f3f2;
}

* {
  box-sizing: border-box;
}

*:focus,
*:focus-visible,
*:focus:not(.focus-visible) {
  outline: none !important;
  box-shadow: none;
}

.loading-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  vertical-align: middle;
  margin-right: 5px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
a {
  text-decoration: none !important;
  transition: all 0.5s ease;
}

p {
  font-size: 16px;
  line-height: 18px;
  margin: 0;
  padding: 0;
  color: #393939;
}

h1 {
  margin: 0px;
  padding: 0px;
  font-weight: 300 !important;
  font-size: 42px;
  line-height: 40px;
}

h2 {
  margin: 0px;
  padding: 0px;
  font-size: 32px;
  line-height: 30px;
}

.titulo h1,
.titulo h2 {
  font-weight: 500;
}
.titulo h1 strong,
.titulo h2 strong {
  font-weight: 900;
}

.owl-theme {
  position: relative;
}
.owl-theme .owl-nav .owl-next,
.owl-theme .owl-nav .owl-prev {
  transition: all 0.5s ease;
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-size: 80px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  color: #8d8d8d !important;
}
.owl-theme .owl-nav .owl-next:hover,
.owl-theme .owl-nav .owl-prev:hover {
  color: #752b8f !important;
  background-color: transparent !important;
}
.owl-theme .owl-nav .owl-next span,
.owl-theme .owl-nav .owl-prev span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: -2px;
  margin-top: -4px;
}
.owl-theme .owl-nav .owl-next {
  right: 0;
  display: flex;
  margin-right: -50px;
}
.owl-theme .owl-nav .owl-prev {
  left: 0;
  display: flex;
  margin-left: -50px;
}

.barra {
  width: 100%;
  height: 10px;
  background: #222;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.barra .parte {
  height: 100%;
}
.barra .parte.aqua {
  flex: 2;
  background-color: #3fcac9;
}
.barra .parte.roxo {
  flex: 1;
  background-color: #8e248f;
}
.barra .parte.rosa {
  flex: 0.5;
  background-color: #f7d6d1;
}

header {
  width: 100%;
  transition: all 0.5s ease;
  padding: 0px;
  margin: 0px;
  z-index: 5000;
  position: sticky;
  top: 0px;
  background-color: #fff;
}
header .topo {
  padding: 20px 0px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .topo .navbar-brand {
  transition: all 0.5s ease;
  position: relative;
  padding: 0px;
  margin: 0px;
}
header .topo .navbar-brand .logo {
  opacity: 1;
  transition: all 0.5s ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0px;
}
header .topo .navbar-brand .logo img {
  transition: all 0.5s ease;
  width: auto;
  -webkit-transition: width 1s ease, height 1s ease;
}
header .topo .itens {
  transition: all 0.5s ease;
  display: grid;
  grid-template-columns: min-content 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
header .topo .itens .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.5s ease;
}
header .topo .itens .menu a {
  transition: all 0.5s ease;
}
header .topo .itens .menu nav {
  transition: all 0.5s ease;
  padding: 0px;
}
header .topo .itens .menu nav #navbarSupportedContent {
  flex-direction: column;
  align-items: flex-end;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav {
  transition: all 0.5s ease;
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item {
  position: relative;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item .nav-link {
  color: #1a1a1a;
  font-weight: bold;
  font-size: 16px;
  padding: 0px;
  transition: all 0.5s ease;
  text-wrap: nowrap;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item .nav-link::after {
  display: none;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item .nav-link:hover, header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item .nav-link.active {
  color: #7f227d;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu {
  padding: 10px 0px;
  margin: 0px;
  background-color: transparent;
  border: 0;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu .arrow {
  display: none;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-menu-items {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px 15px;
  margin: 0;
  list-style: none;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-menu-items li {
  border-bottom: 1px solid #7f227d;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-menu-items li:last-child {
  border: 0;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-menu-items a {
  display: block;
  color: #1a1a1a;
  padding: 8px 0px;
  text-wrap: nowrap;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-menu-items a:hover {
  color: #48b9b4;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: flex !important;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.instagram {
  padding: 0px !important;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.instagram .nav-link {
  padding: 0px !important;
  border: 0px !important;
  background-color: #48b9b4;
  color: #fff !important;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.instagram .nav-link:hover {
  background-color: #7f227d;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.destaque {
  padding: 0px !important;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.destaque .nav-link {
  border: 0px !important;
  background-color: #7f227d;
  color: #fff !important;
  border-radius: 20px;
  padding: 0 15px !important;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .topo .itens .menu nav #navbarSupportedContent .navbar-nav .nav-item.destaque .nav-link:hover {
  background-color: #48b9b4;
}

footer {
  background-color: #fff;
}
footer .rodape {
  padding: 60px 0px;
  color: #ffffff;
}
footer .rodape ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
footer .rodape ul p {
  margin: 0;
  padding: 0;
}
footer .rodape ul .endereco {
  line-height: 20px;
  font-size: 18px;
  color: #393939;
}
footer .rodape ul .endereco .telefones {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  margin-bottom: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
footer .rodape ul .endereco .telefones a {
  text-decoration: none;
  color: #000000;
}
footer .rodape ul .instagram a {
  padding: 0px;
  border: 0px;
  background-color: #48b9b4;
  color: #fff;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
footer .rodape ul .instagram a:hover {
  background-color: #7f227d;
}
footer .rodape ul .assinatura {
  padding: 10px 0;
  border-bottom: 1px solid #393939;
  line-height: 20px;
  font-size: 14px;
  color: #393939;
}
footer .rodape ul .assinatura a {
  color: #393939;
}
footer .rodape ul .assinatura a:hover {
  color: #7f227d;
}

.banners {
  position: relative;
}
.banners .item {
  width: 100vw;
  height: 80vh;
  display: block;
  position: relative;
}
.banners .item img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-out;
  -o-object-fit: cover;
     object-fit: cover;
}
.banners .desktop {
  display: block;
}
.banners .mobile {
  display: none;
}
.banners .owl-dots {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 0px !important;
}
.banners .owl-dots .owl-dot {
  width: -moz-min-content;
  width: min-content;
}
.banners .owl-dots .owl-dot span {
  border: 0px solid #fff;
  width: 10px;
  height: 10px;
  background-color: #869791;
}
.banners .owl-dots .owl-dot.active span, .banners .owl-dots .owl-dot:hover span {
  background-color: #fff;
}

.equipes {
  position: relative;
  margin-top: -80px;
  z-index: 2;
}
.equipes .box {
  background-color: #fff;
  padding: 80px;
  border-radius: 50px;
}
.equipes .box .titulo {
  text-align: center;
}
.equipes .box .titulo h2 {
  color: #171717;
  margin-bottom: 15px;
}
.equipes #owl-equipes {
  margin-top: 50px;
}
.equipes #owl-equipes .owl-item {
  height: 100%;
}
.equipes #owl-equipes .owl-item .item {
  height: 100%;
  -moz-column-gap: 30px;
       column-gap: 30px;
  display: grid;
  grid-template-columns: 70px 1fr;
}
.equipes #owl-equipes .owl-item .item .imagem img {
  width: 100%;
}
.equipes #owl-equipes .owl-item .item .info h2 {
  font-size: 32px;
  line-height: 30px;
  color: #752b8f;
  margin-bottom: 15px;
  white-space: normal;
  word-wrap: break-word;
}
.equipes #owl-equipes .owl-item .item .info h3 {
  font-size: 26px;
  line-height: 24px;
  margin-bottom: 15px;
  color: #48b7b0;
  font-style: italic;
}
.equipes #owl-equipes .owl-item .item .info p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
}
.equipes #owl-equipes .owl-item .item .info p span {
  color: #752b8f;
}
.equipes #owl-equipes .owl-item .item .info a {
  display: block;
  border: 1px solid #752b8f;
  padding: 10px 15px;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  color: #171717;
  border-radius: 20px;
  font-size: 14px;
}
.equipes #owl-equipes .owl-item .item .info a:hover {
  background-color: #752b8f;
  color: #fff;
}
.equipes #owl-equipes .owl-dots {
  display: none !important;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 15px !important;
}
.equipes #owl-equipes .owl-dots .owl-dot {
  width: -moz-min-content;
  width: min-content;
}
.equipes #owl-equipes .owl-dots .owl-dot span {
  border: 0px solid #fff;
  width: 10px;
  height: 10px;
  background-color: #869791;
}
.equipes #owl-equipes .owl-dots .owl-dot.active span, .equipes #owl-equipes .owl-dots .owl-dot:hover span {
  background-color: #fff;
}

.somos {
  padding: 100px 0px 420px 0;
}
.somos .titulo {
  text-align: center;
}
.somos .titulo h2 {
  color: #171717;
  margin-bottom: 15px;
  font-size: 48px;
  line-height: 46px;
}
.somos .titulo h2 strong {
  color: #7f227d;
}
.somos .titulo a {
  margin-top: 30px;
  display: block;
  padding: 10px 15px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  font-size: 18px;
  background-color: #752b8f;
}
.somos .titulo a:hover {
  background-color: #48b9b4;
}
.somos ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  position: relative;
  width: 100%;
}
.somos ul li {
  position: absolute;
}
.somos ul li img {
  width: 100%;
}
.somos ul li.foto-01 {
  left: 0px;
  margin-top: -95px;
  width: 18%;
  z-index: 1;
}
.somos ul li.foto-02 {
  width: 20%;
  left: 16%;
  top: 35px;
  z-index: 2;
}
.somos ul li.foto-03 {
  width: 33%;
  left: 34%;
  top: 95px;
  z-index: 3;
}
.somos ul li.foto-04 {
  width: 20%;
  right: 15%;
  top: 35px;
  z-index: 2;
}
.somos ul li.foto-05 {
  right: 0px;
  margin-top: -95px;
  width: 17%;
  z-index: 1;
}

.diferenciais {
  background-color: #fff;
  padding: 100px 0;
}
.diferenciais .titulo {
  text-align: center;
  margin-bottom: 50px;
}
.diferenciais .titulo h2 {
  color: #171717;
  margin-bottom: 15px;
  font-size: 48px;
}
.diferenciais .titulo h2 strong {
  color: #7f227d;
}

.especialidades {
  padding: 100px 0;
  background: linear-gradient(to right, #7f227d 50%, #48b7b0 50%);
}
.especialidades .titulo {
  margin-bottom: 50px;
}
.especialidades .titulo h2 {
  margin-bottom: 15px;
  color: #fff;
  margin-bottom: 15px;
  font-size: 32px;
}
.especialidades .titulo h2 strong {
  color: #fff;
}
.especialidades .titulo p {
  color: #fff;
}
.especialidades .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 100px;
       column-gap: 100px;
}
.especialidades .box .conteudo ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 30px;
}
.especialidades .box .conteudo ul li a {
  text-align: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  position: relative;
  display: flex;
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  height: 80px;
  align-items: center;
  justify-content: center;
}
.especialidades .box .conteudo ul li a span {
  position: absolute;
  bottom: -12.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
}
.especialidades .box .conteudo ul li a.oficina {
  background-color: #48b7b0;
}
.especialidades .box .conteudo ul li a.oficina span {
  background-color: #7f227d;
}
.especialidades .box .conteudo ul li a.oficina:hover span {
  background-color: #48b7b0;
}
.especialidades .box .conteudo ul li a.terapia {
  background-color: #7f227d;
}
.especialidades .box .conteudo ul li a.terapia span {
  background-color: #48b7b0;
}
.especialidades .box .conteudo ul li a.terapia:hover span {
  background-color: #7f227d;
}

.eventos {
  padding: 100px 0;
  background: #fff;
}
.eventos .titulo {
  text-align: center;
  margin-bottom: 50px;
}
.eventos .titulo h2 {
  color: #171717;
  margin-bottom: 15px;
  font-size: 48px;
}
.eventos .titulo h2 strong {
  color: #7f227d;
}
.eventos .imagem img {
  border-radius: 20px;
}

.agendamento {
  padding: 100px 0;
}
.agendamento .titulo {
  margin-bottom: 50px;
}
.agendamento .titulo h2 {
  color: #171717;
  margin-bottom: 15px;
  font-size: 48px;
  line-height: 38px !important;
}
.agendamento .titulo h2 strong {
  color: #7f227d;
}
.agendamento .telefone p {
  margin-bottom: 30px;
}
.agendamento .telefone h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #393939;
  font-weight: bold;
}
.agendamento .telefone h3 a {
  color: #393939;
}
.agendamento .telefone h3 a:hover {
  color: #7f227d;
}
.agendamento form {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.agendamento form input,
.agendamento form select {
  border: 1px solid #752b8f;
  padding: 7px;
  border-radius: 10px;
  height: 45px;
}
.agendamento form .acao {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
.agendamento form .acao button {
  border-radius: 20px;
  border: 0;
  background-color: #3fcac9;
  color: #fff;
  padding: 10px 20px;
  width: 150px;
}
.agendamento ul {
  margin-top: 50px;
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.agendamento ul li img {
  max-width: 100%;
  height: auto;
}

.interno .capa {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  height: 300px;
  margin-bottom: 100px;
}
.interno .capa h2 {
  margin: 0px;
  padding: 0px;
  color: #fdd1ce;
  font-size: 60px;
}
.interno.historia .titulo {
  display: grid;
  grid-template-columns: 120px 1fr;
}
.interno.historia .titulo h1 {
  font-size: 60px;
  line-height: 65px;
  color: #752b8f;
}
.interno.historia .conteudo {
  padding-top: 30px;
  padding-left: 120px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.interno.historia .conteudo p {
  font-size: 18px;
  line-height: 20px;
  color: #010300;
}
.interno.historia .images {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
.interno.historia .images .img01 {
  grid-column: 1/-1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.interno.historia .images .img02,
.interno.historia .images .img03 {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 20px;
}
@media (min-width: 0px) {
  .interno.historia .images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .interno.historia .images .img01 {
    grid-column: 1/3;
  }
  .interno.historia .images .img02 {
    grid-column: 1;
  }
  .interno.historia .images .img03 {
    grid-column: 2;
  }
}
.interno.historia .boxatendimento {
  margin-top: 50px;
}
.interno.historia .boxatendimento .images-atendimento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  row-gap: 30px;
}
.interno.historia .boxatendimento .images-atendimento .item01 {
  grid-column: 1/2;
  /* Ocupa só a primeira coluna */
  grid-row: 1;
  /* Primeira linha */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.interno.historia .boxatendimento .images-atendimento .item02 {
  grid-column: 2/2;
  /* Ocupa só a primeira coluna */
  grid-row: 1;
  /* Primeira linha */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.interno.historia .boxatendimento .images-atendimento .item03,
.interno.historia .boxatendimento .images-atendimento .item04 {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 20px;
}
.interno.historia .boxatendimento .images-atendimento .item {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  text-align: center;
}
.interno.historia .boxatendimento .images-atendimento .item img {
  width: 100%;
  border-radius: 20px;
}
.interno.historia .boxatendimento .images-atendimento .item p {
  font-size: 14px;
}
.interno.historia .estrutura {
  background-image: url(../img/img-estrutura-historia.jpg);
  background-size: cover;
  background-position: center center;
  padding: 80px 0;
  margin-top: 100px;
}
.interno.historia .estrutura li {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
  justify-content: center;
}
.interno.historia .estrutura h2 {
  font-size: 60px;
  line-height: 65px;
  color: #3fcac9;
}
.interno.historia .estrutura p {
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}
.interno.historia .estrutura ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
}
.interno.historia .estrutura .divisao {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interno.historia .estrutura .divisao span {
  height: 100%;
  width: 5px;
  border-radius: 5px;
  background-color: #3fcac9;
}
.interno.espec {
  padding-bottom: 100px;
}
.interno.espec .titulo {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  text-align: center;
}
.interno.espec .titulo h2 {
  font-size: 30px;
  color: #393939;
}
.interno.espec .titulo h1 {
  font-size: 60px;
  line-height: 55px;
  color: #752b8f;
  font-weight: bold !important;
}
.interno.espec .titulo h3 {
  font-size: 24px;
  color: #393939;
}
.interno.espec .conteudo {
  margin-top: 80px;
}
.interno.espec .conteudo ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 100px 250px;
}
.interno.espec .conteudo ul .divisao {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interno.espec .conteudo ul .divisao span {
  height: 100%;
  width: 5px;
  border-radius: 5px;
  background-color: #3fcac9;
}
.interno.espec .images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.interno.espec .images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 30px;
}
.interno.espec .images .img01 {
  grid-column: 1/2;
  grid-row: 1/3;
}
.interno.espec .images .img02 {
  grid-column: 2/3;
  grid-row: 1/2;
}
.interno.espec .images .img03 {
  grid-column: 2/3;
  grid-row: 2/3;
}
.interno.espec .profissional {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.interno.espec .profissional img {
  margin-bottom: 10px;
}
.interno.espec .profissional h2 {
  font-size: 32px;
  color: #752b8f;
}
.interno.espec .profissional h3,
.interno.espec .profissional h4 {
  font-size: 24px;
  color: #393939;
}
.interno.espec .profissional h3 span,
.interno.espec .profissional h4 span {
  color: #752b8f;
}
.interno.equipe {
  padding-bottom: 100px;
}
.interno.equipe .content {
  padding-bottom: 100px;
}
.interno.equipe .content .titulo {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
}
.interno.equipe .content .titulo h2 {
  font-size: 26px;
  line-height: 24px;
  color: #48b7b0;
  font-style: italic;
}
.interno.equipe .content .titulo h1 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 45px;
  color: #752b8f;
  font-weight: bold !important;
}
.interno.equipe .content .divisao {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interno.equipe .content .divisao span {
  height: 100%;
  width: 5px;
  border-radius: 5px;
  background-color: #3fcac9;
}
.interno.equipe .content .des {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.interno.equipe .content .conteudo {
  margin: 50px 0px;
}
.interno.equipe .content .conteudo ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.interno.equipe .equipes .box {
  padding: 30px 80px;
}
.interno.equipe .equipes .titulo {
  display: none;
}
.interno.profissional {
  padding-bottom: 100px;
}
.interno.profissional .content {
  padding-bottom: 100px;
}
.interno.profissional .content .titulo {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
}
.interno.profissional .content .titulo h2 {
  font-size: 26px;
  line-height: 24px;
  color: #48b7b0;
  font-style: italic;
}
.interno.profissional .content .titulo h1 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 45px;
  color: #752b8f;
  font-weight: bold !important;
}
.interno.profissional .content .divisao {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interno.profissional .content .divisao span {
  height: 100%;
  width: 5px;
  border-radius: 5px;
  background-color: #3fcac9;
}
.interno.profissional .content .des {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.interno.profissional .content .conteudo {
  margin: 50px 0px;
}
.interno.profissional .content .conteudo h1 {
  font-size: 60px;
  line-height: 65px;
  color: #752b8f;
}
.interno.profissional .content .conteudo h2 {
  color: #393939;
}
.interno.profissional .content .conteudo .desc {
  row-gap: 30px;
  display: flex;
  flex-direction: column;
  padding: 30px 0px 0px 0px;
}
.interno.profissional .content .conteudo .img-perfil {
  width: 100%;
  border-radius: 20px;
}
.interno .item-profissional a {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.interno .item-profissional a .img-wrap {
  position: relative;
  width: 100%;
}
.interno .item-profissional a .img-wrap img {
  border-radius: 15px;
  width: 100%;
  display: block;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.interno .item-profissional a .img-wrap .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(117, 43, 143, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.interno .item-profissional a .img-wrap .mask span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #48b7b0;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.interno .item-profissional a h2 {
  font-size: 24px;
  color: #752b8f;
  line-height: 24px;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.interno .item-profissional a p {
  font-size: 18px;
  color: #393939;
}
.interno .item-profissional a:hover .mask {
  opacity: 1;
}
.interno .acoes-profissional {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 30px;
}
.interno .acoes-profissional a {
  height: 40px;
  padding: 0px 15px;
  font-size: 14px;
  color: #fff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 50px 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interno .acoes-profissional a img {
  background-size: 110%;
  background-repeat: no-repeat;
  height: 50px;
}
.interno .acoes-profissional a.whats {
  background-color: #18a277;
}
.interno .acoes-profissional a.doctor {
  background-color: #00c3a5;
}

.whats {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background-color: black;
  padding: 10px;
  border-radius: 50%;
  background-color: #25d366;
  width: 50px;
  height: 50px;
  z-index: 200;
}
.whats img {
  width: 100%;
}/*# sourceMappingURL=main.css.map */