/* Variáveis CSS */
:root {
  --primary: #fbaa00;
  --primary-dark: #e69500;
  --dark: #0b0b0c;
  --dark-light: #1a1a1d;
  --gray: #23232a;
  --light: #ffffff;
  --light-gray: #dddddd;
  --font-primary: "Orbitron", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  --shadow: 0 10px 30px rgba(251, 170, 0, 0.15);
  --shadow-hover: 0 15px 40px rgba(251, 170, 0, 0.25);
}

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Tipografia */
h1,
h2,
h3,
h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

/* Seção Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.hero .overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}

.destaque {
  background: linear-gradient(90deg, var(--light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.destaque::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--light), var(--primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero:hover .destaque::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--light-gray);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

/* Botões */
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: var(--dark);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Formulário de Lead */
.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.form-lead {
  position: relative;
  background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
  overflow: hidden;
}

.form-lead .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px; /* Ajuste o padding conforme necessário */
}

.form-lead h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  width: 100%;
}

.form-lead form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-lead input {
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  background-color: rgba(35, 35, 42, 0.7);
  color: var(--light);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-lead input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(251, 170, 0, 0.3);
  background-color: rgba(35, 35, 42, 0.9);
}

.form-lead input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Seção Serviços */
.servicos {
  position: relative;
  background-color: var(--dark-light);
  overflow: hidden;
}

.graph-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  z-index: 1;
}

.servicos h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.servicos h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(22, 22, 27, 0.7);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(251, 170, 0, 0.1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(251, 170, 0, 0.1) 0%,
    transparent 70%
  );
  transform: scale(0);
  transition: var(--transition);
  z-index: -1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(251, 170, 0, 0.3);
}

.card:hover::before {
  transform: scale(1);
}

.card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.card:hover i {
  transform: scale(1.2);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.card p {
  color: var(--light-gray);
  font-size: 1rem;
  opacity: 0.9;
}

/* Seção de Vídeo */
.video-section {
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 60px 0; /* Adiciona espaçamento vertical */
}

.video-wrapper {
  max-width: 900px; /* Mantém a largura máxima */
  margin: 0 auto; /* Centraliza */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.static-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Garante que a imagem não será distorcida */
}
.video-wrapper:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* Efeito de brilho no hover */
.video-wrapper {
  position: relative;
  overflow: hidden;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 170, 0, 0.1),
    transparent
  );
  transition: 0.6s;
}

.video-wrapper:hover::after {
  left: 100%;
}
.video-section h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
}

/* Seção de Estatísticas */
.estatisticas {
  background-color: var(--dark-light);
  text-align: center;
}

.estatisticas h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.item {
  background: rgba(22, 22, 27, 0.7);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(251, 170, 0, 0.1);
  transition: var(--transition);
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(251, 170, 0, 0.3);
}

.counter {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.item p {
  color: var(--light-gray);
  font-size: 1rem;
  opacity: 0.9;
}

/* Seção Prova Social */
.prova-social {
  background-color: var(--dark);
  text-align: center;
  padding: 4rem 0; /* Adicionado padding */
}

.prova-social h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.logos-clientes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logos-clientes img {
  height: 200px;
  width: auto; /* Mantém proporção */
  max-width: 150px; /* Limita tamanho máximo */
  opacity: 0.8;
  transition: var(--transition);
  /* Removido o filter inicial - adicione apenas se necessário */
}

.logos-clientes img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Se precisar que as logos fiquem brancas */
.logos-clientes.img-branco img {
  filter: brightness(0) invert(1);
}

/* Seção FAQ */
.faq {
  background-color: var(--dark-light);
}

.faq h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  background: rgba(35, 35, 42, 0.7);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  border-left: 4px solid transparent;
  transition: var(--transition);
}

.faq-item:hover {
  border-left-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--light-gray);
  opacity: 0.9;
}

/* Newsletter */
/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
  text-align: center;
  padding: 80px 20px; /* Ajuste o padding conforme necessário */
}

.newsletter .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.newsletter h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  width: 100%;
}

.newsletter-form {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  background-color: rgba(35, 35, 42, 0.7);
  color: var(--light);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(251, 170, 0, 0.3);
}

.newsletter-form button {
  background-color: var(--primary);
  color: var(--dark);
  border: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Chamada Final */
.chamada-final {
  background-color: var(--dark);
  text-align: center;
}

.chamada-final h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}

/* Animações */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in:nth-child(1) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.6s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.9s;
}

/* Seção de Pacotes */
.pacotes {
  background-color: var(--dark-light);
  position: relative;
  overflow: hidden;
}
.pacotes h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pacotes h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}
.pacotes h2:hover {
  text-shadow: 0 0 10px rgba(251, 170, 0, 0.5);
}
.pacotes h2 {
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pacotes .subtitle {
  text-align: center;
  color: var(--light-gray);
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pacote-card {
  background: rgba(30, 30, 40, 0.8);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  border: 2px dashed rgba(251, 170, 0, 0.3);
  box-shadow: 0 0 12px rgba(251, 170, 0, 0.1);
  backdrop-filter: blur(5px);
}

.pacote-card.destaque {
  border: 2px solid var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.destaque-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--primary);
  color: var(--dark);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.pacote-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(251, 170, 0, 0.2);
}

.pacote-header h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.preco {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
}

.beneficios {
  list-style: none;
  margin-bottom: 2rem;
}

.beneficios li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: var(--light-gray);
}

.beneficios i {
  color: var(--primary);
  margin-right: 10px;
  margin-top: 3px;
}

.btn-pacote {
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: var(--primary);
  color: var(--dark);
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-pacote:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.cta-pacotes {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-pacotes p {
  margin-bottom: 1.5rem;
  color: var(--light-gray);
}

/* Seção Diferenciais */
.diferenciais {
  background-color: var(--dark);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.diferencial {
  text-align: center;
  padding: 2rem;
  background: rgba(22, 22, 27, 0.7);
  border-radius: 16px;
  transition: var(--transition);
}

.diferencial i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.diferencial h3 {
  color: var(--light);
  margin-bottom: 1rem;
}

.diferencial p {
  color: var(--light-gray);
}

/* Seção Condições */
.condicoes {
  background-color: var(--dark-light);
  text-align: center;
}

.condicoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.condicao {
  background: rgba(22, 22, 27, 0.7);
  padding: 2rem;
  border-radius: 16px;
  transition: var(--transition);
}

.condicao h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.condicao p {
  color: var(--light-gray);
}

.cta-condicoes {
  margin-top: 2rem;
}
/* Responsividade */
@media (max-width: 992px) {
  .container {
    padding: 60px 0;
  }

  .hero {
    min-height: 700px;
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 50px 0;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn-primary {
    padding: 14px 30px;
  }
}
/* Adicionando media queries específicas para mobile */
@media (max-width: 480px) {
  /* Ajustes gerais */
  .container {
    width: 95%;
    padding: 40px 0;
  }

  /* Hero Section */
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* Seção de Serviços */
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  /* Seção de Vídeo */
  .video-wrapper {
    border-radius: 8px;
  }

  /* Seção de Estatísticas */
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Logos de Clientes */
  .logos-clientes {
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .logos-clientes img {
    height: 80px;
    max-width: 100px;
  }

  /* Formulários */
  .form-lead form,
  .newsletter-form {
    gap: 1rem;
  }

  .form-lead input,
  .newsletter-form input {
    padding: 12px 20px;
  }

  /* FAQ */
  .faq-item {
    padding: 1rem;
  }

  /* Pacotes */
  .pacotes-grid {
    grid-template-columns: 1fr;
  }

  .pacote-card {
    padding: 1.5rem;
  }

  .preco {
    font-size: 1.5rem;
  }

  /* Ajustes específicos para telas muito pequenas */
  @media (max-width: 360px) {
    .hero h1 {
      font-size: 1.5rem;
    }

    .hero p {
      font-size: 0.9rem;
    }

    .btn-primary {
      padding: 10px 20px;
    }
  }
}

/* Adicionando estilos para orientação landscape */
@media (max-width: 992px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 80px 0;
  }

  .hero .overlay {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Melhorando a legibilidade em telas pequenas */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }

  h1,
  h2,
  h3,
  h4 {
    line-height: 1.3;
  }

  /* Ajustando paddings para não ocupar muito espaço */
  .card,
  .faq-item,
  .pacote-card,
  .diferencial,
  .condicao {
    padding: 1.25rem;
  }
}

/* Ajustes para tablets em modo retrato */
@media (min-width: 481px) and (max-width: 768px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pacotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pacotes-grid .pacote-card:last-child {
    grid-column: span 2;
  }
}

/* CORREÇÕES PARA SCROLL HORIZONTAL INDESEJADO */

/* 1. Garantir que nenhum elemento ultrapasse a largura da viewport */
body,
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* 2. Correção específica para o menu de navegação (que aparece na imagem) */
.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  width: 100%;
  box-sizing: border-box;
}

.header-nav a {
  white-space: nowrap;
  padding: 8px 15px;
}

/* 3. Ajustes para containers e seções */
.container,
section,
footer {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* 4. Correção para elementos que podem estar causando overflow */
img,
video,
iframe,
object,
embed {
  max-width: 100%;
  height: auto;
}

/* 5. Ajustes específicos para o hero section */
.hero .overlay {
  width: calc(100% - 40px);
  padding: 0 20px;
}

/* 6. Correção para a seção de logos de clientes */
.logos-clientes {
  padding: 1rem 15px;
  gap: 1.5rem;
}

/* 7. Ajustes para formulários */
.form-lead form,
.newsletter-form {
  width: calc(100% - 30px);
  margin: 0 15px;
}

/* 8. Correção para cards e grids */
.cards,
.grid,
.pacotes-grid,
.diferenciais-grid,
.condicoes-grid {
  width: calc(100% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}

/* 9. Ajuste fino para mobile muito pequeno (360px) */
@media (max-width: 360px) {
  .header-nav a {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-pacote,
  .newsletter-form button {
    padding: 10px 15px;
  }

  .logos-clientes img {
    height: 60px;
    max-width: 80px;
  }
}

/* 10. Prevenção geral para elementos inline */
span,
a,
strong,
em,
small {
  display: inline-block;
  max-width: 100%;
}

/* 11. Correção para animações que podem causar overflow */
.animate,
.fade-in {
  max-width: 100%;
}
