* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  background: #fff;
  color: #2f362e;
  max-width: 100vw;
  overflow-x: hidden;
  width: 100%;
}
.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 0 clamp(10px, 4vw, 40px);
  position: fixed;
  top: 0;
  box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  background-color: #fffffd;
  gap: 10px;
}
.menu-container h2 {
  font-size: clamp(18px, 2vw, 28px);
  flex-shrink: 0;
}
.menu-container ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 40px);
  flex: 1;
  min-width: 0;
  letter-spacing: 1px;
}
.menu-container li {
  flex-shrink: 0;
}
.menu-container a {
  text-decoration: none;
  font-size: clamp(11px, 1.2vw, 16px);
  color: black;
  transition: 0.3s;
  font-weight: 550;
  white-space: nowrap;
}
.menu-container ul.menu-open {
  max-height: 300px;
}
.menu-container a:hover {
  color: #8a9a84;
  transition: 0.3s ease;
}
.menu-container a.active {
  color: #586654;
  position: relative;
}
.menu-container a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #6f7f6a;
  border-radius: 2px;
}
.menu-container li:active {
  transform: scale(0.95);
}
#LogoInsta {
  width: clamp(2em, 2.5vw, 3em);
  height: clamp(2em, 2.5vw, 3em);
  flex-shrink: 0;
}
.menu-toggle {
  display: none;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  position: static;
  margin-left: auto;
}
.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #2f362e;
  border-radius: 5px;
  transition: all 0.35s ease-in-out;
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
#QuemSou {
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 100px;
}
.QuemSou-Container {
  max-width: 1100px;
  width: 100%;
  padding: 0 clamp(1em, 5vw, 2em);
  display: flex;
  align-items: center;
  gap: clamp(20px, 5vw, 60px);
}
.QuemSou-ImageWrapper {
  flex: 1;
}
#QuemSouImg {
  width: 90%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}
#QuemSouImg:hover {
  transform: scale(1.02);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
.QuemSouTexto {
  flex: 1.2;
  font-family: "Helvetica", Arial, sans-serif;
  color: #333;
}
.QuemSouTexto .Subtitle {
  display: block;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #8c7e6d;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.QuemSouTexto h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}
.QuemSouTexto h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  background: #b2c2a9;
  margin-top: 10px;
}
.QuemSouTexto p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
#AbordagensTerapêuticas {
  width: 100%;
  min-height: 100vh;
  padding-top: 1.5em;
  background-color: #f8f9f5;
}
.AbordagensTerapêuticas-Container {
  display: flex;
  margin: auto;
  gap: 40px;
  max-width: 1100px;
  width: 90%;
  flex-wrap: wrap;
  justify-content: center;
}
.SectionTittle {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2f362e;
  margin-bottom: 1em;
}
.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  flex: 1;
  min-width: 300px;
  max-width: 480px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #b2c2a9;
  text-align: center;
  transition: 0.3s ease;
  margin-bottom: 1em;
  position: relative;
  z-index: 2;
}
.card:hover {
  transform: translateY(-8px);
  transition: 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.card h2 {
  font-family: "Georgia", serif;
  font-size: 26px;
  margin-bottom: 5px;
}
.subtitle {
  font-style: italic;
  color: #8a9a84;
  margin-bottom: 20px;
  display: block;
}
.card p {
  line-height: 1.6;
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}
.benefits-title {
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 1px solid #d1d9cd;
  padding-bottom: 5px;
}
.card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.card li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 15px;
}
.card li::before {
  content: "✔";
  color: white;
  background-color: #b2c2a9;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 12px;
  flex-shrink: 0;
}
.footer-note {
  margin-top: 25px;
  font-style: italic;
  font-size: 14px;
  color: #8a9a84;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
#Causas {
  background-color: #f9f9f9;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
}
.Causas-container {
  max-width: 1100px;
  width: 100%;
  overflow: hidden;
}
.Causas-cards-tittle {
  text-align: center;
  margin: 50px 0px;
}
.Causas-cards-tittle h3 {
  font-size: 18px;
  color: #555;
  max-width: 750px;
  margin: auto;
  line-height: 1.6;
}
.Causas-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
}
.Causas-cards-container::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #d1d9cd;
  z-index: 0;
}
.Causas-card {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  text-align: center;
  border-top: 5px solid #b2c2a9;
  z-index: 1;
  box-sizing: border-box;
}
.Causas-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.Causas-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
  font-family: "Georgia", serif;
}
.Causas-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
.Causas-card i {
  font-size: 40px;
  color: #b2c2a9;
  margin-bottom: 10px;
}
.Causas-card:last-child {
  grid-column: 1 / -1;
  background: #b2c2a9;
}
.Causas-card:last-child h2,
.Causas-card:last-child p {
  color: white;
}
.Causas-card:last-child i {
  color: white;
}
.WhatsApp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: 0.3s ease;
  animation: whatsAppPulse 1s ease-in-out infinite;
}
.WhatsApp-btn i {
  font-size: 30px;
  color: white;
  line-height: 1;
}
.WhatsApp-btn:hover {
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
@keyframes whatsAppPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.WhatsApp-container img {
  width: 50px;
  height: 50px;
}
#DuvidasFrequentes {
  background-color: #f8f9f5;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #d1d9cd;
  width: 100%;
  min-height: 100vh;
  padding-top: 100px;
}
#Duvidas {
  background-color: #f9f9f9;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}
.duvidas-container {
  width: 65vw;
}
.duvida-box {
  background: #fff;
  border: 1px solid #d1d9cd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px;
  overflow: hidden;
  max-height: 55px;
  transition: max-height 0.5s ease-in-out;
}
.duvida-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.duvida-header span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.duvida-resposta {
  margin-top: 20px;
  color: #555;
  line-height: 1.6;
}
.duvidas-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

.duvidas-container {
  width: 55%;
}
.duvidas-img {
  width: 40%;
  display: flex;
  justify-content: center;
}
.duvidas-img img {
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  filter: brightness(0.96) saturate(1.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.duvidas-img img:hover {
  transform: scale(1.02);
  transition: 0.3s ease;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}
.ShowTxt {
  cursor: pointer;
  background: none;
  border: 1px solid #b2c2a9;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  min-width: 30px;
  font-size: 20px;
}
#Livro {
  background-color: #f8f9f5;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 60vh;
}

.Livro-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #f8f9f5, #eef1ea);
  padding: 40px;
  border-radius: 20px;
}

.Livro-img img {
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}
.Livro-img img:hover {
  transform: scale(1.05) rotate(-1deg);
}

.Livro-txt {
  max-width: 500px;
}
.Livro-txt h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.Livro-txt p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}
.Livro-txt {
  max-width: 400px;
  font-size: 16px;
  line-height: 1.2;
  color: #555;
}
.Livro-txt .subtitle {
  font-size: 14px;
  opacity: 0.8;
}
.btn-livro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #b2c2a9;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-livro:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

#Contato {
  background-color: #f9f9f9;
  padding: 100px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.Contato-container {
  width: 85vw;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.Contato-container-top {
  display: flex;
  gap: 30px;
  padding: 40px;
  align-items: stretch;
  width: 100%;
}
.Contato-agendamento,
.Contato-container-right {
  display: flex;
  width: 50%;
}
.online-content {
  width: 100%;
  height: 100%;
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #b2c2a9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}
.tag-agendamento {
  font-size: 13px;
  color: #8a9a84;
  margin-bottom: 10px;
}
.online-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.online-header i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  aspect-ratio: 1/1;
  font-size: 18px;
  background: #b2c2a9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.online-header h3 {
  font-size: 22px;
  font-weight: 600;
}
.online-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}
.online-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f6f3;
  padding: 10px;
  border-radius: 10px;
  transition: 0.2s;
}
.benefit-item:hover {
  background: #eef1ea;
}
.benefit-item i {
  width: 30px;
  height: 30px;
  font-size: 14px;
  background: #b2c2a9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-item span {
  font-size: 13px;
}
.Contato-container-right {
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-right: 4px solid #b2c2a9;
  transition: 0.3s;
}
.Contato-container-right h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.Contato-container-right span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.Contato-container-right i {
  font-size: 18px;
  color: #b2c2a9;
}
.agendamento-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 30px;
}
.btn-whats {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 16px 40px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whats:hover {
  transform: translateY(-3px);
}
footer {
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
  color: #eee;
  padding: 60px 20px 20px;
}
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1;
  min-width: 220px;
}
.footer-col h3 {
  font-family: "Georgia", serif;
  margin-bottom: 15px;
  font-size: 22px;
}
.footer-col h4 {
  margin-bottom: 15px;
  color: #b2c2a9;
  font-size: 16px;
  letter-spacing: 1px;
}
.footer-col p {
  line-height: 1.7;
  color: #bbb;
  font-size: 14px;
}
.footer-col a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #b2c2a9;
  transition: 0.3s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col a:hover::after {
  width: 100%;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f2f2f;
  transition: 0.3s;
}
.footer-social i {
  font-size: 18px;
  color: #ccc;
}
.footer-social a:hover {
  background: #b2c2a9;
  transform: translateY(-3px);
}
.footer-social a:hover i {
  color: #1f1f1f;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #3a3a3a;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
}
.dev-credit {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.dev-credit a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b2c2a9;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
}
.dev-credit i {
  font-size: 20px;
}
@media (max-width: 1260px) {
  .menu-container {
    padding: 0 20px;
  }
  .menu-container h2 {
    font-size: 22px;
    white-space: nowrap;
  }
  .menu-container ul {
    gap: 30px;
  }
  .menu-container a {
    font-size: 14px;
    display: block;
    line-height: 1.2;
  }
  #LogoInsta {
    width: 2.2em;
    height: 2.2em;
  }
}
@media (max-width: 1100px) {
  .menu-container {
    padding: 0 20px;
  }
  .menu-container h2 {
    font-size: 20px;
  }
  .menu-container ul {
    gap: 18px;
  }
  .menu-container a {
    font-size: 12px;
  }
  #LogoInsta {
    width: 2.5em;
    height: 2.5em;
  }
}
@media (max-width: 950px) {
  .menu-container ul {
    gap: 20px;
  }
  .menu-container a {
    font-size: 11px;
  }
  .menu-container {
    padding: 0 10px;
  }
}
@media (max-width: 850px) {
  .menu-container ul {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 253, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .menu-container ul.menu-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-container ul li {
    margin: 10px 0;
    width: 100%;
  }
  #LogoInsta {
    display: none;
  }
}
@media (max-width: 768px) {
  .QuemSou-Container {
    flex-direction: column;
    text-align: center;
    margin: 1em;
  }
  .QuemSouTexto h2::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #QuemSouImg {
    margin-bottom: 30px;
  }
  .duvidas-container {
    text-align: center;
    font-size: 14px;
    width: 80%;
  }
  .duvidas-resposta {
    font-size: 10px;
  }
  .duvidas-img {
    display: none;
  }
}
@media (max-width: 900px) {
  .Causas-cards-container {
    grid-template-columns: 1fr 1fr;
  }
  .Causas-card:last-child {
    grid-column: span 2;
  }
  .Causas-cards-container::before {
    display: none;
  }
}
@media (max-width: 600px) {
  .Causas-cards-container {
    grid-template-columns: 1fr;
  }
  .Causas-card:last-child {
    grid-column: span 1;
  }
  .WhatsApp-btn {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 15px;
  }
}
@media (max-width: 768px) {
  .Contato-container {
    width: 95vw;
    border-radius: 12px;
  }
  .Contato-container-top {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 20px;
  }
  .Contato-agendamento,
  .Contato-container-right {
    width: 100%;
    display: flex;
  }
  .online-content,
  .Contato-container-right {
    width: 100%;
    padding: 20px;
  }
  .online-content {
    min-height: auto;
  }
  .Contato-container-right {
    min-height: auto;
  }
  .online-header h3 {
    font-size: 18px;
  }
  .Contato-container-right h2 {
    font-size: 20px;
  }
  .Contato-container-right span {
    font-size: 14px;
  }
  .online-content p {
    font-size: 14px;
  }
  .benefit-item {
    padding: 12px;
  }
}
@media (max-width: 600px) {
  .agendamento-cta {
    padding: 20px 10px;
  }
  .btn-whats {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    padding: 14px 20px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}
