/* styles.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --verde-salvia: #a8c3a0;
  --verde-erva-doce: #c9dabf;
  --verde-oliva-claro: #c8d5b9;
  --verde-musgo-palido: #d5e1d5;

  --azul-ceu-claro: #b3d8e4;
  --azul-acinzentado: #a5b8bd;
  --marinho-sutil: #3d5866;

  --bege-areia-suave: #f5f2eb;
  --bege-neutro: #f4f1ed;
  --bege-argila-suave: #ede6db;
  --marrom-textual-suave: #4c4a42;
  --marrom-suave: #4e4b45;

  --cinza-claro-neutro: #ececec;
  --cinza-azuldo: #3d5866;
  --cina-taupe-neutro: #9e9d89;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #1d1d1d;
  color: #333;
  line-height: 1.3;
}


.container {
  max-width: 1250px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}

.hero {
 background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0,0,0,0.7)), url(./assets/images/bg-hero-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  color: #fff;
  line-height: 1;
  text-align: left;
  display: flex;
}


.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.hero-containers {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 75px;
}

/* Navbar */
nav.navbar {
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #1d1d1d;
  z-index: 1100;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  transition: transform 0.3s ease, background-color 0.3s ease;
  
}

/* Logo com gradiente */
.logo {
  font-weight: bold;
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Montserrat', sans-serif;
}

/* Links desktop */
.menu {
  display: flex;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}
nav a:hover {
  letter-spacing: 0.01rem;
  color: var(--verde-salvia);
}

/* Botão hambúrguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .hamburger span {
    background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  }

  /* Menu lateral */
  .menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100%;
    width: 260px;
    background-color: #1d1d1d;
    padding: 80px 20px;
    text-align: right;
    z-index: 1200;
    transition: right 0.3s ease;
  }
  .menu a {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    background: linear-gradient(to right, #fff, rgb(138, 232, 138));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .menu.active {
    right: 0;
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 800;
    display: none;
  }
  .menu-overlay.active {
    display: block;
  }
}


.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #4CAF50;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 3px 5px 3px #1d1d1d;
  margin-top: 40px;
  width: fit-content;
  margin: 20px auto;
}

.btn:hover {
  background-color: #388E3C;
}

section {
  padding: 60px 20px;
  
  margin: 0 auto;
}



h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2c3e50;
}

ul {
  list-style: disc inside;
  padding-left: 20px;
}

form input,
form textarea {
  width: 320px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

form button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

form button:hover {
  background-color: #388E3C;
}
.cta.overlay {
  position: relative;
  background-image: url(./assets/images/leandro-escritorio.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: 70%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: row;
}

/* Cria a sombra por cima do background */
.cta.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2); /* sombra escura com transparência */
  z-index: 2;
  pointer-events: none; /* permite clicar nos elementos abaixo */
}

.cta {
  background-image: url(./assets/images/leandro-escritorio.png);
  background-size: cover;
  height: 100vh;
  background-position: 10%;
  background-attachment: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;

}
.cta h2 {
  color: #fff;
}


.redes-sociais h2 {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 99;
  text-transform: uppercase;
  font-size: 2.5rem;
  
}
.midias {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.midias a {
  font-size: 23px;
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  border-radius: 12px;
  text-align: center;
  padding: 20px 4%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: fit-content;
  font-family: 'Poppins', sans-serif;
  gap: 1rem;
  box-shadow: 3px 5px 3px #fff;
}
.midias img {
  width: 32px;
  
}

footer {
  background-color: #1d1d1d;
  color: white;
  text-align: center;
  padding: 20px;
}
footer .container p {
  font-size: 1.5rem;
}
.faq-section {
  max-width: 700px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  border: none;
  outline: none;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.5s;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.faq-question:hover {
  background: linear-gradient(to left, #fff, rgb(92, 239, 92));
  
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(to right, #a5dda5, rgb(18, 88, 18));
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  text-align: center;
}

.faq-answer p {
  margin: 15px auto;
  font-weight: 500;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}


.beneficios {
    display: flex;
}
.container-2 {
  position: relative;
  display: inline-block;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, rgba(68, 68, 56, 0.6), transparent);
  pointer-events: none;
  z-index: 2;
}
.hero .btn {
  margin-top: 120px;
}

.hero img {
    max-width: 600px;
    filter: drop-shadow(0 20px 30px rgba(168, 195, 160, 0.6)); /* brilho verde suave abaixo */

}
.positive-infos {
  display: flex;
  list-style: none;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  margin: 0;
  align-items: center;
}
.positive-infos li {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  border: 1px solid rgb(138, 232, 138);
  border-radius: 15px;
  padding: 10px;
  width: fit-content;
  font-size: 12px;
  background: linear-gradient(to top, rgba(112, 173, 95, 0.6), transparent);
}
.problemas-section {
  padding: 60px 20px;
  background-color: #1d1d1d;
  text-align: center;
}
#terapia {
  background-color: #1d1d1d;
}
#p22 {
  font-size: 1.3rem;
  color: #000;
  padding-bottom: 20px;
}
.second-section {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
}
.problemas-section.second-section h2 {
  background: linear-gradient(to left, #1d1d1d, rgb(78, 105, 78));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1;
}
.second-section .problemas-header p {
  background: linear-gradient(to left, #1d1d1d, rgb(78, 105, 78));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  text-transform: uppercase;
}


.problemas-header {
  padding: 40px 4%;
  max-width: 1250px;
  margin: 0 auto;
}
.problemas-header h2 {
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.problemas-header p {
  background: linear-gradient(to right, #fff, rgb(240, 242, 240));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-size: 1.4rem;
}

.problemas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1250px;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
}
.problemas-section .btn {
  margin-top: 40px;
  box-shadow: 2px 5px 2px black;
}

.problema {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: end;
  transition: transform 0.3s ease;
  background-color: var(--bege-argila-suave);
}

.problema:hover {
  transform: scale(1.02);
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  backdrop-filter: blur(2px);
}

.overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 0.95rem;
  line-height: 1.4;
}



.beneficios .container ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-content: space-between;
}
.beneficios .container ul li {
   
    padding: 20px;
    text-align: center;
    align-items: stretch;
    border-radius: 12px;
    box-shadow: 3px 5px 3px #1d1d1d;
    background-color: var(--azul-ceu-claro);
    color: var(--marrom-textual-suave);
    font-weight: 500;
}


.problemas-section {
  background-color: var(--verde-musgo-palido);
}
.beneficios {
  text-align: center;
}

#sobre {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
}

.sobre .container .btn {
  
  text-align: center;
  width: fit-content;
}

.sobre .container {
  background-color: #1d1d1d;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 20px;
  flex: 1 1 60%;
  position: relative;
  z-index: 1;
  justify-content: center;
  display: flex;
  align-items: center;
}

.flex-container { 
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
}
.sobre .container p {
  width: 100%;
  background: linear-gradient(to right, #fff, rgb(240, 242, 240));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.sobre .container h2 {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.sobre-img-wrapper {
  position: relative;
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
  
}

.sobre-img {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background-color: var(--marinho-sutil);
  border: 6px solid rgb(19, 255, 19);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute; 
  top: -175px; 
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 3px 5px 3px #000;
  
}
.sobre-img span {
  width: 100%;
  max-width: fit-content;
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1;
  margin-top: -30px;
  z-index: 1;
  border-radius: 12px;  
  box-shadow: 3px 5px 3px #000;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.sobre-img img {
  max-width: 90%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(19, 134, 223, 0.6));
}
.texto {
  margin-top: 180px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  line-height: 1.1;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
    align-items: center;
  }

  .sobre-img {
    position: static;
    transform: none;
    margin: 20px;
    width: 220px;
    height: 220px;
    
  } 
  .sobre-img span {
    min-width: 360px;
    line-height: 1;
    font-weight: bold;
  
    
  }
  
}



.sobre, .metodo {
  display: flex;
  padding-bottom: 0;
  padding-right: 0;
 
}
.metodo.overlay {
  position: relative;
  background-image: url(./assets/images/leandro-escritorio.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: 70%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Cria a sombra por cima do background */
.metodo.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* sombra escura com transparência */
  z-index: 2;
  pointer-events: none; /* permite clicar nos elementos abaixo */
}

/* Garante que o conteúdo fique acima da sombra */
.metodo.overlay .container,
.metodo.overlay .container-2 {
  position: relative;
  z-index: 3;
  color: white; /* garante legibilidade */
}


.sobre h2 {
  font-size: 3rem;
}
.sobre p {
  font-size: 1.4rem;
  text-align: center;
}


.metodo  h2 {
  font-size: 52px;
  color: var(--bege-neutro);
  text-shadow: 1px 1px 1px var(--azul-ceu-claro);
}

.metodo p {
  font-size: 24px;
  padding: 20px;
  background-color: #ffffff7f;
  color: #1d1d1d;
  text-shadow: var(--marrom-suave);
}
.metodo .container-2 img {
  filter: drop-shadow(0 20px 30px rgba(19, 134, 223, 0.6)); /* brilho verde suave abaixo */

}
.video-normal {
  width: 600px;
  max-width: 1920px;
  aspect-ratio: 16 / 9;
  display: block;
  margin: 0 auto;
  border-radius: 12px; /* opcional: cantos arredondados */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* sombra sutil */
}
.video-section {
  text-align: center;
}
.testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.testimonials h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  max-width: 320px;
  flex: 1 1 300px;
  text-align: left;
}

.testimonial p {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.testimonial h4 {
  font-weight: normal;
  color: #666;
  font-size: 0.95em;
}
.benefit-promisse {
  max-width: 1250px;
}
.benefit-text {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.benefit-text h2 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  font-size: 3rem;
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.benefit-text p {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
}
.benefit-box {
  display: flex;
  font-family: 'Roboto', sans-serif;
  gap: 2rem;
  
}
.benefit-item {
  box-shadow: 3px 5px 3px #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  align-items: center;
  color: #fff;
  background: linear-gradient(to right, #c9dabf, rgb(138, 232, 138));
   
}
.benefit-item h3 {
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
}

.psiterapia {
  background: linear-gradient(to right, #1d1d1d, #1d1d1d);
   
}
.psiterapia-container {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  display: flex;
  max-width: 1250px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 15px;
  
}
.psiterapia img {
  max-width: 300px;
  border-radius: 12px;
}
.psiterapia-text h2 {
  background: linear-gradient(to right, #1c1a1a, rgb(26, 234, 26));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  line-height: 1;
  font-size: 2.5rem;
}
.psiterapia-text p {
  font-size: 1.4rem;
  color: #000;
  width: fit-content;
}
.psiterapia-text {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5px;
}
.psiterapia-text .btn {
  margin: 0 auto;
}

@media screen and (max-width:1020px) {
  .hero {
    width: 100%;
  }
  .hero-containers {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .hero .container {
    max-width: 1020px;
    padding: 10px;
  }
  .hero .container h1 {
    font-size: 1.8rem;
  }
  .hero .container p {
    font-size: 1.3rem;
  }
  .hero .btn {
    margin-top: 30px;
  }
  .positive-infos {
    flex-wrap: wrap;
  }
  .sobre {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
 .sobre .container {
  height: auto;
  margin: 0 auto;
  
 }
 .sobre {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .sobre .flex-container {
    max-width: 100%;
    width: 100%;
    padding: 10px 10px 0 10px;
  }
  .sobre .flex-container .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sobre .flex-container .container .texto {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }
 .sobre-img-wrapper {
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
 }
 .container .texto {
  margin-top: 0;
 }
  .benefit-text h2 {
    line-height: 1;
    font-size: 1.8rem;
  }
  .benefit-text p {
    font-size: 1.3rem;
  }
  .benefit-box {
    display: flex;
    flex-wrap: wrap;
  }
  .sobre {
    width: 100%;
    max-width: 100%;
  }
  .sobre .texto h2{
    font-size: 2rem;
    text-align: center;
    line-height: 1;
  }
  .sobre .texto p {
    line-height: 1;
    text-align: center;
  }
  .video-section {
    width: 100%;
    padding: 0;
  }
  .video-section .problemas-header  h2{
    padding: 0;
    margin: 0;
    font-size: 1.3rem;
    width: 100%;
  }
  .video-section .problemas-header p {
    line-height: 1;
    font-size: 1.2rem;
  }
  .video video {
    width: 100%;
  }

  .problemas-section.first-section h2, 
  .problemas-section.second-section h2 {
    line-height: 1;
    font-size: 1.6rem;
    text-align: center;
  }
  .problemas-section.first-section p, 
  .problemas-section.second-section p
  {
    line-height: 1;
    font-size: 1.3rem;
    text-align: center;
    color: #fff;
    line-height: 1;
  }
  .psiterapia {
   
    padding: 10px;
  }
  .psiterapia-container{
    flex-direction: column-reverse;
    padding: 10px;
  }
  .psiterapia-container h2 {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1;
  }
  .psiterapia-container p {
    font-size: 1.3rem;
    line-height: 1;
    font-family: 'Poppins', sans-serif;

  }
  .psiterapia-container img {
    width: 100%;
    margin: 0 auto;
  }
  .psiterapia-container.btn {
    font-size: 1rem;
  }
  .faq-section h2 {
    line-height: 1;
  }
  .faq-question {
    text-align: left;
  }
  footer {
    flex-direction: column;
  }
  footer .container p {
    font-size: 1rem;
    line-height: 1;
  }
  .redes-sociais h2 {
    line-height: 1;
  }
  .midias {
    flex-direction: column;
  }
  .abordagem {
    max-width: 100%;
    padding: 2px;
  }
  .abordagem-container {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    max-width: 1020px;
    width: 100%;
  }
  .abordagem-title  {
    padding: 10px;
  }
  .abordagem-title h2{
    line-height: 1;
    width: 100%;
  }
  .abordagem-title p {
    line-height: 1;
    font-size: 24px;
  }
  .abordagem-text {
    font-size: 18px;
  }
  .abordagem-imaginations {
    display: flex;
   flex-direction: column;
   
  }
  
  .imagination {
    max-width: 160px;
    max-height: 160px;
  }
 
  .abordagem-leandro  {
    display: flex;
    flex-direction: column;
  }
  .abordagem-leandro .btn {
    font-size: 15px;
    align-items: center;
  }
  .imagination-span {
    font-size: 20px;
    text-align:center;
    line-height: 1;
    margin: 20px 0;
    
  }
  .imagination-span strong {
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
}
.elfsight {
  background-color: #010000;
  margin: 0 auto;
  padding: 20px;
}
.elfsight a {
  display: none;
}
.imagination-span {
    font-size: 20px;
    text-align:center;
    line-height: 1;
    margin: 20px 0;
    
  }
  .imagination-span strong {
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
.abordagem {
  background-color: #1d1d1d;
  
}

.abordagem {
  max-width: 1250px;
}
.abordagem-title h2 {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 3rem;
  text-align: center;
}
.abordagem-title p {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  text-align: center;
}
.abordagem-container {
  display: flex;
}
.abordagem-container img {
  max-width: 500px;
  filter: drop-shadow(0 20px 30px rgb(138, 232, 138));
}
.abordagem-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
  padding: 20px;
}
.abordagem-text p {
  color: #fff;
  
}
.abordagem-text span {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-weight: bold;
}
.imaginations {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.imagination {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
  width: 200px;
  height: 200px;
  border-radius: 30px;
  box-shadow: 1px 2px 3px rgb(138, 232, 138);
}
.imagination p {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.imagination .overlay {
  border-radius: 30px;
}
.abordagem-imaginations {
  display: flex;
}
.abordagem-leandro {
  border-radius: 50%;
 
}
.abordagem-leandro .btn {
  margin-top: -20px;
  z-index: 999;
}
#dream {
  background: linear-gradient(to right, #fff, rgb(138, 232, 138));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}
#dream strong {
  color: gold;
}
.abordagem-leandro img {
  border-radius: 10px; /* opcional */
  filter: drop-shadow(0 0 25px 5px rgba(0, 255, 0, 0.6)); /* sombra verde inicial */
  animation: trovoada 6s infinite;
}
.psiterapia em {
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes trovoada {
  0%, 100% {
    filter: drop-shadow(0 0 25px 5px rgba(0, 255, 0, 0.6));
  }
  10% {
    filter: drop-shadow(0 0 60px rgb(255, 255, 255));
  }
  11% {
    filter: drop-shadow(0 0 25px 5px rgba(0, 255, 0, 0.6));
  }
  12% {
    filter: drop-shadow(0 0 80px rgba(255, 255, 255, 1));
  }
  13% {
    filter: drop-shadow(0 0 25px 5px rgba(0, 255, 0, 0.6));
  }
  70% {
    filter: drop-shadow(0 0 25px 5px rgba(0, 255, 0, 0.9));
  }
  71% {
    filter: drop-shadow(0 0 90px rgba(255, 255, 255, 1));
  }
  72% {
    filter: drop-shadow(0 0 25px 5px rgba(0, 255, 0, 0.6));
  }
}
