
/* style.css - responsivo */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a080f;
  color: white;
  font-family: 'Arial', sans-serif;
  padding: 60px;
  min-height: 100vh;
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.vsl-box {
  flex: 1;
  max-width: 400px;
  width: 100%;
}

.vsl-container {
  position: relative;
  width: 100%;
  padding-top: 177.77%;
  overflow: hidden;
  border-radius: 30px;
  background: #000;
}

.vsl-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.form-box {
  flex: 2;
  max-width: 600px;
  width: 100%;
}

.headline {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: center;
}

.contador {
  font-size: 1rem;
  color: #999;
  margin-bottom: 10px;
  text-align: center;
}

#contador {
  color: #a259ff;
  font-weight: bold;
}

.pergunta {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.formulario {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.formulario input[type="text"] {
  flex: 1;
  padding: 14px 20px;
  border-radius: 40px;
  border: none;
  font-size: 1rem;
  outline: none;
  color: #333;
  background: white;
  min-width: 240px;
  width: 100%;
  max-width: 300px;
}

.formulario button {
  padding: 14px 28px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(135deg, #a259ff, #dd77ff);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
  body {
    padding: 30px 20px;
  }

  .headline {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .pergunta {
    font-size: 1.3rem;
  }

  .formulario input[type="text"] {
    max-width: 100%;
  }
}
