
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #C9A84C;
    --gold-light: #F0D080;
    --gold-dark: #8B6914;
    --black: #0A0A0A;
    --off-black: #111111;
    --charcoal: #1A1A1A;
    --mid: #2A2A2A;
    --muted: #888;
    --light: #F5F2EB;
    --white: #FEFEFE;
    --accent: #C9A84C;
    --danger-red: #E84040;
    --green: #2ECC71;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  .logo {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .nav-cta {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 30% at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
  }

  .hero-badge {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 2.5rem;
    display: inline-block;
    animation: fadeUp 0.8s ease both;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 1.05;
    font-weight: 900;
    max-width: 900px;
    animation: fadeUp 0.9s 0.1s ease both;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 1.8rem auto 0;
    font-weight: 300;
    animation: fadeUp 1s 0.2s ease both;
  }

  .hero-stats {
    display: flex; gap: 3rem; margin: 3.5rem auto 0;
    animation: fadeUp 1.1s 0.3s ease both;
    flex-wrap: wrap; justify-content: center;
  }

  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    display: block;
  }

  .hero-cta-group {
    margin-top: 3rem;
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 1.2s 0.4s ease both;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.2s;
    border: 2px solid var(--gold);
  }
  .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); }

  .scroll-hint {
    margin-top: 4rem;
    animation: bounce 2s infinite;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  /* ── PAIN SECTION ── */
  .section { padding: 7rem 2rem; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    max-width: 750px;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    margin-top: 4rem;
    border: 1px solid rgba(255,255,255,0.05);
  }

  .pain-card {
    background: var(--charcoal);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.2s;
  }
  .pain-card:hover { background: #202020; }
  .pain-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.2s;
  }
  .pain-card:hover::before { background: var(--danger-red); }

  .pain-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
  }

  .pain-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--white);
  }

  .pain-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ── STORY / MANIFESTO ── */
  .story-section {
    background: var(--charcoal);
    padding: 7rem 2rem;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }

  .story-inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .story-inner blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 2rem;
  }

  .story-inner blockquote em { color: var(--gold); font-style: normal; }

  .story-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
  }

  .story-body p { margin-bottom: 1.5rem; }
  .story-body strong { color: var(--white); font-weight: 600; }

  /* ── PROMISE ── */
  .promise-box {
    border: 2px solid var(--gold);
    padding: 3rem;
    margin-top: 4rem;
    border-radius: 2px;
    text-align: center;
    position: relative;
    background: rgba(201,168,76,0.04);
  }

  .promise-box::before {
    content: 'GARANTIA';
    position: absolute; top: -0.6rem; left: 50%; transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    padding: 0.2rem 1rem;
    font-weight: 700;
  }

  .promise-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .promise-box p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
  }

  /* ── CURRICULUM ── */
  .modules-section { background: var(--off-black); padding: 7rem 2rem; }

  .modules-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 2rem;
    margin-bottom: 4rem;
  }

  .days-counter {
    text-align: right;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  .days-counter span { display: block; font-size: 0.8rem; font-family: 'DM Sans', sans-serif; color: var(--muted); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

  .module-block {
    border-left: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 1px;
    overflow: hidden;
    transition: border-color 0.3s;
  }
  .module-block:hover { border-color: var(--gold); }

  .module-header {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 2rem 2rem 2rem 2.5rem;
    cursor: pointer;
    background: var(--charcoal);
    transition: background 0.2s;
  }
  .module-header:hover { background: #1E1E1E; }

  .module-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    min-width: 50px;
  }

  .module-info { flex: 1; }
  .module-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
  }
  .module-period {
    font-size: 0.8rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.1em;
  }

  .module-toggle {
    width: 28px; height: 28px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s;
    color: var(--muted);
    flex-shrink: 0;
  }
  .module-block.open .module-toggle { background: var(--gold); border-color: var(--gold); color: var(--black); transform: rotate(45deg); }

  .module-body {
    display: none;
    padding: 0 2rem 2rem 6rem;
    background: var(--charcoal);
  }
  .module-block.open .module-body { display: block; }

  .module-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    max-width: 600px;
    line-height: 1.7;
  }

  .topics-list {
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 0.5rem;
  }

  .topics-list li {
    font-size: 0.8rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold);
    border-radius: 2px;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.05em;
  }

  /* ── FOR WHO ── */
  .forwho { padding: 7rem 2rem; }

  .forwho-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
  }

  @media (max-width: 700px) { .forwho-grid { grid-template-columns: 1fr; } }

  .forwho-col h3 {
    font-size: 0.75rem;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .forwho-col.yes h3 { color: var(--green); border-bottom-color: rgba(46,204,113,0.2); }
  .forwho-col.no h3 { color: var(--danger-red); border-bottom-color: rgba(232,64,64,0.2); }

  .forwho-item {
    display: flex; align-items: flex-start; gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
  }

  .check { color: var(--green); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
  .cross { color: var(--danger-red); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }

  /* ── METHODOLOGY ── */
  .method-section { background: var(--charcoal); padding: 7rem 2rem; }

  .method-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-top: 4rem;
    border: 1px solid rgba(255,255,255,0.05);
  }

  .pillar {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.05);
    position: relative;
  }
  .pillar:last-child { border-right: none; }

  .pillar-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(201,168,76,0.12);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .pillar h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
  }

  .pillar p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

  .pillar-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 7rem 2rem; }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .tcard {
    background: var(--charcoal);
    padding: 2rem;
    border-top: 2px solid var(--gold);
    position: relative;
  }

  .tcard-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 0.8;
    margin-bottom: 1rem;
    opacity: 0.4;
  }

  .tcard-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
  }

  .tcard-author {
    display: flex; align-items: center; gap: 0.75rem;
  }

  .tcard-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    flex-shrink: 0;
  }

  .tcard-name { font-size: 0.9rem; font-weight: 600; }
  .tcard-role { font-size: 0.78rem; color: var(--muted); }

  .tcard-result {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; gap: 1.5rem;
  }

  .tresult-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
  }
  .tresult-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

  /* ── PRICING ── */
  .pricing { background: var(--off-black); padding: 7rem 2rem; }

  .pricing-deadline {
    text-align: center;
    margin: 2.5rem auto 0;
    max-width: 560px;
  }
  .pricing-deadline-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(232,64,64,0.1);
    border: 1px solid rgba(232,64,64,0.35);
    color: var(--danger-red);
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    font-weight: 700;
  }
  .pricing-deadline-badge::before { content: '⏰'; }

  .lots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin: 3rem auto 0;
    max-width: 960px;
    align-items: stretch;
  }

  @media (max-width: 800px) {
    .lots-grid { grid-template-columns: 1fr; max-width: 420px; }
  }

  /* Bloco de lote base */
  .lot-card {
    padding: 2.5rem 2rem;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }

  /* Lotes apagados */
  .lot-card.dim {
    opacity: 0.38;
    filter: grayscale(0.4);
    pointer-events: none;
  }

  /* Lote em destaque */
  .lot-card.active {
    border: 2px solid var(--gold);
    background: #1c1810;
    box-shadow: 0 0 60px rgba(201,168,76,0.15), 0 0 0 1px rgba(201,168,76,0.1);
    z-index: 2;
    transform: scaleY(1.015);
  }

  .lot-badge {
    position: absolute; top: -0.6rem; left: 1.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    padding: 0.2rem 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  .lot-card.active .lot-badge {
    background: var(--gold);
    color: var(--black);
  }
  .lot-card.dim .lot-badge {
    background: rgba(255,255,255,0.08);
    color: var(--muted);
  }

  .lot-when {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    margin-top: 1rem;
  }
  .lot-card.active .lot-when { color: var(--gold); }

  .lot-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    color: var(--white);
  }

  .lot-price-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
  }
  .lot-card.active .lot-price-val { color: var(--gold); }
  .lot-price-val small { font-size: 1.2rem; vertical-align: top; margin-top: 0.4rem; display: inline-block; }

  .lot-installment {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.4rem;
    margin-bottom: 1.8rem;
  }
  .lot-card.active .lot-installment { color: rgba(255,255,255,0.6); }

  .lot-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 0 0 1.5rem;
  }
  .lot-card.active .lot-divider { border-color: rgba(201,168,76,0.2); }

  .lot-features { list-style: none; margin-bottom: 2rem; flex: 1; }
  .lot-features li {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.87rem;
    color: rgba(255,255,255,0.7);
  }
  .lot-card.active .lot-features li { color: rgba(255,255,255,0.9); }
  .lot-features li::before { content: '✓'; color: var(--muted); font-weight: 700; font-size: 0.8rem; }
  .lot-card.active .lot-features li::before { color: var(--gold); }

  .lot-cta {
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
    margin-top: auto;
  }
  .lot-card.active .lot-cta {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
  }
  .lot-card.active .lot-cta:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
  }
  .lot-card.dim .lot-cta {
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .price-guarantee {
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 1.2rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    line-height: 1.5;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-guarantee strong { color: var(--gold); }

  /* ── FAQ ── */
  .faq { padding: 7rem 2rem; }

  .faq-list { max-width: 720px; margin: 4rem auto 0; }

  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
  }

  .faq-q {
    padding: 1.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
  }

  .faq-q:hover { color: var(--gold); }

  .faq-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s;
    line-height: 1;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); }

  .faq-a {
    display: none;
    padding: 0 0 1.5rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 620px;
  }
  .faq-item.open .faq-a { display: block; }

  /* ── CTA FINAL ── */
  .cta-final {
    background: var(--gold);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-final::before {
    content: 'CEO EM VENDAS';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 18vw;
    font-weight: 900;
    color: rgba(0,0,0,0.06);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }

  .cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--black);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.1;
    position: relative;
  }

  .cta-final p {
    color: rgba(0,0,0,0.6);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    position: relative;
  }

  .btn-dark {
    background: var(--black);
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 1.1rem 2.8rem;
    border-radius: 2px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.2s;
    position: relative;
    border: 2px solid var(--black);
  }
  .btn-dark:hover { background: #111; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

  .urgency {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.5);
    position: relative;
  }

  /* ── FOOTER ── */
  footer {
    background: #050505;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  footer .logo { display: block; margin-bottom: 1rem; }
  footer p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

  /* ── TIMELINE STRIP ── */
  .timeline-strip {
    background: var(--gold);
    padding: 0;
    overflow: hidden;
  }

  .timeline-inner {
    display: flex;
    border-left: 1px solid rgba(0,0,0,0.1);
  }

  .tl-item {
    flex: 1;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(0,0,0,0.1);
    text-align: center;
  }

  .tl-days {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(0,0,0,0.5);
    margin-bottom: 0.3rem;
  }

  .tl-mod {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black);
  }

  @media (max-width: 600px) {
    .timeline-inner { flex-direction: column; }
    .tl-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
    .modules-header { flex-direction: column; align-items: flex-start; }
    .days-counter { text-align: left; }
    .method-pillars { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Divider */
  .gold-line {
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 1.5rem 0;
  }

  /* ── TURMAS PRESENCIAIS ── */
  .cities-section {
    background: var(--charcoal);
    padding: 7rem 2rem;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }

  .cities-header { margin-bottom: 4rem; }

  .cities-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin-top: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
  }

  .cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 860px;
  }

  @media (max-width: 680px) { .cities-grid { grid-template-columns: 1fr; } }

  .city-card {
    background: var(--off-black);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 2.5rem 2rem;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .city-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(201,168,76,0.1);
  }

  .city-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
  }

  .city-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
  }

  .city-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }

  .city-desc {
    font-size: 0.8rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.08em;
    margin-bottom: 1.8rem;
  }

  .city-details {
    list-style: none;
    margin-bottom: 2rem;
  }
  .city-details li {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
  }
  .city-details li::before { content: '→'; color: var(--gold); font-size: 0.8rem; }

  .city-cta {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold);
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .city-cta:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.25);
  }

  /* ── WHATSAPP FLUTUANTE ── */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    display: flex; align-items: center; gap: 0.7rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 0.75rem 1.2rem 0.75rem 0.85rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s;
    max-width: 220px;
    overflow: hidden;
    cursor: pointer;
  }
  .whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    background: #20c45a;
  }
  .wa-icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    display: flex; align-items: center;
  }
  .wa-icon svg { width: 100%; height: 100%; }
  .wa-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .modal-overlay.active { opacity: 1; pointer-events: all; }

  .modal-box {
    background: #141414;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 4px;
    padding: 2.5rem;
    width: 100%; max-width: 560px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s;
  }
  .modal-overlay.active .modal-box { transform: translateY(0); }

  .modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.07);
    border: none; color: var(--white);
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    line-height: 1;
  }
  .modal-close:hover { background: rgba(255,255,255,0.15); }

  .modal-badge {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.6rem;
  }
  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.4rem;
  }
  .modal-subtitle {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  /* Form styles */
  .form-group { margin-bottom: 1.1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  @media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

  .form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.4rem;
  }
  .form-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-input::placeholder { color: rgba(255,255,255,0.25); }
  .form-input:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.05);
  }

  .form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.15s;
  }
  .form-submit:hover:not(:disabled) { background: var(--gold-light); transform: translateY(-1px); }
  .form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

  .form-privacy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 0.8rem;
  }

  /* Payment state */
  .payment-check {
    width: 64px; height: 64px;
    background: rgba(46,204,113,0.15);
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--green);
    margin: 0 auto 1.2rem;
  }
  .payment-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .payment-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.8rem;
    line-height: 1.6;
  }
  .payment-btn {
    display: inline-block;
    background: #29c76f;
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 1rem;
    width: 100%;
  }
  .payment-btn:hover { background: #29c76f; transform: translateY(-2px); }
  .payment-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.06em;
  }
  .payment-back {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .payment-back:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.7); }
