/* === Variáveis de cor: paleta suave, moderna e orgânica === */
:root {
  /* Paleta principal e neutros */
  --branco: #fff;
  --preto: #232323;
  --cinza-claro: #f6f6f4;
  --cinza-medio: #bdbdbd;

  /* Tons orgânicos e modernos */
  --rosa-claro:#7d8d7d ;
  --rosa-medio: #7d8d7d ;
  --rosa-escuro: #7d8d7d ;
  --roxo-suave: #b39ddb;
  --verde-acinzentado: #bfcfc2;
  --verde-musgo: #8fa58c;
  --marrom-suave: #bfa89e;
  --marrom-escuro: #8c6e63;

  /* Seções específicas */
  --marrom-act: #435743;
  --act-marrom: #bfa89e;
  --act-marrom-claro: #f3ebe7;
  --act-verde: #bfcfc2;
  --act-bege: #f6f6f4;

  --faq-verde: #bfcfc2;
  --faq-marrom: #bfa89e;
  --faq-bege: #f6f6f4;
  --faq-branco: #fff;

  --pilar-verde: #bfcfc2;
  --pilar-marrom: #bfa89e;
  --pilar-bege: #f6f6f4;
  --pilar-branco: #fff;

  --verde-whatsapp: #25d366;
}

/* Paleta orgânica para ACT */
:root {
  --act-marrom: #a97c50;
  --act-marrom-claro: #e9ded6;
  --act-verde: #b6c7a3;
  --act-bege: #f7f3ef;
}

/* Paleta orgânica para FAQ */
:root {
  --faq-verde: #b6c7a3;
  --faq-marrom: #a97c50;
  --faq-bege: #f7f3ef;
  --faq-branco: #fff;
}

/* Paleta orgânica para Pilares */
:root {
  --pilar-verde: #b6c7a3;
  --pilar-marrom: #a97c50;
  --pilar-bege: #f7f3ef;
  --pilar-branco: #fff;
}

/* === Reset básico e configurações globais === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--cinza-claro);
  color: var(--preto);
  line-height: 1.6;
}

h1, h2, h3 {
  color: #383934;
  font-weight: 600;
}

a {
  color: var(--rosa-escuro);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--roxo-suave);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === HEADER: Estilização do cabeçalho, logo e navegação === */
.header {
  background: #f6f6f2;
  color: #383934;
  padding: 0;
  border-bottom: 1px solid #e0e0e0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0px 0px 0px;
}

/* === Header e Footer === */
header, footer {
  background: var(--rosa-escuro);
  color: var(--branco);
  padding: 20px 0;
}

header h1 {
  font-size: 2rem;
  letter-spacing: 1px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: var(--branco);
  font-weight: 500;
  transition: color 0.2s;
}

header nav ul li a:hover {
  color: var(--roxo-suave);
}

footer {
  text-align: center;
  font-size: 1rem;
}

footer a {
  color: var(--branco);
  margin: 0 5px;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--verde-whatsapp);
}

/* === Hero Section === */
/* Estilo base para todas as seções com .hero */
.hero {
  background: linear-gradient(120deg, var(--rosa-claro), var(--roxo-suave));
  text-align: center;
  padding: 60px 20px 40px 20px;
  border-radius: 0 0 30px 30px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(201, 122, 155, 0.07);
}

.btn-agendar {
  display: inline-block;
  margin-top: 20px;
  background: var(--rosa-escuro);
  color: var(--branco);
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(201, 122, 155, 0.10);
  text-decoration: none;
}

.btn-agendar i {
  margin-right: 8px;
}

.btn-agendar:hover,
.btn-agendar:focus {
  background: var(--roxo-suave);
  color: var(--branco);
  box-shadow: 0 4px 16px rgba(179, 157, 219, 0.18);
  text-decoration: none;
  transform: scale(1.04);
}

/* === Imagem de perfil circular e centralizada === */
.foto-perfil {
  display: block;
  margin: 0 auto 20px auto;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--rosa-medio);
  box-shadow: 0 2px 12px rgba(201, 122, 155, 0.12);
}

/* === Espaço para perfil na seção sobre === */
.sobre-perfil {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(248, 225, 231, 0.85); /* Suave, usa o --rosa-claro translúcido */
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(191, 168, 158, 0.10);
  padding: 36px 28px;
}

.foto-perfil-grande {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--rosa-medio);
  box-shadow: 0 2px 16px rgba(201, 122, 155, 0.15);
  background: var(--cinza-claro);
}

.sobre-descricao {
  max-width: 420px;
  text-align: left;
}

/* === Seções principais === */
section {
  margin: 40px 0;
  padding: 0 20px;
}

.sobre-conteudo {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.sobre-conteudo p {
  flex: 1;
  min-width: 220px;
}

/* === Lista de serviços e pilares === */
#servicos ul, #pilares ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

#servicos li, #pilares li {
  background: var(--rosa-claro);
  padding: 18px 28px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(179, 157, 219, 0.08);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* === Depoimentos === */
.depoimentos-blocos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.depoimentos-blocos blockquote {
  background: var(--branco);
  border-left: 5px solid var(--rosa-escuro);
  padding: 18px 22px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 2px 8px rgba(201, 122, 155, 0.07);
}

/* === Formulário de contato === */
form {
  background: var(--branco);
  padding: 28px 22px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(201, 122, 155, 0.08);
  max-width: 400px;
  margin: 0 auto 18px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form input, form textarea {
  border: 1.5px solid var(--rosa-medio);
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  background: var(--cinza-claro);
  resize: none;
  transition: border 0.2s;
}

form input:focus, form textarea:focus {
  border: 1.5px solid var(--rosa-escuro);
  outline: none;
}

form button[type="submit"] {
  background: var(--rosa-escuro);
  color: var(--branco);
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

form button[type="submit"]:hover {
  background: var(--roxo-suave);
  transform: scale(1.03);
}

/* === Botão flutuante do WhatsApp === */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--verde-whatsapp);
  color: var(--branco);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.18);
  z-index: 1000;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.08);
}

/* === FAQ estilizado === */
.faq-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--faq-branco);
  box-shadow: 0 2px 12px rgba(169, 124, 80, 0.08);
  overflow: hidden;
  border-left: 6px solid #435743;
  transition: box-shadow 0.2s;
}

.faq-item.open,
.faq-item:hover {
  box-shadow: 0 6px 24px rgba(169, 124, 80, 0.14);
}

.faq-question {
  width: 100%;
  background: var(--faq-verde);
  color: #383934;
  border: none;
  outline: none;
  padding: 18px 24px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  border-radius: 18px 18px 0 0;
}

.faq-question:hover,
.faq-question.active {
  background: #7d8d7d ;
  color: var(--faq-branco);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--faq-bege);
  color: #383934 ;
  padding: 0 24px;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 1rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 16px 24px;
}

@media (max-width: 700px) {
  body,
  .container,
  section,
  .intro-content,
  .sintomas-container,
  .acolhimento-content,
  .atendimentos-container,
  .sobre-container,
  .act-timeline,
  .faq-list {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
  }
  .intro-content,
  .sobre-container,
  .acolhimento-content,
  .atendimentos-container {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* === ACT Timeline */
.act-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 32px;
  gap: 0;
}

.act-step {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
  position: relative;
}

.act-step:nth-child(even) {
  justify-content: flex-end;
}

.act-card {
  background: var(--marrom-act);
  color: #fff;
  padding: 11px 14px;
  border-radius: 8px;
  margin: 8px 0;
  max-width: 98%;    /* Aumenta o espaço horizontal ocupado */
  font-size: 1.0rem;
  box-shadow: 0 2px 12px rgba(48, 44, 41, 0.1);
  text-align: left;
  font-family: inherit;
  position: relative;
}

/* Linha conectando os cards */
.act-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 2px;
  height: 9px;
  background: var(--marrom-act);
  transform: translateX(-50%);
  z-index: 0;
}

@media (max-width: 700px) {
  .act-step,
  .act-step:nth-child(even) {
    justify-content: center;
  }
  .act-card {
    margin: 14px 0;
    max-width: 98vw;
    padding: 18px 10px;
    font-size: 1rem;
  }
}

/* Responsivo */
@media (max-width: 600px) {
  .act-card {
    padding: 16px 10px;
    font-size: 1rem;
    max-width: 98vw;
  }
  .container {
    padding: 0 10px;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
    background: var(--rosa-escuro);
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    display: none; /* Exibir via JS se desejar menu mobile */
  }

  .sobre-conteudo {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  #servicos ul, #pilares ul, .depoimentos-blocos {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

  .hero {
    padding: 40px 10px 24px 10px;
  }

  form {
    padding: 18px 8px;
  }

  .sobre-perfil {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .sobre-descricao {
    text-align: center;
  }
}

/* Estilo para a seção intro */
.hero-intro {
  background: #dee3c2 !important;
  color: #535e1b;
  padding: 56px 0 48px 0;
  border-radius: 0 0 36px 36px;
}

.intro-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.intro-texto {
  flex: 2;
}

.intro-texto h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 24px;
  color: #535e1b ;
}

.intro-texto p {
  font-size: 1.2rem;
  color: #535e1b;
  margin-bottom: 0;
}

.intro-foto-label {
  flex: 1;
  display: flex;
  align-items: center;
  background: #8fa89b;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0001;
  padding: 10px 28px 10px 10px;
  gap: 12px;
  max-width: 340px;
}

.intro-foto-label img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #e0e0e0;
}

.intro-foto-label span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.intro-foto-cheia {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
}

.intro-foto-cheia img {
  width: 500px;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 4px 24px #0002;
  object-fit: cover;
  background: #e0e0e0;
}

@media (max-width: 900px) {
  /* Ajusta o header */
  .header-container {
    flex-direction: column;
    align-items: center;
    padding: 16px 8px 0 8px;
  }
  .header-logo {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .header-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
  }

  /* Ajusta a seção intro */
  .intro-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 10px;
  }
  .intro-texto, .intro-foto-cheia {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .intro-foto-cheia img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  /* Ajusta a seção sobre */
  .sobre-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 10px;
  }
  .sobre-foto img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
  .sobre-conteudo {
    width: 100%;
    text-align: center;
    padding: 0;
  }
}

/* Personalização individual de cada seção */
.hero-intro {
  background: linear-gradient(120deg, var(--rosa-claro), var(--roxo-suave));
}

.hero-atendimentos {
  background: linear-gradient(120deg, var(--roxo-suave) 60%, var(--rosa-medio) 100%);
}

.hero-pilares {
  background: linear-gradient(120deg, var(--rosa-medio) 60%, var(--rosa-claro) 100%);
}

.hero-act {
  background: linear-gradient(120deg, #f6f6f2  60%, var(--branco) 100%);
}

.hero-sobre {
  background: linear-gradient(120deg, var(--rosa-claro) 60%, var(--verde-acinzentado) 100%);
}

.hero-faq {
  background: linear-gradient(120deg, #f6f6f2 60%, #e0f5e6 100%);
}

.hero-agendamento {
  background: linear-gradient(120deg, var(--rosa-medio) 60%, var(--roxo-suave) 100%);
}

.hero-contato {
  background: linear-gradient(120deg, var(--roxo-suave) 60%, var(--rosa-claro) 100%);
}

/* Opcional: destaque nos títulos de cada seção */
.hero h2 {
  margin-bottom: 18px;
  color: #383934 ;
  font-size: 2rem;
  letter-spacing: 1px;
}

/* Tooltip customizado para os pilares */
.tooltip {
  position: relative;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 240px;
  background: var(--roxo-suave);
  color: var(--branco);
  text-align: left;
  border-radius: 8px;
  padding: 10px 14px;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.98rem;
  box-shadow: 0 2px 8px rgba(179,157,219,0.18);
}

.tooltip:hover .tooltiptext,
.tooltip:focus .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Carrossel de fundo no header */
.header-carousel {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  animation: carousel-bg 16s infinite;
  transition: background-image 1s;
}

@keyframes carousel-bg {
  0%   { background-image: url('images/bg1.jpg'); }
  25%  { background-image: url('images/002.jpg'); }
  50%  { background-image: url('images/003.jpg'); }
  75%  { background-image: url('images/004.jpg'); }
  100% { background-image: url('images/bg1.jpg'); }
}

/* Opcional: sobreposição para melhorar contraste do texto */
.header-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.35); /* escurece um pouco */
  z-index: 1;
}

.header-carousel .container {
  position: relative;
  z-index: 2;
}

/* Atendimentos */
.atendimentos-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.atendimentos-texto {
  flex: 1;
  min-width: 260px;
  max-width: 600px;
}
.atendimentos-img img {
  width: 220px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(201, 122, 155, 0.12);
}

/* ACT já está estilizado em escada, mantenha o CSS atual */

/* Sobre */
.sobre-perfil {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(248, 225, 231, 0.85); /* Suave, usa o --rosa-claro translúcido */
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(191, 168, 158, 0.10);
  padding: 36px 28px;
}

.foto-perfil-grande {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--rosa-medio);
  box-shadow: 0 4px 24px rgba(201, 122, 155, 0.15);
  background: var(--cinza-claro);
}

.sobre-descricao {
  max-width: 420px;
  color: var(--marrom-escuro);
  font-size: 1.12rem;
  font-family: 'Georgia', serif;
  line-height: 1.6;
}

.sobre-descricao p {
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .sobre-perfil {
    flex-direction: column;
    gap: 24px;
    padding: 24px 10px;
  }
  .sobre-descricao {
    text-align: center;
  }
}

/* Agendamento */
.agendamento-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.agendamento-texto {
  flex: 1;
  min-width: 260px;
  max-width: 500px;
}
.agendamento-img img {
  width: 180px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(201, 122, 155, 0.12);
}

/* Responsivo */
@media (max-width: 900px) {
  .atendimentos-content,
  .agendamento-content,
  .sobre-perfil {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }
  .atendimentos-texto,
  .agendamento-texto,
  .sobre-descricao {
    text-align: center;
  }
}

/* Estilo para perguntas anônimas */
.anonimo-box {
  background: var(--branco);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(179,157,219,0.08);
  max-width: 480px;
  margin: 32px auto 0 auto;
  padding: 32px 24px 18px 24px;
  text-align: center;
}

.anonimo-box p {
  color: var(--roxo-suave);
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.anonimo-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1.5px solid var(--rosa-medio);
  padding: 14px;
  font-size: 1rem;
  margin-bottom: 16px;
  resize: vertical;
  background: var(--cinza-claro);
  color: var(--preto);
  transition: border 0.2s;
}

.anonimo-form textarea:focus {
  border-color: var(--roxo-suave);
  outline: none;
}

.anonimo-form button {
  background: var(--roxo-suave);
  color: var(--branco);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(179,157,219,0.10);
}

.anonimo-form button:hover {
  background: var(--rosa-medio);
}

.anonimo-info {
  display: block;
  margin-top: 12px;
  color: var(--cinza-medio);
  font-size: 0.95rem;
}

/* === ACT   */
.act-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.act-step {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.act-step:nth-child(even) {
  justify-content: flex-end;
}

.act-card {
  background: linear-gradient(120deg, #7d8d7d  80%, var(--act-verde) 100%);
  color: #f6f6f2;
  padding: 28px 32px;
  border-radius: 32px 32px 32px 8px;
  margin: 18px 0;
  max-width: 420px;
  font-size: 1.08rem;
  box-shadow: 0 4px 24px rgba(169, 124, 80, 0.10);
  text-align: left;
  font-family: 'Georgia', serif;
  border-left: 6px solid #435743;
  position: relative;
  transition: box-shadow 0.2s;
}

.act-card strong {
  color: #f6f6f2;
  font-size: 1.08em;
}

.act-card:hover {
  box-shadow: 0 8px 32px rgba(169, 124, 80, 0.18);
  background: linear-gradient(120deg, var(--act-verde) 80%, var(--act-marrom-claro) 100%);
}

.act-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 3px;
  height: 32px;
  background: var(--act-marrom);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 2px;
  opacity: 0.25;
}

/* Seção Pilares */
.hero-pilares {
  background: linear-gradient(90deg, #f6f6f2 60%, #d6e7d0 100%);
  padding: 56px 0 48px 0;
}

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

.hero-pilares h2 {
  color: #171815;
  font-size: 2.3rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin-bottom: 32px;
}

.pilares-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: flex-start;
}

.pilar-item {
  width: 45%;
  max-width: 320px;
  min-width: 220px;
  background: #7d8d7d;
  color: #fff;
  border-radius: 18px;
  padding: 12px 10px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(125,141,125,0.08);
  position: relative;
  margin-bottom: 0;
}

/* Descrição oculta por padrão */
.pilar-desc {
  display: none;
  font-size: 0.98rem;
  font-weight: 400;
  background: #f6f6f2;
  color: #383934;
  border-radius: 0 0 14px 14px;
  margin-top: 8px;
  padding: 10px 8px;
  text-align: left;
}

/* Mostra descrição ao clicar */
.pilar-item.ativo .pilar-desc {
  display: block;
}

/* Deixa o card mais escuro ao abrir */
.pilar-item.ativo {
  background: #5e6e5e;
}

/* No mobile, cards em coluna */
@media (max-width: 900px) {
  .pilares-lista {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .pilar-item {
    width: 95%;
    max-width: 98vw;
    padding: 10px 4px;
    font-size: 1rem;
  }
  .pilar-desc {
    font-size: 0.95rem;
    padding: 8px 4px;
  }
}

/* === Header Customizado === */
.header {
  background: #f6f6f2;
  color: #383934;
  padding: 0;
  border-bottom: 1px solid #e0e0e0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0px 0px 0px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  height: 200px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
}

.header-title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.1;
}

.header-title .sobrenome {
  display: block;
  font-weight: 700;
}

.header-crp {
  font-size: 1rem;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  color: #383934;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}

.header-nav .header-btn {
  background: #95b8b3;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 1px 4px #0001;
}

.header-nav a:hover {
  background: #e0e0e0;
  color: #383934;
}

/* === Sintomas - Novo Estilo === */
.bloco-sintomas {
  background: #fff;
  padding: 48px 0 32px 0;
  text-align: center;
}

.bloco-sintomas.hero-act {
  background: #f6f6f2 ;
  color: #383934;
  padding: 56px 0 48px 0;
  border-radius: 0 0 36px 36px;
}

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

.bloco-sintomas h2 {
  color: #383934 ;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 36px;
  font-family: 'Georgia', serif;
  letter-spacing: 0.01em;
}

.sintomas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 36px;
  margin-bottom: 32px;
  justify-items: center;
}

.sintoma-card {
  background: linear-gradient(135deg, #d6e7d0 80%, #fff 100%);
  border-radius: 0;
  box-shadow: 8px 8px 0 #d4e9d4 ;
  padding: 32px 28px 28px 28px;
  font-size: 1.15rem;
  color: #383934;
  font-family: 'Segoe UI', Arial, sans-serif;
  box-sizing: border-box;
  min-height: 160px;
  max-width: 480px;
  width: 100%;
  text-align: left;
  border-left: 6px solid #435743 ;
  border-bottom: none;
  border-top: none;
  border-right: none;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s, color 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sintoma-card:hover {
  box-shadow: 12px 12px 24px #7d8d7d44;
  border-left: 6px solid #7d8d7d;
  background: linear-gradient(135deg, #7d8d7d 90%, #d6e7d0 100%);
}

.sintomas-rodape {
  color: #7d8d7d;
  font-weight: 600;
  font-size: 1.08rem;
  margin-top: 18px;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .sintomas-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sintoma-card {
    min-height: 110px;
    padding: 24px 12px;
    max-width: 100%;
  }
}

/* === Bloco de Acolhimento === */
.bloco-acolhimento {
  background: linear-gradient(120deg, #f6f6f2 60%, #d6e7d0 100%);
  padding: 64px 0 56px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  box-shadow: 0 8px 32px #7d8d7d22;
  position: relative;
  overflow: hidden;
}

.acolhimento-content {
  max-width: 900px;
  margin: 0 32px;
  background: #fff;
  border-left: 8px solid #7d8d7d;
  padding: 40px 48px;
  box-shadow: 0 4px 24px #7d8d7d18;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeInUp 1s;
}

.acolhimento-content h2 {
  color: #7d8d7d;
  font-size: 2rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.acolhimento-content p {
  color: #383934;
  font-size: 1.18rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.acolhimento-btn {
  margin-top: 32px;
  background: #7d8d7d;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px #7d8d7d33;
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.acolhimento-btn:hover {
  background: #95b8b3;
  box-shadow: 0 4px 16px #7d8d7d44;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 700px) {
  body,
  .container,
  section,
  .intro-content,
  .sintomas-container,
  .acolhimento-content,
  .atendimentos-container,
  .sobre-container,
  .act-timeline,
  .faq-list {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
  }
  .intro-content,
  .sobre-container,
  .acolhimento-content,
  .atendimentos-container {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* === Bloco de Atendimentos === */
.bloco-atendimentos {
  background: #f6f6f2;
  padding: 64px 0 56px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}



.bloco-atendimentos h2 {
  color: #383934 ;
  font-size: 2rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.atendimentos-lista {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  align-items: stretch;
  position: relative;
  min-height: 520px;
}

.atendimento-card {
  background: linear-gradient(120deg, #d6e7d0 90%, #f6f6f2 100%);
  border: 2px solid #7d8d7d;
  border-radius: 12px;
  box-shadow: none;
  padding: 32px 28px;
  color: #383934;
  font-size: 1.13rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-align: left;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 120px;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.atendimento-card.card-esquerda {
  align-self: flex-start;
  margin-left: 0;
}

.atendimento-card.card-direita {
  align-self: flex-end;
  margin-right: 0;
}

/* Linha diagonal ligando os cards */
.atendimentos-lista::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 70px;
  width: calc(100% - 80px);
  height: calc(100% - 350px);
  border-left: 3px solid #95b8b3;
  transform: skewY(-18deg);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .atendimento-card,
  .atendimento-card.card-direita,
  .atendimento-card.card-esquerda {
    align-self: stretch;
    max-width: 98vw;
    padding: 20px 10px;
    margin-left: 0;
    margin-right: 0;
  }
  .atendimentos-lista::before {
    display: none;
  }
}

/* === Bloco Sobre - Novo Estilo === */
.bloco-sobre.bloco-azul {
  background: #dee3c2;
  padding: 56px 0 48px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-container {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}

.sobre-foto {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
}

.sobre-foto img {
  width: 500px;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 2px 16px #0003;
  background: #fff;
  object-fit: cover;
}

.sobre-conteudo {
  flex: 1;
  color: #535e1b;
  font-size: 1.13rem;
  line-height: 1.7;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sobre-agende {
  margin-top: 18px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.sobre-agende-btn {
  margin-top: 24px;
  background: #535e1b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.13rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px #0002;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  align-self: flex-start;
}

.sobre-agende-btn:hover {
  background: #bed3be ;
  color: #fff;
  box-shadow: 0 4px 18px #7d8d7d44;
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
  }
  .header-info, .header-foto, .header-col {
    padding: 0;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .header-nav ul {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    padding: 0;
  }
  .foto-perfil-header {
    width: 90px;
    height: 90px;
    margin-top: 12px;
  }
  .logo-img {
    margin-bottom: 8px;
  }
}

/* Menu toggle para mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--preto);
  cursor: pointer;
  margin-left: 16px;
}

.menu-close {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--preto, #383934);
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 101;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
    flex-direction: column;
    background: var(--branco);
    position: absolute;
    top: 70px; /* ajuste conforme seu header */
    right: 16px;
    box-shadow: 0 2px 12px rgba(125,141,125,0.10);
    border-radius: 12px;
    z-index: 100;
    min-width: 180px;
    padding-top: 36px;
  }
  .header-nav.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .menu-close {
    display: block;
  }
  .header-container {
    position: relative;
  }
  .header-nav a {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    color: var(--preto);
    text-align: left;
  }
  .header-nav a:last-child {
    border-bottom: none;
  }
}

/* Fonte padrão para 
 */
body, p, li, a, button, input, textarea, label, .sobre-conteudo, .faq-answer, .act-card, .pilar-desc, .sintoma-card, .atendimento-card {
  font-family: 'Amaranth', Arial, sans-serif;
}

/* Mantém fontes dos títulos como estão */
h1, h2, h3, h4, h5, h6 {
  /* Aqui permanece sua fonte de títulos, ex: */
  font-family: 'Georgia', serif;
}
/* ...adicione ao final do seu style.css... */

/* Seção Instagram inspirada na print */
.bloco-instagram {
  background: #f6f6f2 ;
  padding: 48px 0 56px 0;
  text-align: center;
}

.instagram-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.instagram-titulo {
  font-family: 'Georgia', serif; /* Use a fonte dos títulos do seu site */
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #222;
  letter-spacing: 1px;
}

.instagram-user {
  font-family: 'Amaranth', Arial, sans-serif;
  font-size: 1.18rem;
  color: #222;
  text-decoration: none;
  font-style: italic;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.instagram-user:hover {
  color: #7d8d7d;
  text-decoration: underline;
}

.instagram-galeria {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.instagram-galeria a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(125,141,125,0.10);
  transition: transform 0.18s, box-shadow 0.18s;
  background: #dee3c2;
}

.instagram-galeria a:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(125,141,125,0.18);
}

.instagram-galeria img {
  display: block;
  width: 260px;
  height: 260px;
  object-fit: cover;
  background: #dee3c2;
}

/* Responsivo */
@media (max-width: 900px) {
  .instagram-galeria {
    gap: 14px;
  }
  .instagram-galeria img {
    width: 98vw;
    max-width: 340px;
    height: auto;
  }
}