* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #DDE9D0;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth; /* 🔧 Sugestão: melhora a navegação com âncoras */
}

/* Header e logo */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.foto-perfil {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foto-perfil:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.texto-header {
  text-align: left;
  max-width: 500px;
}

/* ✅ Alterado: cor e sombra para separar visualmente o header */
header {
  background-color: #DDE9D0;
  text-align: center;
  padding: 30px 20px;
  border-bottom: 2px solid #c4d7b2; /* 🔧 Sugestão */
}

header h1 {
  font-size: 2.5rem;
  color: #2e5d51;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #4a7c74;
}

/* Navegação */
nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #0077aa;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #0077aa;
}

nav ul li a:hover::after {
  width: 100%;
}

.atendo {
  text-align: left;
  max-width: 700px;
  margin: 2rem auto 2rem 0; 
  padding: 1rem 0;
  background-color: transparent;
  font-size: 1rem;
}

.atendo ul {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.atendo li {
  margin-bottom: 0.6rem;
}

.sessao {
  text-align: left;
  max-width: 700px;
  margin: 0 auto 1rem 0;
  padding: 1rem 0;
  line-height: 1.3;
  font-size: 1rem;
  color: #2c3e30; 
}

.sessao p {
  margin-bottom: 1.5rem;
}


/* Conteúdo principal */
main {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

/* Seção Sobre */
.sobre h2 {
  font-size: 2rem;
  color: #2e5d51;
  margin-bottom: 15px;
}

.sobre p {
  font-size: 1rem;
  color: #444; /* 🔧 Sugestão: contraste melhorado */
}

.duvidas {
  font-size: 1.1rem;
  color: #444; 
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 20px 0;
  line-height: 1.5;
}

.duvidas p{
  line-height: 1.8;
}

.agendamento {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}


.form-container {
  max-width: 400px;
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 10px;
  font-weight: bold;
}

form input,
form textarea {
  padding: 8px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  margin-top: 15px;
  padding: 10px;
  border: none;
  background-color: #4c7353;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background-color: #3b5f45;
}

.sobre p,
.duvidas p,
.atendo,
form textarea {
  text-align: justify;
  hyphens: auto;
}


/* Footer */
footer {
  background-color: #9BAE89;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Imagem de terapia */
#foto-terapia {
  width: 100%;
  max-width: 300px; /* melhor proporção para nitidez e tamanho */
  height: auto; /* mantém proporção original da imagem */
  border: 3px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  display: block;
  object-fit: cover; /* garante corte proporcional, se necessário */
}

.foto-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (max-width: 900px) {
  .agendamento {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .sobre p {
    font-size: 1rem;
  }

  .foto-perfil {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  main {
    padding: 20px;
  }

  header p {
    font-size: 1rem;
  }

  .sobre h2 {
    font-size: 1.5rem;
  }
}
