/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background com ondas */
.wave-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* Headline chamativo - LETRAS BRANCAS */
.headline-container {
  text-align: center;
  padding: 30px 20px 20px;
  margin-bottom: 10px;
}

.main-headline {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff; /* Mudado para branco */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
  /* Removido o gradiente */
}

/* Container do vídeo */
.video-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px 20px;
  margin-bottom: 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 0;
  padding-bottom: 33.75%; /* 16:9 aspect ratio para mobile, mais baixo */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 226, 24, 0.1);
  border: 2px solid rgba(15, 226, 24, 0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Botão Criar Minha Conta */
.create-account-container {
  display: flex;
  justify-content: center;
  padding: 0 20px 30px;
  margin-bottom: 20px;
}

.btn-create-account {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #0fe218 0%, #0bc914 100%);
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(15, 226, 24, 0.3);
  border: 2px solid transparent;
}

.btn-create-account:hover {
  background: linear-gradient(135deg, #0bc914 0%, #0fe218 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(15, 226, 24, 0.4);
  border-color: rgba(15, 226, 24, 0.5);
}

.btn-create-account svg {
  width: 24px;
  height: 24px;
}

/* Container principal */
.main-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.logo {
  width: 35px;
  height: auto;
  margin-right: 15px;
  filter: drop-shadow(0 0 10px rgba(15, 226, 24, 0.3));
}

.subtitle {
  color: #0fe218;
  font-size: 1rem;
  font-weight: 500;
}

/* Container de conteúdo */
.content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Container de etapas */
.step-container {
  background: rgba(20, 20, 20, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(15, 226, 24, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.step-container.active {
  border-color: rgba(15, 226, 24, 0.3);
  box-shadow: 0 15px 35px rgba(15, 226, 24, 0.1);
}

.step-header {
  text-align: center;
  margin-bottom: 25px;
}

.step-header h2 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-header p {
  color: #cccccc;
  font-size: 0.95rem;
}

/* Seção tutorial */
.tutorial-section {
  background: rgba(15, 226, 24, 0.05);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(15, 226, 24, 0.1);
}

.tutorial-section p {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #e0e0e0;
}

/* Centralizar a imagem de exemplo */
.example-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin: 15px auto;
  display: block;
  border: 2px solid rgba(15, 226, 24, 0.2);
}

/* Formulários */
.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.input-group input {
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #0fe218;
  box-shadow: 0 0 0 3px rgba(15, 226, 24, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.input-group input::placeholder {
  color: #888888;
}

/* Botões - REMOVIDO SCROLL AUTOMÁTICO */
.btn-primary,
.btn-success,
.btn-danger,
.btn-access {
  padding: 15px 25px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #0fe218 0%, #0bc914 100%);
  color: #000000;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0bc914 0%, #0fe218 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 226, 24, 0.3);
}

.btn-success {
  background: linear-gradient(135deg, #0fe218 0%, #0bc914 100%);
  color: #000000;
  flex: 1;
}

.btn-success:hover {
  background: linear-gradient(135deg, #0bc914 0%, #0fe218 100%);
  transform: translateY(-2px);
}

.btn-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #ffffff;
  flex: 1;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
  transform: translateY(-2px);
}

.button-group {
  display: flex;
  gap: 15px;
}

/* Link de cadastro */
.register-link-container {
  text-align: center;
  margin-top: 20px;
}

.register-link {
  display: inline-block;
  padding: 12px 25px;
  background: rgba(15, 226, 24, 0.1);
  color: #0fe218;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid #0fe218;
  font-weight: 600;
  transition: all 0.3s ease;
}

.register-link:hover {
  background: #0fe218;
  color: #000000;
  transform: translateY(-2px);
}

/* Ajustar posição das mensagens */
.message-container {
  padding: 20px;
  border-radius: 15px;
  margin: 0 0 20px 0; /* Mudado para aparecer no topo */
  border-left: 4px solid;
}

.message-container.success {
  background: rgba(15, 226, 24, 0.1);
  border-color: #0fe218;
  color: #ffffff;
}

.message-container.error {
  background: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
  color: #ffffff;
}

.message-content {
  font-weight: 500;
  line-height: 1.5;
}

/* Botão do Telegram fixo - ÍCONE CORRETO ATUALIZADO */
.telegram-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.telegram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/telegrama%20%281%29-aiI5Z56bSrjuIWkFSi4bWLYG328SSb.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.telegram-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 136, 204, 0.6);
}

/* Página de sucesso */
.success-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.success-content {
  background: rgba(20, 20, 20, 0.95);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(15, 226, 24, 0.2);
  backdrop-filter: blur(10px);
}

.success-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.success-content h1 {
  font-size: 2rem;
  color: #0fe218;
  margin-bottom: 20px;
  font-weight: 700;
}

.success-message {
  margin-bottom: 25px;
}

.success-message p {
  margin-bottom: 10px;
  color: #e0e0e0;
  line-height: 1.6;
}

.email-info {
  background: rgba(15, 226, 24, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  border: 1px solid rgba(15, 226, 24, 0.2);
}

.access-info {
  margin-bottom: 30px;
  color: #cccccc;
}

.btn-access {
  background: linear-gradient(135deg, #0fe218 0%, #0bc914 100%);
  color: #000000;
  padding: 18px 35px;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-access:hover {
  background: linear-gradient(135deg, #0bc914 0%, #0fe218 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(15, 226, 24, 0.4);
}

.license-details {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.license-details h3 {
  color: #0fe218;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.license-details ul {
  list-style: none;
  text-align: left;
}

.license-details li {
  padding: 8px 0;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.license-details li:last-child {
  border-bottom: none;
}

/* Responsividade */
@media (min-width: 768px) {
  .main-container {
    max-width: 600px;
  }

  .video-wrapper {
    max-width: 800px;
    padding-bottom: 28.125%; /* 16:9 aspect ratio para desktop */
  }

  .header h1 {
    font-size: 2.2rem;
  }

  .step-container {
    padding: 40px;
  }

  .success-content {
    padding: 50px;
  }

  .main-headline {
    font-size: 2.2rem;
  }

  .btn-create-account {
    font-size: 1.2rem;
    padding: 20px 40px;
  }
}

@media (min-width: 1024px) {
  .video-wrapper {
    max-width: 1000px;
    padding-bottom: 25%; /* Ainda mais largo para desktop grande */
  }

  .main-container {
    max-width: 700px;
  }

  .main-headline {
    font-size: 2.5rem;
  }
}

/* Responsividade para mobile */
@media (max-width: 480px) {
  .telegram-button {
    bottom: 20px;
    right: 20px;
  }

  .telegram-link {
    width: 55px;
    height: 55px;
  }

  .main-headline {
    font-size: 1.4rem;
    padding: 0 10px;
  }

  .btn-create-account {
    font-size: 1rem;
    padding: 15px 25px;
  }
}

/* Animações suaves */
@media (prefers-reduced-motion: no-preference) {
  .step-container {
    animation: fadeInUp 0.6s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Remover scroll automático */
html {
  scroll-behavior: auto !important;
}

