*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Arial,Helvetica,sans-serif;background:#fff;color:#222}

/* cores principais */
:root{
  --roxo:#3b2a6e;
  --dourado:#d9aa57;
}

/* ======================= HERO ======================= */
.hero-header{
    min-height: 100vh;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;      
}

/* COLUNA DO TEXTO */
.hero-text {
    flex: 1;
    text-align: left;
    max-width: 650px;
    color: var(--roxo);
    padding-left: 60px;   
}

/* TÍTULO + SUBTÍTULO */
.hero-text h1{
    font-size: 54px;
    line-height: 1.18;
    margin-bottom: 10px;
    white-space: nowrap;
}

.hero-text h1 .subtitulo-dourado{
    display: block;
    font-size: inherit;
    color: var(--dourado);
    margin-top: 4px;
}

.hero-frase{
    margin: 14px 0 26px;
    font-size: 20px;
    line-height: 1.55;
    max-width: 600px;
    color: #333;
}

/* BOTÕES */
.hero-botoes{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primario,
.btn-secundario{
    padding: 13px 32px;      
    border-radius: 999px;
    font-size: 0.95rem;      
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--roxo);
    transition: .2s;
}

.btn-primario{
    background: var(--roxo);
    color: #fff;
}

.btn-secundario{
    background: transparent;
    color: var(--roxo);
}

.btn-primario:hover,
.btn-secundario:hover{
    background: #5a41a3;
    color: #fff;
}

.btn-formacao{
  display: inline-block;
  padding: 14px 34px;
  border: 2px solid #2e1b57;
  border-radius: 999px;
  color: #2e1b57;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: .2s ease;
}

.btn-formacao:hover{
  background: #2e1b57;
  color: #fff;
  transform: translateY(-2px);
}

/* LOGO */
.hero-logo{
    flex: 1;
    display: flex;
    justify-content: center;
    padding-left: 40px;     
}

.hero-logo img{
    width: 520px;            
    max-width: 100%;
    height: auto;
}

@media (max-width: 900px) {

  /* ... já existe ... */

  /* LOGO EM CIMA DO TEXTO NO MOBILE */
  .hero-logo{
    order: 1;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .hero-text{
    order: 2;
  }

  /* resto do código que você já tem */
}

/* ======================= SOBRE ======================= */

.sobre-section{
    width: 100%;
    padding: 180px 60px 200px;
    justify-content: center; 
    background-image: url("Vivs (2).png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* container interno centralizado */
.sobre-container{
    max-width: 1500px;
    margin: 0 auto;
}

/* linha com texto + imagem lado a lado */
.sobre-content-row{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    color: #ffffff !important;
}

/* COLUNA DO TEXTO */
.sobre-text{
    flex: 1;
    max-width: 680px;
    margin-left: 60px;  
    color: #fff;
}

.sobre-titulo {
    font-size: 3rem;       
    font-weight: 700;       
    color: #ffffff !important; 
    margin-bottom: 30px;    
    display: block;
    margin-left: 60px;  
}

.sobre-intro{
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #f6f1ff;
}

.sobre-triada{
    display: block;
    margin: 10px 0 25px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--dourado);
}

.sobre-text p{
    font-size: 1.15rem;
    line-height: 1.65;
    margin-bottom: 16px;
    color: #f6f1ff;
    text-align: justify;
}

.sobre-text p strong{
    color: #ffe6a8;
}

/* COLUNA DA IMAGEM */
.sobre-imagem{
    flex: 1;
    display: flex;
    justify-content: center;
}

.sobre-imagem img{
    width: 520px;
    max-width: 100%;
    height: auto;
    transform: scale(1.05);
}

.sobre-text h1,
.sobre-section h1 {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* ======================= TERAPEUTA ======================= */
.terapeuta-section{
  padding: 160px 80px 160px;   
  background: #fff;
}

.terapeuta-card{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 140px;                  
  color: #333;
}

.terapeuta-texto{
  flex: 2.4;
  text-align: left;
}

.terapeuta-texto h2{
  font-size: 3.2rem;
  margin-bottom: 24px;
  color: var(--roxo);
}

.terapeuta-texto p{
  font-size: 1.1rem;          
  line-height: 1.8;            
  margin-bottom: 18px;
}

.destaque-roxo{
  color: var(--dourado);
  font-weight: 700;
}

.terapeuta-foto{
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.terapeuta-foto-frame{
  width: 420px;                
  height: 420px;              
  border-radius: 50%;
  border: 6px solid var(--dourado);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  transform: translateY(-16px); 
}

.terapeuta-foto-frame img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ======================= CONTEÚDO PROGRAMÁTICO ======================= */
.conteudo-programatico{
  background: var(--roxo);
  color: #fff;
  padding: 80px 40px 100px;
}

.cp-wrapper{
  max-width: 1200px;
  margin: 0 auto;
}

.cp-titulo{
  font-size: 2.6rem;
  margin-bottom: 8px;
}

.cp-subtitulo{
  font-size: 1rem;
  max-width: 620px;
  margin-bottom: 26px;
}

/* GRID DE CARDS (3 em cima, 3 embaixo) */
.cp-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 26px;
  margin-bottom: 40px;
}

.cp-card{
  position: relative;
  background: #ffffff;
  color: #2b2144;
  border-radius: 18px;
  padding: 22px 24px 26px;
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
}

.cp-card h3{
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--roxo);
}

.cp-card p{
  font-size: .95rem;
  line-height: 1.7;
}

.cp-card-numero{
  position: absolute;
  top: -18px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dourado);
  color: var(--roxo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}

/* BLOCO ROXO */
.secao-programatico {
    background-image: url("Vivs\ \(5\).png");
    padding: 100px 0;
    width: 100%;
}

.container-programatico {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* TÍTULO */
.titulo-programatico {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.sub-programatico {
    color: #e5dfff;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

/* GRID DOS CARDS */
.cards-programatico {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.card-modulo {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.card-modulo h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b2a6e;
    margin-bottom: 12px;
}

.card-modulo p {
    color: #3b2a6e;
    line-height: 1.6rem;
}

/* NUMERO DO MODULO */
.numero-modulo {
    position: absolute;
    top: -18px;
    right: -18px;
    background: #d9aa57;
    color: #ffffff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* ================= MENTORIA E ENCERRAMENTO ================= */
.secao-mentoria {
    background: #ffffff;          
    padding: 90px 0 110px;
}

.mentoria-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.titulo-mentoria {
    font-size: 2.4rem;
    font-weight: 700;
    color: #3b2a6e;
    margin-bottom: 40px;
}

/* CARD ROXO */
.card-mentoria {
    background: #3b2a6e;         
    color: #ffffff;
    border-radius: 24px;
    padding: 28px 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 26px;
    border-left: 6px solid #d9aa57;   
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

/* ÍCONE CÍRCULO */
.icone-mentoria {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d9aa57;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* TEXTOS DOS CARDS */
.texto-mentoria h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.texto-mentoria p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ================= INVESTIMENTO ================= */
.sec-investimento{
  position: relative;
  padding-top: 120px;
  padding-bottom: 140px;
  background-image: url("Vivs\ \(5\).png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.investimento-overlay{
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px 70px;
  border-radius: 32px;
  background: rgba(30, 9, 80, 0.88);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

/* segundo bloco (bônus) com um espaçozinho embaixo do primeiro */
.investimento-overlay-bonus{
  margin-top: 40px;
}

.investimento-inner{
  color: #fff;
}

.investimento-header{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
  margin-bottom: 40px;
  text-align: left;
}

.investimento-header h2{
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 12px;
  color: var(--dourado);
  margin-left: -40px; 
}

.investimento-header p{
  font-size: 1.05rem;
  line-height: 1.6;
  margin-left: 40px;
}

/* GRIDS DOS CARDS */
.investimento-grid-principal{
   display: flex;
   justify-content: center;
}

.investimento-grid-bonus{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

/* CARD INVESTIMENTO */
.card-investimento{
  text-align: center;
  background: #ffffff;
  color: var(--roxo);
  border-radius: 28px;     
  padding: 60px 80px;      
  max-width: 1000px;       
  margin: 0 auto;  
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.card-investimento h3{
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.card-investimento.principal h3{
  font-size: 1.35rem;
  text-align: center;
}

/* PREÇOS */
.preco-antigo{
  font-size: .95rem;
  text-decoration: line-through;
  color: #c1b4d6;
  margin-bottom: 6px;
}

.preco-avista{
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.preco-avista span{
  color: var(--dourado);
}

.preco-avista small{
  display: block;
  font-size: .9rem;
  font-weight: 400;
  margin-top: 2px;
}

.preco-parcelado{
  font-size: 1.9rem !important; 
  font-weight: 700;
}

.selo-garantia{
  background: var(--roxo);
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: .9rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.selo-garantia span{
  display: block;
  font-weight: 700;
}

.btn-investimento{
  display: inline-block;
  margin-top: 4px;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--dourado);
  color: var(--roxo);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: .2s;
}

.btn-investimento:hover{
  background: #f0c878;
  transform: translateY(-2px);
}

/* CARDS DE BÔNUS */
.card-bonus {
    background: #ffffff;
    border-radius: 26px;
    padding: 40px 46px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
    text-align: center;
}

.card-bonus h3 {
    font-size: 2rem;      
    font-weight: 700;
    letter-spacing: 0.18rem;
    margin-bottom: 22px;
    color: var(--roxo);
}

.card-bonus .sub {
    font-size: 1.3rem;    
    font-weight: 600;
    color: var(--roxo);
    margin-bottom: 14px;
}

.card-bonus p {
    font-size: 1.15rem;   
    line-height: 1.6;
    margin-bottom: 18px;
    color: var(--roxo) !important;
}

.card-bonus .preco-antigo {
    font-size: 1.25rem;   
    text-decoration: line-through;
    color: #998ab7;
    margin-bottom: 4px;
}

.card-bonus .preco-atual {
    font-size: 2rem; 
    font-weight: 700;
    color: var(--dourado);
}

.card-bonus .incluso {
    margin-top: 18px;
    font-size: 1.25rem; 
    font-weight: 600;
    color: var(--roxo);
}

.bonus-gratuito{
  font-size: 1rem;
  margin-top: 6px;
}

/* INVESTIMENTO – responsivo geral */
@media (max-width: 1024px){
  .sec-investimento{
    padding: 70px 20px 80px;
  }

  .investimento-overlay{
    padding: 50px 24px 60px;
  }

  .investimento-grid-bonus{
    grid-template-columns: 1fr;
  }
}

/* ================= RODAPÉ ================= */
.rodape-meialua{
  width: 100%;
  background: #ffffff;
  border-radius: 60px 60px 0 0;
  padding: 60px 8vw 25px; 
  box-shadow: 0 -12px 35px rgba(0,0,0,.18);
}

/* container geral */
.rodape-conteudo {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 80px; 
}

/* coluna da logo */
.rodape-logo-texto {
  flex: 0 0 auto; 
}

.rodape-logo {
  width: 400px;      
  height: auto;
  display: block;
  margin-bottom: 25px;
}

/* texto grande à direita */
.rodape-texto-grande {
  font-size: 1.25rem;
  max-width: 680px;
  line-height: 1.7;
  color: #3b2a6e;
  transform: translateX(60px); 
}

/* bloco de contato */
.rodape-contato {
  margin-top: 30px;
  transform: translateX(60px); 
}

.rodape-contato h2 {
  font-size: 2.2rem;
  color: #3b2a6e;
  margin-bottom: 10px;
}

.rodape-contato ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape-contato li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #3b2a6e;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* copyright */
.rodape-copy {
  margin-top: 40px;
  text-align: center;
  font-size: .9rem;
  color: #6b5c8a;
}

/* ===================================================== */
/*                 RESPONSIVO GERAL (MOBILE)             */
/* ===================================================== */
@media (max-width: 900px) {

  /* HERO */
  .hero-header{
    min-height: auto;
    padding: 60px 20px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: center;
  }

  .hero-text{
    padding-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1{
    font-size: 1.9rem;
    line-height: 1.2;
    white-space: normal;      /* permite quebrar */
    word-break: break-word;
  }

  .hero-text h1 br{
    display: block;          /* garante quebra onde você colocou */
  }

  .hero-frase{
    font-size: 1rem;
    margin: 12px 0 20px;
  }

  .hero-botoes{
    justify-content: center;
  }

  .hero-logo{
    padding-left: 0;
    justify-content: center;
  }

  .hero-logo img{
    max-width: 220px;
  }

  /* SOBRE */
  .sobre-section{
    padding: 120px 20px 130px;
  }

  .sobre-titulo{
    margin-left: 0;
    text-align: center;
  }

  .sobre-text{
    margin-left: 0;
  }

  .sobre-content-row{
    flex-direction: column;
    gap: 40px;
  }

  .sobre-imagem{
    justify-content: center;
  }

  .sobre-imagem img{
    width: 320px;
    transform: none;
  }

  /* TERAPEUTA */
  .terapeuta-section{
    padding: 100px 20px;
  }

  .terapeuta-card{
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .terapeuta-texto{
    width: 100%;
  }

  .terapeuta-foto{
    width: 100%;
    justify-content: center;
  }

  .terapeuta-foto-frame{
    width: 260px;
    height: 260px;
    transform: none;
  }

  .terapeuta-foto-frame img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* CONTEÚDO PROGRAMÁTICO */
  .container-programatico{
    padding: 0 20px;
  }

  .cards-programatico{
    grid-template-columns: 1fr;
  }

  /* MENTORIA */
  .mentoria-container{
    padding: 0 20px;
  }

  .card-mentoria{
    padding: 24px 24px;
    flex-direction: row;
  }

  /* RODAPÉ */
  .rodape-conteudo{
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .rodape-logo{
    width: 260px;
    margin-bottom: 10px;
  }

  .rodape-texto-grande,
  .rodape-contato{
    transform: none;
    margin: 0 auto;
  }

  .rodape-contato{
    margin-top: 30px;
    text-align: center;
  }

  .rodape-contato ul{
    padding: 0;
    margin: 10px auto 0 auto;
    text-align: center;
  }

  .rodape-contato li{
    display: inline-flex;
    justify-content: center;
  }
}

/* ============================
   CENTRALIZAR TÍTULOS NO MOBILE
   ============================ */
@media (max-width: 900px) {

  /* Geral: todos os H1 e H2 ficam centralizados */
  h1, h2 {
    text-align: center !important;
  }

  /* Bônus especiais */
  .titulo-mentoria,
  .investimento-header h2,
  .titulo-programatico,
  .secao-mentoria h2,
  .investimento-header p {
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Subtítulos */
  .investimento-header p {
    text-align: center !important;
  }

  /* Ajuste do card bônus */
  .card-bonus h3,
  .card-bonus .sub,
  .card-bonus p {
    text-align: center !important;
  }

  /* Ajustar container para centralizar completamente */
  .mentoria-container,
  .investimento-inner,
  .secao-programatico,
  .investimento-grid-principal {
    text-align: center !important;
  }
}
