:root {
  --verde-escuro: #1F5856;
  --verde-medio: #34887F;
  --verde-claro: #49A494;
  --roxo-escuro: #682E56;
  --roxo-medio: #7E4D70;
  --cinza-claro: #F9F9F9;
  --texto-principal: #222;
}

  
    body {
      font-family: 'Roboto', sans-serif;
       color: var(--texto-principal);
    }
    

   html {
  scroll-padding-top: 80px; /* ajuste para a altura da sua navbar */
  scroll-behavior: smooth;
   overflow-x: hidden;
}


      /* Navbar */
    .navbar {
      background-color: var(--cinza-claro) !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    
    /* Estilo base do botão */
.custom-toggler {
  background-color: transparent; /* sem fundo */
  border: none; /* sem borda */
  box-shadow: none !important;
  padding: 0.5rem;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231F5856' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Remove efeito de hover e focus */
.custom-toggler:focus,
.custom-toggler:hover {
  background-color: transparent !important;
  outline: none;
  box-shadow: none;
}

/* Remove efeito de clique */
.custom-toggler:active {
  background-color: transparent !important;
  box-shadow: none;
}


   .navbar-nav {
      gap: 20px;
      font-weight: 500;
    }

.navbar-brand {
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.navbar-brand img {
  height: 100%;
  width: auto;
  transform: scale(2.5);
  transform-origin: center center;
}

@media (max-width: 768px) {
  .navbar-brand {
    justify-content: center;
  }

  .navbar-brand img {
    transform: scale(2.5);
    margin-top: -10px;
  }
}

    /* Desktop: dá um espaço da borda */
@media (min-width: 769px) {
  .navbar-brand {
    padding-left: 30px; /* ajusta esse valor conforme o gosto */
  }
}
    
   .navbar-nav .nav-link {
  position: relative;
  color: black;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: var(--roxo-escuro);
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Hover opcional - muda cor do texto */
.navbar-nav .nav-link:hover {
  color: var(--roxo-escuro);
}




    
/* === Botão ícone profissional === */
.btn-circular-icon {
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  background-color: var(--verde-escuro);
  color: white; /* ícone branco */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;

}

.btn-circular-icon:hover {
  background-color: var(--verde-medio);
  transform: scale(1.05);
}

/* === Botão Agendar Consulta (desktop) corrigido === */
.btn-agendar-desktop {
  background-color: var(--roxo-escuro);       /* roxo escuro */
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-agendar-desktop:hover {
  background-color: var(--roxo-medio);
  color: white !important; /* mantém branco no hover */
  transform: scale(1.05);
}

.btn-agendar-desktop i {
  margin-right: 6px;
  color: white !important; /* força o ícone branco */
}

/* Fundo fixo na parte inferior */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f0f0f0; /* fundo cinza claro */
  padding: 1rem 1rem;
  display: flex;
  justify-content: center;
  z-index: 1050;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

/* Botão estilo pílula largo */
.btn-agendar-mobile {
   background-color: var(--roxo-escuro);  
  color: #fff;
  border-radius: 50px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border: none;
  width: 100%;
  max-width: 500px; /* Limite opcional para não ficar exagerado em tablets */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-agendar-mobile:hover {
  background-color: var(--roxo-medio); 
   color: white !important; /* mantém branco no hover */
  transform: translateY(-2px);
}


/* Estilo padrão dos links do menu */
.mobile-nav .nav-link {
  color: black;
  position: relative;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

/* Sublinhar ativo */
.mobile-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4b0082; /* roxo-escuro */
}

    

.offcanvas-profissionais .offcanvas-header {
  border-bottom: 2px solid var(--roxo-escuro); /* Borda inferior roxa no header */
  margin:0;
}

.offcanvas-profissionais .btn-close {
  filter: none; /* remove filtros do botão fechar */
}

.offcanvas-profissionais-body {
margin-top: -15px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.accordion-button-profissionais {
  border: none;
  box-shadow: none;
  padding-left: 1rem;
  border-radius: 20px; /* botões arredondados estilo pirula */
  transition: background-color 0.3s;
  color: var(--verde-escuro);
}

.accordion-button-profissionais:hover,
.accordion-button-profissionais:focus {
  background-color: transparent !important; /* remove hover background */
  box-shadow: none !important;
}

.accordion-button-profissionais:not(.collapsed) {
  background-color: transparent;
  color: var(--verde-medio); /* um roxo um pouco mais claro quando expandido */
}

.accordion-item-profissionais {
  border: none;
  border-bottom: 1px solid #ddd;
}

.list-group-profissionais {
  border: none;
  margin-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.list-group-item-profissionais {
  border: none;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border-bottom: none;
}

.list-group-item-profissionais > div {
  padding: 0;
}

/* Botões arredondados estilo pirula para “Ver Mais” e “Agendar” */
.list-group-profissionais .btn {
  border-radius: 20px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
}

/* Botão “Ver Mais” estilo outline roxo */
.list-group-profissionais .btn-profissionais-ver-off {
   background-color: var(--verde-escuro);       /* roxo escuro */
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}



.list-group-profissionais .btn-profissionais-ver-off:hover,
.list-group-profissionais .btn-profissionais-ver-off:focus {
   background-color: var(--verde-medio); 
   color: white !important; /* mantém branco no hover */
  transform: translateY(-1px);
}

/* Botão “Agendar” roxo sólido */
.list-group-profissionais .btn-profissionais-agendar-off {
  background-color: var(--roxo-escuro);       /* roxo escuro */
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}


.list-group-profissionais .btn-profissionais-agendar-off:hover,
.list-group-profissionais .btn-profissionais-agendar-off:focus {
    background-color: var(--roxo-medio); 
   color: white !important; /* mantém branco no hover */
  transform: translateY(-1px);
}


.icon-color-area{
  color: var(--roxo-escuro);
}    
    
.text-center.mb-2 {
  height: 80px; /* altura fixa */
  overflow: visible; /* deixa a logo “vazar” pra fora se necessário */
}

.mobile-menu-logo {
  height: 100%; 
  width: auto;
  transform: scale(2.2);
}


/* Menu geral (menos espaçamento entre os itens) */
.mobile-nav .nav-item {
  margin-bottom: 0.1rem; /* reduzido o espaço vertical entre os links */
}

/* Primeiro item (Menu) com destaque */
.mobile-nav .nav-item:first-child .nav-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--verde-escuro);
}

/* Demais itens com tamanho menor */
.mobile-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--verde-medio);;
  padding: 0.1rem 0; /* reduz ainda mais o espaço vertical */
  position: relative;
  transition: color 0.3s ease;
}

/* Linha inferior roxa na ativa */
.mobile-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--roxo-escuro);
}

/* Hover */
.mobile-nav .nav-link:hover {
  color: var(--roxo-medio);
}




    /* Banner Slider */
    .banner {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }
    .banner .carousel-item {
      height: 100vh;
    }
    .banner img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
    
   .carousel-indicators {
  gap: 12px; /* espaçamento entre as bolinhas */
  bottom: 20px; /* distância do fundo (ajuste se quiser) */
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.5;
  border: none;
  transition: opacity 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
}


.carousel-control-prev,
.carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--verde-claro); /* verde escuro (troque se quiser roxo) */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0.9; /* visível, mas não 100% sólido */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); /* sombra para destacar */
  transition: background-color 0.3s, opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
   background-color: var(--verde-medio); /* verde escuro (troque se quiser roxo) */
}

.carousel-control-prev {
  left: 24px;
}

.carousel-control-next {
  right: 24px;
}

.carousel-custom-icon i {
  font-size: 1rem;  /* Tamanho do ícone */
  color: white;       /* Cor branca */
}

#searchInput {
  height: 45px;
  border-radius: 50px;
  padding: 0 1.2rem;
  font-size: 1rem;
  border: 1px solid var(--roxo-escuro);
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#searchInput:hover,
#searchInput:focus {
  border-color: rgba(94, 42, 132, 0.5); /* roxo com transparência */
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(94, 42, 132, 0.25); /* sombra estilo Bootstrap */
}


/* Ícone de lupa (desktop) */
.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1rem;
  pointer-events: none;
}

/* Sem hover na lupa */
.search-input:focus + .search-icon,
.search-input:hover + .search-icon {
  color: #6c757d;
}

/* === Botão Buscar (mobile) com estilo do Agendar === */
.btn-buscar-mobile {
  background-color: var(--verde-escuro);
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-buscar-mobile:hover {
  background-color: var(--verde-medio);
  color: #fff !important;

}

/* Centraliza no desktop e mobile */
#resultados {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

#resultados .result-card {
  margin-left: auto;
  margin-right: auto;
}

/* Largura máxima no desktop */
@media (min-width: 768px) {
  #resultados {
    max-width: 600px;
  }
}

/* Margens laterais no mobile */
@media (max-width: 767px) {
  #searchForm {
    padding-left: 15px;
    padding-right: 15px;
  }

  #searchInput {
    width: 100%;
  }

  #resultados {
    padding-left: 15px;
    padding-right: 15px;
  }
}

   

/* Estilo do card de resultado */
.result-card {
  background-color: var(--cinza-claro);
  border-left: 5px solid var(--verde-medio);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  text-align: center;
}

.result-card:hover {
  transform: scale(1.01);
}

/* Nome e especialidade */
.result-card h5 {
  color: var(--roxo-escuro);
  margin-bottom: 0.4rem;
}

.result-card small {
  color: #555;
  font-size: 0.95rem;
}

/* Botão Agendar */
.btn-search-ver{
  background-color: var(--verde-escuro);       /* roxo escuro */
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-search-ver:hover{
  background-color: var(--verde-medio);
  color: white !important; /* mantém branco no hover */
  transform: scale(1.05);
}
/* Botão Agendar */
.btn-search-agendar{
  background-color: var(--roxo-escuro);       /* roxo escuro */
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-search-agendar:hover{
  background-color: var(--roxo-medio);
  color: white !important; /* mantém branco no hover */
  transform: scale(1.05);
}

/* Loader de 3 pontinhos fluido */
.loader-dots {
  font-size: 1.5rem;
  line-height: 1;
}

.loader-dots .dot {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin: 0 0.15em;
  background-color: var(--roxo-escuro); /* ou a cor desejada */
  border-radius: 50%;
  animation: bounce 1s infinite ease-in-out;
}

.loader-dots .dot:nth-child(1) {
  animation-delay: 0s;
}
.loader-dots .dot:nth-child(2) {
  animation-delay: 0.15s;
}
.loader-dots .dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}



/* Seção Sobre */
.sobre {
  background-color: var(--cinza-claro); /* ou substitua por #f8f9fa, por ex. */
  padding: 60px 0;
}

.img-sobre {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-height: 400px; /* limita a altura */
  object-fit: cover; /* para manter a proporção e preencher */
}

/* para mobile, limitar mais a altura */
@media (max-width: 767px) {
  .img-sobre {
    max-height: 250px;
        margin-top: 2rem; /* espaço extra no mobile */
  }
}


/* Título com linha horizontal abaixo */
.titulo-sobre {
  font-size: 2rem;
  font-weight: 700;
  color: var(--roxo-escuro); /* ou uma cor fixa tipo #4a148c */
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.titulo-sobre::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--verde-escuro); /* ou algo como #2e7d32 */
  margin-top: 8px;
  border-radius: 2px;
}

/* Parágrafo com cor suave */
.texto-sobre {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .titulo-sobre {
    margin-top: 2rem; /* espaço entre imagem e título no mobile */
  }
}



 /* Seção larga de agendamento */
.agendamento-largo {
  width: 100vw;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Título da seção */
.titulo-agendamento {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--roxo-escuro);
  position: relative;
}

.titulo-agendamento::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--verde-escuro);
  margin: 10px auto 0;
  border-radius: 2px;
}

.btn-container {
  text-align: center;
  margin-bottom: 40px;
}

.btn-agendar {
  background-color: var(--verde-escuro);
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 1.3rem;
  border-radius: 30px;
  cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-agendar:hover {
  background-color: var(--verde-medio);
   transform: scale(1.05);
}

/* Layout horizontal */
.opcoes-agendamento {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.opcao-agendamento {
  display: flex;
  align-items: flex-start; /* alinha verticalmente o ícone e texto */
  gap: 20px;
  max-width: 100%;
  text-align: left;
  flex: 1 1 280px;
  padding: 10px;
}

.icone-circulo {
  background-color: var(--roxo-escuro);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.texto-opcao {
  flex: 1;
}

.texto-opcao strong {
  font-size: 1.1rem;
  color: var(--roxo-escuro);
  display: block;
  margin-bottom: 4px;
}

.texto-opcao p {
  margin: 0;
  color: #444;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsivo */
@media (max-width: 768px) {
  .opcao-agendamento {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icone-circulo {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .texto-opcao strong {
    font-size: 1rem;
  }
}


.areas-de-atuacao-total {
  background-color: var(--cinza-claro);
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
  box-sizing: border-box;
}


/* Título com linha abaixo */
.titulo-areas {
  font-size: 2rem;
  font-weight: 700;
  color: var(--roxo-escuro);
  position: relative;
}

.titulo-areas::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--verde-escuro);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Carrossel */
.area-carousel {
  position: relative;
  overflow: hidden;
}

.area-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Card de especialidade */
.area-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .area-card {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.card-atuacao {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: none;
  transition: transform 0.3s ease;
}

.card-atuacao:hover {
  transform: translateY(-4px);
}

.card-atuacao img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Botão dentro dos cards */
.btn-atuacao {
  background-color: var(--roxo-escuro);       /* roxo escuro */
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-atuacao:hover {
  background-color: var(--roxo-medio);
  color: white !important; /* mantém branco no hover */
  transform: scale(1.05);
}

.btn-nav {
  width: 42px;
  height: 42px;
  background-color: var(--roxo-escuro);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.btn-nav:hover:not(:disabled) {
  background-color: var(--roxo-medio);
}

.btn-nav:disabled,
.btn-nav[disabled] {
  opacity: 0.5 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  background-color: var(--roxo-medio,) !important;
  color: #aaa !important;
  box-shadow: none !important;
  border-color: var(--roxo-medio) !important;
}



/* Barra de progresso */
.progress-bar-wrapper {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-inner {
  height: 100%;
  background: var(--verde-escuro);
  width: 0%;
  transition: width 0.5s ease;
}

/* Botões de navegação */
.btn-nav {
  width: 42px;
  height: 42px;
  background-color: var(--roxo-escuro);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.btn-nav:hover {
  background-color: var(--roxo-medio);
}



.section-por-que-escolher {
  padding: 60px 20px;
  color: #333;
  text-align: center;
}

.titulo-principal {
  font-size: 2rem;
  font-weight: 700;
  color: var(--roxo-escuro, #5a2a83);
  position: relative;
  margin-bottom: 50px;
}

.titulo-principal::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--verde-escuro, #007b8f);
  margin: 10px auto 0;
  border-radius: 2px;
}

.blocos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.bloco {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 250px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  text-align: center;
}

.bloco:hover {
  transform: translateY(-10px);
}

.icone-topo {
  background-color: var(--verde-escuro, #007b8f);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.icone-topo i {
  font-size: 32px;
  color: #fff;
}


.bloco h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--roxo-escuro, #5a2a83);
}

.bloco h3 span {
  color: var(--roxo-escuro, #5a2a83);
  font-weight: 700;
}

.bloco p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

.avaliacoes-clientes {
  background-color: var(--cinza-claro);
  padding: 60px 0;
}

.avaliacoes-clientes .titulo-areas {
  color: var(--roxo-escuro);
  font-weight: 700;
}

.cards-avaliacoes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.card-avaliacao {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
  padding: 25px 20px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card-avaliacao:hover {
  transform: translateY(-5px);
}

.foto-cliente {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--verde-escuro);
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.nome-cliente {
  color: var(--roxo-escuro);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.comentario-cliente {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}


.separador-linha {
  border: none;
  border-top: 4px solid var(--verde-escuro);
  width: 50px;
  margin: 15px auto;
}

    .titulo-areas {
      font-size: 2rem;
      color: #4b1248;
      font-weight: bold;
      text-align: center;
      margin-bottom: 2rem;
    }

    .titulo-areas::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: #4b1248;
      margin: 8px auto 0;
      border-radius: 2px;
    }

      :root {
      --cinza-claro: #f8f9fa;
    }

    .titulo-areas {
      font-size: 2rem;
      color: #4b1248;
      font-weight: bold;
      text-align: center;
      margin-bottom: 2rem;
    }

    .titulo-areas::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: #4b1248;
      margin: 8px auto 0;
      border-radius: 2px;
    }

    .galeria-carousel {
      overflow: hidden;
      position: relative;
    }

    .galeria-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .galeria-card {
      width: 25%;
      padding: 5px;
      flex-shrink: 0;
    }

    .galeria-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .galeria-card img:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .btn-galeria {
      position: absolute;
      top: 50%;
      background-color: var(--roxo-escuro);
      color: white;
      border: none;
      width: 45px;
      height: 45px;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
    }

    .btn-galeria:disabled {
        background-color: #e3d4ec; /* Roxo claro */
  color: #a58bbd; /* Roxo mais escuro para o ícone */
  cursor: not-allowed;
  opacity: 0.8;
    }

    .galeria-prev:hover, .galeria-next:hover {
 background-color: var(--roxo-medio);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Sombra suave */
  transform: scale(1.1); /* Aumenta o botão um pouco */
  transition: all 0.3s ease; /* Transição suave */
}


    .galeria-prev { left: 5px; }
    .galeria-next { right: 5px; }

    @media (max-width: 768px) {
      .galeria-card {
        width: 50%;
      }

      .galeria-card img {
        height: 200px;
      }
    }

    /* Modal Slide Container */
    .modal-slide-container {
      width: 100%;
      max-width: 600px;
      aspect-ratio: 1 / 1;
      margin: 0 auto;
      position: relative;
    }

    #galeriaModalImagem {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      transition: transform 0.4s ease-in-out;
    }

    /* Slide Animations */
    .slide-left {
      transform: translate(100%, -50%);
    }

    .slide-right {
      transform: translate(-100%, -50%);
    }

    .slide-center {
      transform: translate(-50%, -50%);
    }

    /* Modal Buttons */
    #btnVoltar, #btnAvancar {
      background-color: var(--roxo-escuro);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      padding: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border: none;
      cursor: pointer;
      color: #ffffff;
      z-index: 1055;
    }

   #btnVoltar:hover, #btnAvancar:hover {
    background-color: var(--roxo-medio);
  color: #ffffff; /* Muda a cor do ícone para um roxo escuro, por exemplo */
  box-shadow: 0 0 10px rgba(75, 18, 72, 0.7); /* Sombra suave */
  transition: all 0.3s ease; /* Transição suave */
}


    #btnVoltar {
      left: calc(50% - 320px);
    }

    #btnAvancar {
      right: calc(50% - 320px);
    }

    @media (max-width: 768px) {
      .modal-slide-container {
        max-width: 300px;
      }

      #btnVoltar {
        left: calc(50% - 170px);
      }

      #btnAvancar {
        right: calc(50% - 170px);
      }
    }
    
  footer {
      background-color: var(--roxo-escuro);
      color: white;
      padding: 40px 0 20px;
    }
    footer h5 {
      position: relative;
      padding-bottom: 12px;
      margin-bottom: 16px;
      display: inline-block;
      color: white;
    }
    footer h5::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      height: 4px;
      width: 40px;
      background-color: var(--roxo-medio);
      border-radius: 4px;
    }
    .social-icons a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--verde-escuro);
      color: white;
      margin-right: 10px;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }
    .social-icons a:hover {
      background-color: var(--verde-claro);
      color: white;
      text-decoration: none;
    }
    iframe {
      border: 0;
      width: 100%;
      height: 150px;
      border-radius: 8px;
    }
    .footer-link {
      color: white;
      text-decoration: none;
    }
    .footer-link:hover {
      text-decoration: underline;
      color: #0d6efd;
    }
    hr.full-width-hr {
      border-top: 1px solid var(--verde-claro);
      width: 100%;
      margin: 1.5rem 0;
    }
    
    @media (max-width: 576px) {
  footer {
    margin-bottom: 80px; /* espaço suficiente para o botão fixo */
  }
}


 /* Modal mais estreito */
#modalProfissional .modal-dialog {
  max-width: 400px;
}

/* Imagem circular centralizada */
.modal-image-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 20px 10px;
}

.modal-img-top {
 
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%; /* círculo */
  border: 3px solid var(--roxo-escuro);
}

/* Texto centralizado e com cor principal */
#modalProfissional .modal-body .p-4 {
  text-align: center;
  padding-top: 0 !important;
  color: var(--texto-principal);
}

/* Nome e especialidade com estilo */
#modalNome {
  color: var(--verde-escuro);
  font-weight: bold;
}

#modalEspecialidade {
  color: var(--roxo-medio);
}

/* Links (telefone, redes) com cor */
#modalTelefoneLink {
  color: var(--verde-medio);
  text-decoration: none;
}
#modalTelefoneLink:hover {
  text-decoration: underline;
}

/* Redes sociais centralizadas */
#modalRedes {
  justify-content: center;
}
/* Estilo dos ícones sociais */
#modalRedes a i {
  color: var(--roxo-escuro); /* cor roxa */
  font-size: 1.5rem; /* aumenta o tamanho */
  transition: color 0.2s ease;
}

#modalRedes a i:hover {
  color: var(--roxo-medio); /* tom mais claro ao passar o mouse */
  transform: scale(1.05);
}


/* Descrição com texto mais escuro */
#modalDescricao {
  color: var(--texto-principal);
}

/* Remover borda do header */
#modalProfissional .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

/* Botão fechar (X) */
#modalProfissional .btn-close {
  filter: brightness(0.5);
}

/* Botão Agendar com cor personalizada */
#modalAgendarBtn {
  background-color: var(--roxo-escuro);
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 1.3rem;
  border-radius: 30px;
  cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
#modalAgendarBtn:hover {
  background-color: var(--roxo-medio);
    transform: scale(1.05);
}


/* Modal footer centralizado */
#modalProfissional .modal-footer {
  justify-content: center;
}
