* {
  box-sizing: border-box;
}

::selection {
  background: oklch(0.6 0.1 155 / 0.35);
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

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

@keyframes eq {
  0%, 100% { height: 6px; }
  50% { height: 18px; }
}

body {
  margin: 0;
  font-family: 'Public Sans', sans-serif;
}

.page-wrap {
  min-height: 100vh;
  width: 100%;
  background: #0a0b0c;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 64px;
}

.container {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.container.step-fade-out {
  opacity: 0;
  transform: translateY(8px);
}

/* Step label */
.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.step-label .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.68 0.13 155);
}

.step-label .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245, 244, 240, 0.25);
}

.step-label .count {
  font-size: 12px;
  font-weight: 600;
  color: rgba(245, 244, 240, 0.4);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(245, 244, 240, 0.14);
  background: rgba(245, 244, 240, 0.04);
  margin-bottom: 28px;
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(0.68 0.13 155);
  flex-shrink: 0;
}

.badge span.label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(245, 244, 240, 0.75);
}

/* Headline */
h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #f5f4f0;
  margin: 0 0 20px;
}

h1.small {
  font-size: 38px;
  line-height: 1.15;
  text-align: center;
  margin: 0 0 12px;
}

.subtitle {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(245, 244, 240, 0.62);
  max-width: 560px;
  margin: 0 0 40px;
}

.subtitle.small {
  font-size: 16px;
  color: rgba(245, 244, 240, 0.55);
  text-align: center;
  margin: 0 auto 32px;
}

/* Video box */
.video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: 16px;
  background: linear-gradient(160deg, #17181a, #0f1010);
  border: 1px solid rgba(245, 244, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 24px 64px -24px rgba(0, 0, 0, 0.6);
}

.video-box.small {
  aspect-ratio: 2/1;
  margin-bottom: 28px;
  cursor: pointer;
}

.play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(245, 244, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: playPulse 2.6s ease-in-out infinite;
}

.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 24px;
}

.eq-bars div {
  width: 5px;
  background: oklch(0.68 0.13 155);
  border-radius: 3px;
  animation: eq 0.9s ease-in-out infinite;
}

.eq-bars div:nth-child(2) { animation-delay: 0.2s; }
.eq-bars div:nth-child(3) { animation-delay: 0.4s; }
.eq-bars div:nth-child(4) { animation-delay: 0.1s; }

/* Primary CTA button */
.cta-btn {
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 32px;
  border-radius: 12px;
  background: #f5f4f0;
  border: none;
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0a0b0c;
}

.cta-btn:hover {
  background: #ffffff;
}

.footnote {
  margin: 16px 0 28px;
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  color: rgba(245, 244, 240, 0.45);
}

.footnote strong {
  color: rgba(245, 244, 240, 0.7);
  font-weight: 700;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(245, 244, 240, 0.55);
}

/* Card (option / contato steps) */
.card {
  width: 100%;
  max-width: 480px;
  animation: fadeUp 0.35s ease;
}

.card-title {
  margin: 0 0 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #f5f4f0;
}

.card-title.center { text-align: center; }

.card-subtitle {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245, 244, 240, 0.5);
}

.card-subtitle.center { text-align: center; }

.card-box {
  background: rgba(245, 244, 240, 0.03);
  border: 1px solid rgba(245, 244, 240, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.card-box.text-left {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.option-question {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  color: #f5f4f0;
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-btn {
  width: 100%;
  padding: 15px 18px;
  border-radius: 9px;
  background: rgba(245, 244, 240, 0.06);
  border: 1px solid rgba(245, 244, 240, 0.1);
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #f5f4f0;
  text-align: left;
}

.option-btn:hover {
  background: oklch(0.68 0.13 155 / 0.18);
  border-color: oklch(0.68 0.13 155 / 0.5);
}

.option-btn.selected {
  background: oklch(0.68 0.13 155 / 0.22);
  border-color: oklch(0.68 0.13 155 / 0.7);
}

.back-btn {
  margin-top: 18px;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(245, 244, 240, 0.4);
  display: block;
}

.back-btn.centered {
  margin-left: auto;
  margin-right: auto;
}

/* Form fields */
.field-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 244, 240, 0.65);
  margin-bottom: 6px;
  display: block;
  text-align: left;
}

.field-input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  margin-bottom: 16px;
  border-radius: 9px;
  border: 1px solid rgba(245, 244, 240, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: #f5f4f0;
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  outline: none;
}

.field-input:focus {
  border-color: oklch(0.68 0.13 155);
}

.field-input.last {
  margin-bottom: 24px;
}

.form-error {
  margin: -14px 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: #f5a3a3;
  text-align: left;
}

.submit-btn {
  width: 100%;
  padding: 17px 24px;
  border-radius: 10px;
  background: #f5f4f0;
  border: none;
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0a0b0c;
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* VSL2 */
.vsl2-wrap {
  width: 100%;
  animation: fadeUp 0.35s ease;
}

.after-video {
  animation: fadeUp 0.4s ease;
  text-align: center;
}

.after-video-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #f5f4f0;
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-secondary {
  padding: 16px 26px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(245, 244, 240, 0.25);
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #f5f4f0;
}

.cta-secondary:hover {
  border-color: oklch(0.68 0.13 155);
  color: oklch(0.75 0.1 155);
}

.cta-primary-small {
  padding: 16px 26px;
  border-radius: 10px;
  background: #f5f4f0;
  border: none;
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0a0b0c;
}

/* Final step */
.final-card {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(245, 244, 240, 0.03);
  border: 1px solid rgba(245, 244, 240, 0.1);
  border-radius: 16px;
  padding: 36px 28px;
  animation: fadeUp 0.35s ease;
}

.final-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: oklch(0.68 0.13 155 / 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.final-title {
  margin: 0 0 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #f5f4f0;
}

.final-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 244, 240, 0.55);
}
