/* Reset básico */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fffafa;
}

/* Cabeçalho */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #f8d7da; /* rosa aguado */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}



.logo {
  font-size: 22px;
  font-weight: bold;
  color: #e75480;
}

/* Menu desktop */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
  font-weight: bold;
  padding-left: 10px;
}

nav ul li a:hover {
  color: #e75480;
}

/* Menu mobile */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #e75480;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px 0;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: #e75480;
  }
}

/* Sessão "Quem sou eu" */
.sessao {
  padding: 30px 20px 50px;
  text-align: center;
  scroll-margin-top: 90px; /* para o menu sticky */
}

.sessao h2 {
  font-size: 28px;
  color: #e75480;
  margin-bottom: 20px;
}

/* Banner full width */
.banner {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 8px;
  margin-top: 20px;
}

/* Texto de apresentação */
.quem-texto {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.clinica-imagem {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 8px;
  margin-top: 20px;
}


/* Sessão Clínica */
.clinica {
  background-color: #fde2e4; /* rosa clarinho */
  padding: 50px 20px;
  text-align: center;
}

.clinica h2 {
  font-size: 28px;
  color: #e75480;
  margin-bottom: 20px;
}

.clinica-texto {
  max-width: 800px;
  margin: 10px auto 10px;
  font-size: 18px;
  color: #3d0022;
  line-height: 1.6;
}

/* Mapa */
.mapa iframe {
  width: 100%;
  border: 0;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  padding-bottom: 20px;
}






/* Sessão Procedimentos */
.procedimentos {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.procedimentos h2 {
  font-size: 28px;
  color: #e75480;
  margin-bottom: 40px;
}

/* Cards de procedimentos */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: #fde2e4; /* rosa clarinho para os cards */
  border-radius: 12px;
  padding: 20px;
  max-width: 250px;
  flex: 1 1 200px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card h3 {
  font-size: 20px;
  color: #e75480;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  color: #3d0022;
  line-height: 1.5;
}















.before-after-section {
  display: flex;
  background-color: #fde2e4; /* rosa clarinho */
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 40px 16px;
}
@media (min-width: 768px) {
  .before-after-section {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    padding: 60px;
  }

}

/* container (responsivo) */
.before-after-container {
  position: relative;
  width: 100%;
  max-width: 900px;   /* ajuste conforme desejar */
  aspect-ratio: 4 / 3; /* mantém proporção sem precisar height fixo */
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

/* imgs */
.before, .after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; /* evita conflito com pointer events do slider */
}

/* a imagem "depois" vai usando clip-path */
.after {
  z-index: 2;
  will-change: clip-path; /* hint para o browser otimizar */
}

/* a imagem "antes" fica por baixo */
.before {
  z-index: 1;
}

/* slider (linha + handle) */
.slider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  z-index: 3;
  cursor: ew-resize;
  user-select: none;
  touch-action: none; /* garante que arrastar o handle não gere scroll */
}

/* linha visual do slider */
.slider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 8px rgba(0,0,0,0.45);
}

/* bolinha para arrastar */
.slider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  border: 2px solid rgba(0,0,0,0.08);
}

/* foco acessível */
.slider:focus {
  outline: none;
}
.slider:focus::after {
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
}






.reviews-section {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.reviews-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.reviews-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
}

.review-card {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.review-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.review-card span {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

/* Animação do carrossel */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}






.cta-section {
  text-align: center;
  margin: 40px 0px;
}

.cta-button {
  display: inline-block;
  background-color: #E91E63; /* rosa da paleta do site */
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #d81b60; /* tom mais escuro no hover */
}











.site-footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

/* .footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-instagram svg {
  width: 24px;
  height: 24px;
  fill: #E91E63;/* rosa da paleta do site 
  transition: transform 0.3s;
}

.footer-instagram:hover svg {
  transform: scale(1.2);
} */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza horizontalmente */
  justify-content: center; /* centraliza verticalmente se houver altura definida */
  text-align: center;
  gap: 8px; /* espaçamento entre o texto e o ícone */
}

.footer-instagram {
  display: inline-flex;
  color: rgb(255, 0, 149);
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
  transition: transform 0.25s;
}

.footer-instagram:hover {
  transform: scale(1.12);
}

