.aulao {
  background: #f5f7f4;
  color: #18201c;
}

.aulao * {
  box-sizing: border-box;
}

.aulao-hero {
  min-height: calc(100vh - 84px);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.aulao-hero::before,
.aulao-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.aulao-hero::before {
  inset: 0 0 auto 0;
  height: 100%;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.aulao-hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(245, 247, 244, 0), #f5f7f4);
}

.hero-inner {
  width: 100%;
  padding: 40px 20px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 52px;
  align-items: center;
}

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

.kicker,
.section-tag {
  margin: 0 0 14px;
  color: #15b875;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aulao h1,
.aulao h2,
.aulao h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

.aulao h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 850;
}

.hero-lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-showcase {
  display: grid;
  gap: 14px;
}

.instructor-card,
.code-card,
.hero-price {
  border-radius: 8px;
  border: 1px solid rgba(17, 23, 19, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(15, 24, 19, 0.18);
  color: #111713;
}

.instructor-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.instructor-card img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
}

.instructor-card strong,
.instructor-card span,
.hero-price span,
.hero-price strong {
  display: block;
}

.instructor-card strong {
  font-size: 1.2rem;
}

.instructor-card span {
  margin-top: 6px;
  color: #526057;
  line-height: 1.45;
}

.code-card {
  overflow: hidden;
  background: #0b0f0d;
  color: #dff7ec;
  border-color: rgba(255, 255, 255, 0.1);
}

.code-top {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #15b875;
}

.code-top span:nth-child(2) {
  background: #f0c35c;
}

.code-top span:nth-child(3) {
  background: #f06a5c;
}

.code-card pre {
  margin: 0;
  padding: 18px;
  white-space: pre-wrap;
  font: 700 0.98rem/1.65 Consolas, Monaco, monospace;
}

.hero-price {
  padding: 18px;
}

.hero-price span {
  margin-bottom: 6px;
  color: #536057;
}

.hero-price strong {
  color: #0f9f64;
  font-size: 2.2rem;
  line-height: 1;
}

.hero-price small {
  display: block;
  margin-top: 8px;
  color: #536057;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.aulao-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.aulao-btn:hover {
  transform: translateY(-2px);
}

.aulao-btn.primary {
  background: #15b875;
  color: #07100c;
  box-shadow: 0 16px 38px rgba(21, 184, 117, 0.26);
}

.aulao-btn.primary:hover {
  background: #0f9f64;
}

.aulao-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.aulao-btn.big-cta {
  min-height: 58px;
  padding: 16px 28px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.aulao-video-section {
  padding: 38px 0 46px;
  background: #eef3ef;
}

.aulao-video-container {
  max-width: 900px;
  text-align: center;
  display: grid;
  row-gap: 20px;
}

.aulao-video-title {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  color: #101512;
  font-weight: 750;
  line-height: 1.25;
}

.aulao-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.aulao-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.aulao-video-cta {
  justify-self: center;
  margin-top: 8px;
}

.hero-offer {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 4px 14px;
  align-items: end;
  margin-top: 26px;
  padding: 15px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-offer span,
.hero-offer small {
  color: rgba(255, 255, 255, 0.76);
}

.hero-offer strong {
  grid-row: span 2;
  color: #83e3b7;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-facts span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.aulao-strip {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.strip-grid div {
  min-height: 112px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e4e9e2;
  box-shadow: 0 18px 42px rgba(15, 24, 19, 0.11);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  margin-bottom: 8px;
  color: #101512;
}

.strip-grid span {
  color: #536057;
  line-height: 1.5;
}

.aulao-section {
  padding: 76px 0;
}

.aulao-section.soft {
  background: #edf2eb;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.lead-copy h2,
.schedule-layout h2,
.mentor-layout h2,
.aulao-final h2 {
  color: #101512;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 820;
}

.section-heading p:not(.section-tag),
.lead-copy p,
.schedule-layout p,
.mentor-layout p,
.aulao-final p {
  color: #536057;
  line-height: 1.72;
}

.lead-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.lead-copy {
  position: sticky;
  top: 100px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #2f3b34;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #15b875;
  box-shadow: inset 0 0 0 3px #dff7ec;
}

.price-panel {
  margin: 24px 0;
  padding: 18px;
  border-radius: 8px;
  background: #111713;
  color: #fff;
  border: 1px solid rgba(21, 184, 117, 0.34);
}

.price-panel span,
.price-panel small,
.price-panel strong {
  display: block;
}

.price-panel span,
.price-panel small {
  color: rgba(255, 255, 255, 0.74);
}

.price-panel strong {
  margin: 6px 0;
  color: #83e3b7;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.lead-box {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e0e7dc;
  box-shadow: 0 18px 44px rgba(15, 24, 19, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.aulao-form label {
  display: grid;
  gap: 7px;
  color: #243027;
  font-weight: 750;
}

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

.aulao-form label.honeypot {
  position: absolute;
  left: -9999px;
}

.aulao-form input,
.aulao-form select,
.aulao-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid #d7dfd3;
  background: #fbfcfa;
  color: #17211b;
  font: inherit;
}

.aulao-form textarea {
  resize: vertical;
}

.aulao-form input:focus,
.aulao-form select:focus,
.aulao-form textarea:focus {
  outline: 3px solid rgba(21, 184, 117, 0.18);
  border-color: #15b875;
  background: #fff;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
  font-size: 1.08rem;
}

.privacy-note {
  margin: 12px 0 0;
  color: #6f7a72;
  font-size: 0.92rem;
  text-align: center;
}

.aulao-alert {
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 8px;
  line-height: 1.55;
}

.aulao-alert ul {
  margin: 0;
  padding-left: 18px;
}

.aulao-alert.success {
  background: #e8f7ef;
  border: 1px solid #a9ddbf;
}

.aulao-alert.success h3 {
  margin-bottom: 8px;
  color: #0d6d45;
}

.aulao-alert.error {
  background: #fff0ed;
  border: 1px solid #efb4a8;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.module-grid article,
.faq-grid details {
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dde6d9;
  box-shadow: 0 14px 34px rgba(15, 24, 19, 0.08);
}

.module-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #0f9f64;
  font-weight: 850;
}

.module-grid h3 {
  margin-bottom: 10px;
  color: #111713;
  font-size: 1.08rem;
}

.module-grid p {
  margin: 0;
  color: #59645d;
  line-height: 1.6;
}

.schedule-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.schedule {
  display: grid;
  gap: 10px;
}

.schedule div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dde6d9;
}

.schedule strong {
  color: #0f9f64;
}

.schedule span {
  color: #354139;
}

.mentor-band {
  background: #111713;
  color: #fff;
}

.mentor-band .section-tag {
  color: #83e3b7;
}

.mentor-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
}

.mentor-layout img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mentor-layout h2 {
  color: #fff;
}

.mentor-layout p {
  color: rgba(255, 255, 255, 0.76);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.proof-grid span {
  padding: 13px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid summary {
  cursor: pointer;
  color: #111713;
  font-weight: 850;
}

.faq-grid p {
  margin: 12px 0 0;
  color: #59645d;
  line-height: 1.65;
}

.aulao-final {
  padding: 76px 0 86px;
  text-align: center;
  background: #fff;
}

.aulao-final p {
  max-width: 620px;
  margin: 16px auto 24px;
}

.aulao-buy-band {
  padding: 48px 0;
  background: #111713;
  color: #fff;
}

.buy-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.buy-band-inner h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.buy-band-inner p:not(.section-tag) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.checkout-result {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 84px 0;
  background: #edf2eb;
}

.result-box {
  max-width: 760px;
}

.result-box h1 {
  color: #101512;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.result-box p {
  color: #536057;
  line-height: 1.7;
  margin: 18px 0 24px;
}

.result-details {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dde6d9;
}

.result-details span {
  color: #354139;
}

.lookup-form {
  margin-top: 22px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dde6d9;
}

.result-secondary {
  margin-top: 16px;
  background: #111713;
  color: #fff;
}

@media (max-width: 1020px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .aulao-hero {
    min-height: auto;
    background: #000;
  }

  .hero-inner {
    padding: 72px 20px 92px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .strip-grid,
  .lead-layout,
  .schedule-layout,
  .mentor-layout,
  .faq-grid,
  .buy-band-inner {
    grid-template-columns: 1fr;
  }

  .lead-copy {
    position: static;
  }

  .form-grid,
  .module-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .lead-box {
    padding: 20px;
  }

  .schedule div {
    grid-template-columns: 72px 1fr;
  }
}

@media (max-width: 520px) {
  .hero-facts span,
  .hero-actions .aulao-btn {
    width: 100%;
  }

  .aulao-section {
    padding: 58px 0;
  }
}
