body {
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden; 
    max-width: 100%;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999; 
}

nav {
    position: fixed;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

nav a.active {
    border-bottom: 2px solid #FFD700;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: rgb(215, 255, 216);
    font-size: 1vw;
    transition: color 0.3s ease;
    position: relative;
    padding: 1vw;
}

nav a::before,
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: white;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease;
    width: 0;
}

nav a:hover::before,
nav a:hover::after {
    width: 100%;
    opacity: 1;
}

nav a:hover {
    color: white;
}


.logo {
    width: 40%;
}

#logo-img {
    max-width: 100%;
    height: auto;
}


.menu ul {
    font-family: 'Titillium Web', sans-serif;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    z-index: 3;
    justify-content: flex-end;
}

.menu li {
    margin: 0 7px;
}

.menu a {
    text-decoration: none;
    color: rgb(215, 255, 216);
    font-size: 1vw;
    transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
    position: relative;
    padding: 1vw;
}

.menu a::before,
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: white;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease;
    width: 0;
}

.menu a:hover::before,
.menu a:hover::after {
    width: 100%;
    opacity: 1;
}

.menu a:hover {
    color: white;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    background-color: white;
    height: 3px;
    width: 25px;
    margin: 5px 0;
    transition: background-color 0.3s ease;
}

.menu.open .menu-toggle .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .menu.open .menu-toggle .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu.open .menu-toggle .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  


@media screen and (max-width: 1024px) {
    .menu ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu.open ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 3;
    }

        .menu.open li {
        margin: 10px 0; /* Adiciona espaçamento vertical entre os itens quando o menu está aberto */
    }

    .menu.open a {
        font-size: 25px; /* Ajuste o tamanho da fonte quando o menu está aberto */
        padding: 5px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 3;
    }

    .menu-toggle .bar {
        background-color: white;
        height: 3px;
        width: 25px;
        margin: 3px 0;
        transition: background-color 0.3s ease;
    }

    .menu.open .overlay {
        display: block;
    }
}


.hero {
    display: flex;
    align-items: center;
    justify-content: center; /* Adiciona centralização na direção principal (horizontal) */
    position: relative;
    background: url('img/bg_neural.svg') no-repeat center center, linear-gradient(to bottom, #4F6F52, #BFA2DB);
    background-size: cover;
    height: 100vh;
}

.hero-content {
    color: #fff;
    width: 50%;
    box-sizing: border-box;
    z-index: 3;
    padding: 40px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7vw;
    margin-bottom: 10px;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-family: 'Arial', sans-serif;
    color: white;
    font-size: 1.5vw;
    margin-bottom: 20px;
    text-shadow: 2px 2px 3px rgb(0, 0, 0);
}

.hero-image {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4; /* acima do overlay que está com z-index: 2 */
  position: relative;
}

.hero-image img {
  width: auto;        /* deixa o tamanho natural */
  height: auto;
  max-width: none;    /* remove limites de largura */
  object-fit: unset;  /* garante que não vai forçar proporção */
  display: block;
}

.subtitulo-logo {
  font-family: 'Titillium Web', sans-serif;
  color: #ffffff;
  font-size: 1.3em;
  font-weight: 300;
  margin-top: 10px;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.overlay-site {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid #abf6ddae;
    border-radius: 60px;
    position: absolute;
    bottom: 40px; /* Distância de 40px do fundo */
    left: 50%; /* Centralizando no eixo horizontal */
    transform: translateX(-50%);
    z-index: 1000;
  }
  
  .mouse::before {
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #abf6ddae;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 1s infinite;
  }
  
  @keyframes wheel {
    to {
      opacity: 0;
      top: 30px;
    }
  }
  
  @-webkit-keyframes wheel {
    to {
      opacity: 0;
      top: 30px;
    }
  }

/* Adicione regras específicas para telas até 1024px */
@media screen and (max-width: 1024px) {
    .header{
        padding: 20px;
    }

    .hero {
        flex-direction: column; /* Coloca a imagem acima do texto e do botão */
        align-items: center;
    }

    .hero-content,
    .hero-image {
        text-align: center;
        width: 100%; /* Define o tamanho máximo como 100% da largura do contêiner pai */

    }

    .hero-content h1 {
        font-size: 1.7em; /* Ajusta o tamanho do texto */
        margin-bottom: 20px;
    }

    .hero-image {
        order: -1; /* Inverte a ordem dos elementos, colocando a imagem acima do texto */
        max-height: 400px;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    z-index: 999;
    position: relative;
    padding: 0; 
    width: 100%; /* Defina a largura como 100% para ocupar toda a largura da tela */
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    color: #dff4ed;
    font-weight: bold;
    padding: 15px;
    border: #e3fff7 1px solid;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
    display: inline-block; /* Modificado para inline-block para ajustar ao tamanho do texto */
    position: relative;
    z-index: 9999;
}

.btn:hover {
    color: #a7ffe2;
    background-color: #00785493; /* Altere para a cor desejada durante o hover */
}

.btn::after {
    content: '\2193';
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.btn:hover::after {
    opacity: 1;
}

@media screen and (max-width: 1024px) {
    .btn {
        font-size: 14px; /* Ajusta o tamanho do botão */
        padding: 15px;
    }
}

.btn2 {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    color: #063825;
    font-weight: bold;
    padding: 15px;
    background-color: transparent; /* Defina o fundo como transparente */
    border: #007853 1px solid;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
    display: inline-block; /* Modificado para inline-block para ajustar ao tamanho do texto */
    position: relative;
    z-index: 9999;
}

.btn2:hover {
    color: #063825;
    background-color: #a7ffe2c3; /* Altere para a cor desejada durante o hover */
}

.btn2::after {
    content: '\2193';
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.btn2:hover::after {
    opacity: 1;
}


.explosions-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.explosion,
.white-dot {
    position: absolute;
    pointer-events: none;
    z-index: 2000;
}

.explosion {
    background-color: #009966;
    transform-origin: center;
    height: 1px;
    border-radius: 1px;
    margin: 10px;
}

.explosion.cintilante {
    animation: cintilar 1.5s linear infinite;
  }


.white-dot {
    background-color: #ff7b00;
    width: 3px;
    height: 3px; /* Ajuste a altura para ser igual à largura */
    border-radius: 50%;
    margin: 5px;
    z-index: 4;
}


/* Estilos para a cintilação */
.cintilante {
    animation: cintilacao 3s infinite;
}

@keyframes cintilacao {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.content {
    position: relative;
}

/* Estilos atualizados para o ícone e balãozinho de dica do WhatsApp */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.whatsapp-tooltip {
    position: relative;
}

.whatsapp-tooltip-text {
    font-family: Verdana, sans-serif;
    font-size: 11px;
    position: absolute;
    background-color: #ffffff;
    color: #009966;
    border: #000 1px solid;
    padding: 9px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    bottom: 10px; /* Ajusta a posição vertical do texto */
    left: -150px; /* Ajusta a posição horizontal do texto */
    width: 160px;
    z-index: 999;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}

.whatsapp-icon {
    width: 40px;
    margin-right: 10px; /* Adiciona um espaçamento à direita do ícone */
    z-index: 999; /* Ajusta o z-index para garantir que o ícone fique por cima do balãozinho */
}

.whatsapp-container:hover .whatsapp-tooltip-text {
    opacity: 1;
}

.qual-sua-dor {
    position: relative;
    background-color: #ededed;
    min-height: 60vh; /* Garante pelo menos 80% da altura da tela */
    display: flex;
    padding: 40px;
    margin: 0;
    flex-direction: column;
    justify-content: top;
    align-items: center;
  }

.video-tratamento {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/rabisco.png') no-repeat center;
  background-size: cover;
  padding: 60px 20px;
}
  
  .video-tratamento-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .video-tratamento-video {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
  }
  
  .video-tratamento-video iframe {
    width: 100%;
    max-width: 360px; /* ou 320px, 300px — testa o que achar mais confortável */
    aspect-ratio: 9/16;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
  }
  
  .video-tratamento-conteudo {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: left;
  }
  
  .video-tratamento-conteudo p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
    color: #063825;
    margin-bottom: 20px;
  }
  
  .video-tratamento-conteudo .btn2 {
    margin-top: 10px;
  }
  
  /* Responsivo mobile */
  @media screen and (max-width: 768px) {
    .video-tratamento-container {
      flex-direction: column;
    }
  
    .video-tratamento-video iframe {
      height: 220px;
    }
  
    .video-tratamento-conteudo {
      text-align: center;
    }
  }

  .conteudo {
    position: relative;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .titulo {
    font-family: 'Titillium Web', sans-serif;
    top: 0;
    font-size: 3em;
    color: #063825;
    z-index: 2;
    position: relative;
  }
  

  .frases {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 70%; /* Defina a largura desejada */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .frases p {
    font-family: 'Poppins', sans-serif;
    font-size: max(1vw, 17px);
    color: #000;
    margin: 7px;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(6, 56, 37, 0.2);
    opacity: 0;
    animation: aparecerPalavra 0.5s ease-out forwards;
  }
  
  @keyframes aparecerPalavra {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes sutilEfeito {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
  }
  
  /* Nova animação para aplicar o efeito continuamente */
  @keyframes continuaSutilEfeito {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
  }
  

 
.titulo-branco {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.5em;
    color: #ffffff;
    text-align: left;
}

.subtitulo {
    font-family: 'Poppins', sans-serif;
    background-color: #031e4320;
    border-radius: 10px;
    padding: 15px;
    font-size: 3.3vh;
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: left;
    display: inline-block; /* Modificado para inline-block para ajustar ao tamanho do texto */
}

.texto-container {
    text-align: left;
}

.texto {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.texto2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: #333;
}

.texto3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
}

.texto4 {
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    color: #333;
    font-weight: bold;
}

.conteudo-e-baloes {
    display: flex;
    align-items: center;
}

.conteudo-texto {
    flex: 1; /* Faz com que ocupe o máximo de espaço disponível */
}

.faixa-transformacao {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to top, rgba(0, 71, 44, 0.5) 0%, rgba(0, 0, 0, 0) 100%), #3D5A80;
  }
  
  .faixa-transformacao h2 {
    font-family: 'Titillium Web', sans-serif;
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .faixa-transformacao .btn {
    margin-top: 10px;
  }

  .acolhimento {
    background-color: #ededed;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
.acolhimento-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
  
.imagem-acolhimento {
  flex: 0 0 60%;
  width: 950px;
  max-width: 100%;
  height: 400px;
  background: url('img/acolhimento.jpg') no-repeat center right;
  background-size: contain;
  background-attachment: fixed;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}
  
.popup-acolhimento {
  flex: 0 0 40%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 5px; /* só encosta um pouco na imagem */
  z-index: 2;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
  
  .popup-acolhimento h3 {
    font-family: 'Titillium Web', sans-serif;
    color: #031e43;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .popup-acolhimento p {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 1.2em;
    line-height: 1.9;
  }
  
  /* Mobile responsivo */
  @media screen and (max-width: 768px) {
    .acolhimento-container {
      flex-direction: column;
      padding: 0 20px;
    }
  
    .imagem-acolhimento {
      flex: 0 0 100%;
      width: 100%;
      height: 240px;
      background-attachment: scroll;
      background-size: cover;
    }
  
    .popup-acolhimento {
      position: static;
      transform: none;
      margin: 20px 0;
      width: calc(100% - 40px);
    }
  }

.metodologia {
  background-color: #daddd4;
  background-image: url('img/lines.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.metodologia-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.video-metodologia {
  flex: 0 0 auto;
}

.video-metodologia iframe {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9/16;
  border-radius: 10px;
  display: block;
}

.popup-metodologia {
  flex: 0 0 45%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.popup-metodologia h3 {
  font-family: 'Titillium Web', sans-serif;
  color: #031e43;
  font-size: 1.7em;
  font-weight: bold;
  margin-bottom: 10px;
}

.popup-metodologia p {
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-size: 1em;
  line-height: 1.5;
}

.descricao-tratamento {
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-size: 1em;
  line-height: 1.6;
}

.duracao {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 0.9em;
  color: #8c9190;
  margin-top: 10px;
  text-align: right;
}

.btn-metodologia {
  text-align: left;
  margin-top: 30px;
}

.btn-metodologia .btn {
  background-color: #fff;
  color: #007853;
}

.btn .icone-whats {
  width: 21px; /* mesmo tamanho da fonte (21px) */
  height: 21px;
  margin-right: 15px;
  vertical-align: middle;
}

/* Mobile responsivo */
@media screen and (max-width: 768px) {
  .metodologia-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .video-metodologia iframe {
    max-width: 90%;
  }

  .popup-metodologia {
    width: calc(100% - 40px);
  }
}


.como-posso-te-ajudar {
  background-color: #3D5A80;
  padding: 0px 20px;
  position: relative;
  z-index: 1;
}

.como-posso-te-ajudar:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top,  rgba(0, 71, 44, 0.5) 0%, rgba(0, 0, 0, 0) 100%), #3D5A80;
  z-index: -1;
}

.tratamento-linha {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.tratamento-video {
  flex: 0 0 360px;
}

.tratamento-video iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  display: block;
}

.tratamento-caixas {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  min-width: 0;
}

.titulo-branco-interno {
  font-family: 'Titillium Web', sans-serif;
  color: #fff;
  font-size: 2.2em;
  margin-bottom: 40px;
  text-align: left;
}

.container-tratamento {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

.tratamento-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  width: 100%;
}

.tratamento-box h3 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.3em;
  color: #007853;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tratamento-box img {
  width: 40px;
  margin-left: 10px;
}

.botao-tratamento {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .tratamento-linha {
    flex-direction: column;
    align-items: center;
  }

  .tratamento-video,
  .tratamento-caixas {
    width: 100%;
  }

  .titulo-branco-interno {
    text-align: center;
    margin-bottom: 20px;
  }
}

/* Adicione uma regra de media query para telas menores que 769px */
@media only screen and (max-width: 768px) {
    .flutuante-container {
        display: none; /* Oculta a div em telas menores */
    }
}

.sobre-hipnose {
    font-family: 'Poppins', sans-serif;
    font-size: 2vh;
    color: #fff;
    display: flex;
    z-index: 2;
    box-shadow: 0 10px 50px rgba(4, 0, 71, 0.8);
}

.conteudo-centralizado {
    width: 50%;
    position: relative;
    padding: 40px;
    padding-right: 20%;
    text-align: left;
    box-sizing: border-box;
    color: #fff;
    background: linear-gradient(to bottom right, #063825, #000000);
}

.conteudo-centralizado::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%; /* Largura desejada para a imagem */
    background: url('img/face.png') top right no-repeat;
    background-size: 90% auto; /* Ajusta a imagem para cobrir a área especificada */
}


.imagem-rolante {
    display: block;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.imagem-rolante img {
    width: 160px;
    height: auto; /* Altura automática para manter a proporção original */
    border-radius: 10px;
}

.titulo-amarelo {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.4vw;
    line-height: 1;
    color: #a7ffe2;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    .titulo-amarelo {
        font-size: 26px; /* Defina o tamanho mínimo desejado para telas menores */
    }
}

.titulo-2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.5em;
    line-height: 1;
    color: #a7ffe2;
    text-align: left;
    margin-bottom: 0; /* Adiciona margem na parte inferior */
}

.instrucao {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 1.7vh;
    margin: 0 0 20px;
    color: #e7fff7cb;
}

.acordeon-container {
    width: 50%;
    padding: 40px;
}

.titulo-acordeon {
    font-family: 'Titillium Web', sans-serif;
    font-size: 3em;
    text-align: left;
    line-height: 1;
    color: #063825;
}

.pergunta {
    border-top: 1px solid;
    border-image: linear-gradient(to right, #063825, transparent) 100% 0%;
    cursor: pointer;
    color: #063825;
    margin: 0;
    transition: border-image 0.3s ease;
}

.pergunta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    cursor: pointer;
    color: #063825;
    margin: 0;
    padding: 10px;
}

.resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-left: 20px; /* Adiciona uma margem à esquerda para a resposta */
  }

.resposta p {
    font-size: 1em;
    color: #333;
    margin: 0 0 10px 0;
}

.amparo-legal {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    cursor: pointer;
    text-align: left;
    padding: 20px 0 20px;
    margin-top: 10px;
    display: inline-block;
}

.am {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #a7ffe2;
    font-weight: bold;
    padding: 15px;
    background-color: transparent;
    border: #007853 1px solid;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden; /* Adicionado overflow para esconder a seta fora da área do link */
}

.am:hover {
    color: #a7ffe2;
    background-color: #0078547f;
}

.am-text {
    display: inline-block; /* Para que o texto e a seta apareçam na mesma linha */
    vertical-align: middle; /* Alinha verticalmente o texto e a seta */
}

.am-arrow {
    height: 20px; /* Define a altura da imagem */
    margin-left: 5px;
    opacity: 1; /* A imagem de seta é sempre visível */
    transition: opacity 0.3s ease-in-out;
    vertical-align: middle; /* Alinha verticalmente a seta */
}


@media screen and (max-width: 1024px) {
    .sobre-hipnose {
        flex-direction: column;
        
    }

    .conteudo-centralizado,
    .acordeon-container {
        width: 100%;
        padding-right: 50%;
    }

    .pergunta h3 {
        font-size: 1em;
        margin-right: 20px;
    }

    .resposta p {
        font-size: 0.8em;
        padding-right: 100px;

    }

    .conteudo-centralizado {
        padding-right: 25%;
    }
}



.depoimentos {
    background-image: url(img/bg_line.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-color: #bec9d985;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    gap: 20px;
}

.titulo-session {
    font-family: 'Titillium Web', sans-serif;
    font-size: 3em;
    line-height: 1;
    text-align: left;
    color: #063825;
    width: 100%;
}

.depoimento {
    flex-basis: calc(50% - 10px); /* Ocupa metade da largura, com um espaçamento de 20px entre os depoimentos */
    box-sizing: border-box;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
}

.depoimento img {
    border-radius: 10px;
    width: 100px;
    object-fit: cover;
    margin-right: 20px;
}

.depoimento div {
    flex-grow: 1;
}

.depoimento h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.3em;
    color: #063825;
}

.depoimento p {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #063825;
}

@media screen and (max-width: 768px) {
    .depoimento {
        flex-basis: calc(100% - 20px); /* Ocupa toda a largura em telas menores */
    }
}

.qualidade {
  background-color: #ededed;
  padding: 80px 0;
  text-align: center;
}

.qualidade-container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}

.qualidade-titulo {
  font-family: 'Titillium Web', sans-serif;
  color: #031e43;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
}

.texto-e-botao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.texto-qualidade {
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  text-align: left;
}

.btn-whats {
  background-color: #fff;
  color: #007853;
  font-size: 1.1em;
  font-weight: bold;
  padding: 15px 25px;
  border: 1px solid #007853;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.btn-whats:hover {
  background-color: #00785493;
  color: #a7ffe2;
}

.icone-whats {
  width: 21px;
  height: 21px;
  margin-right: 12px;
}

.google-review-widget {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px;
  min-height: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
}

.google-map iframe {
  width: 100% !important;
  height: auto;
}

.biografia {
    background-color: #fff;
    padding: 40px;
}

.titulo-session {
    font-family: 'Titillium Web', sans-serif;
    font-size: 3em;
    text-align: left;
    line-height: 1;
    color: #063825;
    margin-bottom: 10px;
}

.biografia-conteudo {
    position: relative; /* Define um contexto para o posicionamento da imagem */
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centraliza o conteúdo verticalmente */
}

.texto-biografia {
    flex: 1;
    margin-right: 20px; /* Adiciona um espaçamento entre o texto e a imagem */
    z-index: 1; /* Mantém o texto acima da imagem para sobreposição */
}

.texto-biografia p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: #063825;
    margin-bottom: 15px;
}

.texto-biografia ul {
    list-style: none;
    padding: 0;
    background-color: #fff;
    padding: 20px;
    padding-right: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 0; /* Mantém a lista acima da imagem */
}

.texto-biografia li {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
    padding-top: 10px; /* Adiciona espaço acima de cada item da lista */
    border-top: 1px solid #ccc; /* Adiciona borda superior cinza */
    padding-right: 50px;
}

.imagem-leandro {
    position: absolute; /* Faz a imagem flutuar */
    right: 10px; /* Ajusta a posição para fora da borda direita */
    top: 30%; /* Posiciona a imagem no meio verticalmente */
    transform: translateY(-50%); /* Centraliza a imagem verticalmente em relação à sessão */
    width: 20%; /* Define o tamanho da imagem */
    z-index: 6; 
}

.imagem-leandro img {
    width: 100%;
    height: auto;
    display: block; /* Remove espaços extras ao redor da imagem */
}

@media screen and (max-width: 768px) {
    .biografia .imagem-leandro {
        display: none;
    }

    .biografia .texto-biografia ul {
        max-width: calc(95% - 40px); /* Ajuste conforme necessário */
        margin: 0 auto;
        padding-right: 20px;
    }
}



.contatos {
    background: url('img/bg_line.png') no-repeat top center, linear-gradient(to top, rgba(0, 71, 44, 0.5) 0%, rgba(0, 0, 0, 0) 100%), #3D5A80;
    background-size: cover;
    padding: 40px;
}

.contato-item {
    display: flex;
    align-items: left;
    margin-bottom: 10px; /* Adicione margem inferior para espaçamento entre os itens de contato */
    flex-direction: column;
}

.contato-item img {
    width: 25px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.contato-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    margin: 0; /* Remova a margem padrão do parágrafo */
}


.contatos-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
}

.titulo-container {
    width: 100%; /* Ocupa a largura total para garantir que o título esteja em sua própria linha */
  }

.informacoes-contato {
    width: 50%;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.informacoes-contato li {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #063825;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.informacoes-contato .contato-item p a {
    color: #fff; /* Adicione a cor desejada para o link de e-mail */
    text-decoration: none; /* Remova o sublinhado padrão dos links */
}

.informacoes-contato .contato-item p a:hover {
    text-decoration: underline; /* Adicione um sublinhado no hover se desejar */
}


.informacoes-contato li img {
    margin-right: 20px;
    width: 25px;
}

.redes-sociais {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Alterado para permitir que os itens se ajustem em telas menores */
    align-items: left;
}

.redes-sociais h3 {
    width: 100%;
    text-align: left;
    margin-bottom: 40px;
}

.redes-sociais a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: transform 0.3s ease; /* Adiciona uma transição suave à propriedade transform */
  }
  
  .redes-sociais a:hover img {
    transform: scale(1.2); /* Aumenta o tamanho do ícone em 20% no hover */
  }
  
  .redes-sociais a:hover {
    background-color: #000; /* Adicione a cor desejada no hover */
    border-radius: 50%;
  }
  
  .redes-sociais a {
    position: relative;
    display: inline-block;
  }
  
  .redes-sociais a::after {
    content: attr(data-tooltip); /* Exibe o texto do atributo data-tooltip como conteúdo */
    position: absolute;
    top: -30px; /* Ajusta a posição vertical da caixinha */
    left: 50%;
    transform: translateX(-50%); /* Centraliza horizontalmente */
    background-color: #fff;
    color: #031e43;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0; /* Inicialmente invisível */
    transition: opacity 0.3s ease; /* Adiciona uma transição suave à propriedade opacity */
    font-family: 'Verdana', sans-serif;
    font-size: 0.5em;

  }
  
  .redes-sociais a:hover::after {
    opacity: 1; /* Torna a caixinha visível no hover */
  }
  

.formulario-contato {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    align-self: flex-start;
}

.formulario-contato label,
.formulario-contato input,
.formulario-contato textarea
{
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    display: block; /* Coloca os elementos embaixo um do outro */
    width: 99%; /* Faz os inputs ocuparem 100% da largura */
}

.formulario-contato input {
    border: 1px solid #06382580; /* Adiciona a borda branca de 1px */
    border-radius: 10px; /* Adiciona bordas arredondadas */
    height: 30px; /* Define a altura desejada */
    padding: 5px; /* Adiciona algum espaço interno para melhor aparência */
    color: #666; /* Define a cor do texto */
}

.formulario-contato textarea {
    border: 1px solid #06382580; /* Adiciona a borda branca de 1px */
    border-radius: 10px; /* Adiciona bordas arredondadas */
    height: 100px; /* Define a altura desejada */
    padding: 5px; /* Adiciona algum espaço interno para melhor aparência */
    color: #666; /* Define a cor do texto */
}

.formulario-contato button {
    background-color: #009966; /* Cor de fundo verde escuro */
    color: #fff; /* Cor do texto branco */
    padding: 10px 20px; /* Adiciona o padding desejado */
    font-size: 20px; /* Tamanho da fonte */
    border: none; /* Remove a borda padrão */
    border-radius: 10px; /* Adiciona bordas arredondadas */
    cursor: pointer;
    display: inline-block;
}


/* Adicione este bloco para dar algum estilo quando o botão é hover */
.formulario-contato button:hover {
    background-color: #007853; /* Cor mais escura no hover */
}

@media screen and (max-width: 1024px) {
    .contatos-container {
        flex-direction: column; /* Altera a direção para column em telas menores */
    }

    .informacoes-contato {
        width: 100%; /* Define a largura de 100% para ocupar a largura total */
    }

    .formulario-contato {
        margin-top: 20px; /* Adiciona margem superior entre as informações de contato e o formulário */
    }

    /* Adiciona regras para o formulário ocupar 100% da largura */
    .formulario-contato {
        width: 100%;
    }
}


.rodape {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    margin-top: 40px;
    position: relative; /* Adiciona posição relativa para usar position absolute na linha */
    border-top: 1px solid #ffffff50; /* Adiciona a borda branca no topo da div */
}

.rodape::before {
    content: "";
    position: absolute;
    top: 0; /* Ajusta para o topo da div de rodapé */
    left: 50%; /* Centraliza a linha horizontalmente */
    width: 1px;
    height: 100%;
    background-color: #fff; /* Cor da linha branca */
    transform: translateX(-50%); /* Centraliza a linha */
    z-index: -1; /* Move a linha para trás do conteúdo */
}

.logo-rodape {
    flex: 1; /* Faz a coluna ocupar o espaço disponível */
}

.logo-rodape img {
    width: 150px; /* Ajuste o tamanho conforme necessário */
    height: auto;
}

.copyright {
    width: 90%;
    color: #999; /* Cor do texto branco */
    border-left: #999 solid 1px;
    padding-left: 20px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-left: 20px; /* Adapte conforme necessário */
}

@media screen and (max-width: 768px) {

  /* Corrige o h1 da seção hero */
  .hero-content h1 {
    font-size: 1.5em;
    line-height: 1.4;
  }

  /* Corrige títulos gerais */
  h2, h3, .titulo, .titulo-amarelo, .titulo-branco-interno, .titulo-session {
    font-size: 1.5em;
  }

  /* Texto da seção "faixa-transformacao" e "qualidade" */
  .texto-qualidade,
  .texto-biografia li,
  .popup-metodologia p,
  .popup-acolhimento p,
  .descricao-tratamento {
    font-size: 1em;
    line-height: 1.6;
  }

  .btn, .btn2 {
    font-size: 1em;
    padding: 12px 20px;
  }

  .btn .icone-whats {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
}