:root {
      --purple-deep: #5B18C2;
      --purple-vivid: #6B21D6;
      --blue-mid: #2553C7;
      --cyan: #0DCDC8;
      --cyan-light: #4FE0E8;
      --meli-yellow: #FFE600;
      --meli-blue: #2D3277;
      --green: #25D366;
      --navy: #0D0A1E;
      --navy-mid: #160F30;
      --white: #FFFFFF;
      --off-white: #F3F1FF;
      --gray-light: #E8E4F7;
      --gray-text: #6B6890;
      --text-dark: #1A0F3C;
      --gradient-brand: linear-gradient(135deg, #5B18C2 0%, #2553C7 55%, #0DCDC8 100%);
      --gradient-hero: linear-gradient(135deg, #28105F 0%, #142A78 56%, #067B80 100%);
      --gradient-btn: linear-gradient(135deg, #6B21D6 0%, #0DCDC8 100%);
      --gradient-ml: linear-gradient(135deg, #FFE600 0%, #FFF6A8 52%, #0DCDC8 100%);
      --shadow-dark: 0 30px 90px rgba(0, 0, 0, .42);
      --shadow-brand: 0 22px 70px rgba(91, 24, 194, .22);
      --font-display: Arial, Helvetica, sans-serif;
      --font-body: Arial, Helvetica, sans-serif;
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .cursor,
    .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
    }

    .cursor {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--cyan);
      mix-blend-mode: screen;
      transition: transform .15s ease;
    }

    .cursor-ring {
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(13, 205, 200, .45);
      border-radius: 50%;
      transition: transform .35s cubic-bezier(.22, 1, .36, 1), width .25s, height .25s, opacity .25s;
    }

    @media (pointer: coarse) {
      .cursor,
      .cursor-ring {
        display: none;
      }
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      height: 72px;
      padding: 0 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(18, 8, 46, .93);
      border-bottom: 1px solid rgba(13, 205, 200, .15);
      backdrop-filter: blur(18px);
      transition: box-shadow .3s, background .3s;
    }

    nav.scrolled {
      background: rgba(13, 10, 30, .96);
      box-shadow: 0 4px 40px rgba(0, 0, 0, .45);
    }

    .nav-logo {
      height: 50px;
      min-width: 128px;
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo img {
      height: 50px;
      width: auto;
      object-fit: contain;
    }

    .logo-fallback {
      min-width: 126px;
      height: 38px;
      display: none;
      align-items: center;
      justify-content: center;
      border: 1px dashed rgba(13, 205, 200, .42);
      border-radius: 8px;
      color: var(--cyan);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      background: rgba(13, 205, 200, .08);
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-links a {
      position: relative;
      color: rgba(255, 255, 255, .72);
      text-decoration: none;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: color .2s;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0;
      height: 1.5px;
      background: var(--cyan);
      transition: width .3s;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn-nav,
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      text-decoration: none;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-nav {
      padding: 10px 22px;
      border-radius: 999px;
      background: var(--gradient-btn);
      color: var(--white);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      box-shadow: 0 4px 20px rgba(107, 33, 214, .4);
      transition: transform .2s, box-shadow .2s;
    }

    .btn-nav:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(107, 33, 214, .55);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 6px;
      cursor: pointer;
      border: 0;
      background: transparent;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      border-radius: 2px;
      background: var(--white);
      transition: .3s;
    }

    .mobile-menu {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      z-index: 850;
      display: none;
      flex-direction: column;
      gap: 18px;
      padding: 24px 6%;
      background: rgba(13, 10, 30, .98);
      border-bottom: 1px solid rgba(13, 205, 200, .15);
      backdrop-filter: blur(20px);
      transform: translateY(-10px);
      opacity: 0;
      transition: transform .3s, opacity .3s;
    }

    .mobile-menu.open {
      display: flex;
      transform: translateY(0);
      opacity: 1;
    }

    .mobile-menu a {
      color: rgba(255, 255, 255, .82);
      text-decoration: none;
      font-size: .98rem;
      font-weight: 600;
      padding: 8px 0 14px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    section {
      padding: 100px 6%;
      position: relative;
    }

    .section-inner {
      width: min(1260px, 100%);
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--purple-vivid);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .section-label::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .section-title {
      font-family: var(--font-display);
      color: var(--text-dark);
      font-size: clamp(2rem, 3.8vw, 3.2rem);
      font-weight: 800;
      line-height: 1.12;
    }

    .section-title .accent {
      color: var(--purple-vivid);
    }

    .section-title .accent-cyan {
      color: var(--cyan);
    }

    .section-desc {
      max-width: 640px;
      margin-top: 16px;
      color: var(--gray-text);
      font-size: 1rem;
      line-height: 1.75;
    }

    .connect-hero {
      min-height: 100vh;
      padding: 118px 6% 84px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        linear-gradient(115deg, rgba(255, 230, 0, .1) 0%, transparent 34%),
        var(--gradient-hero);
    }

    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(13, 205, 200, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 205, 200, .07) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 45%, black 0%, transparent 100%);
    }

    .hero-diagonal {
      position: absolute;
      inset: auto -12% -20% auto;
      width: 62vw;
      height: 50vh;
      background: linear-gradient(135deg, rgba(255, 230, 0, .18), rgba(13, 205, 200, .12));
      transform: rotate(-8deg);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 28px;
    }

    .hero-inner {
      width: min(1260px, 100%);
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
      gap: 58px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      padding: 7px 16px;
      margin-bottom: 24px;
      border: 1px solid rgba(255, 230, 0, .38);
      border-radius: 999px;
      background: rgba(255, 230, 0, .11);
      color: var(--meli-yellow);
      font-size: .74rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--meli-yellow);
      animation: pulseYellow 2s ease-in-out infinite;
    }

    @keyframes pulseYellow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255, 230, 0, .58); }
      50% { box-shadow: 0 0 0 8px rgba(255, 230, 0, 0); }
    }

    .hero-title {
      max-width: 690px;
      color: var(--white);
      font-family: var(--font-display);
      font-size: clamp(2.55rem, 5vw, 5rem);
      font-weight: 800;
      line-height: 1.03;
    }

    .hero-title span {
      color: var(--cyan);
    }

    .hero-desc {
      max-width: 580px;
      margin-top: 24px;
      color: rgba(255, 255, 255, .68);
      font-size: 1.08rem;
      line-height: 1.78;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .btn-primary {
      padding: 15px 30px;
      border-radius: 999px;
      background: var(--gradient-btn);
      color: var(--white);
      font-size: .88rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      box-shadow: 0 8px 34px rgba(107, 33, 214, .48);
      transition: transform .2s, box-shadow .2s;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 46px rgba(107, 33, 214, .6);
    }

    .btn-primary:disabled {
      cursor: wait;
      opacity: .74;
      transform: none;
      box-shadow: 0 8px 24px rgba(107, 33, 214, .28);
    }

    .btn-secondary {
      padding: 14px 28px;
      border-radius: 999px;
      border: 1.5px solid rgba(255, 255, 255, .32);
      color: var(--white);
      background: rgba(255, 255, 255, .03);
      font-size: .88rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: border-color .2s, background .2s, transform .2s;
    }

    .btn-secondary:hover {
      border-color: var(--cyan);
      background: rgba(13, 205, 200, .1);
      transform: translateY(-2px);
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 640px;
      margin-top: 42px;
    }

    .proof-item {
      min-height: 98px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, .13);
      border-radius: 16px;
      background: rgba(255, 255, 255, .055);
      backdrop-filter: blur(12px);
    }

    .proof-kicker {
      display: block;
      margin-bottom: 6px;
      color: var(--cyan);
      font-size: .66rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .proof-value {
      color: var(--white);
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 800;
      line-height: 1.18;
    }

    .hero-visual-stack {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }

    .float-logo {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      /* border: 1px solid rgba(255, 255, 255, .14); */
      box-shadow: var(--shadow-dark);
      backdrop-filter: blur(16px);
      animation: logoFloat 5.8s ease-in-out infinite alternate;
    }

    .float-logo img {
      width: 74%;
      height: 74%;
      object-fit: contain;
    }

    .float-logo .logo-fallback {
      display: none;
      min-width: auto;
      width: calc(100% - 18px);
      height: calc(100% - 18px);
      text-align: center;
      line-height: 1.25;
      color: rgba(255, 255, 255, .92);
      /* border-color: rgba(255, 255, 255, .24); */
      /* background: rgba(255, 255, 255, .06); */
    }

    .float-logo--vylo {
      left: 4.4%;
      bottom: 7%;
      width: 154px;
      height: 92px;
      border-radius: 18px;
      /* background: rgba(13, 10, 30, .62); */
      animation-delay: -1.8s;
    }

    .float-logo--meli {
      right: 7%;
      top: 16%;
      width: 142px;
      height: 142px;
      border-radius: 26px;
      background: rgba(255, 230, 0, 0.507);
    }

    .float-logo--meli .logo-fallback {
      color: var(--meli-blue);
      border-color: rgba(45, 50, 119, .24);
      background: rgba(255, 255, 255, .28);
    }

    .float-logo--club {
      right: 42%;
      bottom: 8%;
      width: 126px;
      height: 78px;
      border-radius: 16px;
      background: rgba(13, 205, 200, .14);
      animation-delay: -3s;
    }

    @keyframes logoFloat {
      0% { transform: translateY(0); }
      100% { transform: translateY(-14px); }
    }

    .lead-card {
      position: relative;
      z-index: 3;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 22px;
      background: rgba(255, 255, 255, .94);
      box-shadow: var(--shadow-dark);
    }

    .lead-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(255, 230, 0, .9), rgba(13, 205, 200, .75), rgba(107, 33, 214, .55));
      mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      mask-composite: exclude;
      pointer-events: none;
    }

    .lead-card-header {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: flex-start;
      margin-bottom: 22px;
    }

    .lead-card h2 {
      font-family: var(--font-display);
      font-size: clamp(1.55rem, 2.4vw, 2rem);
      line-height: 1.12;
      color: var(--text-dark);
    }

    .lead-card p {
      margin-top: 8px;
      color: var(--gray-text);
      font-size: .93rem;
      line-height: 1.6;
    }

    .free-badge {
      flex-shrink: 0;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(37, 211, 102, .12);
      color: #09883a;
      font-size: .68rem;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .lead-form {
      display: grid;
      gap: 15px;
    }

    .field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .form-field label {
      color: var(--text-dark);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      border: 1.5px solid var(--gray-light);
      border-radius: 12px;
      background: var(--white);
      color: var(--text-dark);
      outline: none;
      transition: border-color .2s, box-shadow .2s, background .2s;
    }

    .form-field input,
    .form-field select {
      min-height: 48px;
      padding: 0 14px;
    }

    .form-field textarea {
      min-height: 88px;
      resize: vertical;
      padding: 13px 14px;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: rgba(13, 205, 200, .74);
      box-shadow: 0 0 0 4px rgba(13, 205, 200, .12);
      background: #FCFEFF;
    }

    .consent-row {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--gray-text);
      font-size: .78rem;
      line-height: 1.45;
    }

    .consent-row input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--purple-vivid);
      flex-shrink: 0;
    }

    .form-submit {
      width: 100%;
      min-height: 52px;
      margin-top: 2px;
      border-radius: 999px;
    }

    .form-note {
      text-align: center;
      color: var(--gray-text);
      font-size: .77rem;
      line-height: 1.5;
    }

    .form-status {
      display: none;
      padding: 12px 14px;
      border-radius: 12px;
      font-size: .82rem;
      font-weight: 700;
      line-height: 1.45;
    }

    .form-status.show {
      display: block;
    }

    .form-status.info {
      color: #24505C;
      background: rgba(13, 205, 200, .12);
      border: 1px solid rgba(13, 205, 200, .28);
    }

    .form-status.error {
      color: #8B1E3F;
      background: rgba(255, 75, 118, .1);
      border: 1px solid rgba(255, 75, 118, .26);
    }

    .success-box {
      display: none;
      margin-top: 18px;
      padding: 20px;
      border: 1px solid rgba(37, 211, 102, .28);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(37, 211, 102, .12), rgba(13, 205, 200, .1));
      color: var(--text-dark);
    }

    .success-box.show {
      display: block;
      animation: riseIn .42s ease;
    }

    .success-box strong {
      display: block;
      margin-bottom: 6px;
      font-family: var(--font-display);
      font-size: 1.12rem;
      color: #09883a;
    }

    .success-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .btn-whatsapp {
      padding: 12px 18px;
      border-radius: 999px;
      background: var(--green);
      color: var(--white);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      box-shadow: 0 8px 24px rgba(37, 211, 102, .28);
      transition: transform .2s, box-shadow .2s;
    }

    .btn-whatsapp:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 34px rgba(37, 211, 102, .38);
    }

    .btn-reset {
      padding: 12px 18px;
      border: 1px solid var(--gray-light);
      border-radius: 999px;
      background: var(--white);
      color: var(--text-dark);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
    }

    @keyframes riseIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .marquee-strip {
      overflow: hidden;
      padding: 14px 0;
      background: var(--gradient-brand);
    }

    .marquee-inner {
      display: flex;
      width: max-content;
      white-space: nowrap;
      animation: marqueeScroll 25s linear infinite;
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 26px;
      padding: 0 26px;
      color: rgba(255, 255, 255, .92);
      font-family: var(--font-display);
      font-size: .82rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .marquee-item::after {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--meli-yellow);
      opacity: .72;
    }

    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    #programa {
      background: var(--off-white);
    }

    .program-grid {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 58px;
      align-items: center;
    }

    .program-copy h2 {
      max-width: 620px;
    }

    .program-panel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .program-card {
      min-height: 188px;
      padding: 24px;
      border: 1px solid rgba(107, 33, 214, .12);
      border-radius: 18px;
      background: var(--white);
      box-shadow: 0 12px 36px rgba(91, 24, 194, .08);
      transition: transform .3s, border-color .3s, box-shadow .3s;
    }

    .program-card:hover {
      transform: translateY(-6px);
      border-color: rgba(13, 205, 200, .38);
      box-shadow: 0 22px 52px rgba(91, 24, 194, .13);
    }

    .program-card.featured {
      grid-column: span 2;
      min-height: auto;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 20px;
      align-items: center;
      background: var(--gradient-brand);
      color: var(--white);
      border: 0;
    }

    .program-icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      border-radius: 14px;
      color: var(--purple-vivid);
      background: linear-gradient(135deg, rgba(107, 33, 214, .11), rgba(13, 205, 200, .12));
    }

    .program-card.featured .program-icon {
      margin-bottom: 0;
      color: var(--meli-yellow);
      background: rgba(255, 255, 255, .14);
      border: 1px solid rgba(255, 255, 255, .2);
    }

    .program-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .program-card p {
      color: var(--gray-text);
      font-size: .92rem;
      line-height: 1.65;
    }

    .program-card.featured p {
      color: rgba(255, 255, 255, .78);
    }

    #encontros {
      background: var(--white);
      overflow: hidden;
    }

    .section-header-centered {
      max-width: 760px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .section-header-centered .section-label {
      justify-content: center;
    }

    .section-header-centered .section-label::after {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .section-header-centered .section-desc {
      margin-left: auto;
      margin-right: auto;
    }

    .module-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .module-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 430px;
      padding: 28px;
      border: 1.5px solid var(--gray-light);
      border-radius: 20px;
      background: var(--white);
      overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s;
    }

    .module-card::before {
      content: attr(data-module);
      position: absolute;
      top: 18px;
      right: 20px;
      color: rgba(107, 33, 214, .08);
      font-family: var(--font-display);
      font-size: 4.2rem;
      font-weight: 800;
      line-height: .8;
    }

    .module-card:hover {
      transform: translateY(-8px);
      border-color: rgba(107, 33, 214, .3);
      box-shadow: 0 24px 60px rgba(91, 24, 194, .13);
    }

    .module-card.highlight {
      color: var(--white);
      background: var(--gradient-brand);
      border-color: transparent;
      box-shadow: 0 24px 64px rgba(91, 24, 194, .34);
    }

    .module-card.highlight::before {
      color: rgba(255, 255, 255, .12);
    }

    .module-top {
      position: relative;
      z-index: 1;
      margin-bottom: 20px;
    }

    .module-chip {
      display: inline-flex;
      margin-bottom: 16px;
      padding: 5px 12px;
      border-radius: 999px;
      background: rgba(107, 33, 214, .1);
      color: var(--purple-vivid);
      font-size: .68rem;
      font-weight: 900;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    .module-card.highlight .module-chip {
      background: rgba(255, 255, 255, .16);
      color: var(--meli-yellow);
    }

    .module-card h3 {
      position: relative;
      z-index: 1;
      font-family: var(--font-display);
      font-size: 1.28rem;
      line-height: 1.18;
      margin-bottom: 10px;
    }

    .module-speaker {
      position: relative;
      z-index: 1;
      color: var(--purple-vivid);
      font-size: .88rem;
      font-weight: 800;
    }

    .module-card.highlight .module-speaker {
      color: rgba(255, 255, 255, .78);
    }

    .module-list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin-top: auto;
      list-style: none;
    }

    .module-list li,
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--gray-text);
      font-size: .9rem;
      line-height: 1.55;
    }

    .module-card.highlight .module-list li {
      color: rgba(255, 255, 255, .82);
    }

    .module-list li::before,
    .check-list li::before {
      content: "";
      width: 16px;
      height: 16px;
      margin-top: 3px;
      border-radius: 50%;
      background:
        linear-gradient(135deg, var(--purple-vivid), var(--cyan));
      flex-shrink: 0;
      box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .72);
    }

    .module-card.highlight .module-list li::before {
      background: var(--meli-yellow);
      box-shadow: inset 0 0 0 5px rgba(45, 50, 119, .18);
    }

    #bonus {
      background:
        linear-gradient(135deg, rgba(255, 230, 0, .1) 0%, transparent 30%),
        var(--gradient-hero);
      color: var(--white);
      overflow: hidden;
    }

    #bonus::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .55;
    }

    .bonus-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 48px;
      align-items: start;
    }

    #bonus .section-label,
    #bonus .section-title {
      color: var(--white);
    }

    #bonus .section-label {
      color: var(--cyan);
    }

    #bonus .section-desc {
      color: rgba(255, 255, 255, .66);
    }

    .bonus-panel {
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 22px;
      background: rgba(255, 255, 255, .055);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow-dark);
    }

    .bonus-panel h3 {
      color: var(--white);
      font-family: var(--font-display);
      font-size: 1.45rem;
      line-height: 1.18;
      margin-bottom: 18px;
    }

    .bonus-list {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .bonus-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(255, 255, 255, .78);
      font-size: .94rem;
      line-height: 1.56;
    }

    .bonus-list li::before {
      content: "";
      width: 18px;
      height: 18px;
      margin-top: 2px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--gradient-ml);
      box-shadow: 0 0 0 4px rgba(255, 230, 0, .08);
    }

    .diferenciais {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .diff-card {
      min-height: 210px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 18px;
      background: rgba(255, 255, 255, .06);
      backdrop-filter: blur(14px);
      transition: transform .3s, background .3s, border-color .3s;
    }

    .diff-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, .1);
      border-color: rgba(13, 205, 200, .34);
    }

    .diff-card h3 {
      margin-bottom: 10px;
      color: var(--white);
      font-family: var(--font-display);
      font-size: 1.12rem;
      line-height: 1.2;
    }

    .diff-card p {
      color: rgba(255, 255, 255, .68);
      font-size: .9rem;
      line-height: 1.65;
    }

    .scope-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .scope-tags span {
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(255, 230, 0, .13);
      color: var(--meli-yellow);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    #para-quem {
      background: var(--white);
    }

    .audience-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
    }

    .audience-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      list-style: none;
    }

    .audience-list li {
      min-height: 104px;
      padding: 18px;
      border: 1.5px solid var(--gray-light);
      border-radius: 16px;
      background: var(--white);
      color: var(--text-dark);
      font-weight: 700;
      line-height: 1.45;
      box-shadow: 0 10px 34px rgba(91, 24, 194, .06);
      transition: transform .3s, border-color .3s, box-shadow .3s;
    }

    .audience-list li:hover {
      transform: translateY(-5px);
      border-color: rgba(13, 205, 200, .38);
      box-shadow: 0 20px 46px rgba(91, 24, 194, .11);
    }

    .audience-list li span {
      display: block;
      margin-bottom: 8px;
      color: var(--purple-vivid);
      font-size: .72rem;
      font-weight: 900;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    .outcome-panel {
      padding: 32px;
      border-radius: 22px;
      background: var(--off-white);
      border: 1px solid var(--gray-light);
    }

    .outcome-panel h3 {
      margin-bottom: 18px;
      font-family: var(--font-display);
      font-size: 1.5rem;
      line-height: 1.16;
    }

    .check-list {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    #final {
      padding: 110px 6%;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(13, 205, 200, .1), transparent 36%),
        var(--navy);
      color: var(--white);
      text-align: center;
    }

    #final::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(13, 205, 200, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 205, 200, .06) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .final-inner {
      width: min(860px, 100%);
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .final-inner .section-label {
      justify-content: center;
      color: var(--cyan);
    }

    .final-inner .section-label::after {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .final-inner h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 800;
      line-height: 1.14;
    }

    .final-inner h2 span {
      color: var(--cyan);
    }

    .final-inner p {
      max-width: 680px;
      margin: 20px auto 0;
      color: rgba(255, 255, 255, .68);
      font-size: 1.02rem;
      line-height: 1.74;
    }

    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
      margin: 38px auto 34px;
    }

    .schedule-item {
      min-height: 96px;
      padding: 15px 10px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 15px;
      background: rgba(255, 255, 255, .055);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
    }

    .schedule-item span {
      color: var(--meli-yellow);
      font-size: .66rem;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .schedule-item strong {
      color: var(--white);
      font-family: var(--font-display);
      font-size: .96rem;
      line-height: 1.2;
    }

    .final-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    footer {
      padding: 44px 6% 32px;
      background: #070F22;
      border-top: 1px solid rgba(13, 205, 200, .12);
    }

    .footer-inner {
      width: min(1260px, 100%);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-logo {
      height: 42px;
      min-width: 120px;
      display: flex;
      align-items: center;
    }

    .footer-logo img {
      height: 42px;
      width: auto;
      object-fit: contain;
    }

    .footer-copy,
    .footer-links a {
      color: rgba(255, 255, 255, .38);
      font-size: .78rem;
      text-decoration: none;
    }

    .footer-links {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
    }

    .footer-links a:hover {
      color: var(--cyan);
    }

    @media (max-width: 1120px) {
      .nav-links {
        gap: 18px;
      }

      .module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .schedule-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .nav-links,
      .btn-nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .connect-hero {
        padding-top: 112px;
      }

      .hero-inner,
      .program-grid,
      .bonus-grid,
      .audience-grid {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        gap: 34px;
      }

      .hero-proof {
        grid-template-columns: 1fr;
      }

      .field-grid,
      .program-panel,
      .diferenciais,
      .audience-list {
        grid-template-columns: 1fr;
      }

      .program-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
      }

      .float-logo--meli {
        right: 3%;
        top: 11%;
        width: 102px;
        height: 102px;
      }

      .float-logo--vylo,
      .float-logo--club {
        display: none;
      }
    }

    @media (max-width: 680px) {
      section {
        padding: 76px 5%;
      }

      nav {
        padding: 0 5%;
      }

      .connect-hero {
        padding: 104px 5% 64px;
      }

      .hero-title {
        font-size: clamp(2.35rem, 13vw, 3.25rem);
      }

      .lead-card {
        padding: 22px;
        border-radius: 18px;
      }

      .lead-card-header {
        flex-direction: column;
      }

      .hero-actions,
      .final-actions,
      .success-actions {
        align-items: stretch;
      }

      .btn-primary,
      .btn-secondary,
      .btn-whatsapp,
      .btn-reset {
        width: 100%;
      }

      .module-grid {
        grid-template-columns: 1fr;
      }

      .module-card {
        min-height: auto;
      }

      .schedule-grid {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
      }
    }