
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #711F4E;
  text-decoration: none;
}



a:hover {
  color: #A84A7A;
  text-decoration: none;
}


/* Altera a cor dos links dentro de uma div com a classe "content" */
.content a { 
color: #711F4E;
}

/* Altera a cor dos links dentro de uma div com o ID "header" */
#header a { 
color: #82134D;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #711F4E;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #711F4E;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #A84A7A;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #711F4E;
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}






/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}




/* Estilos básicos para a barra de navegação */
.navbar {
  background-color: #ffffff; /* Cor de fundo da barra de navegação */
  padding: 15px; /* Espaçamento interno */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Sombra */
  z-index: 1000; /* Z-index para garantir que a barra de navegação esteja na frente de outros elementos */
}

.navbar-brand {
  font-size: 24px; /* Tamanho da fonte do logotipo */
  font-weight: bold; /* Peso da fonte do logotipo */
}

.navbar-nav {
  margin-left: auto; /* Alinhar os itens do menu à direita */
}

.nav-item {
  margin-left: 20px; /* Espaçamento entre os itens do menu */
}

.nav-link {
  color: #555555; /* Cor do texto dos links */
  font-size: 18px; /* Tamanho da fonte dos links */
}

/* Estilos para o menu móvel */
.mobile-nav-toggle {
  color: #555555; /* Cor do ícone do menu móvel */
  font-size: 28px; /* Tamanho do ícone do menu móvel */
  cursor: pointer; /* Cursor ao passar sobre o ícone do menu móvel */
  display: none; /* Ocultar o ícone do menu móvel por padrão */
}

.navbar-mobile {
  position: fixed; /* Posição fixa para o menu móvel */
  top: 0; /* Distância do topo */
  right: 0; /* Distância da direita */
  bottom: 0; /* Distância da parte inferior */
  left: 0; /* Distância da esquerda */
  background-color: #ffffff; /* Cor de fundo do menu móvel */
  z-index: 999; /* Z-index para garantir que o menu móvel esteja na frente de outros elementos */
  display: none; /* Ocultar o menu móvel por padrão */
}

.navbar-mobile ul {
  list-style: none; /* Remover estilos de lista */
  padding: 0; /* Remover preenchimento */
}

.navbar-mobile li {
  margin: 10px 0; /* Espaçamento entre os itens do menu móvel */
}

.navbar-mobile a {
  color: #555555; /* Cor do texto dos links no menu móvel */
  text-decoration: none; /* Remover sublinhado dos links no menu móvel */
  font-size: 18px; /* Tamanho da fonte dos links no menu móvel */
}

/* Mostrar o menu móvel quando o ícone for clicado */
.navbar-mobile.active {
  display: block;
}






/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #555555;
  font-size: 28px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  max-height: 80px;
  font-size: 50px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
  max-height: 80px;
}

/**
* Appointment Button
*/
.appointment-btn {
  margin-left: 25px;
  background: #711F4E;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #A84A7A;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

/* Estilização do conteúdo do carrossel */
#hero .container {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  margin-bottom: 50px;
  border-top: 4px solid #711F4E;
}

/* Ajuste para larguras menores */
@media (max-width: 1200px) {
  #hero .container {
    margin: 0 50px; /* Espaçamento uniforme nas laterais */
  }
}

/* Estilos para o texto principal */
#hero h2 {
  color: #2f2f2f;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

#hero p {
  color: #555555;
  margin-bottom: 30px;
}

/* Ajustes para os controles de navegação do carrossel */
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 5%; /* Largura reduzida para dispositivos de tela menores */
}

/* Estilos para os botões de navegação */
#hero .carousel-control-prev-icon,
#hero .carousel-control-next-icon {
  background: rgba(63, 187, 192, 0.8);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 30px;
  width: 54px;
  height: 54px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

#hero .carousel-control-prev-icon:hover,
#hero .carousel-control-next-icon:hover {
  background: #711F4E;
  color: rgba(255, 255, 255, 0.8);
}

/* Estilização dos indicadores do carrossel */
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #711F4E;
}

/* Botão de ação principal */
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background 0.5s;
  line-height: 1;
  color: #fff;
  background: #711F4E;
}

#hero .btn-get-started:hover {
  background: #A84A7A;
}

/* Ajustes para dispositivos menores */
@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .container {
    margin-top: 100px;
  }
}

/* Ocultar elemento específico em dispositivos menores */
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
  .agende_top {
    display: none;
  }
}





/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #711F4E;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}






/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #ecf8f9;
  min-height: 40px;
  margin-top: 120px; /* Reduzi o valor para evitar muito espaço */
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  padding-right: 10px;
  color: #6c757d;
  content: "/"; /* Ajustei a posição do separador */
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}








/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background: #711F4E; /* Define a cor de fundo para a seção */
}

.services .icon-box {
  padding: 80px;
  border-radius: 6px;
  background: #923838;
  transition: ease-in-out 0.3s;
  text-align: center; /* Centraliza o conteúdo dentro do ícone */
}

.services   .icon-box i {
  color: #A84A7A;
  font-size: 40px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #A84A7A;
  transition: 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box a:hover {
  box-shadow: 0px 2px 22px #A84A7A;
}

.services .icon-box:hover h4 a {
  color: #A84A7A;
}



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #711F4E; /* Define a cor de fundo */
  color: #fff; /* Define a cor do texto */
  background-size: cover; /* Define o tamanho da imagem de fundo */
  padding: 60px 0; /* Adiciona preenchimento ao conteúdo */
}

.cta h3 {
  font-size: 28px; /* Define o tamanho da fonte do título */
  font-weight: 700; /* Define o peso da fonte do título */
}

.cta .cta-btn {
  font-family: "Roboto", sans-serif; /* Define a família de fontes do botão */
  font-weight: 500; /* Define o peso da fonte do botão */
  font-size: 16px; /* Define o tamanho da fonte do botão */
  letter-spacing: 1px; /* Define o espaçamento entre letras do botão */
  display: inline-block; /* Define o botão como um elemento de bloco */
  padding: 10px 35px; /* Adiciona preenchimento ao botão */
  border-radius: 25px; /* Adiciona bordas arredondadas ao botão */
  transition: 0.5s; /* Adiciona uma transição suave ao botão */
  margin-top: 10px; /* Adiciona um espaçamento superior ao botão */
  border: 2px solid #fff; /* Adiciona uma borda ao botão */
  color: #fff; /* Define a cor do texto do botão */
}

.cta .cta-btn:hover {
  background: #fff; /* Muda a cor de fundo ao passar o mouse */
  color: #711F4E; /* Muda a cor do texto ao passar o mouse */
}







/*--------------------------------------------------------------
# CORPO CLINICO
--------------------------------------------------------------*/
.corpo_clinico h5{
  font-size: 1rem;
}








/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600; /* Define a fonte mais pesada para os títulos */
  font-size: 26px; /* Define o tamanho da fonte para os títulos */
}

.about .content h5 {
  font-weight: 400; /* Define uma fonte mais leve para subtítulos */
  font-size: 18px; /* Define o tamanho da fonte para subtítulos */
}

.about .content ul {
  list-style: none; /* Remove os marcadores padrão da lista */
  padding: 0; /* Remove o preenchimento padrão da lista */
}

.about .content ul li {
  padding-bottom: 10px; /* Adiciona um espaçamento inferior entre os itens da lista */
}

.about .content ul i {
  font-size: 20px; /* Define o tamanho da fonte para os ícones */
  padding-right: 4px; /* Adiciona um espaçamento à direita dos ícones */
  color: #711F4E; /* Define a cor dos ícones */
}

.about .content p:last-child {
  margin-bottom: 0; /* Remove o espaçamento inferior do último parágrafo */
}







/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px; /* Adiciona um espaço na parte inferior da seção */
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1); /* Adiciona uma sombra à caixa de contagem */
  padding: 30px; /* Adiciona espaço interno à caixa de contagem */
  width: 100%; /* Garante que a caixa de contagem ocupe toda a largura disponível */
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #711F4E;
  float: left; /* Alinha o ícone à esquerda */
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #555555;
  margin-left: 50px; /* Adiciona espaço à esquerda do número da contagem */
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7b7b7b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s; /* Adiciona uma transição suave */
}

.counts .count-box a:hover {
  color: #711F4E;
  flex-wrap: wrap; /* Wrap items to the next line when necessary */
}







/*--------------------------------------------------------------
# EMPRESAS PARCEIRAS
--------------------------------------------------------------*/
.parceria { 
  display: flex; /* Use flexbox */
}

.parceria .portfolio-wrap {
  flex: 1;
  min-width: 97%;
  border: solid #eeeeee 1px;
  border-radius: 8px;
  margin-bottom: 50px;
  padding: 0.5%;
  font-weight: 700;
  margin: 5px 0 10px 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16); /* Adicione a sombra */
}

.parceria img {
  width: 90%;
}

.parceria h4 {
  font-size: 1rem;
  margin-top: 12px;
}

.parceria h3 {
  font-size: 1.1rem;
}

.parceria a {
  font-size: 1.3rem;
}

/* Estilo para centralizar verticalmente o conteúdo do vídeo */
.video-container {
  position: relative;
  padding-top: 56.25%; /* Proporção 16:9 (altere de acordo com a proporção do seu vídeo) */
  height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .parceria {
    display: block !important;
  }

  .parceria .portfolio-info {
    flex: 1;
    width: 90%;
    margin-left: 0px;
  }

  .parceria .icon-box h4 {
    font-size: 14px;
  }

  .parceria .icon-box a {
    font-size: 0.8rem;
  }
}








/*--------------------------------------------------------------
# ESPECIALIDADES
--------------------------------------------------------------*/
.especialidades { 
  display: none; /* Use flexbox */
}

.especialidades .itens {
  flex: 1;
  min-width: 100%;
  border: solid #9b1e1e 1px;
  border-radius: 8px;
  margin-bottom: 50px;
  margin-left: 0px; /* Ajuste conforme necessário */
  padding: 25px 10px 5px 10px;
  text-align: left;  
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16); /* Adicione a sombra */
}

.especialidades .icon-box h4 {
  font-size: 8px;
}

@media (max-width: 768px) {
  

  .especialidades .itens {
    flex: 1;
    margin-left: 0px; /* Ajuste conforme necessário */
  }
  
  .especialidades .icon-box h4 {
    font-size: 12px;
  }
  
  .tels {
    display: none;
  }
}

  
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  margin-bottom: 30px;
}

.features .icon-box h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 5px 0 10px 60px; /* ajuste conforme necessário */
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #711F4E;
  margin-right: 20px; /* Espaçamento entre o ícone e o texto */
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px; /* Ajuste conforme necessário */
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}







/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #711F4E;
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon i {
  font-size: 36px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #711F4E;
}

.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #711F4E;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}









/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.appointment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .error-message br+br {
  margin-top: 25px;
}

.appointment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.appointment .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: #711F4E;
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: #711F4E;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: #A84A7A;
}








/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  color: #555555;
  border-radius: 0;
  border-left: 5px solid #fff;
  cursor: pointer;
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.departments .nav-link:hover h4 {
  color: #711F4E;
}

.departments .nav-link.active,
.departments .tab-pane.active {
  background: #f7fcfc;
  border-color: #711F4E;
}

.departments .nav-link.active h4 {
  color: #711F4E;
}

.departments .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
  .especialidades {
    display: none;
  }
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #711F4E;
}

.departments .tab-pane p {
  color: #777777;
  margin-bottom: 0;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}






/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: border-box; /* Alterei para border-box para incluir padding e border no tamanho total */
  min-height: 320px;
  padding: 20px; /* Adicionei padding para espaçamento interno */
  background-color: #f0fafa; /* Alterei a cor de fundo para melhor contraste com o texto */
  border-radius: 6px; /* Adicionei borda arredondada para suavizar os cantos */
  margin-bottom: 30px; /* Adicionei margem inferior para separar os depoimentos */
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px; /* Defini uma altura para evitar distorção da imagem */
  border-radius: 50%;
  margin-right: 20px; /* Alterei a margem para espaçamento entre a imagem e o texto */
  float: left; /* Adicionei float para alinhar a imagem à esquerda do texto */
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 0; /* Removi a margem superior para alinhar o título com o texto */
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin-top: 5px; /* Aumentei a margem superior para separar o título do texto */
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 10px 0; /* Ajustei as margens para espaçamento interno */
  line-height: 1.6; /* Aumentei o espaçamento entre linhas para melhor legibilidade */
}

.testimonials .quote-icon-left,
.testimonials .quote-icon-right {
  font-size: 26px;
  color: #b2e4e6;
  position: absolute; /* Alterei para posição absoluta para posicionamento preciso */
  top: 10px; /* Ajustei a posição vertical */
}

.testimonials .quote-icon-left {
  left: 0; /* Posicionei o ícone de cotação à esquerda */
}

.testimonials .quote-icon-right {
  right: 0; /* Posicionei o ícone de cotação à direita */
}

.testimonials .swiper-pagination {
  margin-top: 20px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #711F4E;
  margin: 0 5px; /* Aumentei a margem entre os pontos de paginação */
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #711F4E;
}




/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}

.doctors .member .member-img {
  position: relative;
  overflow: hidden;
}

.doctors .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctors .member .social a {
  transition: color 0.3s;
  color: #555555;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doctors .member .social a i {
  line-height: 0;
}

.doctors .member .social a:hover {
  color: #711F4E;
}

.doctors .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.doctors .member .member-info {
  padding: 25px 15px;
}

.doctors .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #555555;
}

.doctors .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.doctors .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.doctors .member:hover .social {
  opacity: 1;
}





/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #711F4E;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #711F4E;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid #711F4E;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
  }
}








/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #711F4E;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #711F4E;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #711F4E;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: background 0.3s;
  font-size: 14px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.pricing .btn-buy:hover {
  background: #A84A7A;
}

.pricing .featured h3 {
  color: #fff;
  background: #711F4E;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #711F4E;
  color: #fff;
}







/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d9f1f2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #711F4E; /* Aqui parece que deveria ser uma cor, não uma família de fontes */
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #32969a;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black; /* Talvez seja melhor especificar uma cor mais específica aqui */
}

.faq .faq-list .collapsed:hover {
  color: #711F4E;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}






/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #711F4E;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #711F4E;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #711F4E;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #A84A7A;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}










/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #eeeeee;
  padding: 0 0 30px 0;
  color: #555555;
  font-size: 14px;
}

#footer .footer-top {
  background: #f6f6f6;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #711F4E;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #A84A7A;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #711F4E;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #555555;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #711F4E;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #711F4E;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #A84A7A;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}