/* RESET GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comfortaa', sans-serif;
  background: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: #333;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.ativo {
  opacity: 1;
  transform: translateY(0);
}

/* SECÃO VIDEO TOPO */
.video-topo {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* CAMADA ESCURA EM CIMA DO VÍDEO */
.video-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* AQUI você ajusta a intensidade */
  z-index: 1;
}

/* TEXTO EM CIMA DO VÍDEO */
.video-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.video-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.video-overlay h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.video-overlay p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 25px;
}

.botao {
  background: linear-gradient(45deg, #f47825, #ff8a00);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s ease;
}

.botao:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(244,120,37,0.4);
}

@media (max-width: 768px) {
  .video-topo {
    height: 100vh;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .bg-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .video-overlay {
    padding: 40px 20px;
    text-align: center;
  }

  .video-overlay h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .video-overlay p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .botao {
    font-size: 1rem;
  }
}

/* TOPO DO SITE */
.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #fff;
  position: relative;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* para desktop */
  text-align: left;
  flex: 1;
}

.logo {
  height: 60px;
}

.logo-text {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  font-family: 'Comfortaa', sans-serif;
  margin-top: 4px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.menu a {
  font-size: 14px;
  font-family: 'Comfortaa', sans-serif;
  color: #333;
  text-decoration: none;
  transition: 0.3s ease;
}

.menu a:hover {
  color: #f47825;
  transform: scale(1.05);
}

.dot {
  color: #f47825;
  margin: 0 4px;
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
}

/* HAMBURGUER */
.hamburger {
  font-size: 26px;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 5%;
}

@media (min-width: 769px) {
  .topo {
    justify-content: space-between;
  }

  .menu {
    flex-grow: 1;
    justify-content: center;
  }
}

/* MENU MOBILE */
@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    align-items: center;
  }

  .logo-container {
    order: 1;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
  }

  .hamburger {
    display: block;
    order: 2;
    align-self: flex-end;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }

  .menu.active {
    display: flex;
  }
  
}  .menu a {
    margin: 8px 0;
  }
}
/* SECÃO IMAGENS LE E LEO */
.grade-imagens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 40px 5%;
}

.grade-imagens img {
  width: 100%;
  border-radius: 10px;
}

/* SECÃO QUEM SOMOS */
.imagens-quemsomos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.imagens-quemsomos img {
  width: 300px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .imagens-quemsomos {
    flex-direction: column;
    align-items: center;
  }

  .imagens-quemsomos img {
    max-width: 90vw;
  }
}

.quemsomos h2,
.quemsomos p {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* SECÃO DEPOIMENTOS CARDS */
.mockup-videos {
  padding: 60px 5%;
  text-align: center;
}

.mockup-videos h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #f47825;
}

.mockup-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.mockup-card {
  width: 280px;
  background: #fff;
  border: 10px solid #f1f1f1;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.mockup-card:hover {
  transform: translateY(-5px);
}

.mockup-card video,
.mockup-card img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
  object-fit: cover;
  aspect-ratio: 9 / 16;
}

.texto-conexao {
  margin-top: 40px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}

@media (max-width: 768px) {
  .mockup-cards {
    flex-direction: column;
    align-items: center;
  }

  .mockup-card {
    width: 90%;
  }
}

/* EMAGRECIMENTO CARROSSEL INFINITO */
.transformacoes {
  overflow-x: hidden;
  position: relative;
  padding: 60px 0;
  background: url("../img/textura-laranja.png") repeat;
  background-size: contain;
  margin-top: 0;
  padding-top: 40px;
}

.container-transformacoes {
  overflow: hidden;
  width: 100%;
  position: relative;
}
/* VELOCIDADE NO PC */
.carrossel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLoop 120s linear infinite;
}
/* VELOCIDADE NO CELULAR */
@media (max-width: 768px) {
  .carrossel-track {
    animation-duration: 90s !important;
    animation-name: scrollLoop;
  }
}

@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.card-transformacao {
  flex: 0 0 320px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 20px;
  font-family: 'Comfortaa', sans-serif;
}

.topo-nome {
  background-color: #f47825;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.imagens-transformacao {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.imagens-transformacao img {
  width: 48%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.peso-tempo {
  font-weight: bold;
  color: #f47825;
  margin: 10px 0;
  text-align: center;
}

.depoimento-transformacao {
  background: #fff8f1;
  padding: 15px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
  text-align: center;
}

.imagens-transformacao.unica {
  justify-content: center;
}

.imagens-transformacao.unica img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .card-transformacao {
    flex: 0 0 85vw;
  }

  .imagens-transformacao img {
    width: 48%;
    height: auto;
  }

  .imagens-transformacao.unica img {
    max-width: 90vw;
  }
}

/* CONSULTORIA CARD PERSOALIZADO */
.card-consultoria.styled {
  background: linear-gradient(160deg, rgba(255,138,0,0.95), rgba(244,120,37,0.95));
  color: #fff;
  border-radius: 25px;
  padding: 30px 20px;
  width: 320px;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card-consultoria.styled:hover {
  transform: translateY(-8px);
}

.card-header h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.card-header .preco {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fffdd0;
  margin-bottom: 20px;
}

.beneficios {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.beneficios li {
  margin-bottom: 6px;
}

.botao-card-glass {
  background: #fff;
  color: #f47825;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.botao-card-glass:hover {
  background: #ffe2cc;
}

/* 🔶 SEÇÃO: CONSULTORIA ONLINE */
.sessao-consultoria {
  padding: 60px 5%;
  text-align: center;
  background-color: #fff;
}

.sessao-consultoria h2 {
  font-size: 2rem;
  color: #f47825;
  margin-bottom: 10px;
}

.banner-consultoria {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  display: block;
}

.texto-consultoria {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.lista-consultoria {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.lista-consultoria li::before {
  content: "✓ ";
  color: #f47825;
  font-weight: bold;
}

.convite-final {
  font-style: italic;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.imagens-consultoria {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.imagens-consultoria img {
  max-width: 180px;
  border-radius: 12px;
}
/* LE E LEO NO MEIO 1:1 */
.imagens-consultoria img:nth-child(2) {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* 🔶 CARDS DE CONSULTORIA */
.cards-planos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card-consultoria {
  background: linear-gradient(180deg, #f47825, #ff8a00);
  border-radius: 25px;
  color: #fff;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

.card-topo {
  background: #fff;
  color: #f47825;
  font-weight: bold;
  padding: 10px;
  border-radius: 20px 20px 0 0;
  font-size: 1.2rem;
  margin: -30px -20px 20px;
}

.card-preco {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.beneficios {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.beneficios li {
  margin-bottom: 8px;
}

.beneficios s {
  font-size: 0.95rem;
  color: #ffe2cc;
}

.preco-final {
  font-size: 1rem;
  font-weight: bold;
  margin: 15px 0;
  color: #fffdd0;
}

.botao-card-glass {
  background: #fff;
  color: #f47825;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.botao-card-glass:hover {
  background: #ffe2cc;
}

@media (max-width: 768px) {
  .cards-planos {
    flex-direction: column;
    align-items: center;
  }
}

.planos-consultoria {
  background: url("../img/textura-laranja.png") repeat;
  background-size: contain;
  padding: 60px 5%;
  text-align: center;
}

.planos-consultoria h2 {
  font-size: 2rem;
  color: #f47825;
  margin-bottom: 30px;
}

.selo-preco {
  margin: 20px 0;
  font-size: 1rem;
  background: #fff8f1;
  color: #d35400;
  padding: 8px 15px;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* RODAPÉ */
footer {
  background-color: #f8f8f8;
  padding: 40px 5%;
  text-align: center;
}

footer .redes img {
  width: 30px;
  margin: 0 10px;
}

.rodape-frase {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
}

/* WTP FINAL */
#whatsapp-botao {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

#whatsapp-botao img {
  width: 40px;
}
