

/* --- GALERIA GALERIA GALERIA GALERIA GALERIA GALERIA GALERIA --- */

.galeria-container { display: flex; width: 100%; flex-direction: column; padding: 70px 20px; justify-content: center; align-items: center; }
.section-title { font-family: 'Bellefair', sans-serif; font-weight: 400; font-size: clamp(46px, 5vw, 64px); line-height: 1; color: #3f3315; text-align: center; }
.section-title span { color: var(--accent); }
.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; max-width: 1100px; margin: 0 auto; }
.galeria-grid img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px; cursor: pointer; transition: transform 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.galeria-grid img:hover { transform: scale(1.02); }
@media (max-width: 768px) { .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.galeria-lightbox { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.galeria-lightbox.ativo { opacity: 1; }
.galeria-lightbox-img { max-width: 85%; max-height: 80vh; border-radius: 4px; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.galeria-fechar { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; font-weight: bold; cursor: pointer; }
.galeria-nav { background: rgba(255, 255, 255, 0.1); border: none; color: white; font-size: 30px; padding: 15px; cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); border-radius: 50%; transition: background 0.3s; display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; }
.galeria-nav:hover { background: rgba(255, 255, 255, 0.3); }
.galeria-prev { left: 20px; }
.galeria-next { right: 20px; }
@media (max-width: 600px) { .galeria-nav { width: 45px; height: 45px; font-size: 20px; } .galeria-prev { left: 5px; } .galeria-next { right: 5px; } }
.section-divider { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 18px 0 40px; }
.section-divider span { width: 8px; height: 8px; border-radius: 50%; background:var(--accent); opacity: .9; box-shadow: 0 0 10px rgb(200 169 106 / .12); }
.section-divider span:nth-child(2) { width: 11px; height: 11px; opacity: 1; box-shadow: 0 0 14px rgb(200 169 106 / .22); }
/* --- GALERIA GALERIA GALERIA GALERIA GALERIA GALERIA GALERIA --- */



/* Estrutura Principal do Footer */
.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 20px 20px;
  font-family: inherit;
  position: relative;
}

.footer-container {
  max-width: 1200px; /* Largura máxima exata conforme solicitado */
  margin: 0 auto;
}

/* Grid de Colunas */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Estilos de Textos e Listas */
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent-hover);
}

/* Coluna 1: Lista de Contatos e SVGs */
.contact-info li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info svg {
  width: 18px;
  height: 18px;
  color: var(--accent); /* Pinta as linhas do SVG com a cor de destaque */
  flex-shrink: 0; /* Impede que o ícone amasse caso o texto ocupe duas linhas */
}

/* Coluna 2: Serviços */
.services ul li {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Coluna 3: Horários */
.schedule ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule ul li:last-child {
  border-bottom: none;
}

/* Copyright (Bottom) */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 999;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-content {
    gap: 30px;
  }
  
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}


/* AVALIAÇÕES GOOGLE MEU NEGÓCIO*/

/* Estilos da Seção */
.testimonial-section {
  background-color: var(--white); /* ou var(--bg) dependendo do fundo do seu site */
  padding: 60px 20px;
  font-family: inherit; /* Utiliza a fonte já setada no seu projeto */
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Setas de Navegação */
.nav-arrow {
  background: transparent;
  border: none;
  color: var(--border);
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  color: var(--accent-hover);
}

/* Conteúdo do Depoimento */
.testimonial-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* Avatar e Aspas */
.avatar-wrapper {
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
}

.quote-bg {
  position: absolute;
  top: -20px;
  left: -25px;
  font-size: 5rem;
  color: var(--bg);
  line-height: 1;
  font-family: serif;
  z-index: 0;
}

.client-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 4px solid var(--white);
  box-shadow: 0 4px 15px rgba(47, 43, 42, 0.08); /* Sombra suave usando a cor primary */
}

/* Texto, Estrelas e Identificação */
.testimonial-text {
  color: var(--secondary);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
}

.stars {
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.client-name {
  color: var(--primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.client-company {
  color: var(--accent); /* Adaptado para a paleta fornecida */
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .testimonial-carousel {
    position: relative;
  }
  
  .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .nav-arrow:first-child {
    left: -10px;
  }

  .nav-arrow:last-child {
    right: -10px;
  }
  
  .testimonial-content {
    padding: 0 30px; /* Dá espaço para as setas não encavalarem no texto */
  }
  
}


/* Container que segura todos os depoimentos */
.testimonial-track {
  max-width: 700px;
  flex: 1;
  position: relative;
  overflow: hidden; /* Esconde o que estiver fora do container */
}

/* Oculta todos os depoimentos por padrão */
.testimonial-content {
  display: none; 
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.5s ease forwards; /* Animação suave na entrada */
}

/* Mostra apenas o depoimento com a classe 'active' */
.testimonial-content.active {
  display: flex;
}

/* Keyframe para a transição suave */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* FAQ FAQ FAQ FAQ FAQ AQ FAQ FAQ FAQ FAQ AQ FAQ FAQ FAQ FAQ*/

.faq-section {

  padding: 90px 20px;
  background-color: var(--bg);
}

.faq-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-header {
  max-width: 700px;
  margin: 0 auto 45px;
  text-align: center;
}

.faq-header .section-divider {
  margin-bottom: 26px;
}

.faq-description {
  margin: 0;
  color: var(--secondary);
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: var(--accent);
}

.faq-item[open] {
  box-shadow: 0 12px 30px rgba(47, 43, 42, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 24px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: "";
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: var(--accent);
  transform: translate(-50%, -50%);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question:hover .faq-icon {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.faq-question:hover .faq-icon::before,
.faq-question:hover .faq-icon::after {
  background-color: var(--primary);
}

.faq-item[open] .faq-icon {
  background-color: var(--accent);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background-color: var(--primary);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 75px 24px 24px;
  color: var(--secondary);
  line-height: 1.7;
  animation: faq-open 0.3s ease;
}

.faq-answer p {
  margin: 0;
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 65px 16px;
  }

  .faq-header {
    margin-bottom: 32px;
  }

  .faq-question {
    gap: 16px;
    padding: 19px 18px;
  }

  .faq-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }
}



/* MAPA INTERATIVO DO SITE --- MAPA INTERATIVO DO SITE */

.clinic-map-section {
  --primary: #2F2B2A;
  --secondary: #6A5A4E;
  --accent: #C8A96A;
  --accent-hover: #D4B47A;
  --bg: #F8F5F1;
  --white: #FFFFFF;
  --border: #E8E1D8;

  padding: 70px 20px;
  background: var(--bg);
}

.clinic-map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.clinic-map-header {
  text-align: center;
}

#clinic-map {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #eee;
  box-shadow: 0 15px 40px rgba(47, 43, 42, 0.08);
}

/* Deixa o mapa mais discreto para combinar com o site */
#clinic-map .leaflet-tile-pane {
  filter: grayscale(100%) sepia(8%) brightness(0.97);
}

/* Marcador */

.clinic-marker {
  position: relative;
  width: 70px;
  height: 70px;
}

.clinic-marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.35);
  transform: translate(-50%, -50%);
  animation: clinic-radar 2.2s ease-out infinite;
}

.clinic-marker-pulse::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: rgba(200, 169, 106, 0.28);
  animation: clinic-radar 2.2s ease-out 1.1s infinite;
}

.clinic-marker-pin {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: 34px;
  height: 34px;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  box-shadow: 0 7px 18px rgba(47, 43, 42, 0.28);
  transform: rotate(-45deg);
}

.clinic-marker-pin::after {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--white);
}

@keyframes clinic-radar {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.4);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.4);
  }
}

/* Endereço que aparece sobre o mapa */

.clinic-map-tooltip {
  padding: 10px 14px !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: var(--primary) !important;
  background: var(--white) !important;
  box-shadow: 0 5px 20px rgba(47, 43, 42, 0.16) !important;
  text-align: center;
}

.clinic-map-tooltip::before {
  border-top-color: var(--white) !important;
}

.clinic-map-tooltip strong {
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
}

.clinic-map-tooltip span {
  color: var(--secondary);
}

/* Botões */

.clinic-map-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.clinic-route-btn {
  display: flex;
  width: 100%;
  max-width: 330px;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.clinic-route-google {
  border: 1px solid var(--accent);
  color: var(--white);
  background: var(--accent);
}

.clinic-route-google:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.clinic-route-waze {
  border: 1px solid var(--accent);
  color: var(--primary);
  background: transparent;
}

.clinic-route-waze:hover {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-2px);
}

.clinic-route-icon {
  font-size: 20px;
}

/* Leaflet */

#clinic-map .leaflet-control-zoom a {
  color: var(--primary);
}

#clinic-map .leaflet-control-attribution {
  font-size: 9px;
}

/* Mobile */

@media (max-width: 768px) {
  .clinic-map-section {
    padding: 55px 18px;
  }

  #clinic-map {
    height: 380px;
    border-radius: 14px;
  }

  .clinic-map-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .clinic-route-btn {
    max-width: none;
  }
}

@media (max-width: 480px) {
  #clinic-map {
    height: 340px;
  }
}