:root {
  --bg-dark: #120b22;
  --bg-dark-2: #18102e;
  --bg-accent: #6e36b4;
  --bg-accent-2: #5f2ea1;
  --bg-soft: #f7f1ff;
  --bg-soft-2: #faf7ff;
  --card-dark: rgba(255, 255, 255, 0.08);
  --card-border-dark: rgba(255, 255, 255, 0.12);
  --text-light: rgba(255, 255, 255, 0.92);
  --text-light-soft: rgba(255, 255, 255, 0.74);
  --text-dark: #24123f;
  --text-muted: #66597f;
  --border-soft: #eadff9;
  --shadow-soft: 0 18px 55px rgba(57, 32, 99, 0.08);
  --shadow-strong: 0 40px 120px rgba(24, 14, 46, 0.34);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #120b22 0%, #18102e 16%, #f6f0ff 16%, #fcfbfe 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 11, 34, 0.88);
  backdrop-filter: blur(18px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px 0;
  color: var(--text-light);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5e31a4, #a778ef);
  color: white;
  font-weight: 800;
}

.brand-name {
  margin: 0;
  font-weight: 700;
}

.brand-subtitle {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.main-nav a:hover {
  color: white;
}

.header-actions,
.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  background: #ffffff;
  color: #24123f;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
  background: transparent;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
  background: transparent;
}

.button-primary {
  background: var(--bg-accent);
  color: white;
}

.button-secondary {
  border-color: #dacbfa;
  background: transparent;
  color: var(--text-dark);
}

.hero-section {
  padding: 56px 0 96px;
  color: var(--text-light);
}

.hero-grid,
.two-column-grid,
.offer-grid,
.contact-shell,
.faq-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-texts h1,
.section-head h2,
.dark-feature-card h2,
.offer-main h2,
.contact-copy h2,
.faq-grid h2,
.solid-card h2,
.form-head h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-texts h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 1.02;
}

.hero-texts p,
.dark-feature-card p,
.offer-main p,
.support-copy,
.solid-card p,
.contact-copy p,
.form-head p,
.lead-form label span,
.faq-item p,
.callout-box p,
.soft-note {
  margin: 0;
}

.hero-texts p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.hero-highlights,
.stats-grid,
.card-grid,
.price-grid,
.journey-grid,
.form-grid {
  display: grid;
  gap: 16px;
}

.hero-highlights,
.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card,
.small-card,
.stat-card,
.dark-card-item,
.offer-side,
.lead-form {
  border: 1px solid var(--card-border-dark);
  background: var(--card-dark);
  backdrop-filter: blur(10px);
}

.small-card,
.glass-card,
.price-banner,
.dark-card-item,
.decision-card,
.hotmart-widget-box {
  border-radius: 24px;
}

.small-card {
  padding: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(7, 5, 14, 0.16);
}

.price-banner {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.7;
}

.hero-panel {
  position: relative;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: radial-gradient(circle at top, rgba(167, 120, 239, 0.24), transparent 60%);
  filter: blur(48px);
  z-index: -1;
}

.hero-panel-shell {
  border-radius: 32px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 36px 100px rgba(8, 5, 16, 0.28);
}

.vsl-card {
  padding: 20px;
  border-radius: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: #160f27;
}

.vsl-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.vsl-head h2 {
  margin: 12px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  line-height: 1.1;
}

.micro-label,
.section-label,
.meta-note,
.stat-note,
.hotmart-widget-box p {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
}

.micro-label {
  color: rgba(255, 255, 255, 0.5);
}

.play-badge,
.play-circle,
.icon-chip,
.quote-chip,
.mini-chip,
.journey-index,
.brand-mark {
  font-weight: 700;
}

.play-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.support-copy {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light-soft);
}

.vsl-placeholder {
  width: 100%;
  margin-top: 20px;
  padding: 30px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #201537 0%, #2b1b49 45%, #5e31a4 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.vsl-placeholder-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.vsl-placeholder-text {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}

.bullet-box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.bullet-line {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.76);
}

.bullet-line + .bullet-line {
  margin-top: 12px;
}

.stats-grid {
  margin-top: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  border-radius: 26px;
  padding: 20px;
  background: rgba(27, 20, 48, 0.76);
}

.stat-value {
  margin: 14px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  line-height: 1.05;
}

.stat-label {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.stat-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.04em;
  text-transform: none;
}

.section-light,
.contact-section {
  padding: 72px 0;
}

#problema {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #f6f0ff 0%, #fcfbfe 100%);
}

#problema .section-head h2 {
  color: var(--text-dark);
}

#problema .section-head p:not(.section-label) {
  color: var(--text-muted);
}

.soft-band {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(247,241,255,0.75) 100%);
}

.section-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.max-copy {
  max-width: 760px;
}

.max-wide {
  max-width: 940px;
}

.section-label {
  margin: 0;
  color: var(--bg-accent);
  font-weight: 700;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.58);
}

.section-head h2,
.solid-card h2,
.contact-copy h2,
.faq-grid h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--text-dark);
}

.section-head p,
.solid-card p,
.contact-copy p,
.faq-item p,
.soft-note {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
}

.card-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solid-card,
.callout-box,
.journey-item,
.faq-item {
  border: 1px solid var(--border-soft);
  background: white;
  box-shadow: var(--shadow-soft);
}

.solid-card,
.large-card,
.callout-box,
.journey-item,
.faq-item,
.contact-shell,
.lead-form,
.offer-shell {
  border-radius: 32px;
}

.solid-card {
  padding: 24px;
}

.large-card {
  padding: 32px;
}

.solid-card h3,
.contact-copy h2,
.form-head h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  color: var(--text-dark);
  letter-spacing: -0.04em;
}

.solid-card .item-title,
.offer-side .item-title,
.card-header-inline h3 {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}

.item-title.dark {
  color: var(--text-dark);
}

.item-title.light,
.dark-feature-card h2,
.dark-feature-card p,
.offer-main h2,
.offer-main p,
.offer-side,
.lead-form,
.form-head h3 {
  color: white;
}

.icon-chip,
.quote-chip,
.mini-chip {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #f3ebff;
  color: var(--bg-accent);
}

.callout-box {
  padding: 24px 28px;
  background: linear-gradient(135deg, #fff 0%, #f7f1ff 100%);
}

.callout-box p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--text-dark);
}

.two-column-grid,
.faq-grid,
.contact-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dark-feature-card {
  padding: 32px;
  border-radius: 32px;
  background: #18112b;
  box-shadow: 0 28px 80px rgba(14, 9, 25, 0.24);
}

.dark-feature-card h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.dark-feature-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
}

.stack-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.dark-card-item {
  padding: 20px;
}

.soft-list .soft-item,
.benefit-item,
.journey-item,
.card-header-inline {
  display: flex;
  gap: 14px;
}

.soft-item {
  padding: 18px;
  border-radius: 22px;
  background: #f8f3ff;
}

.soft-item p,
.benefit-item p,
.journey-item p {
  font-size: 14px;
  line-height: 1.85;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.space-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8f3ff;
  color: var(--bg-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-quote {
  margin-top: 18px;
  color: #5f5378;
}

.testimonial-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #efe6ff;
}

.meta-note {
  margin-top: 14px;
  color: #8e7fa9;
  text-transform: uppercase;
}

.journey-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.journey-item {
  padding: 20px;
}

.journey-index {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: #f2eaff;
  color: var(--bg-accent);
  flex-shrink: 0;
}

.offer-section {
  padding: 72px 0;
}

.offer-shell {
  padding: 36px;
  background: linear-gradient(135deg, #170f29 0%, #24123f 42%, #6e36b4 100%);
  box-shadow: var(--shadow-strong);
}

.offer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: start;
}

.offer-main p {
  color: rgba(255, 255, 255, 0.8);
}

.price-value {
  margin: 8px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  line-height: 1.08;
  color: white;
}

.offer-side {
  padding: 24px;
  border-radius: 32px;
}

.decision-card p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.hotmart-widget-box {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background: white;
  text-align: center;
  color: var(--text-dark);
}

.hotmart-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.hotmart-button-wrap img {
  max-width: 100%;
  height: auto;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  color: var(--text-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item summary span {
  color: var(--bg-accent);
  transition: transform 0.2s ease;
}

.faq-item p {
  margin-top: 16px;
}

.contact-shell {
  padding: 36px;
  border: 1px solid #e1d5fb;
  background: white;
  box-shadow: 0 28px 90px rgba(57, 32, 99, 0.1);
}

.soft-note {
  padding: 20px;
  border-radius: 24px;
  background: #faf7ff;
}

.lead-form {
  padding: 24px;
  background: #1b1231;
  box-shadow: 0 28px 80px rgba(24, 14, 46, 0.32);
}

.form-head p,
.lead-form label span {
  color: rgba(255, 255, 255, 0.8);
}

.form-grid {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.form-grid .full-span {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 16px;
  outline: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.form-grid select option {
  color: #111111;
}

.form-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.form-actions {
  margin-top: 20px;
}

.submit-button {
  width: 100%;
}

.feedback-text {
  min-height: 24px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.feedback-text.success {
  color: #d9ffea;
}

.feedback-text.error {
  color: #ffd7d7;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #120b22;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .hero-grid,
  .offer-grid,
  .two-column-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-highlights,
  .card-grid.three-up,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 36px;
  }

  .hero-panel-shell {
    box-shadow: 0 18px 36px rgba(8, 5, 16, 0.16);
  }

  #problema {
    z-index: 3;
    background: #f6f0ff;
    padding-top: 60px;
  }

  .main-nav {
    display: none;
  }

  .header-wrap {
    flex-wrap: wrap;
  }

  .hero-section,
  .section-light,
  .contact-section,
  .offer-section {
    padding: 52px 0;
  }

  .hero-highlights,
  .stats-grid,
  .card-grid.three-up,
  .journey-grid,
  .form-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .offer-shell,
  .contact-shell,
  .dark-feature-card,
  .large-card,
  .lead-form,
  .hero-panel-shell {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .button,
  .button-light,
  .button-primary,
  .button-secondary,
  .button-outline,
  .button-outline-light {
    width: 100%;
  }

  .header-actions {
    width: 100%;
  }

  .brand-subtitle {
    max-width: 180px;
  }

  .hero-texts h1 {
    font-size: 2.6rem;
  }

  .vsl-head h2,
  .section-head h2,
  .solid-card h2,
  .dark-feature-card h2,
  .contact-copy h2,
  .offer-main h2,
  .faq-grid h2,
  .form-head h3 {
    font-size: 2rem;
  }
}