/* -----------------------------------
   ESTILO GERAL
----------------------------------- */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fefbf9;
  color: #333;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  color: #7a56b2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* -----------------------------------
   CABEÇALHO
----------------------------------- */
/* ------------------------------
   CABEÇALHO / HEADER HARMONIZADO
------------------------------ */
.cabecalho {
  background: linear-gradient(to bottom, #7a56b2 0%, #faf7fc 60%, #fefbf9 100%);
  border-bottom: 1px solid #d8c8f0; /* linha lilás suave */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Ajuste fino do cabeçalho */
.cabecalho {
  padding: 10px 4%;
}

.cabecalho .logo-area h1,
.cabecalho .logo-area span,
.cabecalho .logo-area p {
  font-size: 1.3rem; /* reduz o tamanho do texto principal */
  line-height: 1.4;
  word-spacing: 1px;
}

.menu-nav a {
  font-size: 0.95rem; /* diminui levemente o tamanho dos links */
  letter-spacing: 0.3px;
}

.logo {
  width: 42px; /* reduz um pouco o tamanho da logo */
  height: auto;
}

/* quando rola a página, o cabeçalho clareia levemente */
.cabecalho.scrolled {
  background: #faf7fc;
  border-bottom: 1px solid #e5daf9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* mantém o texto legível e delicado */
.menu-nav a {
  font-weight: 600; /* deixa o texto em negrito */
  color: #4a3d52;
  transition: color 0.3s ease, transform 0.3s ease;
}

.menu-nav a:hover {
  color: #7a56b2;
  transform: translateY(-2px); /* leve movimento ao passar o mouse */
}

.menu-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  white-space: nowrap;   /* 🔥 impede quebra de linha */
  flex-wrap: nowrap;     /* 🔥 força tudo na mesma linha */
}


/* Cor oficial do botão do WhatsApp */
.whatsapp-btn img {
  background-color: #25D366; /* verde oficial */
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
  background-color: #1DA851; /* tom mais escuro no hover */
}

/* -----------------------------------
   HERO SECTION
----------------------------------- */
/* ------------------------------
   HERO SECTION - harmonizada
------------------------------ */
.hero {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #faf7fc 30%, #fefbf9 100%);
  padding-top: 25px; /* leve espaço acima da imagem */
  padding-bottom: 25px; /* leve espaço abaixo da imagem */
  border-radius: 0 0 30px 30px;
}

/* imagem centralizada e com transição suave */
.hero-img {
  width: 85%; /* aumenta um pouco o tamanho da imagem */
  height: auto;
  max-height: 520px; /* altura máxima maior */
  object-fit: cover; /* cobre mais espaço mantendo proporção */
  object-position: center;
  filter: brightness(0.98);
  opacity: 0;
  transform: scale(1.02);
  animation: fadeInHero 3s ease forwards;
  transition: transform 6s ease, filter 3s ease;
  display: block;
  margin: 0 auto;
  border-radius: 20px; /* bordas mais suaves */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* leve profundidade */
}

/* efeito leve de zoom ao passar o mouse */
.hero-img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

/* animação de fade-in */
@keyframes fadeInHero {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ------------------------------
   HERO TEXT - Fade-in suave
------------------------------ */
/* ------------------------------
   HERO TEXT com fade-in suave
------------------------------ */
.hero-text {
  text-align: center;
  padding: 60px 20px;
  background-color: #fefbf9;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInText 2.5s ease forwards;
  animation-delay: 2s; /* começa após a imagem aparecer */
}

.hero-text h2 {
  color: #7a56b2;
  font-size: 1.9rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-text p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* animação para o texto */
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* botão entra com leve atraso e movimento */
.btn-agendar {
  display: inline-block;
  background-color: #7a56b2;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInButton 2s ease forwards;
  animation-delay: 3.5s; /* entra depois do texto */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-agendar:hover {
  background-color: #9b7ed8;
  transform: translateY(-3px);
}

/* animação do botão */
@keyframes fadeInButton {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------------
   SEÇÃO SOBRE
----------------------------------- */
.sobre {
  text-align: center;
  padding: 60px 10%;
  background-color: #faf7fc;
}

.sobre p {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
}

/* -----------------------------------
   FORMULÁRIO DE CONTATO
----------------------------------- */
.contato {
  text-align: center;
  padding: 60px 10%;
}

.formulario {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario input,
.formulario textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.formulario button {
  background-color: #7a56b2;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario button:hover {
  background-color: #5d4191;
}

/* -----------------------------------
   RODAPÉ
----------------------------------- */
/* ------------------------------
   RODAPÉ ESTILO CABEÇALHO
------------------------------ */
.rodape {
  background: linear-gradient(to right, #d8c9f1, #b59ce1); /* mesmo degradê suave */
  text-align: center;
  padding: 35px 10%;
  font-size: 0.95rem;
  color: #4a3d52;
  border-top: 2px solid #b59ce1; /* linha de separação */
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08); /* leve sombra superior */
  transition: background 0.3s ease;
}

.rodape:hover {
  background: linear-gradient(to right, #e3d7f6, #c7b1f2);
}

.rodape .info p {
  margin: 6px 0;
  line-height: 1.5;
}

.rodape .info a {
  color: #4a3d52;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rodape .info a:hover {
  color: #7a56b2;
}

.rodape .redes {
  margin: 18px 0 10px;
}

.rodape .redes a {
  color: #4a3d52;
  font-weight: 500;
  margin: 0 6px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.rodape .redes a:hover {
  color: #7a56b2;
  transform: translateY(-2px);
}

.rodape p {
  margin-top: 10px;
  color: #4a3d52;
  font-size: 0.92rem;
}

.rodape strong {
  color: #4a3d52;
}
/* ------------------------------
   FUNDO UNIFORME DO SITE
------------------------------ */
body {
  background-color: #faf7fc; /* cor base da hero e das seções */
}

section,
.bem-vindo,
.quem-sou,
.intro-section {
  background-color: #faf7fc !important;
}

section::before,
section::after {
  background: none !important;
  box-shadow: none !important;
}
/* -----------------------------------
   BOTÃO WHATSAPP FIXO
----------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.whatsapp-btn img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}

/* -----------------------------------
   BOTÃO VOLTAR AO TOPO
----------------------------------- */
.btn-topo {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 1000;
  background-color: #7a56b2;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-topo:hover {
  background-color: #5d4191;
  transform: scale(1.1);
}

/* ================================
   SEÇÃO EXPLORE MAIS - 3 TEMAS
================================ */
.temas-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.tema-card {
  background-color: #fefbf9;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 25px;
  width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tema-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.tema-icone {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.tema-card h3 {
  color: #7a56b2;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.tema-card p {
  color: #4a3d52;
  font-size: 0.95rem;
  line-height: 1.5;
}

.botao-centro {
  text-align: center;
  margin-top: 35px;
}

.botao-centro .btn-recursos {
  background-color: #7a56b2;
  color: #fff;
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.botao-centro .btn-recursos:hover {
  background-color: #5d4191;
  transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 768px) {
  .tema-card {
    width: 90%;
  }
}


/* -----------------------------------
   RESPONSIVIDADE
----------------------------------- */
@media (max-width: 768px) {
  .menu-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-img {
    height: 50vh;
  }

  .formulario {
    width: 100%;
  }
}

/* ================================
   SEÇÃO RECURSOS DESTAQUE
================================ */
/* Seção "Explore mais" empilhada (título, cards e botão) */
.recursos-destaque {
  background-color: #f6f2fb;
  padding: 60px 10%;
  display: flex;
  flex-direction: column; /* empilha verticalmente */
  align-items: center;    /* centraliza tudo */
  gap: 20px;              /* espaçamento entre itens */
}

.recursos-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
}

.foto-recursos {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.texto-recursos {
  flex: 1;
  min-width: 300px;
}

.texto-recursos h2 {
  color: #7a56b2;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.texto-recursos p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-recursos {
  display: inline-block;
  background-color: #7a56b2;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-recursos:hover {
  background-color: #5d4191;
}

.voltar-link {
  color: #7a56b2; /* lilás principal */
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.voltar-link:hover {
  color: #a07fd6; /* tom lilás mais claro no hover */
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .recursos-container {
    flex-direction: column;
    text-align: center;
  }
  .foto-recursos {
    width: 220px;
    height: 220px;
  }
}

/* ================================
   ANIMAÇÃO DE ENTRADA SUAVE
================================ */
.animar {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animar.visivel {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   PÁGINA RECURSOS
================================ */
.hero-recursos {
  background-color: #f4effa;
  text-align: center;
  padding: 60px 10%;
}

.hero-recursos h2 {
  color: #7a56b2;
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-recursos p {
  color: #444;
  font-size: 1.1rem;
}

.cards-recursos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 10%;
  background-color: #fff;
}

.card {
  background-color: #faf7fc;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  color: #7a56b2;
  font-size: 1.3rem;
  padding: 15px 20px 10px;
}

.card p {
  color: #555;
  font-size: 0.95rem;
  padding: 0 20px 20px;
  line-height: 1.5;
}

.btn-leia {
  display: inline-block;
  margin: 0 20px 25px;
  background-color: #7a56b2;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-leia:hover {
  background-color: #5d4191;
}

/* ================================
   ESTILO DOS ARTIGOS (TEXTOS)
================================ */
.conteudo-artigo {
  max-width: 900px;
  margin: 60px auto;
  background-color: #faf8fc;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: justify;
  line-height: 1.8;
}

.conteudo-artigo h2 {
  color: #7a56b2;
  font-size: 1.9rem;
  margin-bottom: 20px;
  text-align: center;
}

.conteudo-artigo p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.conteudo-artigo blockquote {
  background-color: #f0e9f9;
  color: #5d4191;
  font-style: italic;
  border-left: 4px solid #7a56b2;
  padding: 15px 20px;
  margin: 30px 0;
  border-radius: 10px;
}

.imagem-artigo {
  display: block;
  margin: 25px auto 20px auto;
  width: 25%;
  max-width: 240px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  object-fit: contain;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1s ease forwards;
}

.legenda {
  text-align: center;
  font-size: 0.9rem;
  color: #7a56b2;
  font-style: italic;
  margin-top: 5px;
  margin-bottom: 35px;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.5s;
}

/* Responsividade */
@media (max-width: 1024px) {
  .imagem-artigo {
    width: 35%;
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .imagem-artigo {
    width: 65%;
    max-width: 200px;
  }
  .legenda {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
}



/* ================================
   ANIMAÇÕES SUAVES
================================ */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .conteudo-artigo {
    padding: 25px;
  }

  .conteudo-artigo p {
    font-size: 1rem;
  }

  .imagem-artigo {
    width: 100%;
  }
}

/* ================================
   LEGENDAS DAS IMAGENS
================================ */
.legenda {
  text-align: center;
  font-size: 0.95rem;
  color: #7a56b2;
  font-style: italic;
  margin-top: -15px;
  margin-bottom: 35px;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.5s;
}

@media (max-width: 768px) {
  .legenda {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
}

/* ------------------------------
   AJUSTES RESPONSIVOS - HERO
------------------------------ */

/* Tablets e telas médias */
@media (max-width: 1024px) {
  .hero {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-img {
    max-height: 360px;
  }

  .hero-text {
    padding: 50px 15px;
  }

  .hero-text h2 {
    font-size: 1.7rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* Celulares e telas pequenas */
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 20px 20px;
    background: linear-gradient(to bottom, #faf7fc 40%, #fefbf9 100%);
  }

  .hero-img {
    max-height: 280px;
    padding: 0 10px;
  }

  .hero-text {
    padding: 40px 10px;
  }

  .hero-text h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .btn-agendar {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* Telas muito pequenas (celulares compactos) */
@media (max-width: 480px) {
  .hero-img {
    max-height: 230px;
  }

  .hero-text {
    padding: 35px 10px;
  }

  .hero-text h2 {
    font-size: 1.35rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .btn-agendar {
    padding: 9px 20px;
    font-size: 0.9rem;
  }
}

/* ================================
   SEÇÃO BEM-VINDO(A)
================================ */
.bemvindo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 10%;
  background-color: #faf7fc;
  flex-wrap: wrap; /* garante que funcione bem em telas menores */
}

.bemvindo-foto img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(122, 86, 178, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bemvindo-foto img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(122, 86, 178, 0.3);
}

.bemvindo-texto {
  max-width: 600px;
  text-align: left;
}

.bemvindo-texto h2 {
  color: #7a56b2;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.bemvindo-texto p {
  color: #4a3d52;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.assinatura {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #7a56b2;
  margin-bottom: 5px;
}

.titulo-profissional {
  font-size: 1rem;
  color: #4a3d52;
  font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
  .bemvindo-container {
    flex-direction: column;
    text-align: center;
  }

/* ------------------------------
   UNIFICAÇÃO DE FUNDO DAS SEÇÕES
------------------------------ */

/* Aplica o mesmo tom lilás-claro usado na hero section */
section,
.bem-vindo,
.quem-sou,
.intro-section {
  background-color: #faf7fc !important;
}

/* Mantém o espaçamento uniforme */
section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Remove possíveis bordas ou sombras diferentes */
section::before,
section::after {
  background: none !important;
  box-shadow: none !important;
}

/* ------------------------------
   ANIMAÇÃO SUAVE - FOTO E TEXTO
------------------------------ */
.sobre-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  padding: 60px 10%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease;
}

/* Quando a seção entra em foco, aplica o efeito */
.sobre-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* animação da foto */
.sobre-foto {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(122, 86, 178, 0.15);
  opacity: 0;
  transform: scale(0.9);
  transition: all 1.3s ease;
}

.sobre-foto.visible {
  opacity: 1;
  transform: scale(1);
}

/* texto ao lado da foto */
.sobre-texto {
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.4s ease;
}

.sobre-texto.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------
   AJUSTE GLOBAL DE FONTES (UNIFORMIZAÇÃO)
----------------------------------- */

/* Fonte principal */
body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  color: #4a3d52;
  letter-spacing: 0.2px;
  line-height: 1.7;
}

/* Títulos */
h1, h2, h3, h4, h5 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  color: #7a56b2; /* lilás institucional */
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

/* Subtítulos e seções secundárias */
h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.3rem;
}

/* Parágrafos e textos */
p, li, a, input, textarea, button {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  color: #4a3d52;
  font-size: 1rem;
  line-height: 1.6;
}

/* Links em menus e rodapé */
nav a, .menu-nav a, .rodape a {
  font-weight: 500;
  color: #4a3d52;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover, .menu-nav a:hover, .rodape a:hover {
  color: #7a56b2;
}

/* Botões */
button, .btn, .btn-agendar, .btn-recursos, .botao {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Rodapé */
.rodape p, .rodape strong {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}
/* ------------------------------
   TRANSIÇÃO SUAVE - TEXTOS PRINCIPAIS
------------------------------ */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease-out;
}

.fade-section.visivel {
  opacity: 1;
  transform: translateY(0);
}

.fade-section h2 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s ease 0.2s; /* leve atraso */
}

.fade-section.visivel h2 {
  opacity: 1;
  transform: translateY(0);
}

.fade-section p {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1.2s ease 0.5s; /* aparece após o título */
}

.fade-section.visivel p {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------
   AJUSTE FINAL DE FONTES E TIPOGRAFIA
   (Playfair Display + Poppins)
----------------------------------- */

/* Importa as fontes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Poppins:wght@400;500&display=swap');

/* Corpo do site */
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4a3d52;
  letter-spacing: 0.2px;
  line-height: 1.7;
  background-color: #faf7fc;
}

/* Títulos principais (ex: Bem-vindo, Explore mais...) */
h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #7a56b2;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  text-align: center;
}

/* Parágrafos e textos */
p, li, a, input, textarea, button {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4a3d52;
  font-size: 1rem;
  line-height: 1.6;
}

/* Subtítulos */
h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

/* Botões e links */
button, .btn, .btn-agendar, .btn-recursos, .botao {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

a, .menu-nav a, .rodape a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #4a3d52;
  transition: color 0.3s ease;
}

a:hover, .menu-nav a:hover, .rodape a:hover {
  color: #7a56b2;
}

/* Rodapé */
.rodape p, .rodape strong {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/* Textos de destaque */
.hero-text h2,
.texto-recursos h2,
.hero-recursos h2,
.conteudo-artigo h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #7a56b2;
  text-align: center;
}

/* Parágrafos das seções */
.hero-text p,
.texto-recursos p,
.hero-recursos p,
.conteudo-artigo p {
  font-family: "Poppins", sans-serif;
  color: #4a3d52;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

/* Botão primário */
.bt

  .bemvindo-texto {
    text-align: center;
  }

  .bemvindo-foto img {
    width: 220px;
    height: 220px;
  }
}

/* ===== Estilo da assinatura dos artigos ===== */
.assinatura-artigo {
  text-align: right;
  font-style: italic;
  color: #5a437f;
  margin-top: 30px;
  line-height: 1.6;
}

/* ===== Botão "Voltar aos recursos" ===== */
.btn-voltar {
  display: inline-block;
  margin-top: 25px;
  background-color: #7a56b2;
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-voltar:hover {
  background-color: #68469d;
}

.imagem-consultorio {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: opacity 0.8s ease-in-out;
}

/* ===============================
   AJUSTE FOTO PÁGINA QUEM SOU
=============================== */
.sobre-foto {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  max-width: 250px;
}

.sobre-foto img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.sobre-foto img:hover {
  transform: scale(1.03);
}

/* ====== ESTILO FORMULÁRIO (compatível com o site) ====== */
.form-contato{ max-width:920px; margin:22px auto; padding:18px 14px; box-sizing:border-box; }
.form-contato .form-row{ margin-bottom:14px; display:block; width:100%; }
.form-contato label{ display:block; font-weight:600; margin-bottom:6px; color:#4a3d52; }
.form-contato input[type="text"],
.form-contato input[type="email"],
.form-contato input[type="tel"],
.form-contato textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid #e6dff1;
  border-radius:10px;
  background:#fff;
  box-sizing:border-box;
  font-size:0.95rem;
  color:#222;
  transition:box-shadow .18s ease, transform .12s ease;
}
.form-contato textarea{ min-height:120px; resize:vertical; }
.form-contato input:focus, .form-contato textarea:focus{
  outline:none;
  box-shadow:0 6px 20px rgba(122,86,178,0.08);
  transform:translateY(-1px);
}

/* Ações / botão */
.form-contato .form-actions{ text-align:left; margin-top:6px; }
.btn-enviar{
  display:inline-block;
  padding:10px 18px;
  border-radius:28px;
  background:#7a56b2;
  color:#fff;
  border:none;
  cursor:pointer;
  font-weight:600;
  box-shadow:0 6px 14px rgba(122,86,178,0.12);
  transition:transform .12s ease, box-shadow .12s ease;
}
.btn-enviar:hover{ transform:translateY(-3px); box-shadow:0 10px 22px rgba(122,86,178,0.14); }

/* em telas pequenas: inputs empilhados e ajustados */
@media (max-width:720px){
  .form-contato{ padding:12px; }
  .btn-enviar{ width:100%; text-align:center; padding:12px; }
}

/* ================= Ajustes Recursos - hero + cards ================= */

/* hero imagem */
.hero-imagem-wrapper { display:block; }
.hero-imagem {
  width:100%;
  height:360px;           /* altura controlada para não cortar a tela em desktop */
  object-fit:cover;
  border-radius:12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* texto do hero abaixo */
.hero-texto-embaixo h1 { font-size:2rem; line-height:1.05; }
.hero-texto-embaixo p { font-size:1rem; color:#4b3f53; }

/* temas container: cards lado a lado */
.temas-container {
  display:flex;
  gap:26px;
  justify-content:space-between;
  align-items:stretch;
  flex-wrap:nowrap; /* força os 3 lado a lado em larguras amplas */
}

/* card */
.tema-card {
  background:#fff;
  border-radius:14px;
  box-shadow: 0 10px 30px rgba(122,86,178,0.06);
  overflow:hidden;
  width: calc((100% - 52px) / 3); /* 3 cards com gap:26px => 52px total */
  display:flex;
  flex-direction:column;
}

/* imagem do card */
.tema-thumb {
  width:100%;
  height:160px;              /* menor altura para caber inteiro na tela */
  overflow:hidden;
}
.tema-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* corpo do card */
.tema-body {
  padding:18px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.tema-body h3 {
  color:#6b48a8;
  margin:0 0 10px;
  font-size:1.1rem;
}
.tema-body p {
  color:#555;
  font-size:0.95rem;
  line-height:1.5;
  margin:0 0 14px;
  flex:1;
}
.btn-card {
  display:inline-block;
  background:#7a4bcf;
  color:#fff;
  padding:9px 16px;
  border-radius:22px;
  text-decoration:none;
  font-size:0.95rem;
  align-self:flex-start;
}

/* RESPONSIVO */
/* telas médias: quebra para 2 colunas */
@media (max-width:1100px) {
  .temas-container {
    flex-wrap:wrap;
    gap:20px;
  }
  .tema-card {
    width: calc((100% - 20px) / 2); /* 2 por linha */
  }
  .hero-imagem { height:300px; }
}

/* telas pequenas: um por linha */
@media (max-width:700px) {
  .temas-container { gap:16px; }
  .tema-card { width:100%; }
  .hero-imagem { height:220px; }
  .tema-thumb { height:180px; }
}

/* ================= Ajustes específicos para /recursos.html ================= */

/* HERO */
.hero-imagem-wrapper { display:block; }
.hero-imagem {
  width:100% !important;
  height:360px !important;           /* controlamos a altura para evitar corte */
  object-fit:cover !important;
  border-radius:12px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06) !important;
  display:block !important;
}

/* texto do hero abaixo */
.hero-texto-embaixo h1 { font-size:2rem !important; line-height:1.05 !important; }
.hero-texto-embaixo p { font-size:1rem !important; color:#4b3f53 !important; }

/* CARDS: força layout com 3 cards lado a lado */
.temas-container {
  display:flex !important;
  gap:26px !important;
  justify-content:space-between !important;
  align-items:stretch !important;
  flex-wrap:nowrap !important; /* força 3 lado a lado em larguras amplas */
}

/* card */
.tema-card {
  background:#fff !important;
  border-radius:14px !important;
  box-shadow: 0 10px 30px rgba(122,86,178,0.06) !important;
  overflow:hidden !important;
  width: calc((100% - 52px) / 3) !important; /* 3 cards com gap:26px */
  display:flex !important;
  flex-direction:column !important;
}

/* imagem do card */
.tema-thumb {
  width:100% !important;
  height:160px !important; /* menor altura para caber inteiro na tela */
  overflow:hidden !important;
}
.tema-thumb img {
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

/* corpo do card */
.tema-body {
  padding:16px !important;
  flex:1 !important;
  display:flex !important;
  flex-direction:column !important;
}
.tema-body h3 {
  color:#6b48a8 !important;
  margin:0 0 10px !important;
  font-size:1.05rem !important;
}
.tema-body p {
  color:#555 !important;
  font-size:0.95rem !important;
  line-height:1.45 !important;
  margin:0 0 12px !important;
  flex:1 !important;
}
.btn-card {
  display:inline-block !important;
  background:#7a4bcf !important;
  color:#fff !important;
  padding:9px 16px !important;
  border-radius:22px !important;
  text-decoration:none !important;
  font-size:0.95rem !important;
  align-self:flex-start !important;
}

/* hover leve */
.tema-card:hover { transform: translateY(-6px); transition: transform .25s ease; }

/* RESPONSIVO */
/* telas médias: quebra para 2 colunas */
@media (max-width:1100px) {
  .temas-container { flex-wrap:wrap !important; gap:20px !important; }
  .tema-card { width: calc((100% - 20px) / 2) !important; }
  .hero-imagem { height:300px !important; }
}

/* telas pequenas: um por linha */
@media (max-width:700px) {
  .temas-container { gap:16px !important; }
  .tema-card { width:100% !important; }
  .hero-imagem { height:220px !important; }
  .tema-thumb { height:180px !important; }
}

/* z-index do header/hero se necessário */
.cabecalho { z-index: 1000 !important; position: relative !important; }

/* ============================
   FORÇAR O RODAPÉ NO FINAL
   ============================ */

/* garante que a página ocupe 100% da altura e que o conteúdo cresça */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* wrapper global: faz o layout em coluna, empurrando o footer para baixo */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* conteúdo principal cresce para empurrar o footer */
.content-wrap {
  flex: 1 0 auto;
}

/* footer: volta a ser parte do fluxo normal (não fix) */
.rodape {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
  z-index: 1 !important;
  margin-top: 40px !important;
  background-color: #d9c4ef !important;
  color: #4a3d52 !important;
  padding: 30px 10% !important;
  text-align: center !important;
  box-sizing: border-box;
}

/* evita que botões flutuantes fiquem atrás do cookie/rodapé */
.whatsapp-btn, .btn-topo {
  z-index: 999 !important;
}

/* corrige casos onde alguma regra anterior ficou com position:fixed */
footer[role="contentinfo"], .rodape {
  position: static !important;
}

/* se index tiver cookie, só no index o body terá padding-bottom - isso já deve existir:
   body.page-index { padding-bottom: 120px; }
   Mantenha essa regra apenas no index. */

/* ====== Forçar fundo da página em um único tom ====== */
body {
  /* ajuste a cor se quiser outro tom; este combina com sua paleta */
  background-color: #fefbf9 !important;
  background-image: none !important;
}

/* Pequeno override caso alguma seção esteja com gradiente aplicado globalmente */
main, .site-wrapper, .page {
  background-image: none !important;
  background-color: transparent !important;
}

.bemvindo-foto-texto {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
}

.bemvindo-foto img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
  .bemvindo-foto-texto {
    flex-direction: column;
    text-align: center;
  }

  .bemvindo-foto img {
    width: 200px;
    height: 200px;
  }
}

/* Bloco bem-vindo: coluna esquerda com foto + texto */
.bemvindo-container {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 18px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.bemvindo-esquerda {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bemvindo-foto {
  margin-bottom: 18px;
}

.bemvindo-foto img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

/* texto ao lado da foto */
.bemvindo-texto p {
  margin: 0 0 10px;
  line-height: 1.7;
}

/* Responsivo: em telas menores, tudo em coluna centralizado */
@media (max-width: 900px) {
  .bemvindo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bemvindo-esquerda {
    align-items: center;
  }

  .bemvindo-texto a.btn-whats {
    margin-top: 4px;
  }

  .bemvindo-card {
    width: 100%;
  }
}

/* ===========================
   ESTRUTURA GERAL DAS PÁGINAS
=========================== */

.conteudo {
  padding: 24px 18px;
}

.conteudo-artigo {
  max-width: 1100px;
  margin: 0 auto;
}

/* Seção da imagem do consultório na home */
.hero-consultorio .hero-imagem img {
  width: 100%;
  max-width: 1100px;
  border-radius: 18px;
  display: block;
}

/* ===========================
   QUEM SOU – FOTO E TEXTO
=========================== */

.sobre-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin: 24px auto;
  max-width: 1100px;
}

.sobre-foto {
  flex: 0 0 260px;
  display: flex;
  justify-content: center;
}

.sobre-foto-img {
  max-width: 260px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.sobre-texto {
  flex: 1;
  min-width: 260px;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===========================
   RESPONSIVO (CELULAR)
=========================== */

@media (max-width: 768px) {
  .cabecalho {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
  }

  .menu-nav ul {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    justify-content: flex-start;
  }

  .conteudo {
    padding: 20px 14px;
  }

  .conteudo-artigo {
    margin: 0 auto 24px auto;
  }

  .sobre-section {
    flex-direction: column;
    align-items: center;
    padding: 0 4px;
  }

  .sobre-texto {
    padding: 0;
  }

  .sobre-texto p {
    text-align: left;
  }
}

