

    /* ================================================
       DESIGN TOKENS
    ================================================ */
    :root {
      --bg-primary:   #08080F;
      --bg-secondary: #0E0E1A;
      --surface:      rgba(255,255,255,0.03);
      --purple:       #7B4FD4;
      --blue:         #4B8EF0;
      --gradient:     linear-gradient(135deg, #7B4FD4, #4B8EF0);
      --gradient-90:  linear-gradient(90deg,  #7B4FD4, #4B8EF0);
      --gradient-180: linear-gradient(180deg, #7B4FD4, #4B8EF0);
      --text:         #FFFFFF;
      --text-muted:   rgba(255,255,255,0.60);
      --border:       rgba(255,255,255,0.06);
      --glow-purple:  rgba(123,79,212,0.15);
      --glow-blue:    rgba(75,142,240,0.12);
    }

    /* ================================================
       RESET
    ================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    img { height: auto; } /* prevent HTML height attribute overriding natural ratio */
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Outfit', sans-serif;
      background-color: var(--bg-primary);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.65;
    }

    /* ================================================
       BACKGROUND LAYERS (z-index negativo, fixos)
       Ordem: bg-base(-4) → bg-glow(-3) → bg-grid(-2)
               → canvas noise(-1, via JS) → content(0+)
    ================================================ */
    .bg-base {
      position: fixed; inset: 0; z-index: -4;
      background: var(--bg-primary);
      pointer-events: none;
    }
    .bg-glow {
      position: fixed; inset: 0; z-index: -3;
      background: radial-gradient(circle 600px at 50% 180px, rgba(123,79,212,0.30), transparent 70%);
      pointer-events: none;
    }
    .bg-grid {
      position: fixed; inset: 0; z-index: -2;
      background-image:
        linear-gradient(to right,  rgba(100,116,139,0.16) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(100,116,139,0.16) 1px, transparent 1px);
      background-size: 22px 24px;
      pointer-events: none;
    }
    /* canvas noise inserted by JS at z-index: -1 */

    /* ================================================
       UTILITIES
    ================================================ */
    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 24px;
    }
    @media (min-width: 768px)  { .container { padding: 0 48px; } }
    @media (min-width: 1200px) { .container { padding: 0 64px; } }

    .gradient-text {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-divider {
      height: 1px;
      background: var(--border);
    }

    /* ================================================
       SCROLL REVEAL
    ================================================ */
    .reveal { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.from-left   { transform: translateX(-44px); }
    .reveal.from-right  { transform: translateX(44px); }
    .reveal.from-bottom { transform: translateY(32px); }
    .reveal.scale-in    { transform: scale(0.94); }
    .reveal.visible     { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    }

    /* ================================================
       SECTION LOCAL GLOW
    ================================================ */
    .local-glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(80px);
    }

    /* ================================================
       BUTTON — PRIMARY
    ================================================ */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--gradient);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 17px;
      font-weight: 600;
      padding: 16px 40px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      min-height: 52px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: pulse-cta 3s ease-in-out infinite;
    }
    .btn-primary:hover {
      transform: scale(1.03);
      box-shadow: 0 0 48px rgba(123,79,212,0.5), 0 0 80px rgba(75,142,240,0.2);
      animation: none;
    }
    .btn-primary:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 3px;
    }
    @keyframes pulse-cta {
      0%,100% { box-shadow: 0 0 20px rgba(123,79,212,0.20); }
      50%      { box-shadow: 0 0 40px rgba(75,142,240,0.30); }
    }
    @media (prefers-reduced-motion: reduce) {
      .btn-primary { animation: none !important; }
    }

    /* ================================================
       SECTION TAG / EYEBROW
    ================================================ */
    .section-tag {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    /* ================================================
       SECTION TITLE
    ================================================ */
    .section-title {
      font-size: clamp(28px, 5vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    /* ================================================
       SECTION BODY TEXT
    ================================================ */
    .section-body {
      font-size: clamp(16px, 1.6vw, 18px);
      font-weight: 400;
      color: var(--text-muted);
      line-height: 1.72;
    }
    .section-body p + p { margin-top: 16px; }
    .section-body strong { color: rgba(255,255,255,0.92); font-weight: 600; }

    /* ================================================
       §1 — HERO
    ================================================ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 80px 0 60px;
      overflow: hidden;
    }
    #hero .lg-1 {
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(123,79,212,0.12) 0%, transparent 65%);
      top: -120px; left: -200px;
    }
    #hero .lg-2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(75,142,240,0.10) 0%, transparent 65%);
      bottom: -60px; right: -120px;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .hero-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      border: 1px solid rgba(255,255,255,0.10);
      padding: 7px 18px;
      border-radius: 100px;
      margin-bottom: 32px;
      background: rgba(255,255,255,0.02);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 9px 20px;
      border-radius: 100px;
      margin-bottom: 32px;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(8px);
    }
    .hero-badge-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 6px rgba(34,197,94,0.8);
      flex-shrink: 0;
    }
    .hero-title {
      font-size: clamp(28px, 4.2vw, 50px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 18px;
      max-width: 860px;
    }
    .hero-subtitle {
      font-size: clamp(15px, 1.6vw, 17px);
      font-weight: 400;
      color: var(--text-muted);
      line-height: 1.65;
      max-width: 660px;
      margin-bottom: 10px;
    }
    .hero-subtitle strong { color: rgba(255,255,255,0.88); font-weight: 600; }
    .hero-cta-wrap {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    /* ================================================
       §2 — INCOPIÁVEL
    ================================================ */
    #incopiavel {
      position: relative;
      padding: 160px 0 120px;
      overflow: hidden;
    }
    #incopiavel .lg-1 {
      width: 700px; height: 600px;
      background: radial-gradient(ellipse, rgba(75,142,240,0.09) 0%, transparent 68%);
      top: 20%; right: -220px;
    }
    .incopiavel-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    .incopiavel-card {
      width: 100%;
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 18px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
    /* unique glow per card type */
    .incopiavel-card::before {
      content: '';
      position: absolute;
      top: -50px; right: -50px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(123,79,212,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .vs-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }
    @media (min-width: 700px) {
      .vs-row { grid-template-columns: 1fr 1fr; }
    }
    @media (min-width: 1000px) {
      .vs-row { grid-template-columns: 1fr 1fr 1fr 1fr; }
    }
    .vs-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      padding: 20px 20px;
      border-radius: 12px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.04);
    }
    .vs-item.is-highlight {
      background: rgba(123,79,212,0.08);
      border-color: rgba(123,79,212,0.22);
    }
    .vs-icon {
      width: 30px; min-width: 30px; height: 30px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700;
      flex-shrink: 0;
    }
    .vs-icon.cross { background: rgba(255,80,80,0.10); color: #ff6b6b; }
    .vs-icon.check { background: var(--gradient); color: #fff; font-size: 12px; }
    .vs-text { font-size: clamp(14px, 1.4vw, 15px); color: var(--text-muted); line-height: 1.55; }
    .vs-text strong { color: rgba(255,255,255,0.9); font-weight: 600; }

    /* ================================================
       §3 — PROBLEMAS
    ================================================ */
    #problemas {
      position: relative;
      padding: 80px 0 120px;
      background: var(--bg-secondary);
      overflow: hidden;
    }
    #problemas .lg-1 {
      width: 560px; height: 480px;
      background: radial-gradient(circle, rgba(123,79,212,0.11) 0%, transparent 68%);
      top: 10%; left: -160px;
    }
    .problemas-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .problemas-header .section-title { max-width: 700px; margin: 0 auto; }
    .problemas-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .problema-card {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 16px;
      padding: 24px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, border-color 0.3s ease;
      display: flex;
      align-items: flex-start;
      gap: 28px;
    }
    .problema-card:hover { transform: translateY(-4px); }
    /* gradient border on hover via pseudo */
    .problema-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      padding: 1px;
      background: var(--gradient);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .problema-card:hover::after { opacity: 1; }
    .card-num {
      font-size: 48px;
      font-weight: 800;
      line-height: 1;
      flex-shrink: 0;
      min-width: 48px;
      align-self: flex-start;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      opacity: 0.25;
      margin-bottom: 16px;
      display: block;
    }
    .card-content { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; }
    .card-title { font-size: clamp(16px, 1.8vw, 19px); font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
    .card-text { font-size: clamp(15px, 1.5vw, 16px); color: var(--text-muted); line-height: 1.72; }
    .card-text strong { color: rgba(255,255,255,0.85); font-weight: 600; }
    .conclusion-box {
      margin-top: 40px;
      padding: 40px 44px;
      background: rgba(123,79,212,0.06);
      border: 1px solid rgba(123,79,212,0.16);
      border-radius: 16px;
      font-size: clamp(15px, 1.7vw, 18px);
      color: rgba(255,255,255,0.85);
      line-height: 1.75;
    }
    .conclusion-box strong { color: #fff; font-weight: 700; }
    .data-block {
      margin-top: 40px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 20px;
      padding: 48px;
      position: relative;
      overflow: hidden;
    }
    .data-block::before {
      content: '';
      position: absolute;
      bottom: -60px; right: -60px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(75,142,240,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .data-block-title {
      font-size: clamp(17px, 2vw, 20px);
      font-weight: 700;
      margin-bottom: 36px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }
    .data-stats {
      display: grid;
      gap: 28px;
    }
    @media (min-width: 600px) { .data-stats { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1000px) { .data-stats { grid-template-columns: repeat(4,1fr); } }
    .stat-item {}
    .stat-num {
      font-size: clamp(30px, 4.5vw, 44px);
      font-weight: 800;
      line-height: 1;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 8px;
    }
    .stat-label { font-size: clamp(14px,1.4vw,15px); color: var(--text-muted); line-height: 1.55; }
    .stat-source { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 5px; font-style: italic; }

    /* ================================================
       §4 — SOLUÇÃO / CINCO FRENTES
    ================================================ */
    #solucao {
      position: relative;
      padding: 160px 0 120px;
      overflow: hidden;
    }
    #solucao .lg-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(75,142,240,0.10) 0%, transparent 68%);
      top: 0; right: -180px;
    }
    #solucao .lg-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(123,79,212,0.10) 0%, transparent 68%);
      bottom: 0; left: -100px;
    }
    .solucao-header { margin-bottom: 80px; max-width: 760px; }
    .solucao-header .section-body { margin-top: 24px; margin-bottom: 48px; }
    .frentes-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .frente-card {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 18px;
      padding: 24px 28px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
      display: grid;
      grid-template-columns: 200px 1fr;
      grid-template-rows: auto 1fr;
      gap: 4px 28px;
      align-items: start;
    }
    @media (max-width: 700px) {
      .frente-card { grid-template-columns: 1fr; }
      .frente-label, .frente-title, .frente-text { grid-column: 1 !important; grid-row: auto !important; }
    }
    .frente-label { grid-column: 1; grid-row: 1; }
    .frente-title { grid-column: 1; grid-row: 2; align-self: start; font-size: clamp(16px, 1.8vw, 20px); }
    .frente-text { grid-column: 2; grid-row: 1 / 3; align-self: start; }
    .frente-card:hover { transform: translateY(-4px); }
    /* gradient border on hover */
    .frente-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 18px;
      padding: 1px;
      background: var(--gradient);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .frente-card:hover::after { opacity: 1; }
    /* asymmetric unique glows per card */
    .frente-card:nth-child(1)::before { content:''; position:absolute; top:-50px; left:-50px; width:200px; height:200px; background:radial-gradient(circle, rgba(123,79,212,0.14) 0%, transparent 70%); pointer-events:none; }
    .frente-card:nth-child(2)::before { content:''; position:absolute; bottom:-40px; right:-40px; width:160px; height:160px; background:radial-gradient(circle, rgba(75,142,240,0.12) 0%, transparent 70%); pointer-events:none; }
    .frente-card:nth-child(3)::before { content:''; position:absolute; top:-40px; right:-40px; width:160px; height:160px; background:radial-gradient(circle, rgba(123,79,212,0.10) 0%, transparent 70%); pointer-events:none; }
    .frente-card:nth-child(4)::before { content:''; position:absolute; bottom:-40px; left:-40px; width:160px; height:160px; background:radial-gradient(circle, rgba(75,142,240,0.12) 0%, transparent 70%); pointer-events:none; }
    .frente-card:nth-child(5)::before { content:''; position:absolute; top:-40px; left:-30px; width:160px; height:160px; background:radial-gradient(circle, rgba(123,79,212,0.12) 0%, transparent 70%); pointer-events:none; }

    .frente-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 14px;
    }
    .frente-title { font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
    .frente-text { font-size: clamp(14px, 1.4vw, 15px); color: var(--text-muted); line-height: 1.75; }
    .frente-text strong { color: rgba(255,255,255,0.85); font-weight: 600; }
    .frente-text p + p { margin-top: 12px; }
    .solucao-close {
      margin-top: 72px;
      padding: 52px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .solucao-close::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 320px; height: 2px;
      background: var(--gradient);
    }
    .solucao-close p {
      font-size: clamp(16px, 1.8vw, 19px);
      color: rgba(255,255,255,0.85);
      line-height: 1.75;
      max-width: 820px;
      margin: 0 auto;
    }
    .solucao-close p + p { margin-top: 16px; }
    .solucao-close strong { color: #fff; font-weight: 700; }

    /* ================================================
       §5 — PRODUTO / CAROUSEL
    ================================================ */
    #produto {
      position: relative;
      padding: 100px 0 120px;
      background: var(--bg-secondary);
      overflow: hidden;
    }
    #produto .lg-1 {
      width: 600px; height: 400px;
      background: radial-gradient(ellipse, rgba(123,79,212,0.10) 0%, transparent 68%);
      top: 0; left: 25%;
    }
    .produto-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .produto-header .section-body { margin-top: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
    .carousel-outer {
      overflow: hidden;
      position: relative;
      padding: 20px 0;
      -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
      mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    }
    .carousel-track {
      display: flex;
      gap: 22px;
      animation: carousel-roll 32s linear infinite;
      width: max-content;
      padding: 0 22px;
      will-change: transform;
    }
    .carousel-track:hover { animation-play-state: paused; }
    @keyframes carousel-roll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .carousel-track { animation-play-state: paused !important; }
    }
    .carousel-card {
      width: 216px;
      min-width: 216px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
      position: relative;
      flex-shrink: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .carousel-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(123,79,212,0.25);
    }
    .carousel-card img {
      width: 100%;
      display: block;
    }
    /* vinheta overlay on screenshots */
    .carousel-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(8,8,15,0.15) 0%, transparent 25%, transparent 75%, rgba(8,8,15,0.25) 100%);
      border-radius: 14px;
      pointer-events: none;
    }
    .produto-cta-text {
      text-align: center;
      margin-top: 72px;
      font-size: clamp(16px, 1.8vw, 19px);
      color: var(--text-muted);
      position: relative;
      z-index: 2;
    }
    .produto-cta-text strong { color: rgba(255,255,255,0.9); font-weight: 600; }

    /* ================================================
       §6 — INSTRUTOR
    ================================================ */
    #instrutor {
      position: relative;
      padding: 160px 0 120px;
      overflow: hidden;
    }
    #instrutor .lg-1 {
      width: 700px; height: 600px;
      background: radial-gradient(ellipse, rgba(123,79,212,0.12) 0%, transparent 68%);
      top: 0; right: -200px;
    }
    .instrutor-inner {
      display: grid;
      gap: 64px;
      align-items: center;
    }
    @media (min-width: 900px) {
      .instrutor-inner { grid-template-columns: 420px 1fr; gap: 72px; align-items: start; }
    }
    .instrutor-photo-col { position: relative; }
    .instrutor-photo-glow {
      position: absolute;
      inset: -24px;
      border-radius: 28px;
      background: var(--gradient);
      opacity: 0.22;
      filter: blur(28px);
      z-index: 0;
    }
    .instrutor-photo-frame {
      position: relative;
      z-index: 1;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .instrutor-photo-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(8,8,15,0.55) 100%);
      border-radius: 20px;
      pointer-events: none;
    }
    .instrutor-photo-frame img {
      width: 100%;
      display: block;
      border-radius: 20px;
    }
    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
      position: relative;
      z-index: 1;
    }
    .social-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      min-height: 44px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.78);
      text-decoration: none;
      transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }
    .social-pill:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(123,79,212,0.35);
      color: #fff;
    }
    .social-pill:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
    .social-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
    .instrutor-content { position: relative; z-index: 2; }
    .instrutor-name {
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
    }
    .instrutor-body {
      font-size: clamp(16px, 1.6vw, 18px);
      color: var(--text-muted);
      line-height: 1.75;
    }
    .instrutor-body p + p { margin-top: 18px; }
    .instrutor-body strong { color: rgba(255,255,255,0.9); font-weight: 600; }
    .brands-wrap {
      margin-top: 40px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }
    .brands-label {
      font-size: 12px;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .brands-list { display: flex; flex-wrap: wrap; gap: 10px; }
    .brand-tag {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 6px 14px;
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 100px;
    }

    /* ================================================
       §7 — DEPOIMENTOS
    ================================================ */
    #depoimentos {
      position: relative;
      padding: 100px 0 120px;
      background: var(--bg-secondary);
      overflow: hidden;
    }
    #depoimentos .lg-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(75,142,240,0.09) 0%, transparent 68%);
      bottom: -60px; right: -100px;
    }
    .dep-header { margin-bottom: 72px; }
    .dep-grid {
      display: grid;
      gap: 20px;
    }
    @media (min-width: 768px) {
      .dep-grid { grid-template-columns: 1fr 1fr; }
    }
    .dep-card {
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 18px;
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .dep-card:hover { transform: translateY(-4px); }
    .dep-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 18px;
      padding: 1px;
      background: var(--gradient);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .dep-card:hover::after { opacity: 1; }
    /* unique glows */
    .dep-card:nth-child(1)::before { content:''; position:absolute; top:-30px; right:-30px; width:160px; height:160px; background:radial-gradient(circle, rgba(123,79,212,0.16) 0%, transparent 70%); pointer-events:none; }
    .dep-card:nth-child(2)::before { content:''; position:absolute; bottom:-30px; left:-30px; width:160px; height:160px; background:radial-gradient(circle, rgba(75,142,240,0.14) 0%, transparent 70%); pointer-events:none; }
    .dep-quote {
      display: block;
      font-size: 72px;
      line-height: 0.6;
      font-family: Georgia, serif;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 24px;
      opacity: 0.75;
    }
    .dep-person {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }
    .dep-photo {
      width: 52px; height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255,255,255,0.10);
      flex-shrink: 0;
    }
    .dep-name { font-size: 16px; font-weight: 700; }
    .dep-role { font-size: 13px; color: var(--text-muted); margin-top: 3px; }
    .dep-text { font-size: clamp(15px, 1.5vw, 16px); color: rgba(255,255,255,0.78); line-height: 1.75; }
    .dep-text strong { color: #fff; font-weight: 600; }

    /* ================================================
       §8 — MÓDULOS / CONTEÚDO
    ================================================ */
    #modulos {
      position: relative;
      padding: 120px 0 100px;
      overflow: hidden;
    }
    #modulos .lg-1 {
      width: 600px; height: 500px;
      background: radial-gradient(ellipse, rgba(123,79,212,0.12) 0%, transparent 68%);
      top: 50%; left: -200px;
      transform: translateY(-50%);
    }
    .modulos-inner {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    .modulos-content { position: relative; z-index: 2; }
    .modulo-list {
      list-style: none;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
    }
    .modulo-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .modulo-item:last-child { border-bottom: none; }
    .modulo-arrow {
      width: 28px; min-width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700;
      margin-top: 1px;
      flex-shrink: 0;
    }
    .modulo-text { font-size: clamp(15px, 1.5vw, 16px); font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.45; }
    .modulos-visual {
      display: block; position: relative; }
    .time-card {
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 36px 44px;
      display: flex;
      align-items: flex-start;
      gap: 40px;
      position: relative;
      overflow: hidden;
    }
    @media (max-width: 600px) {
      .time-card { flex-direction: column; text-align: center; }
    }
    /* gradient border */
    .time-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 1px;
      background: var(--gradient);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }
    /* unique glow bottom-right */
    .time-card::after {
      content: '';
      position: absolute;
      bottom: -50px; right: -50px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(75,142,240,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .time-number {
      font-size: clamp(56px, 7vw, 88px);
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
      flex-shrink: 0;
      padding-top: 4px;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.04em;
    }
    .time-text-col { flex: 1; text-align: left !important; }
    .time-label { font-size: clamp(17px, 1.8vw, 21px); font-weight: 700; color: #fff; margin-top: 0; margin-bottom: 12px; text-align: left; }
    .time-desc { text-align: left; font-size: clamp(14px, 1.4vw, 15px); color: var(--text-muted); line-height: 1.70; }
    .time-desc strong { color: rgba(255,255,255,0.85); font-weight: 600; }
    .modulos-extras {
      margin-top: 40px;
      padding: 32px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 14px;
    }
    .extras-title { font-size: clamp(14px,1.5vw,15px); font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
    .extras-items { display: flex; flex-direction: column; gap: 10px; }
    .extras-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: clamp(14px,1.4vw,15px);
      color: var(--text-muted);
      line-height: 1.5;
    }
    .extras-dot {
      width: 6px; min-width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gradient-90);
      margin-top: 7px;
    }

    /* ================================================
       §9 — BÔNUS
    ================================================ */
    #bonus {
      position: relative;
      padding: 100px 0 120px;
      background: var(--bg-secondary);
      overflow: hidden;
    }
    #bonus .lg-1 {
      width: 600px; height: 500px;
      background: radial-gradient(ellipse, rgba(75,142,240,0.10) 0%, transparent 68%);
      top: 0; right: -150px;
    }
    .bonus-header { margin-bottom: 64px; }
    .bonus-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .bonus-card {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 16px;
      padding: 32px 36px;
      display: grid;
      gap: 20px;
      align-items: start;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    @media (min-width: 768px) {
      .bonus-card { grid-template-columns: auto 1fr; gap: 28px; }
    }
    .bonus-card:hover { transform: translateY(-3px); }
    .bonus-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      padding: 1px;
      background: var(--gradient);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .bonus-card:hover::after { opacity: 1; }
    /* unique glows */
    .bonus-card:nth-child(1)::before { content:''; position:absolute; top:-40px; right:-40px; width:180px; height:180px; background:radial-gradient(circle, rgba(123,79,212,0.10) 0%, transparent 70%); pointer-events:none; }
    .bonus-card:nth-child(2)::before { content:''; position:absolute; bottom:-40px; left:-40px; width:160px; height:160px; background:radial-gradient(circle, rgba(75,142,240,0.10) 0%, transparent 70%); pointer-events:none; }
    .bonus-card:nth-child(3)::before { content:''; position:absolute; top:-40px; left:-40px; width:160px; height:160px; background:radial-gradient(circle, rgba(123,79,212,0.10) 0%, transparent 70%); pointer-events:none; }
    .bonus-card:nth-child(4)::before { content:''; position:absolute; bottom:-40px; right:-40px; width:160px; height:160px; background:radial-gradient(circle, rgba(75,142,240,0.10) 0%, transparent 70%); pointer-events:none; }
    .bonus-card:nth-child(5)::before { content:''; position:absolute; top:30%; left:-40px; width:160px; height:160px; background:radial-gradient(circle, rgba(123,79,212,0.10) 0%, transparent 70%); pointer-events:none; }
    .bonus-num {
      font-size: clamp(40px, 5vw, 56px);
      font-weight: 800;
      line-height: 1;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
    }
    .bonus-title { font-size: clamp(16px, 1.8vw, 18px); font-weight: 700; margin-bottom: 10px; }
    .bonus-text { font-size: clamp(14px, 1.4vw, 15px); color: var(--text-muted); line-height: 1.72; }

    /* ================================================
       §10 — PREÇO
    ================================================ */
    #preco {
      position: relative;
      padding: 160px 0 180px;
      overflow: hidden;
    }
    #preco .lg-1 {
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(123,79,212,0.14) 0%, transparent 60%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    .preco-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .price-card-wrap {
      max-width: 540px;
      margin: 0 auto;
      position: relative;
    }
    .price-card-ambient {
      position: absolute;
      inset: -50px;
      border-radius: 60px;
      background: radial-gradient(circle, rgba(123,79,212,0.22) 0%, rgba(75,142,240,0.12) 50%, transparent 80%);
      filter: blur(36px);
      z-index: 0;
      pointer-events: none;
    }
    .price-card {
      position: relative;
      z-index: 1;
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 24px;
      padding: 52px 48px;
      overflow: hidden;
    }
    /* gradient border via pseudo */
    .price-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      padding: 1px;
      background: var(--gradient);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }
    /* unique glow top-left inside card */
    .price-card::after {
      content: '';
      position: absolute;
      top: -40px; left: -40px;
      width: 180px; height: 180px;
      background: radial-gradient(circle, rgba(123,79,212,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .price-label {
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 32px;
    }
    .checklist {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 40px;
    }
    .checklist-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: clamp(14px, 1.5vw, 16px);
      font-weight: 500;
      color: rgba(255,255,255,0.85);
    }
    .check-circle {
      width: 22px; min-width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .check-circle svg { width: 11px; height: 11px; }
    .price-original {
      text-align: center;
      font-size: 16px;
      color: var(--text-muted);
      text-decoration: line-through;
      margin-bottom: 6px;
    }
    .price-main {
      text-align: center;
      margin-bottom: 8px;
      line-height: 1;
    }
    .price-prefix { font-size: 20px; font-weight: 500; color: var(--text-muted); vertical-align: top; margin-top: 14px; display: inline-block; }
    .price-value {
      font-size: clamp(52px, 8vw, 76px);
      font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .price-installment {
      text-align: center;
      font-size: clamp(16px, 1.7vw, 18px);
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 10px;
    }
    .price-offer {
      text-align: center;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 36px;
    }
    .price-offer strong {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }
    .btn-price {
      display: block;
      width: 100%;
      text-align: center;
      background: var(--gradient);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 17px;
      font-weight: 700;
      padding: 18px 40px;
      min-height: 56px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: pulse-cta 3s ease-in-out infinite;
    }
    .btn-price:hover {
      transform: scale(1.02);
      box-shadow: 0 0 56px rgba(123,79,212,0.55);
      animation: none;
    }
    .btn-price:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
    @media (prefers-reduced-motion: reduce) {
      .btn-price { animation: none !important; }
    }
    .price-note {
      text-align: center;
      margin-top: 16px;
      font-size: 13px;
      color: var(--text-muted);
    }

    /* ================================================
       §11 — FAQ
    ================================================ */
    #faq {
      position: relative;
      padding: 120px 0;
      background: var(--bg-secondary);
      overflow: hidden;
    }
    #faq .lg-1 {
      width: 500px; height: 400px;
      background: radial-gradient(ellipse, rgba(123,79,212,0.09) 0%, transparent 68%);
      top: 0; left: 50%; transform: translateX(-50%);
    }
    .faq-header { text-align: center; margin-bottom: 64px; }
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
    }
    .faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
    .faq-btn {
      width: 100%;
      background: none;
      border: none;
      padding: 24px 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      cursor: pointer;
      text-align: left;
      font-family: 'Outfit', sans-serif;
      font-size: clamp(15px, 1.5vw, 17px);
      font-weight: 600;
      color: #fff;
      min-height: 44px;
    }
    .faq-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
    .faq-icon {
      width: 28px; min-width: 28px; height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; line-height: 1;
      color: var(--text-muted);
      transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--gradient);
      border-color: transparent;
      color: #fff;
    }
    .faq-answer {
      font-size: clamp(15px, 1.5vw, 16px);
      color: var(--text-muted);
      line-height: 1.75;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-answer-inner { padding-bottom: 24px; }
    .faq-item.open .faq-answer { max-height: 600px; }

    /* ================================================
       §12 — GARANTIA
    ================================================ */
    #garantia {
      position: relative;
      padding: 80px 0 100px;
      overflow: hidden;
    }
    #garantia .lg-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(75,142,240,0.10) 0%, transparent 68%);
      top: 50%; left: 50%; transform: translate(-50%, -50%);
    }
    .garantia-card {
      max-width: 720px;
      margin: 0 auto;
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 24px;
      padding: 56px 52px;
      display: grid;
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 768px) {
      .garantia-card { grid-template-columns: 110px 1fr; }
    }
    /* gradient border */
    .garantia-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      padding: 1px;
      background: var(--gradient);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0.55;
      pointer-events: none;
    }
    /* unique glow bottom-right */
    .garantia-card::after {
      content: '';
      position: absolute;
      bottom: -40px; right: -40px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(75,142,240,0.14) 0%, transparent 70%);
      pointer-events: none;
    }
    .garantia-badge {
      width: 100px; height: 100px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto;
      flex-shrink: 0;
      box-shadow: 0 0 40px rgba(123,79,212,0.3);
    }
    .garantia-badge svg { width: 44px; height: 44px; }
    .garantia-title { font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; margin-bottom: 14px; }
    .garantia-text { font-size: clamp(15px, 1.6vw, 17px); color: var(--text-muted); line-height: 1.75; }

    /* ================================================
       §13 — CTA FINAL
    ================================================ */
    #cta-final {
      position: relative;
      padding: 160px 0 140px;
      overflow: hidden;
    }
    #cta-final .lg-1 {
      width: 700px; height: 600px;
      background: radial-gradient(ellipse, rgba(123,79,212,0.16) 0%, transparent 68%);
      top: 0; left: -100px;
    }
    #cta-final .lg-2 {
      width: 600px; height: 500px;
      background: radial-gradient(ellipse, rgba(75,142,240,0.12) 0%, transparent 68%);
      bottom: 0; right: -100px;
    }
    .cta-inner {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }
    .cta-title {
      font-size: clamp(28px, 4.5vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 32px;
    }
    .cta-body {
      font-size: clamp(16px, 1.7vw, 18px);
      color: var(--text-muted);
      line-height: 1.75;
    }
    .cta-body p + p { margin-top: 16px; }
    .cta-body strong { color: rgba(255,255,255,0.9); font-weight: 600; }
    .cta-price-block { margin: 52px 0; }
    .cta-from { font-size: 17px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
    .cta-main-price {
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 8px;
    }
    .cta-alt-price { font-size: clamp(16px, 1.7vw, 18px); font-weight: 600; color: var(--text-muted); }
    .cta-footnote { margin-top: 18px; font-size: 13px; color: var(--text-muted); }

    /* ================================================
       FOOTER
    ================================================ */
    footer {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border);
      padding: 40px 0;
      text-align: center;
    }
    .footer-name {
      font-size: 15px;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
    }
    .footer-copy { font-size: 13px; color: var(--text-muted); }
  

    /* ===== GENERAL FIXES ===== */
    /* Fix: text color brighter across all body text */
    .section-body { color: rgba(255,255,255,0.82); }
    .card-text { color: rgba(255,255,255,0.82); }
    .instrutor-body { color: rgba(255,255,255,0.82); }
    .dep-text { color: rgba(255,255,255,0.82); }
    .frente-text { color: rgba(255,255,255,0.82); }
    .cta-body { color: rgba(255,255,255,0.82); }
    .time-desc { color: rgba(255,255,255,0.82); }
    .bonus-text { color: rgba(255,255,255,0.82); }
    .garantia-text { color: rgba(255,255,255,0.82); }
    .stat-label { color: rgba(255,255,255,0.82); }
    .modulo-text { color: rgba(255,255,255,0.88); }
    .faq-answer { color: rgba(255,255,255,0.82); }

    /* Fix: reduce section spacing */
    #incopiavel { padding: 100px 0 80px; }
    #problemas { padding: 80px 0 80px; }
    #solucao { padding: 100px 0 80px; }
    #produto { padding: 80px 0 80px; }
    #instrutor { padding: 100px 0 80px; }
    #depoimentos { padding: 80px 0 80px; }
    #modulos { padding: 80px 0 80px; }
    #bonus { padding: 80px 0 80px; }
    #preco { padding: 100px 0 120px; }
    #faq { padding: 80px 0 80px; }
    #garantia { padding: 60px 0 80px; }
    #cta-final { padding: 100px 0 100px; }

    /* Fix: tighten modulo list spacing */
    .modulo-item { padding: 12px 0; }

    /* ===== LOGO CAROUSEL ===== */
    .logos-carousel-wrap {
      overflow: hidden;
      margin-top: 64px;
      padding: 20px 0;
      -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
      mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    }
    .logos-track {
      display: flex;
      align-items: center;
      gap: 64px;
      width: max-content;
      animation: logos-roll 22s linear infinite;
      will-change: transform;
    }
    .logos-track:hover { animation-play-state: paused; }
    @keyframes logos-roll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      opacity: 0.9;
      filter: none;
      transition: opacity 0.3s ease, filter 0.3s ease;
      flex-shrink: 0;
    }
    .logo-item:hover { opacity: 1; }
    .logo-item img { height: 48px; max-width: 160px; object-fit: contain; }

    /* ===== FLYWHEEL SVG ===== */
    .flywheel-wrap {
      display: flex;
      justify-content: center;
      margin: 40px 0;
    }
    .flywheel-wrap svg {
      max-width: 680px;
      width: 100%;
    }

    /* ===== SCURVE ===== */
    .scurve-wrap {
      max-width: 720px;
      margin: 40px auto;
    }
    .scurve-container {
      background: #0a0a16;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.05);
      padding: 36px 24px 28px;
      position: relative;
      overflow: hidden;
    }
    .scurve-container::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 20px 20px;
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
      pointer-events: none;
    }

    /* ===== PRICE REDESIGN (Dobra 10) ===== */
    .price-offer-badge {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      margin-bottom: 8px;
    }
    .price-de {
      text-align: center;
      font-size: 16px;
      color: var(--text-muted);
      text-decoration: line-through;
      margin-bottom: 10px;
    }
    .price-por-wrap {
      text-align: center;
      margin-bottom: 6px;
      line-height: 1;
    }
    .price-por-prefix {
      font-size: 15px;
      font-weight: 400;
      color: var(--text-muted);
    }
    .price-por-number {
      font-size: clamp(52px, 8vw, 72px);
      font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .price-avista {
      text-align: center;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 32px;
    }
    .btn-price-sm {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      text-align: center;
      background: var(--gradient);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 15px 32px;
      min-height: 50px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.02em;
      white-space: nowrap;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: pulse-cta 3s ease-in-out infinite;
    }
    .btn-price-sm:hover {
      transform: scale(1.02);
      box-shadow: 0 0 56px rgba(123,79,212,0.55);
      animation: none;
    }
    @media (max-width: 600px) {
      .btn-price-sm {
        white-space: normal;
        font-size: 14px;
        padding: 15px 16px;
        line-height: 1.25;
      }
    }
    .price-access-note {
      text-align: center;
      margin-top: 14px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.01em;
    }

    /* ===== CTA FINAL PRICE REDESIGN (Dobra 14) ===== */
    .cta-inner-centered {
      position: relative;
      z-index: 2;
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }
    .cta-offer-title {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .cta-de-price {
      font-size: 16px;
      color: var(--text-muted);
      text-decoration: line-through;
      margin-bottom: 10px;
    }
    .cta-por-wrap {
      margin-bottom: 6px;
      line-height: 1;
    }
    .cta-por-prefix {
      font-size: 16px;
      font-weight: 400;
      color: var(--text-muted);
    }
    .cta-por-number {
      font-size: clamp(56px, 9vw, 80px);
      font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .cta-avista {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 36px;
    }
    .btn-cta-final {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 15px 36px;
      min-height: 50px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.02em;
      white-space: nowrap;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: pulse-cta 3s ease-in-out infinite;
    }
    .btn-cta-final:hover {
      transform: scale(1.03);
      box-shadow: 0 0 48px rgba(123,79,212,0.5);
      animation: none;
    }
    .cta-access-note {
      margin-top: 14px;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
    }
    .cta-text-block {
      text-align: left;
      margin-bottom: 52px;
    }

    /* Flywheel + scurve animations */
    @keyframes dash-rotate {
      0%   { stroke-dashoffset: 0; }
      100% { stroke-dashoffset: 140; }
    }
    @keyframes particle-pulse {
      0%,100% { opacity: 0.3; }
      50%      { opacity: 1; }
    }
    @keyframes draw-path {
      0%   { stroke-dashoffset: 800; }
      100% { stroke-dashoffset: 0; }
    }
    @keyframes dot-pop {
      0%   { transform: scale(0); opacity: 0; }
      80%  { transform: scale(1.2); opacity: 1; }
      100% { transform: scale(1); opacity: 1; }
    }
    @keyframes card-fadein {
      0%   { opacity: 0; transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes draw-return {
      0%   { stroke-dashoffset: 700; }
      100% { stroke-dashoffset: 0; }
    }

    /* Bonus section tag gradient */
    .bonus-tag-gradient {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }

    /* Data block quote texts */
    .data-quote {
      font-size: clamp(15px,1.6vw,17px);
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      line-height: 1.7;
      margin-bottom: 8px;
    }
    .data-ref {
      font-size: 12px;
      color: rgba(255,255,255,0.42);
      font-style: italic;
      margin-bottom: 24px;
    }
    .data-quotes-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .data-quote-item {
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .data-quote-item:last-child { border-bottom: none; }
    .data-closing {
      margin-top: 28px;
      padding: 28px 32px;
      background: rgba(123,79,212,0.06);
      border: 1px solid rgba(123,79,212,0.16);
      border-radius: 12px;
      font-size: clamp(16px,1.7vw,18px);
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      line-height: 1.7;
    }
  
    /* Performance: disable costly backdrop-filter on mobile */
    @media (max-width: 767px) {
      .dep-card,
      .time-card,
      .garantia-card,
      .price-card,
      .incopiavel-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }
    }
    /* Isolate repaint on animated carousels */
    .carousel-outer,
    .logos-carousel-wrap {
      contain: layout;
    }
