/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
   font-family: 'Roboto', sans-serif;
  background-color:  transparent;
  color: #2B2B2B;
  line-height: 1.5;
}

/* Header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 20px 5%;
  z-index: 2;
}


.logo-area {
  display: flex;
  flex-direction: row;
  gap: 2px;
  text-align: left;
  font-family: 'Satisfy', cursive;
}

.logo-area img {
  height: 200px;
  max-width: 100%;
  transition: all 0.3s ease;
}

.logo-area h1 {
  font-size: 2rem;
  margin: 0;
  color: #2B2B2B;
  font-weight: 700;
  line-height: 1.2;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
  color: #A48D81;
  outline: none;
}

/* Hero com foto de fundo */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa toda a altura da tela */
  background: url('img/Fundo.jpg') no-repeat right center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  color: #F5F2EF;
  margin: 0;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.3); /* sobreposição opcional */
  z-index: 1;
}

.hero > * {
  z-index: 2;
  max-width: 600px;
}


.hero h2 {
  position: relative;
  font-family:Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  max-width: 700px;
  z-index: 1;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  margin-right: 800px ;
}
.hero h3 {
  position: absolute;
  font-size:3rem;
  font-family: "Gloria Hallelujah", cursive;
  font-weight: 700px;
  max-width: 500px;
  z-index: 1;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  margin-top: 100px;
  margin-right: 500px;
  
}
/* Seção sobre */
.info-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  color: #2B2B2B;
  
}

.info-section h3 {
  color: #505B40;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.info-section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Cards Psicólogas */
.psicologas-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
  padding: 25px;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease;
  outline-offset: 4px;
}

.card:hover,
.card:focus {
  transform: translateY(-7px);
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
  outline: 2px solid #A48D81;
  cursor: pointer;
}

.card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #A48D81;
}

.card h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #505B40;
}

.card p {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #2B2B2B;
}

.card strong {
  color: #D8B4A0;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Botão WhatsApp */
.btn-whatsapp {
  margin-top: 15px;
  background-color: #505B40;
  color: #F5F2EF;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #A48D81;
  outline: none;
}

/* Seção WhatsApp contato */
.whatsapp-container {
  background-color: #F5F2EF;
  padding: 40px 20px;
  text-align: center;
  color: #505B40;
  margin-top: 60px;
}

.whatsapp-container h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.whatsapp-container p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-whatsapp-large {
  background-color: #505B40;
  color: #F5F2EF;
  padding: 15px 35px;
  font-weight: 700;
  border-radius: 40px;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-whatsapp-large:hover,
.btn-whatsapp-large:focus {
  background-color: #505B40;
  outline: none;
}

.btn-whatsapp-large svg path {
  fill: #fff;
}

/* Footer */
footer {
  background-color: #505B40;
  padding: 20px 0;
  text-align: center;
  color: #F5F2EF;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D8B4A0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.instagram-link:hover {
  color: #A48D81;
}

.instagram-link svg.icon {
  vertical-align: middle;
}

/* Modal de informações */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-content h2 {
  color: #505B40;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.modal-content p {
  font-size: 1.1rem;
  color: #2B2B2B;
  line-height: 1.6;
}

.modal .close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
}

.modal .close:hover {
  color: #2B2B2B;
}

/* Botão "Mais informações" */
.btn-info {
  background-color: transparent;
  border: 2px solid #A48D81;
  color: #A48D81;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-info:hover,
.btn-info:focus {
  background-color: #A48D81;
  color: #fff;
  outline: none;
}

/* Feedback com setas */
#feedbacks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: Arial, sans-serif;
}

.feedback {
  max-width: 400px;
  display: none;
  background-color: #f5f2ef;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  color: #2b2b2b;
  font-style: italic;
}

.feedback.active {
  display: block;
}

.arrow-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #a48d81;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
  padding: 0 10px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.arrow-btn:hover {
  color: #d8b4a0;
}

/* Responsividade */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
  }

  .logo-area {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .logo-area img {
    height: 80px;
  }

  .logo-area h1 {
    font-size: 1.7rem;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }

  nav ul li a {
    font-size: 1.2rem;
  }

  .hero h2 {
    font-size: 2.2rem;
    max-width: 90%;
  }

  .card {
    width: 45%;
  }

  .card img {
    width: 120px;
    height: 120px;
  }

  .btn-whatsapp {
    padding: 12px 28px;
    font-size: 1.1rem;
  }

  .btn-whatsapp-large {
    font-size: 1.1rem;
    padding: 14px 30px;
  }

  .whatsapp-container h3 {
    font-size: 1.7rem;
  }

  .whatsapp-container p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .logo-area img {
    height: 65px;
  }

  .logo-area h1 {
    font-size: 1.5rem;
  }

  nav ul li a {
    font-size: 1rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .psicologas-container {
    flex-direction: column;
    gap: 25px;
  }

  .card {
    width: 100%;
  }

  .card img {
    width: 100px;
    height: 100px;
  }

  .btn-whatsapp {
    padding: 10px 22px;
    font-size: 1rem;
  }
}




footer {
  background: 
    linear-gradient(rgba(80, 91, 64, 0.85), rgba(80, 91, 64, 0.85)),
    url('img/footer.png') no-repeat center center/cover;
  padding: 20px 0;
  text-align: center;
  color: #F5F2EF;
  font-size: 0.9rem;
  position: relative;
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 15px;
  }

  .logo-area img {
    height: 120px;
  }

  nav ul {
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  nav ul li a {
    font-size: 0.9rem;
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background-position: center;
    text-align: center;
  }

  .hero h2 {
    font-size: 1.8rem;
    margin: 0 auto 10px;
    margin-right: 10px;
  }

  .hero h3 {
    font-size: 1.4rem;
    margin-right: 10px;
  }
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #F5F2EF;
  cursor: pointer;
  z-index: 101;
}

@media (max-width: 768px) {
  nav {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: #505B40;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    z-index: 100;
    width: 200px; /* Definindo uma largura fixa para o menu */
    box-sizing: border-box; /* Garantir que o padding não aumente a largura */
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%; /* Faz os itens ocuparem a largura total do menu */
  }

  .nav-links li a {
    color: #F5F2EF;
    font-size: 1rem;
    display: block; /* Facilita o clique e o alinhamento */
    padding: 8px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .nav-links li a:hover {
    background-color: #6B7A54; /* Um efeito visual para hover */
  }
}

@media (max-width: 768px) {
  .a {
    /* estilos aqui */
  }
}

  nav {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: #505B40;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    z-index: 100;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    color: #F5F2EF;
    font-size: 1rem;
  }



.faq {
  max-width: 600px;
  margin: 30px auto;
  font-family: 'Roboto', sans-serif;
  color: #2B2B2B;
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #505B40;
}

.faq-item {
  border-bottom: 1px solid #A48D81;
  margin-bottom: 10px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #505B40;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #D8B4A0;
  color: #2B2B2B;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  color: #2B2B2B;
}

.faq-answer p {
  margin: 10px 0 20px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* ou um valor maior dependendo do conteúdo */
}
