    :root {
      --black: #08090d;
      --dark: #0e0f16;
      --card: #13141d;
      --card2: #191a26;
      --accent: #4f8eff;
      --accent2: #7aabff;
      --gold: #ffc24a;
      --red: #ff4545;
      --text: #e6e8f2;
      --muted: #6b6e85;
      --border: rgba(255, 255, 255, 0.06);
      --nav-h: 62px
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--black);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 18px 44px;
      border-radius: 100px;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 17px;
      cursor: pointer;
      transition: all .2s;
      text-decoration: none;
      display: inline-block
    }

    .btn-primary:hover {
      background: var(--accent2);
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(79, 142, 255, .4)
    }

    .btn-full {
      width: 100%;
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 20px;
      border-radius: 100px;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 18px;
      cursor: pointer;
      transition: all .2s;
      text-decoration: none;
      display: block;
      text-align: center
    }

    .btn-full:hover {
      background: var(--accent2);
      transform: translateY(-2px);
      box-shadow: 0 16px 44px rgba(79, 142, 255, .4)
    }

    .btn-ghost {
      color: var(--muted);
      font-size: 14px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
      font-family: 'Syne', sans-serif
    }

    .btn-ghost:hover {
      color: var(--text)
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--nav-h);
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: rgba(8, 9, 13, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border)
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0
    }

    .nav-logo-icon {
      width: 32px;
      height: 32px;
      background: var(--accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 15px;
      color: #fff;
      letter-spacing: 1px
    }

    .nav-logo-text {
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--text)
    }

    .nav-logo-text span {
      color: var(--accent)
    }

    .nav-center {
      flex: 1;
      display: flex;
      justify-content: center
    }

    .nav-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(79, 142, 255, .08);
      border: 1px solid rgba(79, 142, 255, .15);
      border-radius: 100px;
      padding: 6px 14px;
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      color: var(--muted)
    }

    .nav-pill-dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
      flex-shrink: 0
    }

    .nav-pill span {
      color: var(--accent);
      font-weight: 700
    }

    .nav-cta {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 9px 22px;
      border-radius: 100px;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 13px;
      cursor: pointer;
      transition: all .2s;
      text-decoration: none;
      flex-shrink: 0;
      white-space: nowrap
    }

    .nav-cta:hover {
      background: var(--accent2);
      transform: translateY(-1px)
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(.7)
      }
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: var(--nav-h);
      position: relative;
      overflow: hidden
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 60% 20%, rgba(79, 142, 255, .08) 0%, transparent 60%)
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(79, 142, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 142, 255, .03) 1px, transparent 1px);
      background-size: 56px 56px
    }

    .hero-inner {
      max-width: 1140px;
      margin: 0 auto;
      width: 100%;
      padding: 80px 48px;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 64px;
      align-items: center
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(79, 142, 255, .08);
      border: 1px solid rgba(79, 142, 255, .2);
      border-radius: 100px;
      padding: 7px 16px;
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 28px
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(54px, 8.5vw, 108px);
      line-height: .86;
      letter-spacing: .5px;
      margin-bottom: 28px
    }

    .hero h1 .line1 {
      color: var(--text)
    }

    .hero h1 .line2 {
      color: var(--accent);
      display: block
    }

    .hero h1 .line3 {
      color: var(--text);
      display: block
    }

    .hero-sub {
      font-size: 18px;
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 36px;
      line-height: 1.75
    }

    .hero-sub strong {
      color: var(--text);
      font-weight: 500
    }

    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 16px
    }

    .hero-guarantee-badge {
      font-size: 13px;
      color: var(--muted);
      font-family: 'Syne', sans-serif
    }

    /* Hero right card — entregáveis sem preço */
    .hero-offer-card {
      background: var(--card);
      border: 1px solid rgba(79, 142, 255, .2);
      border-radius: 20px;
      padding: 32px;
      position: relative;
      overflow: hidden
    }

    .hero-offer-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), transparent)
    }

    .offer-tag {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 8px
    }

    .offer-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      line-height: 1.15;
      margin-bottom: 20px;
      color: var(--text)
    }

    .offer-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 28px
    }

    .offer-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--muted)
    }

    .offer-check {
      width: 18px;
      height: 18px;
      background: rgba(79, 142, 255, .15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--accent);
      flex-shrink: 0
    }

    .offer-cta-note {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      margin-top: 12px
    }

    /* TICKER */
    .ticker-wrap {
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--dark);
      padding: 14px 0
    }

    .ticker {
      display: flex;
      white-space: nowrap;
      animation: ticker 32s linear infinite
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      padding: 0 36px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 16px;
      letter-spacing: 2.5px;
      color: var(--muted)
    }

    .ticker-item .sep {
      color: var(--accent);
      font-size: 10px
    }

    @keyframes ticker {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* SECTIONS */
    section {
      padding: 100px 48px
    }

    .container {
      max-width: 1140px;
      margin: 0 auto
    }

    .section-tag {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 16px
    }

    .section-h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(38px, 5vw, 68px);
      line-height: .92;
      margin-bottom: 16px
    }

    .section-sub {
      font-size: 16px;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.7;
      font-weight: 300
    }

    /* FOR WHO */
    .for-who {
      background: var(--dark)
    }

    .for-who-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 36px
    }

    .for-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      transition: border-color .2s
    }

    .for-card:hover {
      border-color: rgba(79, 142, 255, .2)
    }

    .for-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(79, 142, 255, .07);
      border: 1px solid rgba(79, 142, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0
    }

    .for-card h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 4px
    }

    .for-card p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.55
    }

    /* PROBLEMA */
    .problem {
      background: var(--black);
      position: relative;
      overflow: hidden
    }

    .problem-glow {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(79, 142, 255, .05) 0%, transparent 70%);
      pointer-events: none
    }

    .problem-inner {
      max-width: 960px;
      margin: 0 auto;
      position: relative;
      z-index: 2
    }

    .problem h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 6vw, 80px);
      line-height: .92;
      margin-bottom: 36px
    }

    .problem h2 span {
      color: var(--accent)
    }

    .problem-lead {
      font-size: 19px;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.8;
      max-width: 640px;
      margin-bottom: 56px
    }

    .problem-lead em {
      color: var(--text);
      font-style: normal;
      font-weight: 500
    }

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

    .problem-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      display: flex;
      gap: 18px;
      transition: border-color .2s
    }

    .problem-card:hover {
      border-color: rgba(79, 142, 255, .2)
    }

    .problem-card-icon {
      font-size: 28px;
      flex-shrink: 0;
      line-height: 1
    }

    .problem-card h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 8px;
      line-height: 1.3
    }

    .problem-card p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65
    }

    /* MODULES — cards verticais (imagem em cima, texto embaixo) */
    .modules {
      background: var(--dark)
    }

    .modules-header {
      max-width: 700px;
      margin-bottom: 48px
    }

    .modules-section-label {
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--muted);
      text-transform: uppercase;
      margin: 40px 0 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border)
    }

    .modules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 14px
    }

    .module-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: all .25s;
      /* cursor: pointer; */
      display: flex;
      flex-direction: column
    }

    .module-card:hover {
      border-color: rgba(79, 142, 255, .3);
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, .5)
    }

    .module-img-wrap {
      width: 100%;
      /* aspect-ratio: 16/9; */
      overflow: hidden;
      background: var(--card2);
      flex-shrink: 0
    }

    .module-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease
    }

    /* .module-card:hover .module-img {
      transform: scale(1.06)
    } */

    .module-body {
      padding: 16px 18px 20px;
      flex: 1;
      position: relative
    }

    .module-body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s
    }

    .module-card:hover .module-body::before {
      transform: scaleX(1)
    }

    .module-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--accent);
      margin-bottom: 4px
    }

    .module-card h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 4px;
      line-height: 1.3
    }

    .module-card p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5
    }

    .module-see-more {
      font-size: 11px;
      color: var(--accent);
      margin-top: 8px;
      font-family: 'Syne', sans-serif;
      font-weight: 600
    }

    .module-bonus-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: linear-gradient(90deg, rgba(255, 194, 74, .15), rgba(255, 194, 74, .05));
      border: 1px solid rgba(255, 194, 74, .25);
      color: var(--gold);
      font-size: 10px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 2px 8px;
      border-radius: 100px;
      margin-bottom: 4px
    }

    /* MODAL */
    .mod-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 300;
      background: rgba(0, 0, 0, .88);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 16px
    }

    .mod-modal-overlay.open {
      display: flex
    }

    .mod-modal {
      background: var(--card);
      border: 1px solid rgba(79, 142, 255, .2);
      border-radius: 20px;
      overflow: hidden;
      animation: modalIn .28s cubic-bezier(.4, 0, .2, 1);
      max-width: 500px;
      width: 100%;
      position: relative
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: scale(.94)
      }

      to {
        opacity: 1;
        transform: scale(1)
      }
    }

    .mod-modal-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block
    }

    .mod-modal-body {
      padding: 24px 28px 28px
    }

    .mod-modal-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: linear-gradient(90deg, rgba(255, 194, 74, .15), rgba(255, 194, 74, .05));
      border: 1px solid rgba(255, 194, 74, .25);
      color: var(--gold);
      font-size: 10px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 8px
    }

    .mod-modal-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--accent);
      margin-bottom: 6px
    }

    .mod-modal-body h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 8px;
      line-height: 1.3
    }

    .mod-modal-body p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px
    }

    .mod-modal-aulas-label {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 12px
    }

    .mod-modal-aulas {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .mod-modal-aulas li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--muted);
      padding: 8px 12px;
      background: var(--card2);
      border-radius: 8px
    }

    .mod-modal-aulas li::before {
      content: '▶';
      font-size: 9px;
      color: var(--accent);
      flex-shrink: 0
    }

    .mod-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .5);
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      z-index: 10
    }

    .mod-modal-close:hover {
      background: var(--red);
      border-color: var(--red)
    }

    /* AULAS SEMPRE NOVAS */
    .aulas-feature {
      background: var(--dark);
      padding: 0 48px 80px
    }

    .aulas-card {
      background: linear-gradient(135deg, rgba(79, 142, 255, .09), rgba(79, 142, 255, .02));
      border: 1px solid rgba(79, 142, 255, .2);
      border-radius: 24px;
      padding: 48px;
      display: flex;
      gap: 48px;
      align-items: center;
      max-width: 860px;
      margin: 0 auto
    }

    .aulas-icon {
      font-size: 64px;
      flex-shrink: 0;
      line-height: 1
    }

    .aulas-content .kicker {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .15em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 12px
    }

    .aulas-content h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(28px, 3.5vw, 44px);
      line-height: 1;
      margin-bottom: 14px
    }

    .aulas-content h3 span {
      color: var(--accent)
    }

    .aulas-content p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
      font-weight: 300
    }

    .aulas-content p strong {
      color: var(--text);
      font-weight: 500
    }

    /* BRIDGE */
    .bridge {
      background: var(--black);
      text-align: center
    }

    .bridge-inner {
      max-width: 720px;
      margin: 0 auto
    }

    .bridge h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 5.5vw, 72px);
      line-height: .92;
      margin-bottom: 24px
    }

    .bridge h2 span {
      color: var(--accent)
    }

    .bridge p {
      font-size: 18px;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 40px
    }

    .bridge p strong {
      color: var(--text);
      font-weight: 500
    }

    .bridge-quote {
      background: var(--card);
      border: 1px solid var(--border);
      border-left: 3px solid var(--accent);
      border-radius: 0 14px 14px 0;
      padding: 24px 28px;
      text-align: left
    }

    .bridge-quote p {
      font-size: 17px;
      color: var(--text);
      font-weight: 400;
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 12px
    }

    .bridge-quote-author {
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent)
    }

    /* MÉTODO — só checklist */
    .method {
      background: var(--dark)
    }

    .method-inner {
      max-width: 1100px;
      margin: 0 auto
    }

    .method-left {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px;
      max-width: 620px;
      margin: 0 auto
    }

    .method-left-kicker {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .15em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 14px
    }

    .method-left h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 6px;
      line-height: 1.3
    }

    .method-left h3 span {
      color: var(--accent)
    }

    .method-left-sub {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 28px;
      font-weight: 300
    }

    .check-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 14px;
      line-height: 1.6;
      color: var(--text)
    }

    .check-item:last-child {
      margin-bottom: 0
    }

    .check-item strong {
      font-weight: 500
    }

    .check-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(79, 142, 255, .12);
      border: 1px solid rgba(79, 142, 255, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
      font-size: 11px;
      color: var(--accent)
    }

    /* BONUS */
    .bonus {
      background: var(--black)
    }

    .bonus-inner {
      max-width: 1100px;
      margin: 0 auto
    }

    .bonus-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 48px;
      align-items: stretch
    }

    .bonus-value-box {
      background: linear-gradient(135deg, rgba(79, 142, 255, .09), rgba(79, 142, 255, .02));
      border: 1px solid rgba(79, 142, 255, .2);
      border-radius: 20px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center
    }

    .bonus-label {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 14px
    }

    .bonus-from {
      font-size: 15px;
      color: var(--muted);
      text-decoration: line-through;
      margin-bottom: 4px
    }

    .bonus-to-label {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 4px;
      font-family: 'Syne', sans-serif;
      font-weight: 600
    }

    .bonus-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      color: var(--text);
      line-height: 1
    }

    .bonus-price-note {
      font-size: 13px;
      color: var(--muted);
      margin-top: 8px;
      margin-bottom: 24px
    }

    .bonus-access-note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(79, 142, 255, .08);
      border: 1px solid rgba(79, 142, 255, .15);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: 13px;
      color: var(--muted)
    }

    .bonus-access-note strong {
      color: var(--accent)
    }

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

    .bonus-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 18px;
      transition: all .2s
    }

    .bonus-item:hover {
      border-color: rgba(79, 142, 255, .2);
      transform: translateX(4px)
    }

    .bonus-item-icon {
      font-size: 22px;
      flex-shrink: 0
    }

    .bonus-item-info {
      flex: 1;
      min-width: 0
    }

    .bonus-item-name {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 13px;
      margin-bottom: 2px
    }

    .bonus-item-price {
      font-size: 11px;
      color: var(--muted)
    }

    .bonus-item-price s {
      margin-right: 4px;
      opacity: .7
    }

    .bonus-item-badge {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 16px;
      color: var(--accent);
      flex-shrink: 0
    }

    /* GUARANTEE */
    .guarantee-section {
      background: var(--dark)
    }

    .guarantee-card {
      display: flex;
      align-items: center;
      gap: 56px;
      background: linear-gradient(135deg, rgba(79, 142, 255, .07), rgba(79, 142, 255, .02));
      border: 1px solid rgba(79, 142, 255, .2);
      border-radius: 28px;
      padding: 56px;
      max-width: 900px;
      margin: 0 auto
    }

    .guarantee-visual {
      flex-shrink: 0;
      text-align: center
    }

    .guarantee-shield {
      font-size: 88px;
      line-height: 1;
      display: block;
      margin-bottom: 10px
    }

    .guarantee-days {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      letter-spacing: 3px;
      color: var(--accent)
    }

    .guarantee-content h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 4vw, 54px);
      line-height: 1;
      margin-bottom: 14px
    }

    .guarantee-content h3 span {
      color: var(--accent)
    }

    .guarantee-content p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
      font-weight: 300;
      max-width: 500px
    }

    .guarantee-content p strong {
      color: var(--text);
      font-weight: 500
    }

    /* AUTHOR */
    .author {
      background: var(--black)
    }

    .author-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center
    }

    .author-photo-frame {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(79, 142, 255, .12), rgba(79, 142, 255, .03));
      border: 1px solid rgba(79, 142, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 100px;
      color: var(--accent);
      position: relative;
      overflow: hidden
    }

    .author-photo-frame img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 24px
    }

    .author-badge {
      position: absolute;
      bottom: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: 100px;
      white-space: nowrap;
      box-shadow: 0 8px 32px rgba(79, 142, 255, .4)
    }

    .author-right .kicker {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 14px
    }

    .author-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 60px;
      line-height: 1;
      margin-bottom: 6px
    }

    .author-title {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 28px
    }

    .author-bio {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 32px
    }

    .author-bio strong {
      color: var(--text);
      font-weight: 500
    }

    .author-credentials {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .credential {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--muted)
    }

    .cred-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(79, 142, 255, .08);
      border: 1px solid rgba(79, 142, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0
    }

    .cred-text strong {
      color: var(--text);
      font-weight: 500;
      display: block;
      font-size: 13px;
      font-family: 'Syne', sans-serif
    }

    /* FAQ */
    .faq-section {
      background: var(--dark)
    }

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

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin-top: 48px
    }

    .faq-item {
      background: var(--card);
      border-radius: 12px;
      overflow: hidden
    }

    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 22px 28px;
      color: var(--text);
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color .2s;
      min-height: 64px
    }

    .faq-q:hover {
      color: var(--accent)
    }

    .faq-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--accent);
      transition: transform .3s;
      flex-shrink: 0
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: rgba(79, 142, 255, .1)
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease
    }

    .faq-a-inner {
      padding: 0 28px 24px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
      font-weight: 300
    }

    .faq-item.open .faq-a {
      max-height: 300px
    }

    /* PRICING */
    .pricing {
      background: var(--black)
    }

    .pricing-inner {
      max-width: 580px;
      margin: 0 auto
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 40px
    }

    .pricing-card {
      background: var(--card);
      border: 1px solid rgba(79, 142, 255, .2);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 0 80px rgba(79, 142, 255, .06)
    }

    .pricing-top {
      background: linear-gradient(160deg, rgba(79, 142, 255, .14), rgba(79, 142, 255, .04));
      padding: 44px 44px 36px;
      text-align: center;
      border-bottom: 1px solid var(--border)
    }

    .pricing-top-tag {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 20px
    }

    .pricing-from {
      font-size: 15px;
      color: var(--muted);
      text-decoration: line-through;
      margin-bottom: 4px
    }

    .pricing-to-label {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 4px;
      font-family: 'Syne', sans-serif;
      font-weight: 600
    }

    .pricing-amount {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 88px;
      color: var(--text);
      line-height: 1
    }

    .pricing-amount sup {
      font-size: 32px;
      vertical-align: super
    }

    .pricing-installment {
      font-size: 13px;
      color: var(--muted);
      margin-top: 6px
    }

    .pricing-access-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(79, 142, 255, .08);
      border: 1px solid rgba(79, 142, 255, .15);
      border-radius: 8px;
      padding: 8px 14px;
      margin-top: 14px;
      font-size: 12px;
      color: var(--muted);
      font-family: 'Syne', sans-serif
    }

    .pricing-body {
      padding: 36px 44px
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 32px
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--text)
    }

    .feat-check {
      width: 20px;
      height: 20px;
      background: rgba(79, 142, 255, .12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 2px
    }

    .pricing-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 20px
    }

    .pricing-access-note {
      font-size: 13px;
      color: var(--muted);
      text-align: center;
      margin-bottom: 20px
    }

    .pricing-guarantee-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      font-size: 12px;
      color: var(--muted)
    }

    /* FINAL */
    .final {
      background: var(--dark);
      padding: 120px 48px;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .final-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at center, rgba(79, 142, 255, .1) 0%, transparent 65%);
      pointer-events: none
    }

    .final-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto
    }

    .final h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 100px);
      line-height: .88;
      margin-bottom: 20px
    }

    .final h2 span {
      color: var(--accent)
    }

    .final p {
      font-size: 17px;
      color: var(--muted);
      margin-bottom: 40px;
      font-weight: 300;
      line-height: 1.7
    }

    .final-note {
      font-size: 13px;
      color: var(--muted);
      margin-top: 16px
    }

    footer {
      background: var(--black);
      border-top: 1px solid var(--border);
      padding: 48px;
      text-align: center;
      font-size: 13px;
      color: var(--muted)
    }

    footer a {
      color: var(--muted);
      text-decoration: none;
      transition: color .2s
    }

    footer a:hover {
      color: var(--accent)
    }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      color: var(--accent);
      letter-spacing: 2px;
      margin-bottom: 12px
    }

    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* RESPONSIVE */
    @media(max-width:1100px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .hero-offer-card {
        max-width: 480px
      }

      .author-inner {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .bonus-layout {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:900px) {
      .for-who-grid {
        grid-template-columns: 1fr
      }

      .problem-grid {
        grid-template-columns: 1fr
      }

      .aulas-card {
        flex-direction: column;
        gap: 24px;
        text-align: center
      }

      .guarantee-card {
        flex-direction: column;
        gap: 28px;
        padding: 32px 24px;
        text-align: center
      }
    }

    @media(max-width:600px) {
      :root {
        --nav-h: 56px
      }

      nav {
        padding: 0 16px;
        gap: 8px
      }

      .nav-logo-text {
        display: none
      }

      .nav-center {
        display: none
      }

      .nav-cta {
        font-size: 12px;
        padding: 8px 16px
      }

      .hero-inner {
        padding: 56px 16px 64px;
        grid-template-columns: 1fr
      }

      .hero h1 {
        font-size: 52px
      }

      .hero-sub {
        font-size: 16px
      }

      .hero-cta-row {
        flex-direction: column;
        align-items: stretch
      }

      .hero-cta-row .btn-primary {
        text-align: center
      }

      section,
      .method,
      .aulas-feature,
      .guarantee-section,
      .pricing,
      .faq-section,
      .final,
      .bridge {
        padding: 64px 16px
      }

      .modules {
        padding: 64px 16px
      }

      .for-who,
      .problem,
      .bonus,
      .author {
        padding: 64px 16px
      }

      .modules-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
      }

      .pricing-top {
        padding: 28px 24px
      }

      .pricing-amount {
        font-size: 68px
      }

      .pricing-body {
        padding: 24px
      }

      .faq-q {
        font-size: 14px;
        padding: 18px 20px
      }

      .faq-a-inner {
        padding: 0 20px 20px
      }

      .final h2 {
        font-size: 52px
      }

      .final .btn-primary {
        width: 100%;
        text-align: center;
        padding: 20px
      }

      .ticker {
        animation-duration: 12s
      }

      .method-left {
        padding: 24px 20px
      }

      .aulas-feature {
        padding: 0 16px 64px
      }
    }