/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  background: #000; /* Fundo 100% preto */
  color: #fff;
  line-height: 1.8; /* Aumentado para melhorar legibilidade */
  position: relative;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Fundo de Emojis */
#global-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
#global-background .emoji {
  position: absolute;
  font-size: 6rem;
  opacity: 0.5;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Conteúdo Principal */
.main-content {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Header sem fundo e sem sombra */
header {
  background: transparent;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: none;
}
header .container {
  position: relative;
  display: flex;
  justify-content: center; /* Centraliza o conteúdo principal */
  align-items: center;
}
header .home-link img {
  height: 50px; /* Aumentado para maior destaque */
}
header nav {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
header nav .login-btn {
  background: #e63946;
  color: #fff;
  padding: 12px 24px; /* Aumentado */
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  font-size: 20px; /* Aumentado */
}
header nav .login-btn:hover {
  background: #d62828;
}

/* Seções Transparentes */
.hero,
.steps,
.social-proof,
.social-links,
footer {
  background: transparent;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px; /* Aumentado */
  text-align: center;
}
.hero-slide {
  display: flex;
  flex-direction: column; /* Empilha o texto acima da imagem */
  align-items: center; /* Centraliza os itens horizontalmente */
  justify-content: center;
}
.hero-content {
  text-align: center;
  max-width: 800px;
  margin-bottom: 40px; /* Aumentado */
}
.hero-title {
  font-size: 50px; /* Aumentado de 48px */
  color: #ff8c00;
  margin-bottom: 30px; /* Aumentado */
  text-shadow: 3px 3px 6px #000; /* Sombra mais forte */
}
.hero-subtitle {
  font-size: 22px; /* Aumentado de 20px */
  color: #ccc;
  text-shadow: 2px 2px 4px #000;
}
.hero-image img {
  width: 100%;
  max-width: 500px; /* Aumentado */
  border-radius: 8px;
  box-shadow: 0 8px 64px rgba(230, 57, 70, 0.5);
  transform-origin: center center;
  overflow: visible;
  position: relative;
  z-index: 2;
}

/* Steps - Layout Desktop (intercalado) */
.steps {
  padding: 80px 20px; /* Aumentado */
}
.steps .section-title {
  text-align: center;
  font-size: 48px; /* Aumentado de 36px */
  color: #ff8c00;
  margin-bottom: 60px; /* Aumentado */
  text-shadow: 2px 2px 4px #000;
}
.step {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px; /* Aumentado */
}
/* Steps pares invertem a ordem do texto no desktop */
.step:nth-child(even) .step-text {
  order: 2;
}
.step-text,
.step-image {
  flex: 1 1 300px;
  padding: 20px;
}
.step-text h3 {
  font-size: 36px; /* Aumentado de 28px */
  color: #ff8c00;
  margin-bottom: 15px; /* Aumentado */
  text-shadow: 2px 2px 4px #000;
}
.step-text p {
  font-size: 20px; /* Aumentado de 16px */
  color: #ccc;
  text-shadow: 2px 2px 4px #000;
}
.step-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 1px 32px rgba(226, 12, 12, 0.74);
  display: block;
  position: relative;
}

/* Social Proof (Carousel) */
.social-proof {
  padding: 80px 20px; /* Aumentado */
  text-align: center;
}
.social-proof .section-title {
  font-size: 48px; /* Aumentado de 36px */
  color: #ff8c00;
  margin-bottom: 40px; /* Aumentado */
  text-shadow: 2px 2px 4px #000;
}
/* Container do carousel */
.swiper-container {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 60px;
}
.swiper-slide {
  background: transparent;
  border-radius: 8px;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  box-shadow: 0 1px 32px rgba(226, 12, 12, 0.74);
  display: block;
}
/* Paginação (bolinhas) - Maior e posicionada logo abaixo das imagens */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
}
.swiper-pagination-bullet {
  width: 20px; /* Aumentado de 16px */
  height: 20px; /* Aumentado de 16px */
  background: #fff;
  opacity: 0.8;
  margin: 0 8px !important;
}
.swiper-pagination-bullet-active {
  background: #ff8c00;
  opacity: 1;
}

/* Connect With Us */
.social-links {
  padding: 60px 20px; /* Aumentado */
  text-align: center;
  margin: 0 auto;
}
.social-links .section-title {
  font-size: 36px; /* Aumentado de 28px */
  color: #ff8c00;
  margin-bottom: 30px; /* Aumentado */
  text-shadow: 2px 2px 4px #000;
}
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-icons a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.1);
}
.social-icons img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e63946;
}

/* Footer */
footer {
  padding: 30px 10px; /* Aumentado */
  font-size: 18px; /* Aumentado de 14px */
  text-align: center;
  color: #ccc;
  text-shadow: 2px 2px 4px #000;
}

/* Responsividade (max-width: 768px) */
@media (max-width: 768px) {
  .step {
    flex-direction: column !important;
    display: block;
    position: relative;
    margin-bottom: 40px;
  }
  .step-text,
  .step-image {
    width: 100%;
    order: initial;
    padding: 10px 0;
    position: static;
    transform: none;
    background: transparent;
    text-align: center;
  }
  .step-text h3 {
    font-size: 28px; /* Aumentado de 24px */
    margin-bottom: 10px;
  }
  .step-text p {
    font-size: 18px; /* Aumentado de 14px */
  }
  .swiper-container {
    max-width: 90%;
  }
}

/* Botão CTA para Planos */
.cta-plans {
  text-align: center;
  margin-top: 30px;
}
.btn-plans {
  display: inline-block;
  background: #ff8c00;
  color: #fff;
  padding: 20px 40px; /* Aumentado */
  font-size: 28px; /* Aumentado */
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.btn-plans:hover {
  background: #ff8c00;
}
.neon-trail {
  background-color: rgba(255, 0, 0, 0.5);
  filter: blur(4px);
  border-radius: 4px;
  pointer-events: none;
  width: 3em; /* aumenta a largura */
  height: 2em; /* aumenta a altura */
}
.line-emoji {
  color: red;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.822);
  /* Outras propriedades já definidas via JS */
}
