
/* Botão flutuante */
#btnTopo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #8b4ce0;
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  display: none; /* Começa invisível */
  transition: all 0.3s ease;
}

#btnTopo:hover {
  background-color: #d49263;
  transform: scale(1.1);
}


/* nav */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
      font-family: 'Rajdhani', sans-serif;
      color: #cccccc;
      background: linear-gradient(to right,  #000000 , #000000);
      overflow-x: hidden;
    }


    #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
  }

  .loader {
    width: 40px;
    height: 40px;
    border: 5px solid #8b4ce0;
    border-top: 5px solid #ff9cdb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    100% { transform: rotate(360deg); }
  }

header {
  background: linear-gradient(to right,  #000000 , #000000 );
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.logo img {
  height: 26px; /* ajuste conforme necessário */
  width: auto;
  display: block;
}


.underscore {
  color: #6b2fc8 ;
  font-size: 1.8rem;
  position: relative;
  top: -5px;
}

/* BOTÃO WHATSAPP COM ESTILO E ANIMAÇÃO */
.whatsapp-btn {
  color: #cccccc;
  background: linear-gradient(90deg, #8b4ce0, #8b4ce0);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  box-shadow: 0 0 0px #8b4ce0;
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #8b4ce0;
}

/* Animação de brilho pulsante */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0px #8b4ce0;
  }
  50% {
    box-shadow: 0 0 12px #8b4ce0;
  }
  100% {
    box-shadow: 0 0 0px #8b4ce0;
  }
}


/* MENU HAMBÚRGUER */
.menu-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.menu-text {
  font-weight: 500;
  font-size: 1rem;
  color: #cccccc;
}

.hamburger {
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  height: 2px;
  background-color:#ff9cdb ;
  border-radius: 1px;
}

/* NAV OCULTO */
nav {
  background-color: #0f0f0f3e;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

nav.active {
  max-height: 300px;
  opacity: 1;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem;
}

nav ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

nav ul li a:hover {
  border-bottom: 1px solid #ff9cdb;
}

/* MAIN */
main {
  margin-top: 140px;
  padding: 2rem;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    display: none;
  }
  .logo img {
  height: 18px; /* ajuste conforme necessário */
  width: auto;
  display: block;
}
}

/* RESPONSIVO DESKTOP */
@media (min-width: 1024px) {
  nav ul {
    flex-direction: row;
    justify-content: center;
  }
}

/* seja n1 */


.sessao-n1 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  padding: 80px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.sessao-n1.ativo {
  opacity: 1;
  transform: translateY(0);
}

.conteudo-n1 {
  max-width: 800px;
}

.sessao-n1 .subtitulo {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 400;
  background: linear-gradient(90deg, #8c4ce0a9, #d49263a8);
  color: white; /* Cor do texto por cima do fundo */
  border-radius: 12px;
  padding: 10px;
}


.sessao-n1 .titulo {
  font-size: 3rem;
  font-weight: 700;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.4;
}

#corte{
display: none;
}
.sessao-n1 .destaque {
 background: linear-gradient(90deg, #8b4ce0, #d49263);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sessao-n1 .descricao {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sessao-n1 .titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.4;
}
#corte{
display: flex;
}
.sessao-n1 .subtitulo {
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 400;
}
.sessao-n1 .descricao {
  font-size: 0.8rem;
  color: #cccccc;
  line-height: 1.6;
}
.sessao-n1 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  padding: 80px 10px 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
}

.lines-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.line {
  position: absolute;
  top: 0;
  width: 2px;
  background: linear-gradient(to bottom, #ff9cdb, transparent);
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes fall {
  0% {
    top: -100px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    top: 110%;
    opacity: 0;
  }
}

/* Para garantir que o conteúdo fique acima das linhas */
.sessao-n1 {
  position: relative;
  z-index: 1;
}
.conteudo-n1 {
  position: relative;
  z-index: 2;
}

/* Animações individuais */
.animar-direita, .animar-cima, .animar-baixo {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animar-direita {
  transform: translateX(100px);
}

.animar-cima {
  transform: translateY(-60px);
}

.animar-baixo {
  transform: translateY(60px);
}

.animar-direita.ativo,
.animar-cima.ativo,
.animar-baixo.ativo {
  opacity: 1;
  transform: translate(0, 0);
}


/* sessao linha trempo */

.linha-do-tempo {
  background: linear-gradient(to right, #000000, #000000);
  padding: 80px 20px;
  color: #cccccc;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.titulo-linha {
    font-size: 3rem;
  font-weight:700;
background: linear-gradient(90deg, #8b4ce0, #d49263);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.linha {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.linha::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-top: 3px dashed #cccccc;
  z-index: 0;
}

.item {
  position: relative;
  text-align: center;
  width: 25%;
  z-index: 1;
}

.cima {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #cccccc;
}

.baixo {
  font-size: 0.9rem;
  margin-top: 20px;
  color: #cccccc;
}

.ponto {
  width: 18px;
  height: 18px;
  background: #ff9cdb;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  z-index: 2;
}

/* === DESKTOP (original) === */
.linha-do-tempo {
  background: linear-gradient(to right, #000000, #000000);
  padding: 80px 20px;
  color: #cccccc;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.titulo-linha {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #8b4ce0, #d49263);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.linha {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.linha::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-top: 3px dashed #cccccc;
  z-index: 0;
}

.item {
  position: relative;
  text-align: center;
  width: 25%;
  z-index: 1;
}

.cima {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #cccccc;
}

.baixo {
  font-size: 0.9rem;
  margin-top: 20px;
  color: #cccccc;
}

.ponto {
  width: 18px;
  height: 18px;
  background: #ff9cdb;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.vazio{
  color: transparent; 
}

/* === MOBILE (ponto no centro + texto alternado) === */
@media (max-width: 768px) {
  .linha {
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 40px 0;
  }

  .linha::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    border-left: 3px dashed #cccccc;
    z-index: 0;
  }

  .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 30px 0;
    position: relative;
  }

  .item .texto {
    width: 45%;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.3;
  }

  .item .vazio {
    width: 45%;
    font-size: 1rem;
    color: transparent;
    text-align: right;
  }

  .item .ponto {
    width: 18px;
    height: 18px;
    background: #ff9cdb;
    border-radius: 50%;
    z-index: 2;
  }
  .titulo-linha {
  font-size: 2.5rem;
  font-weight:700;
  background: linear-gradient(90deg, #8b4ce0, #d49263);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  
}
}





/* Animação de rolagem */
.scroll-animar {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animar.ativo {
  opacity: 1;
  transform: translateY(0);
}

/* Animações direcionais */
.scroll-animar.from-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animar.from-bottom {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animar.ativo {
  opacity: 1;
  transform: translate(0, 0);
}


/* como funciona */

.como-funciona {

  color: #ffffff;
  padding: 40px 10px 10px;
  text-align: center;
}

.como-titulo {
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.como-titulo span {
  background: linear-gradient(90deg, #ff9cdb, #b174ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: transparent !important; /* fundo escuro sólido */
  border: 1px solid #ff9cdb !important;
  border-radius: 12px;
  padding: 15px 20px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #dddddd !important;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 156, 219, 0.15);
}

.card .numero {
  font-size: 5.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff9cdb, #b174ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #cccccc !important;
}


.numero {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff9cdb, #b174ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card p {
  font-size: 0.95rem;
  color: #dddddd;
  line-height: 1.4;
}

.subtitulo-funciona {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: -20px;
  margin-bottom: 10px;
  color: #ffffff;
  background: linear-gradient(90deg, #ff9cdb, #b174ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.descricao-funciona {
  font-size: 1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

@media (max-width: 768px) {
.como-titulo {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}
  }



.animar-esquerda,
.animar-direita,
.animar-baixo {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animar-esquerda {
  transform: translateX(-100px);
}

.animar-direita {
  transform: translateX(100px);
}

.animar-baixo {
  transform: translateY(60px);
}

.ativo {
  opacity: 1;
  transform: translate(0, 0);
}

.animar-card {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animar-card.ativo {
  opacity: 1;
  transform: translateX(0);
}


/* agencia isso ficou no passado*/
 .sessao-consultoria {
  padding: 60px 20px;
  background: transparent;
}

.consultoria-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.consultoria-container.animado {
  opacity: 1;
  transform: translateY(0);
}

.consultoria-titulo {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #8b4ce0, #d49263);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

.consultoria-subtitulo {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease 0.3s;
}

.consultoria-titulo.ativo,
.consultoria-subtitulo.ativo {
  opacity: 1;
  transform: translateX(0);
}

.blocos-consultoria {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.bloco-negativo, .bloco-positivo {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #ff9cdb;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.titulo-bloco {
  font-size: 1.3rem;
   background: linear-gradient(90deg, #8b4ce0, #d49263);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

.bloco-negativo ul li,
.bloco-positivo ul li {
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.4;
}

#br1{
    display: none;
  }
.bloco-negativo i {
  color: #e05252;
  font-size: 1.2rem;
}

.bloco-positivo i {
  color: #5cb85c;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .consultoria-titulo {
    font-size: 2.5rem;
  }

  .consultoria-subtitulo {
    font-size: 1rem;
  }

  .blocos-consultoria {
    flex-direction: column;
  }

  .bloco-negativo, .bloco-positivo {
    flex: 1 1 100%;
  }

  #br1{
    display: flex;
  }
#tittle12{
  display: none;
}
}


/* whatsap */

.formulario-whatsapp {
    
    padding: 60px 20px;
    text-align: center;
  }

  .formulario-whatsapp .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #ff9cdb;
    box-shadow: 0 0 10px rgba(255, 156, 219, 0.2);
  }

  .titulo-formulario {
      background: linear-gradient(90deg, #8b4ce0, #d49263);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .subtitulo-formulario {
    color: #cccccc;
    margin-bottom: 30px;
  }

  .formulario-whatsapp input,
  .formulario-whatsapp textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ff9cdb;
    border-radius: 8px;
    background: #8c4ce027;
    color: #cccccc;
    font-size: 1rem;
  }

  .formulario-whatsapp textarea {
    resize: vertical;
    height: 52px;
  }

  .formulario-whatsapp button {
    background: linear-gradient(90deg,  #8c4ce0f6, #8c4ce0da, #8c4ce09c,  #8c4ce0dc, #8c4ce0ac,#8c4ce0d0,#8b4ce0);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }

  .formulario-whatsapp button:hover {
    background: linear-gradient(90deg,  #8c4ce04c, #8c4ce054, #8c4ce046,  #8c4ce058, #8c4ce045,#8c4ce05a,#8c4ce050);
  }

  .botao-container-brilhante {
  position: relative;
  display: inline-block;
}

.animar-baixoo {
  background: linear-gradient(90deg, #8c4ce0f6, #8c4ce0da, #8c4ce09c,
   #8c4ce0dc, #8c4ce0ac, #8c4ce0d0, #8b4ce0);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  position: relative;
  transition: 0.3s;
}

.light-line-form {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent, #ff9cdb, transparent);
  background-size: 300% 100%;
  animation: moveLightForm 2s linear infinite;
  filter: blur(2px);
  z-index: 1;
  pointer-events: none;
}

/* Animação da luz brilhante contornando */
@keyframes moveLightForm {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}


  @media (max-width: 768px) {
    .titulo-formulario {
      background: linear-gradient(90deg, #8b4ce0, #d49263);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
  }
  }

  .animar-direita,
.animar-esquerda,
.animar-baixo {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animar-direita {
  transform: translateX(100px);
}
.animar-esquerda {
  transform: translateX(-100px);
}
.animar-baixo {
  transform: translateY(60px);
}

.animar-direita.ativo,
.animar-esquerda.ativo,
.animar-baixo.ativo {
  opacity: 1;
  transform: translate(0, 0);
}

/* footer */

.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo img {
  max-height:80px;
margin-bottom: 10px;

}

.footer-icons {
  margin-bottom: 20px;
  ;
}

.footer-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 10px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #000000;
  font-size: 26px;
  transition: background-color 0.3s, transform 0.3s;
  text-decoration: none;
}

.footer-icons a:hover {
  background-color: #ff9cdbb6;
  transform: scale(1.05);
}


.footer-info p {
  margin: 5px 0;
  color: #cccccc;
  font-size: 14px;
}

.footer-info a {
  color: #cccccc;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 20px;
  font-size: 13px;
  color: #888888;
}

/* Responsivo */
@media (max-width: 600px) {
  .footer-icons a {
    font-size: 24px;
    margin: 0 8px;
  }

  .footer-info p {
    font-size: 13px;
  }

  .footer-logo img {
    max-height: 60px;
  }
}
