/* ============================== */
/*             GERAL              */
/* ============================== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}



/* ============================== */
/* HOME                  */
/* ============================== */

.hero {
    position: relative;
    height: 100vh; 
    overflow: hidden;
    display: flex;
    align-items: center; 
    color: #a05135;
    text-align: left; /* Mantém o alinhamento para desktop */
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background-image: url('images/bannereunice.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px;
    text-align: left; /* Garante que o texto fique à esquerda no desktop */
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: #a05135;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.seo-oculto {
  font-size: 1px;      /* Fica minúsculo, quase invisível */
  opacity: 0.1;        /* Bem transparente */
  position: absolute;  /* Tira do fluxo normal */
  left: -9999px;       /* Joga pra fora da tela, mas o Google ainda lê */
}

/* ANIMAÇÃO - MANTIDAS INTACTAS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-content h1 {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-content p {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.button-group {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.social-media-buttons {
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

/* Grupo dos botões - MANTIDAS INTACTAS PARA DESKTOP */
.button-group {
    display: flex;
    gap: 16px; /* Espaçamento entre os botões no desktop (horizontal) */
    flex-wrap: wrap; 
    justify-content: flex-start; 
}

.button-filled {
    background-color: #a05135;
    color: white;
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    transition: 0.3s;
    display: inline-block;
}

.button-filled:hover {
    background-color: #d28a6d;
    transform: scale(1.05);
}

.button-outlined {
    background-color: transparent;
    color: #a05135;
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    border: 2px solid #a05135;
    transition: 0.3s;
    display: inline-block;
}

.button-outlined:hover {
    background-color: rgba(115, 123, 77, 0.1);
    transform: scale(1.05);
}

.social-media-buttons {
    display: flex;
    gap: 20px;
    margin-left: 20px;
}

.social-media-buttons a {
    color: #6b4c3b;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-media-buttons a:hover,
.social-media-buttons a:focus {
    color: #d28a6d; 
    transform: scale(1.2); 
    outline: none;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

/* ============================== */
/*           RESPONSIVIDADE           */
/* ============================== */
@media (max-width: 768px) {
    .hero {
        min-height: auto; 
        padding: 80px 20px;
        flex-direction: column; 
        justify-content: center; 
        text-align: center; 
        box-sizing: border-box; 
    }

    .hero-bg {
        background-image: url('images/mobileeunice.jpg');
        background-position: center; 
        background-size: cover; 
    }

    .hero-content {
        padding: 20px; 
        max-width: 100%; 
        width: 100%; 
        text-align: center; 
    }

    .hero-content h1 {
        font-size: 2.2rem; 
        line-height: 1.4;
        word-wrap: break-word; 
        overflow-wrap: break-word; 
    }

    .hero-content p {
        font-size: 1rem; 
        margin-bottom: 24px;
        word-wrap: break-word; 
        overflow-wrap: break-word; 
    }

    .button-group {
        flex-direction: column; 
        gap: 40px; /* AUMENTADO O ESPAÇAMENTO VERTICAL ENTRE OS BOTÕES PARA 40px - VALOR GRANDE PARA TESTE! */
        align-items: center; 
        width: 100%; 
    }

    .button-filled,
    .button-outlined {
        width: 100%; 
        max-width: 280px; 
        box-sizing: border-box; 
        /* ZERAR MARGIN E PADDING PARA GARANTIR QUE O GAP SEJA A ÚNICA FONTE DE ESPAÇAMENTO */
        margin: 0; 
        /* O padding interno do botão é necessário para o tamanho dele, não remova o padding de dentro do botão */
        /* Certifique-se de que não há nenhum padding indesejado aqui que esteja empurrando */
    }
    
    .social-media-buttons {
        margin-left: 0; 
        justify-content: center; 
        margin-top: 20px; 
    }

    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }
}

/* Ajustes para o .whats-button se ele existe no seu HTML */
@media (max-width: 768px) {
    .whats-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    @media (max-width: 768px) {
    .button-principais {
        display: flex;
        flex-direction: column;
        gap: 20px; /* Espaçamento entre o botão "QUERO ORIENTAÇÃO" e "SABER MAIS" */
        align-items: center;
        width: 100%;
    }
}
}

/* ============================== */
/*        SOBRE O PROJETO         */
/* ============================== */
.sobre-projeto {
  background-color: #a05135;
  color: #f9f7f1; 
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.sobre-projeto .container.flex-sobre {
  display: flex;
  align-items: center;  /* centraliza verticalmente o texto e imagens */
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.sobre-projeto .sobre-img.esquerda {
  width: 120px;
  height: auto;
  margin-top: 0; /* remove margem extra */
  /* se quiser deslocar um pouco pra baixo: */
  /* transform: translateY(20px); */
}

.sobre-projeto .sobre-img.direita {
  width: 180px;
  height: auto;
  margin-top: 0; /* remove margem extra */
  /* se quiser deslocar um pouco pra cima: */
  /* transform: translateY(-20px); */
}

.sobre-projeto .sobre-texto {
  flex: 1;
  color: #f9f7f1;
  text-align: center;
  max-width: 600px;
}

.sobre-projeto h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1.2px;
  color: #f9f7f1;
  text-transform: none;
}

.sobre-projeto p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 400;
}

.sobre-projeto strong {
  font-weight: 600;
}

.sobre-projeto a.button-filled {
  background-color: #737b4d;
  color: #fffaf0;
  padding: 14px 38px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  display: inline-block;
  margin-top: 28px;
  transition: background-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.sobre-projeto a.button-filled:hover,
.sobre-projeto a.button-filled:focus {
  background-color: #4a502f;
  color: #fffaf0;
  outline: none;
}

/* Animação fadeUp */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Elementos com fade suave */
.sobre-projeto h2 {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.sobre-projeto p:nth-of-type(1) {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.sobre-projeto p:nth-of-type(2) {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.sobre-projeto a.button-filled {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.sobre-img.esquerda {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.sobre-img.direita {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

/* Responsivo */

@media (max-width: 768px) {
  .sobre-projeto .container.flex-sobre {
    flex-direction: column;
    gap: 20px;
    padding: 10px 15px;
  }

  .sobre-img.esquerda {
    width: 60px;
    height: auto;
    margin-top: 0;
    transform: none;
  }

  .sobre-img.direita {
    width: 120px;
    height: auto;
    margin-top: 0;
    transform: none;
  }

  .sobre-projeto .sobre-texto {
    max-width: 100%;
    text-align: center;
  }

  .sobre-projeto h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .sobre-projeto p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .sobre-projeto a.button-filled {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}
.sobre-projeto .sobre-img.esquerda {
  transform: translateY(20px);
}



/* ======================== */
/*       QUEM É EUNICE       */
/* ======================== */
.quem-eunice {
  background-color: #f9f7f1; /* verde suave como no exemplo */
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.quem-e-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.quem-e-card {
  background-color: #fffdf9;
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  gap: 16px; /* menor espaço entre imagem e texto */
  align-items: center;
  justify-content: flex-start; /* alinha tudo à esquerda */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.quem-e-card .imagem {
  flex: 1 1 280px;
  display: flex;
  justify-content: flex-end; /* empurra a imagem para mais perto do texto */
  order: 2;
}


.quem-e-card .imagem img {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: none
}

.quem-e-card .texto {
  flex: 2 1 400px;
  order: 2;
  color: #4a392b;
}

.quem-e-card h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #a05135;
}

.quem-e-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.quem-e-card strong {
  font-weight: 600;
}
.imagem-desfoque {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 620px; /* aumenta um pouco a imagem */
}

.imagem-desfoque img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0));
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  border-radius: 16px;
  box-shadow: none; /* Remove o sombreado */
}


/* Responsivo */
@media (max-width: 768px) {
  .quem-e-card {
    flex-direction: column;
    text-align: center;
  }

 .quem-e-card .imagem {
  justify-content: center;
  order: 1;
 }

  .quem-e-card .imagem img {
    max-width: 300px;
  }

  .quem-e-card h2 {
    font-size: 1.8rem;
  }

  .quem-e-card p {
    font-size: 1rem;
  }


  
}




/* COMO FUNCIONA */
.como-funciona {
  background-color: #fff7f1;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #6b4c3b;
  text-align: center;
}

.como-funciona h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #a05135;
  margin-bottom: 50px;
}

.linha-do-tempo {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr)); /* limite mínimo e máximo */
  gap: 40px 60px;
  justify-content: center; /* centraliza os cards no container */
  margin-bottom: 50px;
  max-width: 700px; /* limita a largura total da grid */
  margin-left: auto;
  margin-right: auto;
}

.etapa {
  background-color: #fef9f4;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(160, 81, 53, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px; /* limite de largura do card */
  margin-left: auto;
  margin-right: auto;
}

.etapa:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(160, 81, 53, 0.25);
}

.icone {
  font-size: 3rem;
  color: #a05135;
  margin-bottom: 15px;
}

.etapa strong {
  color: #a05135;
  font-weight: 700;
}
/* Responsividade para telas pequenas */
@media (max-width: 768px) {
  .linha-do-tempo {
    grid-template-columns: 1fr;
    max-width: 100%; /* ocupar toda largura no mobile */
    gap: 30px;
  }
}




.metodologia {
  background-color: #fef9f4;
  padding: 30px 25px;
  max-width: 700px;
  margin: 40px auto;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
  color: #4a4a4a;
  text-align: center;
}

.metodologia h3 {
  font-size: 2rem;
  color: #6b4c3b;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.metodologia p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.metodologia strong {
  color: #a05135;
  font-weight: 700;
}


/* Botão */
.como-funciona .button-filled {
  background-color: #a05135;
  color: white;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.como-funciona .button-filled:hover {
  background-color: #d28a6d;
  transform: scale(1.05);
}

/* Animação */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .linha-do-tempo {
    grid-template-columns: 1fr;
  }

  .etapa {
    animation: fadeUp 0.6s ease forwards;
  }

  .razoes ul {
    text-align: left;
  }
}




.servicos {
   background-color: #a05135;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #4a4a4a;
  text-align: center;
}

.servicos .container {
  max-width: 1100px;
  margin: 0 auto;
}

.servicos h2 {
  font-size: 2.8rem;
  margin-bottom: 60px;
  font-weight: 600;
  color: #f9f7f1;
  position: relative;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.icon {
  font-size: 2.5rem;
  color: #a05135;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #6b4c3b;
}

.card p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.card-button {
  display: inline-block;
  background-color: #a05135;
  color: #fffaf0;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.card-button:hover {
  background-color: #d28a6d;
}


.pandemia-section {
  position: relative;
  background-image: url('images/pandemia.jpg'); /* substitua pelo caminho da imagem que simboliza a pandemia */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 20px;
  color: #faf3e5;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  z-index: 1;
}

.pandemia-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* escurece para melhor leitura */
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
}

.pandemia-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #f9f7f1;
}

.pandemia-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f1e8db;
}

.pandemia-content strong {
  color: #a05135;
}

/* Responsivo */
@media (max-width: 768px) {
  .pandemia-section {
    background-attachment: scroll;
    padding: 60px 15px;
  }

  .pandemia-content h2 {
    font-size: 1.8rem;
  }

  .pandemia-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.modalidades-terapia {
  background-color: #f9f7f1;
  padding: 70px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  color: #4a4a4a;
}

.container-modalidades {
  max-width: 1200px;
  margin: 0 auto;
}

.modalidades-terapia h2 {
  font-size: 2.6rem;
  color: #a05135;
  margin-bottom: 12px;
}

.modalidades-terapia .intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #6a4d3b;
}

.cards-terapia {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-terapia {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 320px;
  flex: 1 1 280px;
  transition: transform 0.3s ease;
}

.card-terapia:hover {
  transform: translateY(-8px);
}

.card-terapia img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.card-terapia h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #a05135;
}

.card-terapia p {
  font-size: 1rem;
  line-height: 1.5;
  color: #4a4a4a;
}

/* Responsivo */
@media (max-width: 768px) {
  .modalidades-terapia h2 {
    font-size: 2rem;
  }

  .cards-terapia {
    flex-direction: column;
    align-items: center;
  }

  .card-terapia {
    max-width: 90%;
  }
}

.frase-orientacao {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #f1e8db; Remover essa linha */
  background: linear-gradient(90deg, #a05135 0%, #f9f7f1 100%);
  padding: 60px 40px;
  border-radius: 20px;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}


.frase-conteudo {
  max-width: 500px;
}

.citacao {
  font-size: 1.6rem;
  color: #ffff;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}

.citacao span {
  display: block;
  font-size: 1rem;
  color: #737b4d;
  margin-top: 10px;
}

.botao-citacao {
  display: inline-block;
  background-color: #a05135;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.botao-citacao:hover {
  background-color: #d28a6d;
}

.frase-img {
  width: 400px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: none; /* Tira o sombreado */
}




.depoimentos {
  background-color: #a05135;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  color: #fff7f1;
}

.depoimentos .container {
  max-width: 1100px;
  margin: 0 auto;
}

.depoimentos h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff7f1;
}

.depoimentos h2 span {
  color: #fff7f1;
}

.subtitulo {
  font-size: 1.1rem;
  color: #fff7f1;
  margin-bottom: 50px;
}

.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  cursor: grab;
  user-select: none;
}

.carousel-track.dragging {
  animation-play-state: paused;
  cursor: grabbing;
}


.card-depoimento {
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  margin: 0 15px;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-depoimento:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.estrelas {
  color: #d68642;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.card-depoimento p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 20px;
  font-style: italic;
}

.autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.autor img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}


.autor span {
  font-weight: 600;
  color: #a05135;
  font-size: 0.95rem;
}

/* Animação de rolagem infinita */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .card-depoimento {
    width: 250px;
  }

  .depoimentos h2 {
    font-size: 2rem;
  }

  .subtitulo {
    font-size: 1rem;
  }
}

.carousel-track {
  cursor: grab;
  user-select: none;
  animation-play-state: running;
}

.carousel-track.dragging {
  cursor: grabbing;
  animation-play-state: paused;
}




.profissionais {
  background-color: #fffaf0;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #4a4a4a;
  text-align: center;
}

.container-prof {
  max-width: 1000px;
  margin: 0 auto;
}

.profissionais h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #a05135;
}

.profissionais p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.galeria-prof {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.galeria-prof img {
  max-width: 280px; /* tamanho padrão menor */
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); /* sombra suave */
  object-fit: cover;
  height: auto;
}

/* Primeira imagem (horizontal) */
.galeria-prof img:nth-child(1) {
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* sombra mais forte */
  height: auto;
}

/* Segunda imagem (vertical) */
.galeria-prof img:nth-child(2) {
  max-width: 280px;
  height: 500px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* sombra mais forte */
  object-fit: cover;
}

@media (max-width: 768px) {
  .profissionais h2 {
    font-size: 1.8rem;
  }

  .galeria-prof img {
    max-width: 100%;
    height: auto;
  }
}

.depoimentos-video {
  background-color: #f9f7f1;
  padding: 60px 20px;
  text-align: center;
}

.depoimentos-video .subtitulo {
  font-size: 1.2rem;
  font-weight: 500;
  color: #6b4c3b;
  margin-bottom: 30px;
}

.video-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.video-thumb {
  width: 260px;
  height: 460px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.video-thumb:hover {
  transform: scale(1.03);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galeria-prof img,
.galeria-prof a img {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  display: inline-block;
}

.galeria-prof img:hover,
.galeria-prof a img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}









.rodape {
  background-color: #6a4d3b;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.rodape-container {
  max-width: 1280px;
  margin: 0 auto;
}

.rodape-conteudo {
  display: flex;
  align-items: center; /* centraliza verticalmente a logo */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.logo-rodape {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-rodape img {
  max-width: 100px;
  height: auto;
  filter: brightness(0) invert(1); /* se quiser branca */
}

.info-colunas {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  flex: 1;
  justify-content: center; /* centraliza visualmente */
  text-align: left; /* alinha os textos à esquerda */
}

.coluna h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #f7f1e8;
}

.coluna p {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #e0d9ce;
}

.rodape-bottomo {
  margin-top: 30px;
  text-align: center;
}


.footer-link {
  color: inherit; /* herda a cor do pai, mas mantém o hover */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #a67c52;
}

.footer-bottom {
  text-align: center;
  padding: 16px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: #36271f; /* essa cor será herdada pelo link */
}
.footer-link {
  color: #b9a494;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: rgb(197, 193, 180);
}




/* Responsivo */
@media (max-width: 768px) {
  .rodape-conteudo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-colunas {
    justify-content: center;
    text-align: center;
  }

  .coluna {
    width: 100%;
  }

  /* Diminui a logo no responsivo */
  .logo-rodape img {
    max-width: 60px; /* ou o tamanho que preferir */
  }
}



/* Estilos para o ícone de localização único */
.map-icon-single {
    display: inline-block; /* Permite transformações e sombra */
    margin-top: 8px; /* Espaçamento entre o endereço e o ícone */
    color: #b9a494; /* Cor inicial do ícone, inspirada no rodapé */
    font-size: 1.5rem; /* Tamanho do ícone, ajuste conforme necessário */
    text-decoration: none; /* Remove sublinhado do link */
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease; /* Transições suaves */
}

.map-icon-single:hover {
    color: #a67c52; /* Cor ao passar o mouse, tom do rodapé */
    transform: scale(1.1); /* Leve aumento no tamanho */
    text-shadow: 0px 0px 8px rgba(166, 124, 82, 0.7); /* Sombra suave com a cor de hover */
    /* Usamos text-shadow porque é um ícone de fonte, não uma imagem */
}

/* Opcional: Se quiser uma animação de pulso inicial para o ícone */
@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Aplica a animação ao ícone quando a página carrega */
.map-icon-single i.fas.fa-map-marker-alt {
    animation: pulse-icon 2s infinite ease-in-out; 
}


.map-icon-single:hover i.fas.fa-map-marker-alt {
    animation: none; 
}





html {
  scroll-behavior: smooth;
}
