*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
line-height:1.6;
}
html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}


body{

background:#F5F3F7;
color:#2E2E2E;

}

/* HEADER */

.header{

background:white;
padding:20px 10%;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:100;

}

.container-header{

display:flex;
justify-content:space-between;
align-items:center;

}

.menu a{

margin-left:25px;
text-decoration:none;
color:#2E2E2E;
font-weight:500;

}

.btn-menu{

background:#3FA796;
color:white;
padding:8px 16px;
border-radius:6px;  

}

/* lightSwipe */

.light-swipe{

  position: absolute;

  top: 0;

  left: -200px;

  width: 200px;

  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );

  transform: skewX(-25deg);

  animation: swipe 6s infinite;

}

@keyframes swipe {

  0%{
    left: -200px;
  }

  60%{
    left: 120%;
  }

  100%{
    left: 120%;
  }

}

/* HERO */

.hero-sobre{

  height: 700px;

  background-image: url("img/hero-psicanalise.jpg");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  position: relative;

  padding: 0 80px;

}


.hero-overlay{

  position: absolute;

  width: 100%;

  height: 100%;

  background: rgba(0,0,0,0.35);

  top: 0;

  left: 0;

}



.hero-content{

  position: relative;

  max-width: 520px;

  color: white;

}

.hero-content h1{

  font-size: 48px;

  margin-bottom: 20px;

}

.hero-content p{

  font-size: 18px;

  margin-bottom: 30px;

}

/* BOTÕES */

.hero-buttons{

  display: flex;

  gap: 16px;

}

.btn-primary{

  background: #3aa37d;

  padding: 14px 26px;

  border-radius: 8px;

  color: white;

  text-decoration: none;

  font-weight: 600;

}

.btn-secondary{

  border: 2px solid white;

  padding: 14px 26px;

  border-radius: 8px;

  color: white;

  text-decoration: none;

  font-weight: 600;

}


/* SEÇÕES */

section{

padding:80px 10%;

}

h2{

color:#5B4B8A;
margin-bottom:30px;
font-size: 35px;

}

/* SOBRE */

.sobre-container{

display:flex;
align-items:center;
gap:40px;

}

.sobre-img img{

width:350px;
border-radius:12px;

}

.tituloFormacao{
    margin: 15px;
    font-size: 25px;
    color: #5B4B8A;
}
.sobre-text{
    width: 70%;
    text-align: justify;
}

/* CARDS */

.cards{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;

}

.card{

background:white;
padding:30px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
text-align:center;

}

/* FUNCIONA */

.ajuda{
  padding:90px 20px;
  background:#f6f5fb;
}

.ajuda h2{
  text-align:center;
  font-size:36px;
  color:#4e3c84;
  margin-bottom:15px;
}

.ajuda-subtitulo{
  text-align:center;
  max-width:700px;
  margin:auto;
  margin-bottom:60px;
  color:#555;
}

.ajuda-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}

.ajuda-card{
  background:white;
  padding:30px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.ajuda-card:hover{
  transform:translateY(-5px);
}

.ajuda-card h3{
  margin-bottom:10px;
  color:#222;
}

.ajuda-card p{
  color:#555;
  line-height:1.5;
}

/* PLANOS */

.planos-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:30px;

}

.plano-card{

background:white;
padding:40px;
border-radius:16px;
box-shadow:0 10px 24px rgba(0,0,0,0.05);
position:relative;
transition:0.25s;

}

.plano-card:hover{

transform:translateY(-8px);

}

.plano-card ul{

margin:20px 0;
padding-left:0;
list-style:none;

}

.plano-card li{

margin-bottom:8px;

}

.plano-card.destaque{

border:2px solid #3FA796;

}

.tag{

position:absolute;
top:-12px;
left:20px;
background:#3FA796;
color:white;
padding:5px 12px;
border-radius:6px;
font-size:12px;

}

/* DEPOIMENTOS */

.depo-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;

}

.depo-card{

background:white;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 20px rgba(0,0,0,0.05);
transition:0.3s;

}

.depo-card:hover{

transform:translateY(-8px);

}

.depo-card img{

width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;

}

.depo-card h4{

margin-bottom:10px;
color:#5B4B8A;

}

.depo-card p{

font-size:14px;

}
/* CONTATO */

.contato{

text-align:center;
background:#A8D5C2;

}

/* FOOTER */

.footer{

background:#4e3c84;

color:white;

padding:60px 20px 30px;


}

.footer-container{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

}

.footer h3{

margin-bottom:10px;

}

.footer h4{

margin-bottom:15px;

}

.footer p{

line-height:1.6;

color:#ddd;

}

.footer ul{

list-style:none;

padding:0;

}

.footer ul li{

margin-bottom:8px;

}

.footer a{

color:white;

text-decoration:none;

transition:0.3s;

}

.footer a:hover{

color:#8fd3b5;

}
.footer .instagram-link:hover{
  color:#3FA796;
background-color: #4e3c84 ;
border: 1px solid #3FA796 ;
}

.instagram-link{

display:inline-block;

margin-top:10px;

background:#3FA796;

color:#333;

padding:10px 18px;

border-radius:6px;

font-weight:600;

}

.footer-bottom{

text-align:center;

margin-top:40px;

font-size:14px;

color:#ccc;

}

/* WHATSAPP */

.whatsapp{

position:fixed;
bottom:20px;
right:20px;
background:#3FA796;
color:white;
font-size:24px;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.2);

}

/* RESPONSIVO */

@media(max-width:900px){

.hero{

flex-direction:column;
text-align:center;

}

.hero-image img{

width:300px;
margin-top:40px;

}

.sobre-container{

flex-direction:column;
text-align:center;

}

.menu{

display:none;

}
@media (max-width:900px){

.ajuda-grid{
  grid-template-columns: 1fr 1fr;
}

}

@media (max-width:600px){

.ajuda-grid{
  grid-template-columns: 1fr;
}

}
}   

.hero-buttons{
display:flex;
gap:16px;
margin-top:30px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{

padding:14px 26px;
border-radius:8px;
font-weight:500;
text-decoration:none;
display:inline-flex;
align-items:center;
justify-content:center;
transition:0.25s;

}

.btn-primary{

background:#3FA796;
color:white;
box-shadow:0 6px 14px rgba(0,0,0,0.08);

}

.btn-primary:hover{

transform:translateY(-3px);
box-shadow:0 10px 18px rgba(0,0,0,0.12);

}

.btn-secondary{

border:2px solid #5B4B8A;
color:#5B4B8A;
}

.section-intro{

max-width:600px;
margin-bottom:40px;
color:#555;

}

.funciona-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;

}

.info-card{

background:white;
padding:35px;
border-radius:14px;
text-align:center;
transition:0.25s;
box-shadow:0 6px 18px rgba(0,0,0,0.05);

}

.info-card:hover{

transform:translateY(-6px);

}

.icon{

font-size:28px;
margin-bottom:10px;

}

.faq {
  padding: 80px 20px;
  background: #f7f6fb;
}

.faq h2{
  text-align:center;
  font-size:32px;
  margin-bottom:50px;
  color:#4e3c84;
}

.faq-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap:25px;
}

.faq-card{
  background:white;
  padding:25px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.faq-question{
  font-weight:600;
  font-size:18px;
  margin-bottom:10px;
}

.faq-answer{
  font-size:15px;
  color:#555;
  line-height:1.5;
}
.cta-agendamento{
    margin: -30px;
}
.lista-formacao{
  margin-top:10px;
  margin-bottom:20px;
  padding-left:18px;
}

.lista-formacao li{
  margin-bottom:8px;
  line-height:1.6;
}