/* ===== RESET BÁSICO ===== */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #ddf6de;
    color: #4a4a4a;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #f6f7f6;
    font-weight: 500;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: url("images/sala.png") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 400;
    max-width: 800px;
    margin: 20px auto;
}

.subtitulo {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* ===== BOTÃO ===== */
.botao {
    background-color: #5f8f6f;
    color: white;
    padding: 15px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.botao:hover {
    background-color: #4a7359;
}

/* ===== SECTIONS GERAIS ===== */
section {
    padding: 80px 60px;
}

/* ===== SOBRE ===== */
.sobre {
  background-color: #e8edea;
  padding: 80px 10%;
}

.sobre-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sobre-imagem {
  flex: 1;
}

.sobre-imagem img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.sobre-texto {
  flex: 1;
}

.tag {
  letter-spacing: 4px;
  font-size: 14px;
  color: #4f6f63;
}

.sobre-texto h2 {
  font-size: 52px;
  font-weight: 300;
  margin: 15px 0 30px;
  color: #3c3c3c;
}

.sobre-texto p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

/* RESPONSIVO SOBRE */
@media (max-width: 900px) {
  .sobre-container {
    flex-direction: column;
  }

  .sobre-texto h2 {
    font-size: 36px;
  }
}

/* ============================================================
   SEÇÃO ATUAÇÃO - ESTILO GERAL
   ============================================================ */
.atuacao {
  position: relative;
  min-height: 100vh;
  /* Certifique-se que o caminho da imagem está correto */
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
              url("images/mamãe.png") no-repeat center center/cover;
  background-attachment: fixed;
  padding: 80px 5%;
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.atuacao-container-flex {
  display: flex;
  flex-direction: row-reverse; /* Texto na Direita, Cards na Esquerda */
  gap: 50px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  align-items: flex-start;
}

/* ============================================================
   COLUNA DA DIREITA (TEXTOS)
   ============================================================ */
.atuacao-col-texto {
  flex: 1.2;
  color: white;
}

.atuacao-texto h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.atuacao-texto h3 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.0;
  font-weight: 200;
  font-style: italic;
}

.atuacao-texto p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.95;

}

/* CAIXA LEIA MAIS (GLASSMORPHISM) */
.caixa-leitura {
  background: rgb(175, 164, 164);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3)
}

.caixa-leitura:hover {
  background: rgba(255, 255, 255, 0.15);
}

.caixa-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; 
   align-items: center;
   
  
}

.caixa-header h4 {
  font-size: 1.5rem;
  margin: 0;
  color: #3e3636;
  font-style: italic;
  
}

#seta-leitura {
  transition: transform 0.4s ease;
  font-size: 0.8rem;
}

.conteudo-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.caixa-leitura.aberta .conteudo-extra {
  max-height: 3000px; /* Suficiente para o texto longo */
  margin-top: 20px;
}

.conteudo-extra p {
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: justify;
   color: #fcfcfb;
  
}

.conteudo-extra ul {
  margin: 15px 0;
  padding-left: 20px;
}

.conteudo-extra ul li {
  margin-bottom: 8px;
}

.btn-trigger {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0.7;
}

/* ============================================================
   COLUNA DA ESQUERDA (CARDS)
   ============================================================ */
.atuacao-col-cards {
  flex: 1;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card-atuacao {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 30px 20px;
  color: white;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-atuacao:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ÍCONES DOS CARDS */
.card-icone {
  width: 65px;
  height: 65px;
  margin-bottom: 15px;
  object-fit: contain;
  /* Se os ícones forem pretos, isso os deixa brancos: */
  filter: brightness(0) invert(1); 
}

.card-atuacao h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0;
}

.card-atuacao.expanded .card-text {
  max-height: 200px;
  opacity: 1;
  margin-top: 15px;
}

/* ============================================================
   RESPONSIVIDADE (CELULAR)
   ============================================================ */
@media (max-width: 1024px) {
  .atuacao-container-flex {
    flex-direction: column; /* Texto em cima, cards embaixo */
    align-items: center;
    gap: 40px;
  }

  .atuacao-col-texto, .atuacao-col-cards {
    width: 100%;
    text-align: center;
  }
  
  .caixa-leitura {
    text-align: left;
  }

  .atuacao-texto h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .cards-container {
    grid-template-columns: 1fr; /* Cards ocupam a largura toda no celular */
  }
  
  .atuacao {
    background-attachment: scroll; /* Melhora o desempenho em celulares antigos */
    padding: 60px 20px;
  }
}



/* ===== ABORDAGEM ===== */
.abordagem {
  background-color: #e9e3df;
  padding: 80px 10%;
}

.abordagem-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.abordagem-texto {
  flex: 1;
}

.abordagem-texto h2 {
  font-size: 48px;
  font-weight: 300;
  margin: 15px 0 25px 0;
  color: #3b3b3b;
}

.abordagem-texto p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
}

blockquote {
  margin-top: 30px;
  padding-left: 15px;
  border-left: 4px solid #9bb7a5;
  font-style: italic;
  color: #6b6b6b;
}

.abordagem-imagem {
  flex: 1;
}

.abordagem-imagem img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVO ABORDAGEM */
@media (max-width: 900px) {
  .abordagem-container {
    flex-direction: column;
  }

  .abordagem-texto h2 {
    font-size: 36px;
  }
}

/* Estilos Gerais da Seção */
.depoimentos {
  background-color: #f9f7f2; /* Fundo suave da imagem */
  padding: 80px 20px;
  font-family: 'Playfair Display', serif; /* Fonte elegante recomendada */
  text-align: center;
}

.depoimentos-container {
  max-width: 1100px;
  margin: 0 auto;
}

.depoimentos-header .subtitulo {
  color: #8da6a0; /* Verde acinzentado do topo */
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: bold;
}

.depoimentos-header h2 {
  color: #333;
  font-size: 2.5rem;
  margin: 15px 0 50px;
  font-weight: 400;
}

/* Grid de Depoimentos */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Estilo do Card */
.card-depoimento {
  background-color: #fdfcf9;
  border: 1px solid #e8e4db;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.card-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.estrelas {
  color: #d8a3a3; /* Rosa seco da imagem */
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.aspas {
  color: #e2edea; /* Cor clara decorativa */
  font-size: 3rem;
  line-height: 1;
}

.texto-depoimento {
  font-family: 'Lora', serif; /* Fonte secundária para o corpo */
  font-style: italic;
  color: #7a736a;
  line-height: 1.6;
  font-size: 1.05rem;
  margin-bottom: 30px;
  flex-grow: 1;
}

.divisor {
  height: 1px;
  background-color: #eee;
  margin-bottom: 20px;
}

.autor .nome {
  display: block;
  font-weight: bold;
  color: #444;
  margin-bottom: 5px;
}

.autor .info {
  display: block;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 768px) {
  .depoimentos-header h2 {
    font-size: 1.8rem;
  }
}

:root {
  --cor-titulo: #59371b;
  --cor-texto-p: #3d2612;
  --cor-linha: #d1b2c4;
}

.faq-section {
  padding: 80px 20px;
  background-color: #fff;
  /* Para a ilustração ao fundo, use background-image */
  background-image: url('sala.png');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  font-family: sans-serif;
}

.faq-container {
  width: 100%;
  max-width: 800px;
  z-index: 2;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  color: var(--cor-titulo);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-header p {
  color: var(--cor-titulo);
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Estilo do Acordeão */
details {
  border-bottom: 1px solid var(--cor-linha);
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

summary {
  list-style: none; /* Remove a seta padrão */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: brown(--cor-titulo);
  outline: none;
}

/* Esconde o marcador padrão no Safari */
summary::-webkit-details-marker {
  display: none;
}

.icon {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

details[open] .icon {
  transform: rotate(180deg);
}

.content {
  padding: 20px 0;
  color: var(--cor-texto-p);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .faq-section {
    background-image: none; /* Remove imagem no mobile para melhor leitura */
  }
  
  .faq-header h2 {
    font-size: 1.8rem;
  }
}

/* ===== CONTATO ===== */
.contato {
    background-color: #e8edea;
    padding: 100px 10%;
    text-align: center;
}

.contato-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Ajuste para bater com a classe 'card' do seu HTML */
.contato-cards .card {
    background: #f4f1ee;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    min-width: 280px;
    transition: 0.3s;
}

.contato-cards .card:hover { transform: translateY(-5px); }

.btn-agendar {
    display: inline-block;
    padding: 18px 45px;
    background-color: #4f6f63;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    letter-spacing: 2px;
    font-weight: bold;
}

/* ===== RESPONSIVIDADE GERAL ===== */
@media (max-width: 900px) {
    header { padding: 20px; flex-direction: column; gap: 15px; }
    nav a { margin: 0 10px; }
    .sobre-container, .atuacao-container-flex, .abordagem-container {
        flex-direction: column !important;
        text-align: center;
    }
    .faq-section { background-image: none; }
}

/* ESTILO DO RODAPÉ */
.rodape-final {
    width: 100%;
    padding: 40px 0;
    background-color: #2c2421; /* Um marrom bem escuro e quente */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.rodape-conteudo {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Separa o nome da frase */
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap; /* Para funcionar bem no celular */
    gap: 20px;
}

.info-psicologa p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
}

.info-psicologa span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.frase-acolhimento p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

/* Deixa o coração com uma cor suave */
.frase-acolhimento p span {
    color: #e2a0a0;
}

.whatsapp-float {
    position: fixed;        /* Faz o botão "deslizar" e ficar fixo na tela */
    bottom: 30px;           /* Distância do fundo da página */
    right: 30px;            /* Distância da lateral direita */
    background-color: #25d366; /* Cor oficial do WhatsApp */
    color: #FFF;
    border-radius: 50px;    /* Deixa o botão arredondado */
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Sombra para dar profundidade */
    z-index: 9999;          /* Garante que o botão fique em cima de tudo */
    transition: transform 0.3s ease; /* Efeito suave ao passar o mouse */
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.whatsapp-float:hover {
    transform: scale(1.1);   /* O botão cresce levemente ao passar o mouse */
    background-color: #128c7e; /* Muda para um verde mais escuro no hover */
}

/* Esconde o texto no celular para não ocupar muito espaço (opcional) */
@media (max-width: 768px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        bottom: 20px;
        right: 20px;
    }
}