:root {
  --bege: #f5f0e6;
  --bege-escuro: #d9cbb1;
  --texto: #3a3a3a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--bege);
  color: var(--texto);
  line-height: 1.6;
}
/* Estilos gerais do header */
header {
  background-color: #fef7f0;
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.header-content {
  max-width: 600px;
  margin: 0 auto;
}

.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e0d4c1;
  margin-bottom: 1rem;
  background-color: rgb(238, 238, 134);
}

/* Nome */
.header-content h1 {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  margin: 0.2rem 0;
  color: #5a4637;
}

/* CRP */
.crp {
  font-size: 1rem;
  color: #7c6f60;
  margin-bottom: 1.5rem;
}

/* Frase de impacto */
.frase-impacto {
  font-size: 1.2rem;
  font-style: italic;
  color: #8a6f4d;
  background-color: #f8efe5;
  padding: 1rem;
  border-left: 4px solid #d3bfa8;
  border-radius: 8px;
  display: inline-block;
  margin-top: 0.5rem;
}


header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
}
/* Seção sobre / atendimento */
.sobre {
  background-color: #fffaf4;
  padding: 4rem 1.5rem;
  text-align: center;
}

.sobre .container {
  max-width: 700px;
  margin: 0 auto;
}

.sobre h2 {
  font-size: 1.8rem;
  color: #5a4637;
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
}

.sobre p {
  font-size: 1.1rem;
  color: #6f6256;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.botao-whatsapp {
  background-color: #25d366;
  color: white;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.botao-whatsapp:hover {
  background-color: #1ebc57;
}

.icon-whats {
  width: 20px;
  height: 20px;
}

/* Section padrão */
section {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  margin-bottom: 2rem;
  text-align: center;
}

/* Accordion */
.accordion {
  background-color: var(--bege-escuro);
  color: var(--texto);
  cursor: pointer;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  text-align: left;
  outline: none;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.accordion:hover {
  background-color: #c8b89d;
}

.panel {
  padding: 0 1rem;
  background-color: white;
  display: none;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  margin-bottom: 1rem;
}
.texto-terapia {
  background-color: #fefaf6;
  padding: 4rem 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3e3e3e;
}

.texto-terapia .container {
  max-width: 800px;
  margin: 0 auto;
}

.texto-terapia h2 {
  font-size: 2rem;
  color: #a87e6e;
  margin-bottom: 1.5rem;
  text-align: center;
}

.texto-terapia p {
  text-align: justify;
  margin-bottom: 1.5rem;
}



.depoimentos {
  background-color: #fffaf3;
  padding: 4rem 1rem;
  text-align: center;
  color: #4d4d4d;
  overflow: hidden;
}

.depoimentos h2 {
  font-size: 2rem;
  color: #a87e6e;
  margin-bottom: 2rem;
}

.carrossel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carrossel-linha {
  display: flex;
  gap: 2rem;
  animation: deslizar 10s linear infinite;
}

.depoimento {
  display: flex;
  align-items: center;
  min-width: 300px;
  background-color: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.depoimento img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
  border: 2px solid #e2cfc3;
}

.depoimento .texto {
  text-align: left;
}

.depoimento .texto p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.depoimento .nome {
  font-weight: bold;
  color: #a87e6e;
  margin-top: 0.3rem;
}

@keyframes deslizar {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.accordion {
  display: flex;
  align-items: center;
  justify-content: space-between; /* ícone + texto à esquerda, seta à direita */
  background-color: #f5e8d9;
  color: #333;
  cursor: pointer;
  padding: 1rem 1.5rem;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  gap: 0.5rem;
}

.icone-titulo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.seta {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  user-select: none;
}

/* Gira a seta quando o acordeão estiver aberto */
.accordion.active .seta {
  transform: rotate(180deg);
}


/* Frases */
.frases {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.frase {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background-color: var(--bege-escuro);
  color: white;
  text-align: center;
  padding: 1rem;
}
