.hero {
  position: relative;
  background-color: var(--bg-primary);
  background-image: var(--gradient-hero-linear);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-3xl) 0 var(--space-section);
  overflow: hidden;
  min-height: min(85vh, 920px);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.hero__content {
  flex: 1 1 auto;
  max-width: min(36rem, 100%);
  display: flex;
  flex-direction: column;
}

.hero__gif-aside,
.hero__mockup {
  flex: 0 1 min(69%, 780px);
  min-width: 0;
  max-width: 780px;
  align-self: center;
}

.hero__gif-img,
.hero__mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.hero__ticket-progress {
  display: block;
  order: 5;
  width: 100%;
  max-width: min(28rem, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--space-md);
  text-align: center;
}

.hero__ticket-progress__label {
  margin: 0 0 var(--space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero__ticket-progress__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.hero__ticket-progress__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 0 12px rgba(0, 232, 123, 0.35);
  transition: width 0.4s ease;
}

.hero__meta {
  margin: 0 0 var(--space-sm);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgb(99, 195, 249);
  line-height: 1.5;
}

.hero__logo {
  display: block;
  width: auto;
  max-width: min(220px, 94vw);
  height: auto;
  margin-bottom: var(--space-xl);
  object-fit: contain;
  order: 1;
}

.hero__lead {
  display: block;
  order: 2;
}

.hero__content > .hero__checks {
  order: 3;
}

.hero__content > .social-proof {
  order: 6;
}

.hero__headline {
  font-size: 32px;
  margin-bottom: var(--space-md);
}

.hero__subheadline {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  font-weight: 400;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__social-badge {
  display: inline-block;
  margin-bottom: var(--space-lg);
}

.hero__cta-wrapper {
  margin-bottom: var(--space-md);
  order: 4;
}

@media (min-width: 1201px) {
  .hero__content {
    text-align: left;
    align-items: flex-start;
    flex: 1 1 0;
    min-width: 0;
  }

  .hero__meta,
  .hero__headline {
    text-align: left;
  }

  .hero__logo {
    align-self: flex-start;
  }

  .hero__ticket-progress {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }

  .hero__checks {
    align-items: flex-start;
  }

  .hero__content > .social-proof {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .hero {
    /* Telas estreitas/médias: fundo sólido; vídeo em coluna abaixo do bloco de texto */
    min-height: auto;
    background-color: #111111;
    background-image: none;
  }

  .hero .container {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .hero__content {
    flex: none;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .hero__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__content > .social-proof {
    order: 7;
    margin-top: var(--space-xl);
  }

  .hero__gif-aside,
  .hero__mockup {
    flex: none;
    width: 100%;
    max-width: min(780px, 100%);
    margin: var(--space-xl) auto 0;
    order: 3;
  }

  .hero__content > .hero__checks {
    order: 4;
    margin-bottom: var(--space-md);
  }

  .hero__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 5;
  }

  .hero__ticket-progress {
    display: block;
    order: 6;
  }
}

@media (max-width: 639px) {
  .hero {
    padding: var(--space-xl) 0 var(--space-2xl);
  }
}

.top-banner {
  width: 100%;
  background: var(--accent-primary-glow);
  border-bottom: 1px solid rgba(0, 232, 123, 0.3);
  padding: 12px 16px;
  text-align: center;
  font-family: var(--font-mono, 'JetBrains Mono'), monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 639px) {
  .top-banner {
    font-size: 0.8rem;
    padding: 10px 12px;
  }
}

.hero__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.hero__check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-size: 1.0625rem;
  font-weight: 500;
}

.hero__check svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent-primary);
}

@media (max-width: 1024px) {
  .hero__checks {
    align-items: center;
  }
}

.social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.social-proof__item {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.social-proof__number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.social-proof__label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .social-proof {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .social-proof__item {
    gap: 4px;
  }

  .social-proof__number {
    font-size: 1.125rem;
  }

  .social-proof__label {
    font-size: 0.75rem;
  }
}

@media (max-width: 639px) {
  .social-proof {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .social-proof__number {
    font-size: 1rem;
  }

  .social-proof__label {
    font-size: 0.6875rem;
  }
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-text p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-top: calc(var(--space-lg) * -1);
  margin-bottom: var(--space-2xl);
}

.checklist {
  max-width: 700px;
  margin: 0 auto;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.checklist__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
  margin-top: 2px;
}

.checklist__text {
  color: var(--text-primary);
  font-size: 1.0625rem;
  font-weight: 400;
}

.pain-closing {
  max-width: 700px;
  margin: var(--space-2xl) auto 0;
  text-align: center;
}

.pain-closing p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.pain-closing p:last-child {
  margin-bottom: 0;
}

.pain-closing strong {
  color: var(--text-primary);
  font-weight: 600;
}

.showcase {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.showcase__image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-glow-cyan);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.showcase__image img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase__text {
  max-width: 800px;
  margin: 0 auto;
}

.showcase__text p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.day-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  transition: border-color var(--transition-base);
}

.day-card:hover {
  border-color: var(--border-highlight);
}

.day-card__label {
  font-family: var(--font-mono, 'JetBrains Mono'), monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.day-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.day-card__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.day-card__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.day-card__result {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  font-weight: 600;
  color: var(--accent-primary);
  font-size: 0.9375rem;
}

@media (max-width: 639px) {
  .day-card {
    padding: var(--space-lg);
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.testimonial-card__video {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #000;
}

.testimonial-card__video video {
  display: block;
  width: 100%;
  height: auto;
}

.yt-facade {
  position: relative;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: #000;
}

.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  pointer-events: none;
  transition: background var(--transition-base);
}

.yt-facade:hover .yt-facade__play {
  background: #FF0000;
}

.yt-facade__play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin: 12px auto 0 26px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}

.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial-card__quote {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: var(--space-xl);
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2.5rem;
  color: var(--accent-primary);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card__author {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  font-weight: 600;
  color: var(--accent-primary);
  font-size: 0.9375rem;
}

.price-section {
  max-width: 700px;
  margin: 0 auto;
}

.inclusion-list {
  margin-bottom: var(--space-2xl);
}

.inclusion-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}

.inclusion-list__item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  margin-top: 2px;
}

.price-box {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow-green);
  margin-bottom: var(--space-lg);
}

.price-box__label {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.price-box__amount {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1.1;
}

.price-box__method {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

.price-comparison {
  max-width: 600px;
  margin: var(--space-lg) auto var(--space-2xl);
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.salary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 960px;
  margin: 0 auto;
}

.salary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.salary-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-cyan);
}

.salary-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-secondary);
  margin-bottom: var(--space-sm);
}

.salary-card__role {
  font-size: clamp(1.125rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.02em;
}

.salary-card__range {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.salary-highlight {
  color: var(--accent-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .salary-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .salary-card {
    padding: var(--space-lg);
  }
}

.instructor {
  text-align: center;
}

.instructor__photo {
  width: 320px;
  height: 320px;
  max-width: min(320px, 88vw);
  max-height: min(320px, 88vw);
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: none;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  background: var(--bg-card-solid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instructor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor__photo svg {
  width: 60px;
  height: 60px;
  color: var(--accent-secondary-dim);
}

.instructor__name {
  margin-bottom: var(--space-xs);
}

.instructor__role {
  font-size: 0.875rem;
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.instructor__bio {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  text-align: left;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: var(--space-md);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-primary, 'Outfit'), sans-serif;
  font-size: 1rem;
  transition: color var(--transition-base);
}

.faq__question-text {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.0625rem;
  transition: color var(--transition-base);
}

.faq__question:hover .faq__question-text,
.faq__question:focus-visible .faq__question-text {
  color: var(--accent-secondary);
}

.faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-secondary);
  transition: transform var(--transition-base);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-slow);
}

.faq__item.active .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  padding-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq__item.active .faq__answer-inner {
  padding-bottom: 20px;
}

.cta-final {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.cta-final h2 {
  margin-bottom: var(--space-md);
}

.cta-final__intro {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0 auto var(--space-xl);
  max-width: 38rem;
  text-align: center;
}

.thankyou {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-section);
  background: radial-gradient(circle at 20% 20%, rgba(0, 238, 162, 0.12), transparent 45%),
              radial-gradient(circle at 90% 10%, rgba(122, 1, 199, 0.22), transparent 40%),
              var(--bg-primary);
  overflow: hidden;
}

.thankyou::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 40%),
                    linear-gradient(340deg, rgba(255, 255, 255, 0.03), transparent 30%);
  pointer-events: none;
}

.thankyou__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-2xl);
  align-items: start;
  justify-items: center;
}

.thankyou__content {
  max-width: 720px;
  width: 100%;
}

.thankyou__logo {
  max-width: min(260px, 80vw);
  height: auto;
  margin-bottom: var(--space-lg);
}

.thankyou__eyebrow {
  font-family: var(--font-mono, 'JetBrains Mono'), monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-secondary);
  margin-bottom: var(--space-sm);
}

.thankyou__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

.thankyou__lead {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.thankyou__actions {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.thankyou__note {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  border-left: 2px solid var(--border-highlight);
  padding-left: var(--space-md);
}

.thankyou__form {
  background: rgba(13, 21, 40, 0.55);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  width: min(100%, 560px);
}

.thankyou__cta {
  width: min(100%, 620px);
}

.thankyou__form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-align: left;
}

.thankyou__form-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  text-align: left;
}

@media (max-width: 1024px) {
  .thankyou__grid {
    grid-template-columns: 1fr;
  }

  .thankyou__content {
    max-width: 100%;
    text-align: center;
  }

  .thankyou__note {
    text-align: left;
  }
}

@media (max-width: 639px) {
  .thankyou {
    padding: var(--space-2xl) 0;
  }

  .thankyou__form {
    padding: var(--space-lg);
  }
}

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-xl) 0;
  text-align: center;
  color: var(--text-dimmed);
  font-size: 0.75rem;
}

.footer a {
  color: var(--accent-secondary);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--accent-secondary-hover);
  text-decoration: underline;
}

.footer p {
  margin-bottom: var(--space-sm);
}

.footer p:last-child {
  margin-bottom: 0;
}

.footer__legal {
  max-width: 42rem;
  margin: var(--space-md) auto 0;
  text-align: left;
  line-height: 1.65;
  font-size: 0.6875rem;
  color: var(--text-dimmed);
}

.footer__legal p {
  margin-bottom: var(--space-sm);
}

.footer__legal p:last-child {
  margin-bottom: 0;
}

.footer__legal strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-card);
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.sticky-cta.visible {
  transform: translateY(0);
}

/* Mesmo estilo do hero (.cta-primary); só força largura total na barra fixa */
.sticky-cta .cta-primary {
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 639px) {
  .sticky-cta {
    display: block;
  }

  .footer {
    padding-bottom: 80px;
  }
}

.section--compact {
  padding: var(--space-xl) 0;
}
