/* RESET */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html{
  scroll-behavior: smooth;
}

body{
  background: #f5f5f5;
  color: #333;
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header{
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  background: linear-gradient(270deg, #d8a7b1, #5ba89b);
  background-size: 400% 400%;
  animation: gradientMove 5s ease infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container-header{
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo img{
  width: 65px;
  height: auto;
  margin-top: 8px;
}

nav{
  display: flex;
  align-items: center;
}

nav a{
  margin: 0 12px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

nav a:hover{
  color: white;
}

header button{
  padding: 10px 20px;
  border-radius: 22px;
  border: 1px solid white;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

header button:hover{
  background: white;
  color: #333;
}

/* HERO */
.hero{
  min-height: 100vh;
  padding: 140px 80px 80px;
  display: flex;
  align-items: center;
  background: url('img/hero.png') center/cover no-repeat;
  margin-top: 20px;
}

.hero-text{
  width: 50%;
  max-width: 620px;
}

.hero-text h1{
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #2f2b2c;
  font-weight: 800;
}

.hero-text p{
  color: #5e5557;
  margin-bottom: 24px;
  font-size: 18px;
  max-width: 480px;
}

.hero-text button{
  padding: 14px 28px;
  border-radius: 24px;
  border: none;
  background: #1d8b82;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.hero-text button:hover{
  transform: scale(1.05);
}

/* PROBLEMAS */
.problemas{
  padding: 90px 0;
  background: #f3f3f3;
}

.problemas h2{
  text-align: left;
  margin-bottom: 40px;
  font-size: 30px;
  line-height: 1.1;
  color: #7a4c58;
  font-weight: 700;
  margin-left: 90px;
}

.carrossel{
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 24px 20px 80px;
  cursor: grab;
}

.carrossel.dragging{
  cursor: grabbing;
}

.carrossel::-webkit-scrollbar{
  display: none;
}

.card{
  min-width: 220px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  transition: 0.3s;
  user-select: none;
}

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

.card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  z-index: -10;
}

.card p{
  position: absolute;
  bottom: 0;
  font-weight: 600;
  width: 85%;
  padding: 15px;
  margin: 24px;
  font-size: 24px;
  line-height: 1;
  color: #5c3b44;
  letter-spacing: -1px;
  z-index: 10;
}


/* peso emocional */
.title{
  text-align: right;
  margin-bottom: 40px;
  font-size: 30px;
  line-height: 1.1;
  color: #7a4c58;
  font-weight: 700;
  margin-right: 90px;
}
.cta{
  text-align: left;
  margin-bottom: 80px;
  font-size: 30px;
  line-height: 1.1;
  color: #7a4c58;
  font-weight: 700;
  margin-left: 90px;
}
.cardCulpa, .cardAnsiedade, .cardFuturo, .cardCansaco{
  display: flex;
  justify-content: center;
  margin: 24px 12px;
  
}
.cardimg {
  position: relative;
  transition: all 0.5s ease-in;
}
.cardimg:hover{
  transform: scale(1.03);
}
.cardCulpa p{
  color: #efc8d6;
  font-size: 30px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 95%; 
  transform: translateX(-100%) translateY(-50%)
}

.cardAnsiedade p{
  color: #A9F8ED;
  font-size: 30px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 15%; 
  transform: translateX(-100%) translateY(-50%)
}



/* COMO FUNCIONA TEXTO */
.como-funciona-texto{
  padding: 90px 0;
  background: linear-gradient(180deg, #f3d4e0 0%, #efc8d6 100%);
}

.como-funciona-texto .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.texto-box{
  flex: 1;
}

.texto-box h2{
  font-size: 42px;
  line-height: 1.05;
  color: #6d3650;
  margin-bottom: 20px;
  font-weight: 800;
}

.texto-box p{
  font-size: 18px;
  color: #5d4a52;
  margin-bottom: 16px;
  line-height: 1.7;
  text-align: justify;
}

.imagem-box{
  flex: 1;
  display: flex;
  justify-content: center;
}

.imagem-box img{
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* PASSOS */
.passos{
  padding: 90px 0;
  background: #fff;
}

.passos h2{
  text-align: center;
  font-size: 44px;
  color: #15796f;
  margin-bottom: 50px;
  font-weight: 800;
}

.passos-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.passo{
  text-align: center;
  padding: 20px;
}

.numero{
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: #7a4c58;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 800;
}

.passo:nth-child(even) .numero{
  background: #1d8b82;
}

.textoVermelho{
  font-size: 20px;
  color: #7a4c58;
  margin-bottom: 12px;
  font-weight: 700;
}
.textoVerde{
  font-size: 20px;
  color: #146c64;
  margin-bottom: 12px;
  font-weight: 700;
}
.passo p{
  font-size: 15px;
  line-height: 1.6;
  color: #5b5b5b;
}

/* PARA QUEM */
.para-quem{
  padding: 90px 0;
  background: #f7f7f7;
}

.para-quem h2{
  text-align: center;
  font-size: 42px;
  color: #7a4c58;
  margin-bottom: 16px;
  font-weight: 800;
}

.subtitulo-secao{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 18px;
}

.lista-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.item-lista{
  background: linear-gradient(135deg, #7a4c58, #965d72);
  color: white;
  padding: 22px 24px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(122, 76, 88, 0.15);
}

/* DIFERENCIAIS */
/* DIFERENCIAIS */
.diferenciais{
  position: relative;
  padding: 110px 0;
  background: #bdeee7;
  overflow: hidden;
}

/* bolinhas de fundo (igual transformação) */
.diferenciais::before{
  content: "";
  position: absolute;
  left: -120px;
  top: 60px;
  width: 320px;
  height: 320px;
  background: #8fd7cf;
  border-radius: 50%;
  opacity: 0.6;
}

.diferenciais::after{
  content: "";
  position: absolute;
  right: -140px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  background: #8fd7cf;
  border-radius: 50%;
  opacity: 0.6;
}

.diferenciais .container{
  position: relative;
  z-index: 2;
}

/* título */
.diferenciais h2{
  text-align: center;
  font-size: 52px;
  color: #0f6f68;
  margin-bottom: 50px;
  font-weight: 800;
    align-items: center;
}

/* grid */
.diferenciais-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* cards */
.diferencial-card{
  background: #146c64;
  color: #d5fff8;
  border-radius: 22px;
  padding: 28px 26px;
  font-size: 18px;
  line-height: 1.6;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
  align-items: center;
  text-align: center;
}

/* hover bonito */
.diferencial-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 34px rgba(0,0,0,0.22);
}

/* RESPONSIVO */
@media (max-width: 900px){
  .diferenciais-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .diferenciais{
    padding: 80px 0;
  }

  .diferenciais h2{
    font-size: 34px;
  }

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

/* SOBRE MIM */
.sobre-mim{
  padding: 90px 0;
  background: #fff;
}

.sobre-grid{
  display: flex;
  align-items: center;
  gap: 50px;
}

.sobre-texto{
  flex: 1.2;
}

.sobre-texto h2{
  font-size: 42px;
  color: #7a4c58;
  margin-bottom: 20px;
  font-weight: 800;
}

.sobre-texto p{
  font-size: 18px;
  color: #5c5c5c;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
  margin-right: 30px;
}

.sobre-imagem{
  flex: 1;
}

.sobre-imagem img{
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* ATENDIMENTO */
/* ATENDIMENTO */
.atendimento{
  padding: 110px 0;
  background: #f6eef2;
  text-align: center;
}

.atendimento .container{
  max-width: 900px;
}

.atendimento h2{
  font-size: 48px;
  color: #7a4c58;
  margin-bottom: 24px;
  font-weight: 800;
}

.atendimento p{
  font-size: 18px;
  line-height: 1.7;
  color: #5e4150;
  margin-bottom: 40px;
}

.atendimento-box{
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* BOTÕES MAIS BONITOS */
.atendimento-item{
  background: transparent;
  border: 2px solid #d7b2be;
  padding: 18px 32px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #7a4c58;
  min-width: 260px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER */
.atendimento-item:hover{
  background: #7a4c58;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(122, 76, 88, 0.2);
}

/* RESPONSIVO */
@media (max-width: 600px){
  .atendimento{
    padding: 80px 0;
  }

  .atendimento h2{
    font-size: 34px;
  }

  .atendimento p{
    font-size: 16px;
  }

  .atendimento-item{
    width: 100%;
    max-width: 320px;
  }
}

/* CTA FINAL */
.cta-final{
  padding: 90px 0;
  background: linear-gradient(270deg, #d8a7b1, #5ba89b);
  background-size: 400% 400%;
  animation: gradientMove 5s ease infinite;
}

.cta-box{
  text-align: center;
  color: white;
}

.cta-box h2{
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-box p{
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.cta-destaque{
  font-weight: 600;
  margin-top: 16px;
}

.cta-box button{
  margin-top: 24px;
  padding: 16px 30px;
  border-radius: 28px;
  border: none;
  background: white;
  color: #1d8b82;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.cta-box button:hover{
  transform: scale(1.05);
}

/* FAQ */
.faq{
  padding: 90px 0;
  background: #ffffff;
}

.faq h2{
  text-align: center;
  font-size: 42px;
  color: #7a4c58;
  margin-bottom: 40px;
  font-weight: 800;
}

.faq-lista{
  max-width: 900px;
  margin: 0 auto;
}

.faq-lista details{
  background: #f7f3f5;
  border: 1px solid #eadbe1;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.faq-lista summary{
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #5d3b47;
  list-style: none;
}

.faq-lista summary::-webkit-details-marker{
  display: none;
}

.faq-lista p{
  margin-top: 14px;
  line-height: 1.7;
  color: #666;
  font-size: 16px;
}

/* FOOTER */
footer{
  background: #6d4652;
  padding: 24px 0;
  text-align: center;
}

footer p{
  color: white;
  font-size: 14px;
}

/* TRANSFORMAÇÃO */
.transformacao{
  position: relative;
  padding: 90px 0 110px;
  background: #bdeee7;
  overflow: hidden;
}

.transformacao::before{
  content: "";
  position: absolute;
  left: -140px;
  top: 80px;
  width: 370px;
  height: 370px;
  background: #8fd7cf;
  border-radius: 50%;
  opacity: 0.75;
}

.transformacao::after{
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 430px;
  height: 430px;
  background: #8fd7cf;
  border-radius: 50%;
  opacity: 0.75;
}

.transformacao .container{
  position: relative;
  z-index: 2;
}

.transformacao h2{
  text-align: center;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  color: #0f6f68;
  margin-bottom: 40px;
}

.transformacao-grid{
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.transformacao-card{
  width: 100%;
  max-width: 370px;
  background: #117a70;
  border-radius: 24px;
  padding: 18px 18px 26px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformacao-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.transformacao-imagem{
  width: 100%;
  height: 170px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
}

.transformacao-imagem img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.transformacao-conteudo{
  padding: 18px 4px 0;
}

.transformacao-conteudo h3{
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  color: #d5fff8;
  margin-bottom: 12px;
}

.transformacao-conteudo p{
  font-size: 19px;
  line-height: 1.22;
  font-weight: 500;
  color: #d5fff8;
  letter-spacing: 0.2px;
  text-align: justify;
}

/* RESPONSIVO */
@media (max-width: 900px){
  .transformacao{
    padding: 70px 0 90px;
  }

  .transformacao h2{
    font-size: 44px;
  }

  .transformacao-grid{
    gap: 28px;
  }

  .transformacao-card{
    max-width: 100%;
  }
}

@media (max-width: 600px){
  .transformacao h2{
    font-size: 36px;
    margin-bottom: 28px;
  }

  .transformacao-card{
    padding: 14px 14px 20px;
    border-radius: 20px;
  }

  .transformacao-imagem{
    height: 150px;
    border-radius: 18px;
  }

  .transformacao-conteudo h3{
    font-size: 24px;
  }

  .transformacao-conteudo p{
    font-size: 17px;
  }
}

.problemas-wrapper{
  position: relative;
  display: flex;
  align-items: center;
}

.carrossel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(122, 76, 88, 0.92);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: 0.3s;
}

.carrossel-btn:hover{
  transform: translateY(-50%) scale(1.08);
}

.carrossel-btn-esquerda{
  left: 24px;
}

.carrossel-btn-direita{
  right: 24px;
}

#carrosselProblemas{
  scroll-behavior: smooth;
}

@media (max-width: 768px){
  .carrossel-btn{
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .carrossel-btn-esquerda{
    left: 10px;
  }

  .carrossel-btn-direita{
    right: 10px;
  }
}

/* FAQ COM TRANSIÇÃO SUAVE */
.faq-lista details{
  background: #f7f3f5;
  border: 1px solid #eadbe1;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.faq-pergunta{
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #5d3b47;
  list-style: none;
  padding: 20px 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-pergunta::-webkit-details-marker{
  display: none;
}

.faq-pergunta::after{
  content: "⌄";
  font-size: 22px;
  color: #7a4c58;
  transition: transform 0.3s ease;
  margin-left: 16px;
  flex-shrink: 0;
}

.faq-lista details[open] .faq-pergunta::after{
  transform: rotate(180deg);
}

.faq-resposta{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-lista details[open] .faq-resposta{
  grid-template-rows: 1fr;
}

.faq-resposta p{
  overflow: hidden;
  margin: 0;
  padding: 0 24px 20px;
  line-height: 1.7;
  color: #666;
  font-size: 16px;
}

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float{
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-float img{
  width: 34px;
  height: 34px;
}

/* hover */
.whatsapp-float:hover{
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* leve animação chamando atenção */
@keyframes pulseWhats{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.08); }
  100%{ transform: scale(1); }
}

.whatsapp-float{
  animation: pulseWhats 2.5s infinite;
}