@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

header {
  font-size: 18px;
  width: 100%;
  height: 8vh;
  z-index: 3;
  position: fixed;
}
header a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  padding: 8px 12px;
  letter-spacing: 0.5px;
  position: relative;
}
header a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff; /* Cor da linha */
  transition: width 0.3s ease-in-out; /* Animação suave */
}
header a:hover::after {
  width: 100%; /* Expande a linha ao passar o mouse */
}

.wrapper.rolagem {
  background-color: #151515;
}

.wrapper {
  top: 5px;
  max-width: 100%;
  margin: auto;
  padding: 0 1%;
  transition: 1s;
  background-color: #151515;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  border-radius: 0.4rem;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav ul .link:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
  transition: 0.3s;
}
nav ul .link:hover:after {
  width: 100%;
}

.logo {
  font-weight: 700;
  width: 180px;
}

.logo_head {
  font-weight: 700;
  width: 80px;
  padding: 0;
}

nav #toggle,
nav label {
  visibility: hidden;
}

.header-button {
  text-decoration: none; /* Remove sublinhado dos links */
  color: white; /* Cor do texto */
  padding: 12px;
  font-size: 18px; /* Define o tamanho da fonte */
  line-height: 1; /* Evita espaçamentos verticais extras */
  background-color: #d7d7d7;
  color: black;
  border-radius: 5px;
}

.header-button:hover {
  background-color: #1a1f25;
  color: white;
  border-radius: 5px;
}

@media screen and (max-width: 951px) {
  .menu {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
  }
  .menu ul {
    flex-direction: column;
    align-items: center;
  }
  nav label {
    display: inline-flex;
    color: #ffffff;
    cursor: pointer;
    visibility: visible;
  }
  nav #toggle:checked ~ .menu {
    height: 35vh;
  }
  .header-button {
    display: none;
  }
  .wrapper {
    background-color: #151515;
  }
}
section {
  margin-top: 25pz;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 60px; /* Ajuste conforme a altura do seu menu */
  margin-top: -60px; /* Compensa o espaço extra criado pelo padding */
}

/* Solução moderna */
@supports (scroll-margin-top: 60px) {
  section {
    padding-top: 0;
    margin-top: 0;
    scroll-margin-top: 60px;
  }
}
.section-hero {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.hero {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}
.hero-text p {
  font-size: 2rem;
  margin: 0;
}
.hero-text h1 {
  font-size: 5rem;
  font-weight: bold;
  margin: 0;
}

.principal {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.alinhar-atendimento {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 20px;
}
.alinhar-atendimento h2 {
  padding: 20px;
}

.alinhar-colunas {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.flex-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  background: white;
  padding: 60px 20px;
}

.flex-section img, .flex-section video {
  max-width: 100%;
  height: auto;
}

.faq {
  margin-top: 20px;
  width: 80%;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  cursor: pointer;
  background: #ffffff;
  padding: 10px;
  border: 1px solid #353436;
  color: #131313;
}

.faq-answer {
  display: none;
  padding: 10px;
  border: 1px solid #353436;
  border-top: none;
}

footer {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #151515;
  color: #ffffff;
}

.video-youtube {
  width: 50%; /* Ajuste conforme necessário */
  height: 500px; /* Ajuste conforme necessário */
  border-radius: 7px; /* Bordas levemente arredondadas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave para destacar */
}

.IconAtendimento {
  height: 250px;
  width: 250px;
  margin: 25px;
  padding: 12px;
  border-radius: 20px;
}

.btn-whatsapp {
  position: fixed;
  bottom: 10px;
  right: 12px;
  z-index: 99;
}
.btn-whatsapp img {
  max-width: 74px;
  transition: transform 0.4s;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

.btn-whatsapp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 8px;
  left: -130px;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
  background-color: #151515;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.publicacoes {
  width: 100%;
  max-width: 1800px; /* Ajuste conforme necessário */
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Estilos para o widget Elfsight */
.elfsight-app-fbbf2cb7-1101-4ab8-abf3-888596a114f2 {
  width: 100%;
  height: auto;
  min-height: 500px; /* Altura mínima para evitar sobreposição */
  overflow: hidden;
}

@media screen and (max-width: 951px) {
  .btn-whatsapp {
    bottom: 8px;
    right: 15px;
  }
  .btn-whatsapp img {
    max-width: 54px;
  }
  .publicacoes {
    padding: 10px;
  }
  .elfsight-app-fbbf2cb7-1101-4ab8-abf3-888596a114f2 {
    min-height: 300px; /* Ajuste a altura mínima para dispositivos móveis */
  }
}
@media screen and (max-width: 700px) {
  .section-hero {
    padding: 0;
  }
}
@media screen and (max-width: 951px) {
  .psicanalise {
    flex-direction: column; /* Altera a direção para coluna em telas menores */
  }
  .historias {
    flex-direction: column-reverse; /* Altera a direção para coluna em telas menores */
  }
  .quem-sou {
    flex-direction: column; /* Altera a direção para coluna em telas menores */
  }
  .video-youtube {
    width: 100%; /* Ajusta a largura do vídeo para telas menores */
    height: 450px; /* Ajusta a altura do vídeo para telas menores */
  }
  .alinhar-colunas {
    flex-direction: column; /* Altera a direção para coluna em telas menores */
  }
  footer {
    flex-direction: column; /* Altera a direção para coluna em telas menores */
    height: 32vh;
  }
}
.footer-icons {
  margin: 12px;
  padding: 5px;
}

/* Modifique o CSS existente da navegação */
/* Adicione estas regras ao seu arquivo CSS */
/* Ajustes para telas intermediárias */
@media screen and (max-width: 1710px) {
  nav ul {
    gap: 1rem; /* Reduz o espaçamento entre itens */
  }
  nav a {
    font-size: 16px; /* Reduz o tamanho da fonte */
    padding: 8px 10px; /* Reduz o padding */
  }
  .header-button {
    font-size: 16px;
    padding: 10px;
  }
}
@media screen and (max-width: 1500px) {
  nav ul {
    gap: 0.8rem;
  }
  nav a {
    font-size: 15px;
    padding: 6px 8px;
  }
  .header-button {
    font-size: 15px;
    padding: 8px;
  }
}
@media screen and (max-width: 1344px) {
  /* Mantenha as regras existentes, mas ajuste conforme necessário */
  .menu {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
  }
  .menu ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  nav label {
    display: inline-flex;
    color: #ffffff;
    cursor: pointer;
    visibility: visible;
  }
  nav #toggle:checked ~ .menu {
    height: 35vh;
  }
  .header-button {
    display: none;
  }
  .wrapper {
    background-color: #151515;
  }
}
/* Ajuste adicional para o logo em telas menores */
@media screen and (max-width: 951px) {
  .logo_head {
    width: 60px; /* Reduz o tamanho do logo em dispositivos móveis */
  }
}
@media screen and (max-width: 800px) {
  nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .logo_head {
    order: 1; /* Garante que o logo fique à esquerda */
  }
  nav label {
    order: 2; /* Garante que o ícone do menu fique à direita */
  }
  .header-button {
    order: 3; /* Coloca o botão abaixo dos outros elementos */
    width: 100%;
    margin-top: 10px;
    text-align: center;
    display: block !important; /* Sobrescreve o display: none */
  }
  .menu {
    order: 4;
  }
}
/* Adicione transições suaves */
nav a, .header-button {
  transition: all 0.3s ease;
}

/* Ajuste o padding do wrapper em telas menores */
@media screen and (max-width: 951px) {
  .wrapper {
    padding: 0 10px;
  }
}
/* Ajuste o padding dos itens do menu em telas menores */
@media screen and (max-width: 951px) {
  .menu ul li a {
    padding: 8px 0;
    display: block;
    width: 100%;
    text-align: center;
  }
}
.parallax-section {
  height: 60vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100%;
  position: relative;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}

h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}

i {
  color: #3c5b6f; /* Herda a cor do elemento pai */
  font-style: italic; /* Garante que o texto fique em itálico */
}/*# sourceMappingURL=style.css.map */