
    /* ─── DESIGN TOKENS ─────────────────────────────────────────────────── */
    :root {
      --pink: #F21A7B;
      --pink-light: #FF6CAB;
      --pink-pale: #FFF0F7;
      --pink-glow: rgba(242, 26, 123, .18);
      --blue: #0C35B1;
      --blue-mid: #1A4FD8;
      --blue-light: #4D4FFF;
      --blue-pale: #EEF2FF;
      --navy: #010D43;
      --navy-deep: #000820;
      --white: #FFFFFF;
      --off-white: #F8F9FC;
      --text-dark: #060F2A;
      --text-mid: #374151;
      --text-muted: #6B7280;
      --border: rgba(12, 53, 177, .12);
      --border-dark: rgba(255, 255, 255, .1);
      --success: #10B981;

      --font-display: 'Fraunces', Georgia, serif;
      --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

      --r-sm: 6px;
      --r-md: 12px;
      --r-lg: 20px;
      --r-xl: 28px;
      --r-2xl: 40px;
      --r-full: 9999px;

      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --t: all .3s var(--ease);

      --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
      --shadow-md: 0 8px 30px rgba(0, 0, 0, .1);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
      --shadow-pink: 0 12px 40px rgba(242, 26, 123, .3);
      --shadow-blue: 0 12px 40px rgba(12, 53, 177, .25);
    }

    /* ─── RESET ─────────────────────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      scroll-padding-top: 100px;
    }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--text-dark);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button {
      font-family: inherit;
    }

    /* ─── SCROLL REVEAL ─────────────────────────────────────────────────── */
    /* ─── PAGE LOADER ───────────────────────────────────────────────────── */
    #page-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--navy-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 20px;
      transition: opacity .5s ease, visibility .5s ease;
    }

    #page-loader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .loader-logo {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--white);
      letter-spacing: .04em;
      opacity: 0;
      animation: loader-fade-in .6s .2s ease forwards;
    }

    .loader-logo span {
      color: var(--pink);
      font-style: italic;
    }

    .loader-bar-wrap {
      width: 120px;
      height: 2px;
      background: rgba(255, 255, 255, .1);
      border-radius: 2px;
      overflow: hidden;
      opacity: 0;
      animation: loader-fade-in .4s .4s ease forwards;
    }

    .loader-bar {
      height: 100%;
      width: 0%;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--pink), var(--blue-light));
      animation: loader-progress 1.2s .5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes loader-fade-in {
      to {
        opacity: 1;
      }
    }

    @keyframes loader-progress {
      0% {
        width: 0%
      }

      60% {
        width: 80%
      }

      100% {
        width: 100%
      }
    }

    @keyframes ripple {
      from {
        opacity: 1;
        transform: scale(0)
      }

      to {
        opacity: 0;
        transform: scale(2.5)
      }
    }

    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce) {

      .sr,
      .sr-left,
      .sr-right,
      .sr-scale {
        transition: opacity .3s ease;
        filter: none !important;
        transform: none !important;
      }

      #page-loader {
        display: none !important;
      }

      * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }
    }

    /* ─── SCROLL REVEAL — Premium ───────────────────────────────────────── */
    /* Base state — invisible */
    .sr,
    .sr-left,
    .sr-right,
    .sr-scale {
      opacity: 0;
      transition:
        opacity .8s cubic-bezier(0.16, 1, 0.3, 1),
        transform .8s cubic-bezier(0.16, 1, 0.3, 1),
        filter .8s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    .sr {
      transform: translateY(40px);
      filter: blur(4px);
    }

    .sr-left {
      transform: translateX(-40px);
      filter: blur(3px);
    }

    .sr-right {
      transform: translateX(40px);
      filter: blur(3px);
    }

    .sr-scale {
      transform: scale(.96) translateY(20px);
      filter: blur(4px);
    }

    /* Visible state */
    .sr.visible,
    .sr-left.visible,
    .sr-right.visible,
    .sr-scale.visible {
      opacity: 1;
      transform: none;
      filter: none;
    }

    /* Stagger delays */
    .d1 {
      transition-delay: 0s;
    }

    .d2 {
      transition-delay: .08s;
    }

    .d3 {
      transition-delay: .16s;
    }

    .d4 {
      transition-delay: .24s;
    }

    .d5 {
      transition-delay: .32s;
    }

    .d6 {
      transition-delay: .4s;
    }

    .d1 {
      transition-delay: .05s
    }

    .d2 {
      transition-delay: .1s
    }

    .d3 {
      transition-delay: .15s
    }

    .d4 {
      transition-delay: .2s
    }

    .d5 {
      transition-delay: .25s
    }

    .d6 {
      transition-delay: .3s
    }

    /* ─── LAYOUT ────────────────────────────────────────────────────────── */
    .wrap {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ─── SECTION LABELS ────────────────────────────────────────────────── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--pink);
    }

    .eyebrow-white {
      color: rgba(255, 255, 255, .5);
    }

    .eyebrow-white::before {
      background: rgba(255, 255, 255, .35);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 500;
      line-height: 1.06;
      letter-spacing: -.03em;
      font-variation-settings: 'opsz' 72;
      margin-bottom: 20px;
      text-wrap: balance;
    }

    .section-title .accent {
      color: var(--pink);
      font-style: italic;
      font-weight: 400;
    }

    .section-title .accent-blue {
      color: var(--blue-light);
      font-style: italic;
    }

    .section-sub {
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.75;
      color: var(--text-muted);
      max-width: 600px;
      margin-bottom: 56px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .section-sub-white {
      color: rgba(255, 255, 255, .6);
    }

    .centered {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    /* ─── BUTTONS ───────────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: .875rem;
      letter-spacing: .04em;
      padding: 15px 32px;
      border-radius: var(--r-full);
      border: none;
      cursor: pointer;
      transition: var(--t);
      white-space: nowrap;
    }

    .btn:focus-visible {
      outline: 2px solid var(--pink);
      outline-offset: 3px;
    }

    .btn-pink {
      background: var(--pink);
      color: var(--white);
      box-shadow: var(--shadow-pink);
    }

    .btn-pink:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 50px rgba(242, 26, 123, .4);
      background: #e0166f;
    }

    .btn-blue {
      background: var(--blue);
      color: var(--white);
      box-shadow: var(--shadow-blue);
    }

    .btn-blue:hover {
      transform: translateY(-2px);
      background: var(--blue-mid);
    }

    .btn-outline {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid rgba(6, 15, 42, .2);
    }

    .btn-outline:hover {
      border-color: var(--pink);
      color: var(--pink);
    }

    .btn-outline-white {
      background: rgba(255, 255, 255, .08);
      color: var(--white);
      border: 1.5px solid rgba(255, 255, 255, .22);
      backdrop-filter: blur(8px);
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, .15);
      border-color: rgba(255, 255, 255, .4);
    }

    .btn-lg {
      padding: 18px 44px;
      font-size: .95rem;
    }

    .btn-icon {
      font-size: 1rem;
    }

    /* ─── TOPBAR ────────────────────────────────────────────────────────── */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      height: 44px;
      background: var(--navy-deep);
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
    }

    .tb-contacts {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .tb-link {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, .5);
      font-size: .72rem;
      font-weight: 500;
      text-decoration: none;
      transition: color .2s;
    }

    .tb-link:hover {
      color: var(--white);
    }

    .tb-link svg {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }

    .tb-socials {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .tb-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .5);
      transition: all .2s;
    }

    .tb-icon:hover {
      background: rgba(242, 26, 123, .2);
      border-color: var(--pink);
      color: var(--pink);
    }

    .tb-icon svg {
      width: 13px;
      height: 13px;
    }

    /* ─── NAV ───────────────────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 44px;
      left: 0;
      right: 0;
      z-index: 150;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(6, 15, 42, .07);
      transition: var(--t);
    }

    .nav.scrolled {
      box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: -.01em;
    }

    .nav-logo span {
      color: var(--pink);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: .82rem;
      font-weight: 500;
      color: var(--text-mid);
      transition: color .2s;
      letter-spacing: .01em;
    }

    .nav-links a:hover {
      color: var(--navy);
    }

    .nav-cta {
      padding: 10px 24px;
      font-size: .8rem;
    }

    .nav-burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      flex-direction: column;
      gap: 5px;
    }

    .nav-burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: var(--t);
    }

    /* ─── WA FLOAT ──────────────────────────────────────────────────────── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 300;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
      transition: var(--t);
    }

    .wa-float:hover {
      transform: scale(1.1);
    }

    .wa-float svg {
      width: 28px;
      height: 28px;
    }

    /* ═══════════════════════════════════════════════════════════════════════
       HERO — 2-column split layout
    ═══════════════════════════════════════════════════════════════════════ */
    .hero {
      min-height: 100svh;
      padding: 0;
      background: #05072A;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('imagens/capa-lp.jpg-2.webp');
      background-size: cover;
      background-position: center top;
      opacity: .35;
      z-index: 0;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      flex: 1;
      padding: 140px 60px 60px;
    }

    /* Ticker pinned at bottom of hero */
    /* Big orbs */
    .hero-orb-blue {
      position: absolute;
      bottom: -120px;
      left: -100px;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(12, 53, 177, .55) 0%, rgba(12, 53, 177, .1) 45%, transparent 70%);
      pointer-events: none;
    }

    .hero-orb-pink {
      position: absolute;
      top: -80px;
      right: -80px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(120, 10, 90, .65) 0%, rgba(180, 0, 100, .2) 40%, transparent 68%);
      pointer-events: none;
    }

    .hero-orb-mid {
      position: absolute;
      top: 35%;
      right: 35%;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(77, 79, 255, .12) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Dot grid */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
      z-index: 0;
    }

    /* ── LEFT COL ── */
    .hero-left {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(242, 26, 123, .12);
      border: 1px solid rgba(242, 26, 123, .28);
      border-radius: var(--r-full);
      padding: 8px 20px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #FF6CAB;
      margin-bottom: 28px;
      width: fit-content;
      animation: badge-pulse 3s ease-in-out infinite;
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--pink);
      animation: blink 1.5s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .25
      }
    }

    @keyframes badge-pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(242, 26, 123, .2)
      }

      50% {
        box-shadow: 0 0 0 10px rgba(242, 26, 123, 0)
      }
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      line-height: 1.06;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 24px;
      letter-spacing: -0.03em;
      font-variation-settings: 'opsz' 72;
      text-wrap: balance;
    }

    .hero h1 em {
      color: var(--pink);
      font-style: italic;
      font-weight: 400;
    }

    .hero-sub {
      font-size: 1rem;
      font-weight: 400;
      color: rgba(255, 255, 255, .58);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 460px;
    }

    .hero-sub strong {
      color: rgba(255, 255, 255, .88);
      font-weight: 600;
    }

    /* Inline mini stats */
    .hero-mini-stats {
      display: flex;
      gap: 36px;
      margin-bottom: 40px;
    }

    .hms-item {}

    .hms-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: var(--pink);
      line-height: 1;
    }

    .hms-num em {
      font-style: normal;
      font-size: 1.1rem;
    }

    .hms-lbl {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .38);
      margin-top: 5px;
    }

    .hero-cta-row {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }

    .btn-hero {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--pink);
      color: var(--white);
      font-family: var(--font-body);
      font-size: .88rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 18px 40px;
      border-radius: var(--r-full);
      box-shadow: 0 8px 36px rgba(242, 26, 123, .45);
      transition: var(--t);
    }

    .btn-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 50px rgba(242, 26, 123, .55);
      background: #d41469;
    }

    .hero-cta-hint {
      font-size: .75rem;
      color: rgba(255, 255, 255, .3);
    }

    /* ── RIGHT COL ── */
    .hero-right {
      position: relative;
    }

    .hero-vsl-wrap {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .07);
      position: relative;
      z-index: 2;
      background: #090d1f;
      aspect-ratio: 16/9;
    }

    .hero-vsl-facade {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      transition: opacity 0.4s ease;
    }

    .hero-facade-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
    }

    .hero-facade-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 15, 45, 0.65);
      z-index: 1;
      transition: background 0.4s ease;
    }

    .hero-vsl-facade:hover .hero-facade-overlay {
      background: rgba(10, 15, 45, 0.5);
    }

    .hero-facade-play {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, 0.9);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: none;
      backdrop-filter: none;
      z-index: 3;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .hero-vsl-facade:hover .hero-facade-play {
      transform: scale(1.08);
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--white);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .hero-facade-play svg {
      width: 20px;
      height: 20px;
      margin-left: 3px;
      opacity: 0.9;
    }

    /* Floating stat cards */
    .hero-float-card {
      position: absolute;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 18px;
      backdrop-filter: blur(20px);
      padding: 16px 22px;
      animation: float 5s ease-in-out infinite;
      z-index: 3;
    }

    .hero-float-card.fc1 {
      top: -28px;
      left: -44px;
      animation-delay: 0s;
    }

    .hero-float-card.fc2 {
      bottom: -24px;
      right: -32px;
      animation-delay: 2.5s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .fc-label {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 4px;
    }

    .fc-value {
      font-size: .88rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .88);
    }

    .fc-big {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }

    .fc-big em {
      font-style: normal;
      color: var(--pink);
    }

    /* ── TICKER BAR ── */
    .hero-ticker {
      background: var(--pink);
      padding: 16px 0;
      overflow: hidden;
      position: relative;
      z-index: 10;
    }

    .ticker-track {
      display: flex;
      gap: 0;
      white-space: nowrap;
      animation: ticker 28s linear infinite;
    }

    .hero-ticker:hover .ticker-track {
      animation-play-state: paused;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--white);
      padding: 0 36px;
      flex-shrink: 0;
    }

    .ticker-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .45);
      flex-shrink: 0;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 140px 40px 60px;
      }

      .hero h1 {
        font-size: clamp(2.2rem, 6vw, 3.6rem);
      }

      .hero-sub {
        max-width: 100%;
      }

      .hero-float-card.fc1 {
        top: -20px;
        left: -16px;
      }

      .hero-float-card.fc2 {
        bottom: -16px;
        right: -16px;
      }
    }

    @media(max-width:640px) {
      .hero-inner {
        padding: 120px 20px 48px;
      }

      .hero-mini-stats {
        gap: 24px;
      }

      .hero-float-card {
        display: none;
      }

      .btn-hero {
        font-size: .8rem;
        padding: 16px 28px;
      }

      .hero-ticker {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
      }

      /* ── AJUSTE 1: Ocultar botão CTA do nav ao lado do hambúrguer ── */
      /* O botão continua acessível dentro do menu mobile aberto */
      .nav-cta {
        display: none;
      }

      /* ── AJUSTE 2 & 3: Centralizar H1 e subtítulo do hero ── */
      .hero h1 {
        text-align: center;
      }

      .hero-sub {
        text-align: center;
      }

      /* ── AJUSTE 4: Centralizar o bloco CTA do hero ── */
      .hero-cta-row {
        align-items: center;
      }

      /* ── AJUSTE 4b: Botões btn-lg — centralizar texto, largura total, texto quebrável ── */
      .btn-lg {
        width: 100%;
        max-width: 400px;
        text-align: center;
        justify-content: center;
        white-space: normal;
        margin-left: auto;
        margin-right: auto;
        display: flex;
      }

      /* ── AJUSTE 5: Em mobile — Vídeo primeiro, depois H1 e subtítulo ── */
      /* O hero-inner já é coluna única em mobile; order reordena sem tocar no HTML */
      .hero-right {
        order: -1;
      }

      .hero-left {
        order: 0;
      }
    }

    /* Stats row */
    .stats-band {
      background: var(--white);
      border-top: 3px solid var(--pink);
      border-image: linear-gradient(90deg, var(--pink), var(--blue-light), var(--blue)) 1;
      padding: 40px 40px;
    }

    .stats-grid {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid rgba(12, 53, 177, .1);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-num em {
      font-style: normal;
      color: var(--pink);
    }

    .stat-lbl {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ═══════════════════════════════════════════════════════════════════════
       PARA QUEM — White section
    ═══════════════════════════════════════════════════════════════════════ */
    .forwhom {
      padding: 112px 40px;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .forwhom::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--blue-light), var(--blue));
    }

    .forwhom-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 0;
    }

    .fw-card {
      border-radius: var(--r-xl);
      padding: 44px 40px;
      position: relative;
      overflow: hidden;
      transition: transform .3s var(--ease), box-shadow .3s;
    }

    .fw-card:hover {
      transform: translateY(-4px);
    }

    .fw-yes {
      background: var(--off-white);
      border: 1.5px solid var(--border);
    }

    .fw-yes:hover {
      box-shadow: 0 20px 60px rgba(12, 53, 177, .08);
      border-color: rgba(77, 79, 255, .3);
    }

    .fw-no {
      background: #FFF5F9;
      border: 1.5px solid rgba(242, 26, 123, .12);
    }

    .fw-no:hover {
      box-shadow: 0 20px 60px rgba(242, 26, 123, .08);
      border-color: rgba(242, 26, 123, .25);
    }

    .fw-top-bar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
    }

    .fw-yes .fw-top-bar {
      background: linear-gradient(90deg, var(--blue-light), var(--blue));
    }

    .fw-no .fw-top-bar {
      background: linear-gradient(90deg, var(--pink), #c4005e);
    }

    .fw-head {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
    }

    .fw-icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: var(--r-lg);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
    }

    .fw-icon-wrap svg {
      width: 22px;
      height: 22px;
    }

    .fw-yes .fw-icon-wrap {
      color: var(--blue-light);
      background: rgba(77, 79, 255, .08);
      border: 1px solid rgba(77, 79, 255, .15);
    }

    .fw-no .fw-icon-wrap {
      color: var(--pink);
      background: rgba(242, 26, 123, .08);
      border: 1px solid rgba(242, 26, 123, .15);
    }

    .fw-head-title {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--text-dark);
    }

    .fw-head-sub {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-top: 3px;
    }

    .fw-yes .fw-head-sub {
      color: var(--blue-light);
    }

    .fw-no .fw-head-sub {
      color: var(--pink);
    }

    .fw-items {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .fw-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 18px;
      border-radius: var(--r-lg);
      transition: var(--t);
    }

    .fw-yes .fw-item {
      background: var(--white);
      border: 1px solid rgba(12, 53, 177, .06);
    }

    .fw-yes .fw-item:hover {
      border-color: rgba(77, 79, 255, .2);
      background: rgba(77, 79, 255, .03);
    }

    .fw-no .fw-item {
      background: var(--white);
      border: 1px solid rgba(242, 26, 123, .06);
    }

    .fw-no .fw-item:hover {
      border-color: rgba(242, 26, 123, .2);
      background: rgba(242, 26, 123, .02);
    }

    .fw-dot-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
    }

    .fw-yes .fw-dot-icon {
      background: rgba(77, 79, 255, .1);
      color: var(--blue-light);
    }

    .fw-no .fw-dot-icon {
      background: rgba(242, 26, 123, .1);
      color: var(--pink);
    }

    .fw-item-text {
      font-size: .94rem;
      line-height: 1.6;
      color: var(--text-mid);
    }

    .fw-item-text strong {
      color: var(--text-dark);
      font-weight: 600;
    }

    .fw-footer {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(0, 0, 0, .05);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-align: center;
    }

    .fw-yes .fw-footer {
      color: var(--blue-light);
    }

    .fw-no .fw-footer {
      color: var(--pink);
    }

    /* Duplicate CSS Block 1 Removed to prevent grid conflicts */

    /* ═══════════════════════════════════════════════════════════════════════
       INCLUSO — White section
    ═══════════════════════════════════════════════════════════════════════ */
    .incluso {
      padding: 112px 40px;
      background: var(--white);
      overflow: hidden;
      position: relative;
    }

    .incluso::after {
      content: '';
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, .05) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Bento: 3 cols, 2 rows — zero empty space ── */
    .incluso-bento {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 16px;
    }

    /* Explicit placement — zero empty space */
    .inc-card.ic1 {
      grid-column: 1 / 3;
      grid-row: 1;
    }

    .inc-card.ic2 {
      grid-column: 3 / 4;
      grid-row: 1;
    }

    .inc-card.ic3 {
      grid-column: 1 / 2;
      grid-row: 2;
    }

    .inc-card.ic4 {
      grid-column: 2 / 3;
      grid-row: 2;
    }

    .inc-card.ic5 {
      grid-column: 3 / 4;
      grid-row: 2;
    }

    /* ic1 wide: bigger text, horizontal chips row */
    .inc-card.ic1 h4 {
      font-size: 1.25rem;
    }

    .inc-card.ic1 p {
      font-size: .975rem;
      max-width: 520px;
    }

    .inc-chips {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    /* ic2 tall: extra breathing room */
    .inc-card.ic2 {
      padding: 44px 36px;
      justify-content: space-between;
    }

    /* Base card */
    .inc-card {
      padding: 36px 32px;
      border-radius: 24px;
      background: var(--white);
      border: 1.5px solid #EAECF4;
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: relative;
      overflow: hidden;
      transition: var(--t);
      box-shadow: 0 1px 4px rgba(12, 53, 177, .04), 0 4px 24px rgba(12, 53, 177, .04);
    }

    .inc-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(12, 53, 177, .1);
      border-color: rgba(12, 53, 177, .15);
    }

    /* Top accent bar */
    .inc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 24px 24px 0 0;
    }

    .ic1::before {
      background: linear-gradient(90deg, var(--pink), #e0006e);
    }

    .ic2::before {
      background: linear-gradient(90deg, var(--blue-light), var(--blue));
    }

    .ic3::before {
      background: linear-gradient(90deg, #8B5CF6, #6D28D9);
    }

    .ic4::before {
      background: linear-gradient(90deg, #0DBEAA, #0891B2);
    }

    .ic5::before {
      background: linear-gradient(90deg, #F59E0B, #D97706);
    }

    /* Corner glow */
    .inc-card::after {
      content: '';
      position: absolute;
      bottom: -32px;
      right: -32px;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      pointer-events: none;
      transition: transform .4s var(--ease);
    }

    .inc-card:hover::after {
      transform: scale(1.7);
    }

    .ic1::after {
      background: rgba(242, 26, 123, .06);
    }

    .ic2::after {
      background: rgba(77, 79, 255, .07);
    }

    .ic3::after {
      background: rgba(139, 92, 246, .07);
    }

    .ic4::after {
      background: rgba(13, 190, 170, .07);
    }

    .ic5::after {
      background: rgba(245, 158, 11, .07);
    }

    .inc-icon-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      z-index: 1;
      position: relative;
    }

    .inc-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .inc-icon svg {
      width: 24px;
      height: 24px;
    }

    .ic1 .inc-icon {
      background: rgba(242, 26, 123, .08);
      border: 1px solid rgba(242, 26, 123, .15);
      color: var(--pink);
    }

    .ic2 .inc-icon {
      background: rgba(77, 79, 255, .08);
      border: 1px solid rgba(77, 79, 255, .15);
      color: var(--blue-light);
    }

    .ic3 .inc-icon {
      background: rgba(139, 92, 246, .08);
      border: 1px solid rgba(139, 92, 246, .15);
      color: #8B5CF6;
    }

    .ic4 .inc-icon {
      background: rgba(13, 190, 170, .08);
      border: 1px solid rgba(13, 190, 170, .15);
      color: #0D9488;
    }

    .ic5 .inc-icon {
      background: rgba(245, 158, 11, .08);
      border: 1px solid rgba(245, 158, 11, .15);
      color: #D97706;
    }

    .inc-card h4 {
      font-family: var(--font-body);
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.35;
      z-index: 1;
      position: relative;
    }

    .inc-card p {
      font-size: .95rem;
      line-height: 1.72;
      color: var(--text-muted);
      flex: 1;
      z-index: 1;
      position: relative;
    }

    .inc-card p strong {
      color: var(--text-dark);
      font-weight: 600;
    }

    .inc-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: var(--r-full);
      font-size: .72rem;
      font-weight: 700;
      width: fit-content;
      z-index: 1;
      position: relative;
      letter-spacing: .02em;
    }

    .ic1 .inc-badge {
      background: rgba(242, 26, 123, .08);
      color: var(--pink);
      border: 1px solid rgba(242, 26, 123, .15);
    }

    .ic2 .inc-badge {
      background: rgba(77, 79, 255, .08);
      color: var(--blue-light);
      border: 1px solid rgba(77, 79, 255, .15);
    }

    .ic3 .inc-badge {
      background: rgba(139, 92, 246, .08);
      color: #7C3AED;
      border: 1px solid rgba(139, 92, 246, .15);
    }

    .ic4 .inc-badge {
      background: rgba(13, 190, 170, .08);
      color: #0D9488;
      border: 1px solid rgba(13, 190, 170, .15);
    }

    .ic5 .inc-badge {
      background: rgba(245, 158, 11, .08);
      color: #B45309;
      border: 1px solid rgba(245, 158, 11, .15);
    }


    /* ── Como Funciona (drop-in replacement) ── */
    .how {
      padding: 120px 40px 112px;
      background: var(--off-white);
      position: relative;
      overflow: hidden;
    }

    /* Orb decorativo sutil */
    .how::before {
      content: '';
      position: absolute;
      top: -120px;
      left: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(77, 79, 255, .05) 0%, transparent 70%);
      pointer-events: none;
    }

    .how::after {
      content: '';
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, .04) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── BLOCO 1 — FASES ──────────────────────────────────────────── */
    .how-phases-section {
      margin-bottom: 80px;
    }

    .phases-label {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
      justify-content: center;
    }

    .phases-label-line {
      flex: 1;
      max-width: 200px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(12, 53, 177, .15));
    }

    .phases-label-line.right {
      background: linear-gradient(90deg, rgba(12, 53, 177, .15), transparent);
    }

    .phases-label-text {
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* Grid 2×2 das fases */
    .phases-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      position: relative;
    }

    /* Linha conectora diagonal no centro do grid */
    .phases-grid-connector {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 48px;
      height: 48px;
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      box-shadow: var(--shadow-sm);
    }

    .phases-grid-connector svg {
      width: 18px;
      height: 18px;
      color: var(--blue-light);
    }

    /* Card de fase */
    .phase-card-new {
      background: var(--white);
      border: 1.5px solid #EAECF4;
      border-radius: 28px;
      padding: 36px 36px 32px;
      position: relative;
      overflow: hidden;
      transition: var(--t);
      display: flex;
      flex-direction: column;
      gap: 0;
      cursor: default;
    }

    .phase-card-new:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 60px rgba(12, 53, 177, .1);
      border-color: var(--ph-color, var(--pink));
    }

    /* Barra superior accent */
    .phase-card-new::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 28px 28px 0 0;
      background: var(--ph-grad);
    }

    /* Glow de fundo no hover */
    .phase-card-new::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(ellipse, var(--ph-glow, rgba(242, 26, 123, .07)) 0%, transparent 70%);
      pointer-events: none;
      transition: transform .5s var(--ease), opacity .5s;
      opacity: 0;
    }

    .phase-card-new:hover::after {
      opacity: 1;
      transform: scale(1.4);
    }

    /* Variantes de cor */
    .ph1 {
      --ph-color: var(--pink);
      --ph-grad: linear-gradient(90deg, var(--pink), #e0006e);
      --ph-glow: rgba(242, 26, 123, .06);
      --ph-bg: rgba(242, 26, 123, .05);
      --ph-bd: rgba(242, 26, 123, .15);
    }

    .ph2 {
      --ph-color: var(--blue-light);
      --ph-grad: linear-gradient(90deg, var(--blue-light), var(--blue));
      --ph-glow: rgba(77, 79, 255, .07);
      --ph-bg: rgba(77, 79, 255, .05);
      --ph-bd: rgba(77, 79, 255, .15);
    }

    .ph3 {
      --ph-color: #8B5CF6;
      --ph-grad: linear-gradient(90deg, #8B5CF6, #6D28D9);
      --ph-glow: rgba(139, 92, 246, .07);
      --ph-bg: rgba(139, 92, 246, .05);
      --ph-bd: rgba(139, 92, 246, .15);
    }

    .ph4 {
      --ph-color: #0DBEAA;
      --ph-grad: linear-gradient(90deg, #0DBEAA, #0891B2);
      --ph-glow: rgba(13, 190, 170, .07);
      --ph-bg: rgba(13, 190, 170, .05);
      --ph-bd: rgba(13, 190, 170, .15);
    }

    /* Topo: número + badge fase */
    .phase-top-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .phase-big-num {
      font-family: var(--font-display);
      font-size: 5rem;
      font-weight: 700;
      line-height: 1;
      color: var(--ph-color);
      opacity: .12;
      letter-spacing: -.04em;
      font-variation-settings: 'opsz' 72;
      user-select: none;
      transition: opacity .3s;
    }

    .phase-card-new:hover .phase-big-num {
      opacity: .2;
    }

    .phase-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 16px;
      border-radius: var(--r-full);
      background: var(--ph-bg);
      border: 1px solid var(--ph-bd);
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ph-color);
    }

    .phase-tag-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--ph-color);
      flex-shrink: 0;
    }

    /* Ícone central */
    .phase-icon-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }

    .phase-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      flex-shrink: 0;
      background: var(--ph-bg);
      border: 1.5px solid var(--ph-bd);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ph-color);
      transition: var(--t);
    }

    .phase-card-new:hover .phase-icon-wrap {
      background: var(--ph-color);
      color: white;
      border-color: var(--ph-color);
      box-shadow: 0 8px 24px var(--ph-glow);
    }

    .phase-icon-wrap svg {
      width: 22px;
      height: 22px;
      stroke-width: 1.7;
    }

    .phase-title-block {
      flex: 1;
    }

    .phase-name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -.02em;
      color: var(--text-dark);
      font-variation-settings: 'opsz' 48;
      margin-bottom: 4px;
    }

    .phase-timing {
      font-size: .72rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: .04em;
    }

    /* Divisória */
    .phase-divider {
      width: 100%;
      height: 1px;
      background: rgba(12, 53, 177, .07);
      margin: 20px 0;
    }

    /* Outcomes list */
    .phase-outcomes-new {
      display: flex;
      flex-direction: column;
      gap: 9px;
      flex: 1;
    }

    .phase-outcome-new {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .875rem;
      color: var(--text-mid);
      line-height: 1.55;
      padding: 9px 12px;
      border-radius: 10px;
      border: 1px solid transparent;
      transition: background .2s, border-color .2s;
    }

    .phase-outcome-new:hover {
      background: var(--ph-bg);
      border-color: var(--ph-bd);
    }

    .phase-outcome-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 1px;
      background: var(--ph-bg);
      border: 1.5px solid var(--ph-bd);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .phase-outcome-dot svg {
      width: 9px;
      height: 9px;
      stroke-width: 2.5;
      color: var(--ph-color);
    }

    /* Footer do card — count badge */
    .phase-footer {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid rgba(12, 53, 177, .06);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .phase-module-count {
      font-size: .72rem;
      font-weight: 700;
      color: var(--ph-color);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .phase-module-count-pill {
      background: var(--ph-bg);
      border: 1px solid var(--ph-bd);
      border-radius: var(--r-full);
      padding: 3px 10px;
      font-size: .65rem;
    }

    .phase-arrow-link {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: .72rem;
      font-weight: 600;
      color: var(--ph-color);
      opacity: 0;
      transform: translateX(-6px);
      transition: var(--t);
    }

    .phase-card-new:hover .phase-arrow-link {
      opacity: 1;
      transform: translateX(0);
    }

    .phase-arrow-link svg {
      width: 13px;
      height: 13px;
    }


    /* ── BLOCO 2 — BARRA ESTATÍSTICAS HORIZONTAIS ───────────────── */
    .how-stats-strip {
      background: linear-gradient(135deg, var(--navy) 0%, #0C35B1 100%);
      border-radius: 24px;
      padding: 36px 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-bottom: 72px;
      position: relative;
      overflow: hidden;
    }

    .how-stats-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
    }

    .how-stats-strip::after {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, .15) 0%, transparent 65%);
      pointer-events: none;
    }

    .how-stat-item {
      padding: 0 32px;
      border-right: 1px solid rgba(255, 255, 255, .1);
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .how-stat-item:first-child {
      padding-left: 0;
    }

    .how-stat-item:last-child {
      border-right: none;
      padding-right: 0;
    }

    .how-stat-num {
      font-family: var(--font-display);
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      font-variation-settings: 'opsz' 72;
      margin-bottom: 6px;
    }

    .how-stat-num em {
      font-style: normal;
      color: var(--pink-light);
    }

    .how-stat-label {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      line-height: 1.4;
    }



    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 140px 40px 60px;
      }

      .hero h1 {
        font-size: clamp(2.2rem, 6vw, 3.6rem);
      }

      .hero-sub {
        max-width: 100%;
      }

      .hero-float-card.fc1 {
        top: -20px;
        left: -16px;
      }

      .hero-float-card.fc2 {
        bottom: -16px;
        right: -16px;
      }
    }

    @media(max-width:640px) {
      .hero-inner {
        padding: 120px 20px 48px;
      }

      .hero-mini-stats {
        gap: 24px;
      }

      .hero-float-card {
        display: none;
      }

      .btn-hero {
        font-size: .8rem;
        padding: 16px 28px;
      }
    }

    /* Stats row */
    .stats-band {
      background: var(--white);
      border-top: 3px solid var(--pink);
      border-image: linear-gradient(90deg, var(--pink), var(--blue-light), var(--blue)) 1;
      padding: 40px 40px;
    }

    .stats-grid {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid rgba(12, 53, 177, .1);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-num em {
      font-style: normal;
      color: var(--pink);
    }

    .stat-lbl {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ═══════════════════════════════════════════════════════════════════════
       PARA QUEM — White section
    ═══════════════════════════════════════════════════════════════════════ */
    .forwhom {
      padding: 112px 40px;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .forwhom::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--blue-light), var(--blue));
    }

    .forwhom-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 0;
    }

    .fw-card {
      border-radius: var(--r-xl);
      padding: 44px 40px;
      position: relative;
      overflow: hidden;
      transition: transform .3s var(--ease), box-shadow .3s;
    }

    .fw-card:hover {
      transform: translateY(-4px);
    }

    .fw-yes {
      background: var(--off-white);
      border: 1.5px solid var(--border);
    }

    .fw-yes:hover {
      box-shadow: 0 20px 60px rgba(12, 53, 177, .08);
      border-color: rgba(77, 79, 255, .3);
    }

    .fw-no {
      background: #FFF5F9;
      border: 1.5px solid rgba(242, 26, 123, .12);
    }

    .fw-no:hover {
      box-shadow: 0 20px 60px rgba(242, 26, 123, .08);
      border-color: rgba(242, 26, 123, .25);
    }

    .fw-top-bar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
    }

    .fw-yes .fw-top-bar {
      background: linear-gradient(90deg, var(--blue-light), var(--blue));
    }

    .fw-no .fw-top-bar {
      background: linear-gradient(90deg, var(--pink), #c4005e);
    }

    .fw-head {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
    }

    .fw-icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: var(--r-lg);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
    }

    .fw-icon-wrap svg {
      width: 22px;
      height: 22px;
    }

    .fw-yes .fw-icon-wrap {
      color: var(--blue-light);
      background: rgba(77, 79, 255, .08);
      border: 1px solid rgba(77, 79, 255, .15);
    }

    .fw-no .fw-icon-wrap {
      color: var(--pink);
      background: rgba(242, 26, 123, .08);
      border: 1px solid rgba(242, 26, 123, .15);
    }

    .fw-head-title {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--text-dark);
    }

    .fw-head-sub {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-top: 3px;
    }

    .fw-yes .fw-head-sub {
      color: var(--blue-light);
    }

    .fw-no .fw-head-sub {
      color: var(--pink);
    }

    .fw-items {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .fw-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 18px;
      border-radius: var(--r-lg);
      transition: var(--t);
    }

    .fw-yes .fw-item {
      background: var(--white);
      border: 1px solid rgba(12, 53, 177, .06);
    }

    .fw-yes .fw-item:hover {
      border-color: rgba(77, 79, 255, .2);
      background: rgba(77, 79, 255, .03);
    }

    .fw-no .fw-item {
      background: var(--white);
      border: 1px solid rgba(242, 26, 123, .06);
    }

    .fw-no .fw-item:hover {
      border-color: rgba(242, 26, 123, .2);
      background: rgba(242, 26, 123, .02);
    }

    .fw-dot-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
    }

    .fw-yes .fw-dot-icon {
      background: rgba(77, 79, 255, .1);
      color: var(--blue-light);
    }

    .fw-no .fw-dot-icon {
      background: rgba(242, 26, 123, .1);
      color: var(--pink);
    }

    .fw-item-text {
      font-size: .94rem;
      line-height: 1.6;
      color: var(--text-mid);
    }

    .fw-item-text strong {
      color: var(--text-dark);
      font-weight: 600;
    }

    .fw-footer {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(0, 0, 0, .05);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-align: center;
    }

    .fw-yes .fw-footer {
      color: var(--blue-light);
    }

    .fw-no .fw-footer {
      color: var(--pink);
    }

    /* ═══════════════════════════════════════════════════════════════════════
       ENTREGÁVEIS — Blue section
    ═══════════════════════════════════════════════════════════════════════ */
    .deliverables {
      padding: 80px 40px 120px;
      background: linear-gradient(150deg, var(--navy-deep) 0%, #050e3d 50%, #000d2e 100%);
      position: relative;
      overflow: hidden;
    }

    .deliverables::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('imagens/capa-5.webp');
      background-size: cover;
      background-position: center;
      opacity: .12;
      pointer-events: none;
    }

    .deliverables::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(12, 53, 177, .4) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 20%, rgba(242, 26, 123, .15) 0%, transparent 50%);
      pointer-events: none;
    }

    .deliv-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .deliv-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 100px;
      background: rgba(242, 26, 123, 0.1);
      border: 1px solid rgba(242, 26, 123, 0.3);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 28px;
    }
    .deliv-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--pink);
      box-shadow: 0 0 8px var(--pink);
      animation: pulse-dot 2s infinite;
    }

    .deliv-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 28px;
    }

    @media (max-width: 900px) {
      .deliverables { padding: 80px 20px; }
      .deliv-grid {
        display: flex;
        flex-direction: column;
      }
    }

    /* Hero card — spans 7 of 12 columns */
    .deliv-card.dc-hero {
      grid-column: span 7;
    }

    /* Standard card — spans 5 of 12 on row 1, then 4 of 12 each on row 2 */
    .deliv-card.dc2 { grid-column: span 5; }
    .deliv-card.dc3 { grid-column: span 4; }
    .deliv-card.dc4 { grid-column: span 4; }
    .deliv-card.dc5 { grid-column: span 4; }
    .deliv-card.dc6-wide { grid-column: span 12; display: flex; align-items: flex-start; gap: 40px; }

    @media (max-width: 1100px) {
      .deliv-card.dc-hero { grid-column: span 12; }
      .deliv-card.dc2 { grid-column: span 12; }
      .deliv-card.dc3, .deliv-card.dc4, .deliv-card.dc5 { grid-column: span 4; }
      .deliv-card.dc6-wide { grid-column: span 12; }
    }

    @media (max-width: 900px) {
      .deliv-card.dc6-wide { flex-direction: column; gap: 0; }
    }

    .deliv-card {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 20px;
      padding: 40px 36px;
      position: relative;
      transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      overflow: hidden;
    }

    .deliv-card:hover {
      background: rgba(255, 255, 255, .055);
      transform: translateY(-6px);
    }

    /* Decorative BIG number background */
    .deliv-card::before {
      content: attr(data-num);
      position: absolute;
      bottom: -8px;
      right: 12px;
      font-family: var(--font-display);
      font-size: 7rem;
      font-weight: 900;
      line-height: 1;
      color: var(--white);
      opacity: 0.04;
      pointer-events: none;
      letter-spacing: -0.06em;
      transition: opacity 0.4s;
    }
    .deliv-card:hover::before { opacity: 0.07; }

    /* Colored top line per card */
    .deliv-top-line {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      border-radius: 0;
    }

    /* Per-card color theme */
    .dc1 .deliv-top-line, .dc-hero .deliv-top-line { background: var(--pink); }
    .dc2 .deliv-top-line { background: var(--blue-light); }
    .dc3 .deliv-top-line { background: #8B5CF6; }
    .dc4 .deliv-top-line { background: #4DE8C2; }
    .dc5 .deliv-top-line { background: #FFB347; }
    .dc6, .dc6-wide .deliv-top-line { background: #A78BFA; }

    /* Hover glow per card */
    .deliv-card.dc1:hover, .deliv-card.dc-hero:hover {
      border-color: rgba(242, 26, 123, 0.4);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(242, 26, 123, 0.12);
    }
    .deliv-card.dc2:hover {
      border-color: rgba(77, 130, 255, 0.4);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(77, 130, 255, 0.12);
    }
    .deliv-card.dc3:hover {
      border-color: rgba(139, 92, 246, 0.4);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(139, 92, 246, 0.12);
    }
    .deliv-card.dc4:hover {
      border-color: rgba(52, 211, 153, 0.4);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(52, 211, 153, 0.12);
    }
    .deliv-card.dc5:hover {
      border-color: rgba(251, 191, 36, 0.4);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(251, 191, 36, 0.12);
    }
    .deliv-card.dc6-wide:hover {
      border-color: rgba(167, 139, 250, 0.4);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(167, 139, 250, 0.12);
    }

    .deliv-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      border: 1px solid rgba(255, 255, 255, .1);
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .deliv-card:hover .deliv-icon { transform: scale(1.08); }
    .deliv-icon svg { width: 24px; height: 24px; }

    .dc-hero .deliv-icon, .dc1 .deliv-icon { background: rgba(242, 26, 123, .15); border-color: rgba(242, 26, 123, .3); color: #FF6CAB; }
    .dc2 .deliv-icon { background: rgba(77, 79, 255, .15); border-color: rgba(77, 79, 255, .3); color: #818CF8; }
    .dc3 .deliv-icon { background: rgba(139, 92, 246, .15); border-color: rgba(139, 92, 246, .3); color: #C4B5FD; }
    .dc4 .deliv-icon { background: rgba(52, 211, 153, .12); border-color: rgba(52, 211, 153, .25); color: #34D399; }
    .dc5 .deliv-icon { background: rgba(251, 191, 36, .12); border-color: rgba(251, 191, 36, .25); color: #FCD34D; }
    .dc6-wide .deliv-icon { background: rgba(167, 139, 250, .12); border-color: rgba(167, 139, 250, .25); color: #C4B5FD; }

    /* Hero card: bigger icon and special label */
    .deliv-card.dc-hero { padding: 52px 48px; }
    .deliv-card.dc-hero .deliv-icon { width: 64px; height: 64px; border-radius: 18px; margin-bottom: 24px; }
    .deliv-card.dc-hero .deliv-icon svg { width: 30px; height: 30px; }

    .deliv-hero-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--pink);
      background: rgba(242, 26, 123, 0.1);
      border: 1px solid rgba(242, 26, 123, 0.25);
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .deliv-card h4 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .deliv-card.dc-hero h4 { font-size: 1.45rem; margin-bottom: 16px; }

    .deliv-card p {
      font-size: .925rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.7;
    }
    .deliv-card.dc-hero p { font-size: 1.05rem; color: rgba(255, 255, 255, .7); }

    /* Horizontal card (06) */
    .dc6-wide .deliv-icon { margin-bottom: 0; margin-right: 32px; }
    @media (max-width: 900px) {
      .dc6-wide .deliv-icon { margin-right: 0; margin-bottom: 20px; }
    }

    /* ── Tópicos Strip (replaces bento grid) ── */
    .deliv-topics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 8px;
    }

    @media (max-width: 900px) {
      .deliv-topics {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 550px) {
      .deliv-topics {
        grid-template-columns: 1fr;
      }
    }

    .dt-item {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 22px 24px;
      position: relative;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
      cursor: default;
    }

    .dt-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      border-radius: 16px 16px 0 0;
      transition: opacity 0.3s;
      opacity: 0.6;
    }

    .dt-item:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,0.055);
    }

    .dt-item:hover::before {
      opacity: 1;
    }

    /* Color themes per item */
    .dt-c1::before { background: linear-gradient(90deg, var(--pink), #FF6CAB); }
    .dt-c1:hover   { border-color: rgba(242,26,123,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 20px rgba(242,26,123,0.09); }
    .dt-c1 .dt-icon { background: rgba(242,26,123,0.12); border-color: rgba(242,26,123,0.25); color: #FF6CAB; }
    .dt-c1 .dt-num  { color: rgba(242,26,123,0.35); }

    .dt-c2::before { background: linear-gradient(90deg, var(--blue-light), #818CF8); }
    .dt-c2:hover   { border-color: rgba(77,130,255,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 20px rgba(77,130,255,0.09); }
    .dt-c2 .dt-icon { background: rgba(77,130,255,0.12); border-color: rgba(77,130,255,0.25); color: #93C5FD; }
    .dt-c2 .dt-num  { color: rgba(77,130,255,0.35); }

    .dt-c3::before { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }
    .dt-c3:hover   { border-color: rgba(139,92,246,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 20px rgba(139,92,246,0.09); }
    .dt-c3 .dt-icon { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.25); color: #C4B5FD; }
    .dt-c3 .dt-num  { color: rgba(139,92,246,0.35); }

    .dt-c4::before { background: linear-gradient(90deg, #0D9488, #2DD4BF); }
    .dt-c4:hover   { border-color: rgba(13,148,136,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 20px rgba(13,148,136,0.09); }
    .dt-c4 .dt-icon { background: rgba(13,148,136,0.12); border-color: rgba(13,148,136,0.25); color: #5EEAD4; }
    .dt-c4 .dt-num  { color: rgba(13,148,136,0.35); }

    .dt-c5::before { background: linear-gradient(90deg, #D97706, #FBBF24); }
    .dt-c5:hover   { border-color: rgba(217,119,6,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 20px rgba(217,119,6,0.09); }
    .dt-c5 .dt-icon { background: rgba(217,119,6,0.12); border-color: rgba(217,119,6,0.25); color: #FCD34D; }
    .dt-c5 .dt-num  { color: rgba(217,119,6,0.35); }

    .dt-c6::before { background: linear-gradient(90deg, #DB2777, #F472B6); }
    .dt-c6:hover   { border-color: rgba(219,39,119,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 20px rgba(219,39,119,0.09); }
    .dt-c6 .dt-icon { background: rgba(219,39,119,0.12); border-color: rgba(219,39,119,0.25); color: #F9A8D4; }
    .dt-c6 .dt-num  { color: rgba(219,39,119,0.35); }


    /* Number */
    .dt-num {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.04em;
      flex-shrink: 0;
      min-width: 2rem;
    }

    /* Icon */
    .dt-icon {
      width: 40px;
      height: 40px;
      border-radius: 11px;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .dt-item:hover .dt-icon {
      transform: scale(1.1) rotate(-5deg);
    }
    .dt-icon svg {
      width: 18px;
      height: 18px;
    }

    /* Name */
    .dt-name {
      font-size: 0.975rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.35;
    }

    /* ═══════════════════════════════════════════════════════════════════════
       INCLUSO — White section
    ═══════════════════════════════════════════════════════════════════════ */
    .incluso {
      padding: 112px 40px;
      background: var(--white);
      overflow: hidden;
      position: relative;
    }

    .incluso::after {
      content: '';
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, .05) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Bento: 3 cols, 2 rows — zero empty space ── */
    .incluso-bento {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 16px;
    }

    /* Explicit placement — zero empty space */
    .inc-card.ic1 {
      grid-column: 1 / 3;
      grid-row: 1;
    }

    .inc-card.ic2 {
      grid-column: 3 / 4;
      grid-row: 1;
    }

    .inc-card.ic3 {
      grid-column: 1 / 2;
      grid-row: 2;
    }

    .inc-card.ic4 {
      grid-column: 2 / 3;
      grid-row: 2;
    }

    .inc-card.ic5 {
      grid-column: 3 / 4;
      grid-row: 2;
    }

    /* ic1 wide: bigger text, horizontal chips row */
    .inc-card.ic1 h4 {
      font-size: 1.25rem;
    }

    .inc-card.ic1 p {
      font-size: .975rem;
      max-width: 520px;
    }

    .inc-chips {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    /* ic2 tall: extra breathing room */
    .inc-card.ic2 {
      padding: 44px 36px;
      justify-content: space-between;
    }

    /* Base card */
    .inc-card {
      padding: 36px 32px;
      border-radius: 24px;
      background: var(--white);
      border: 1.5px solid #EAECF4;
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: relative;
      overflow: hidden;
      transition: var(--t);
      box-shadow: 0 1px 4px rgba(12, 53, 177, .04), 0 4px 24px rgba(12, 53, 177, .04);
    }

    .inc-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(12, 53, 177, .1);
      border-color: rgba(12, 53, 177, .15);
    }

    /* Top accent bar */
    .inc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 24px 24px 0 0;
    }

    .ic1::before {
      background: linear-gradient(90deg, var(--pink), #e0006e);
    }

    .ic2::before {
      background: linear-gradient(90deg, var(--blue-light), var(--blue));
    }

    .ic3::before {
      background: linear-gradient(90deg, #8B5CF6, #6D28D9);
    }

    .ic4::before {
      background: linear-gradient(90deg, #0DBEAA, #0891B2);
    }

    .ic5::before {
      background: linear-gradient(90deg, #F59E0B, #D97706);
    }

    /* Corner glow */
    .inc-card::after {
      content: '';
      position: absolute;
      bottom: -32px;
      right: -32px;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      pointer-events: none;
      transition: transform .4s var(--ease);
    }

    .inc-card:hover::after {
      transform: scale(1.7);
    }

    .ic1::after {
      background: rgba(242, 26, 123, .06);
    }

    .ic2::after {
      background: rgba(77, 79, 255, .07);
    }

    .ic3::after {
      background: rgba(139, 92, 246, .07);
    }

    .ic4::after {
      background: rgba(13, 190, 170, .07);
    }

    .ic5::after {
      background: rgba(245, 158, 11, .07);
    }

    .inc-icon-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      z-index: 1;
      position: relative;
    }

    .inc-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .inc-icon svg {
      width: 24px;
      height: 24px;
    }

    .ic1 .inc-icon {
      background: rgba(242, 26, 123, .08);
      border: 1px solid rgba(242, 26, 123, .15);
      color: var(--pink);
    }

    .ic2 .inc-icon {
      background: rgba(77, 79, 255, .08);
      border: 1px solid rgba(77, 79, 255, .15);
      color: var(--blue-light);
    }

    .ic3 .inc-icon {
      background: rgba(139, 92, 246, .08);
      border: 1px solid rgba(139, 92, 246, .15);
      color: #8B5CF6;
    }

    .ic4 .inc-icon {
      background: rgba(13, 190, 170, .08);
      border: 1px solid rgba(13, 190, 170, .15);
      color: #0D9488;
    }

    .ic5 .inc-icon {
      background: rgba(245, 158, 11, .08);
      border: 1px solid rgba(245, 158, 11, .15);
      color: #D97706;
    }

    .inc-card h4 {
      font-family: var(--font-body);
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.35;
      z-index: 1;
      position: relative;
    }

    .inc-card p {
      font-size: .95rem;
      line-height: 1.72;
      color: var(--text-muted);
      flex: 1;
      z-index: 1;
      position: relative;
    }

    .inc-card p strong {
      color: var(--text-dark);
      font-weight: 600;
    }

    .inc-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: var(--r-full);
      font-size: .72rem;
      font-weight: 700;
      width: fit-content;
      z-index: 1;
      position: relative;
      letter-spacing: .02em;
    }

    .ic1 .inc-badge {
      background: rgba(242, 26, 123, .08);
      color: var(--pink);
      border: 1px solid rgba(242, 26, 123, .15);
    }

    .ic2 .inc-badge {
      background: rgba(77, 79, 255, .08);
      color: var(--blue-light);
      border: 1px solid rgba(77, 79, 255, .15);
    }

    .ic3 .inc-badge {
      background: rgba(139, 92, 246, .08);
      color: #7C3AED;
      border: 1px solid rgba(139, 92, 246, .15);
    }

    .ic4 .inc-badge {
      background: rgba(13, 190, 170, .08);
      color: #0D9488;
      border: 1px solid rgba(13, 190, 170, .15);
    }

    .ic5 .inc-badge {
      background: rgba(245, 158, 11, .08);
      color: #B45309;
      border: 1px solid rgba(245, 158, 11, .15);
    }


    /* ── Como Funciona (drop-in replacement) ── */
    .how {
      padding: 120px 40px 112px;
      background: var(--off-white);
      position: relative;
      overflow: hidden;
    }

    /* Orb decorativo sutil */
    .how::before {
      content: '';
      position: absolute;
      top: -120px;
      left: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(77, 79, 255, .05) 0%, transparent 70%);
      pointer-events: none;
    }

    .how::after {
      content: '';
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, .04) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── BLOCO 1 — FASES ──────────────────────────────────────────── */
    .how-phases-section {
      margin-bottom: 80px;
    }

    .phases-label {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
      justify-content: center;
    }

    .phases-label-line {
      flex: 1;
      max-width: 200px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(12, 53, 177, .15));
    }

    .phases-label-line.right {
      background: linear-gradient(90deg, rgba(12, 53, 177, .15), transparent);
    }

    .phases-label-text {
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* Grid 2×2 das fases */
    .phases-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      position: relative;
    }

    /* Linha conectora diagonal no centro do grid */
    .phases-grid-connector {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 48px;
      height: 48px;
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      box-shadow: var(--shadow-sm);
    }

    .phases-grid-connector svg {
      width: 18px;
      height: 18px;
      color: var(--blue-light);
    }

    /* Card de fase */
    .phase-card-new {
      background: var(--white);
      border: 1.5px solid #EAECF4;
      border-radius: 28px;
      padding: 36px 36px 32px;
      position: relative;
      overflow: hidden;
      transition: var(--t);
      display: flex;
      flex-direction: column;
      gap: 0;
      cursor: default;
    }

    .phase-card-new:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 60px rgba(12, 53, 177, .1);
      border-color: var(--ph-color, var(--pink));
    }

    /* Barra superior accent */
    .phase-card-new::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 28px 28px 0 0;
      background: var(--ph-grad);
    }

    /* Glow de fundo no hover */
    .phase-card-new::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(ellipse, var(--ph-glow, rgba(242, 26, 123, .07)) 0%, transparent 70%);
      pointer-events: none;
      transition: transform .5s var(--ease), opacity .5s;
      opacity: 0;
    }

    .phase-card-new:hover::after {
      opacity: 1;
      transform: scale(1.4);
    }

    /* Variantes de cor */
    .ph1 {
      --ph-color: var(--pink);
      --ph-grad: linear-gradient(90deg, var(--pink), #e0006e);
      --ph-glow: rgba(242, 26, 123, .06);
      --ph-bg: rgba(242, 26, 123, .05);
      --ph-bd: rgba(242, 26, 123, .15);
    }

    .ph2 {
      --ph-color: var(--blue-light);
      --ph-grad: linear-gradient(90deg, var(--blue-light), var(--blue));
      --ph-glow: rgba(77, 79, 255, .07);
      --ph-bg: rgba(77, 79, 255, .05);
      --ph-bd: rgba(77, 79, 255, .15);
    }

    .ph3 {
      --ph-color: #8B5CF6;
      --ph-grad: linear-gradient(90deg, #8B5CF6, #6D28D9);
      --ph-glow: rgba(139, 92, 246, .07);
      --ph-bg: rgba(139, 92, 246, .05);
      --ph-bd: rgba(139, 92, 246, .15);
    }

    .ph4 {
      --ph-color: #0DBEAA;
      --ph-grad: linear-gradient(90deg, #0DBEAA, #0891B2);
      --ph-glow: rgba(13, 190, 170, .07);
      --ph-bg: rgba(13, 190, 170, .05);
      --ph-bd: rgba(13, 190, 170, .15);
    }

    /* Topo: número + badge fase */
    .phase-top-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .phase-big-num {
      font-family: var(--font-display);
      font-size: 5rem;
      font-weight: 700;
      line-height: 1;
      color: var(--ph-color);
      opacity: .12;
      letter-spacing: -.04em;
      font-variation-settings: 'opsz' 72;
      user-select: none;
      transition: opacity .3s;
    }

    .phase-card-new:hover .phase-big-num {
      opacity: .2;
    }

    .phase-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 16px;
      border-radius: var(--r-full);
      background: var(--ph-bg);
      border: 1px solid var(--ph-bd);
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ph-color);
    }

    .phase-tag-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--ph-color);
      flex-shrink: 0;
    }

    /* Ícone central */
    .phase-icon-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }

    .phase-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      flex-shrink: 0;
      background: var(--ph-bg);
      border: 1.5px solid var(--ph-bd);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ph-color);
      transition: var(--t);
    }

    .phase-card-new:hover .phase-icon-wrap {
      background: var(--ph-color);
      color: white;
      border-color: var(--ph-color);
      box-shadow: 0 8px 24px var(--ph-glow);
    }

    .phase-icon-wrap svg {
      width: 22px;
      height: 22px;
      stroke-width: 1.7;
    }

    .phase-title-block {
      flex: 1;
    }

    .phase-name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -.02em;
      color: var(--text-dark);
      font-variation-settings: 'opsz' 48;
      margin-bottom: 4px;
    }

    .phase-timing {
      font-size: .72rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: .04em;
    }

    /* Divisória */
    .phase-divider {
      width: 100%;
      height: 1px;
      background: rgba(12, 53, 177, .07);
      margin: 20px 0;
    }

    /* Outcomes list */
    .phase-outcomes-new {
      display: flex;
      flex-direction: column;
      gap: 9px;
      flex: 1;
    }

    .phase-outcome-new {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .875rem;
      color: var(--text-mid);
      line-height: 1.55;
      padding: 9px 12px;
      border-radius: 10px;
      border: 1px solid transparent;
      transition: background .2s, border-color .2s;
    }

    .phase-outcome-new:hover {
      background: var(--ph-bg);
      border-color: var(--ph-bd);
    }

    .phase-outcome-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 1px;
      background: var(--ph-bg);
      border: 1.5px solid var(--ph-bd);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .phase-outcome-dot svg {
      width: 9px;
      height: 9px;
      stroke-width: 2.5;
      color: var(--ph-color);
    }

    /* Footer do card — count badge */
    .phase-footer {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid rgba(12, 53, 177, .06);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .phase-module-count {
      font-size: .72rem;
      font-weight: 700;
      color: var(--ph-color);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .phase-module-count-pill {
      background: var(--ph-bg);
      border: 1px solid var(--ph-bd);
      border-radius: var(--r-full);
      padding: 3px 10px;
      font-size: .65rem;
    }

    .phase-arrow-link {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: .72rem;
      font-weight: 600;
      color: var(--ph-color);
      opacity: 0;
      transform: translateX(-6px);
      transition: var(--t);
    }

    .phase-card-new:hover .phase-arrow-link {
      opacity: 1;
      transform: translateX(0);
    }

    .phase-arrow-link svg {
      width: 13px;
      height: 13px;
    }


    /* ── BLOCO 2 — BARRA ESTATÍSTICAS HORIZONTAIS ───────────────── */
    .how-stats-strip {
      background: linear-gradient(135deg, var(--navy) 0%, #0C35B1 100%);
      border-radius: 24px;
      padding: 36px 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-bottom: 72px;
      position: relative;
      overflow: hidden;
    }

    .how-stats-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
    }

    .how-stats-strip::after {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, .15) 0%, transparent 65%);
      pointer-events: none;
    }

    .how-stat-item {
      padding: 0 32px;
      border-right: 1px solid rgba(255, 255, 255, .1);
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .how-stat-item:first-child {
      padding-left: 0;
    }

    .how-stat-item:last-child {
      border-right: none;
      padding-right: 0;
    }

    .how-stat-num {
      font-family: var(--font-display);
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      font-variation-settings: 'opsz' 72;
      margin-bottom: 6px;
    }

    .how-stat-num em {
      font-style: normal;
      color: var(--pink-light);
    }

    .how-stat-label {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      line-height: 1.4;
    }


    /* ── RESPONSIVE ──────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .phases-grid {
        grid-template-columns: 1fr;
      }

      .phases-grid-connector {
        display: none;
      }

      .how-stats-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .how-stat-item:nth-child(2) {
        border-right: none;
      }
    }

    @media (max-width: 768px) {
      .how {
        padding: 80px 20px 72px;
      }

      .phases-grid {
        grid-template-columns: 1fr;
      }

      .how-stats-strip {
        grid-template-columns: 1fr 1fr;
        padding: 28px 24px;
      }

      .how-stat-item {
        padding: 0 16px;
      }

      .wrap {
        padding: 0 20px;
      }
    }

    /* ── Escolha sua Trilha (drop-in replacement) ── */
    .trails {
      padding: 120px 40px 112px;
      background:
        radial-gradient(ellipse 70% 55% at 5% 20%, rgba(77, 79, 255, .18) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 95% 80%, rgba(242, 26, 123, .14) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 50% 50%, rgba(1, 13, 67, .6) 0%, transparent 80%),
        #030a2e;
      position: relative;
      overflow: hidden;
    }

    /* Dot grid overlay */
    .trails::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }

    /* Linha decorativa diagonal */
    .trails::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom,
          transparent 0%,
          rgba(255, 255, 255, .06) 20%,
          rgba(255, 255, 255, .06) 80%,
          transparent 100%);
      pointer-events: none;
    }

    /* ── HEADER DA SEÇÃO ── */
    .trails-header {
      text-align: center;
      margin-bottom: 72px;
      position: relative;
      z-index: 2;
    }

    .trails-header .section-title {
      color: var(--white);
    }

    /* ── SELECTOR DE TRILHA — alinhado acima de cada card ── */
    .trail-col {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .trail-sel-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 11px 26px;
      border-radius: var(--r-full);
      font-family: var(--font-body);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--t);
      border: 1.5px solid;
      width: 100%;
    }

    .trail-sel-btn-a {
      border-color: var(--blue-light);
      background: rgba(77, 79, 255, .15);
      color: var(--blue-light);
      box-shadow: 0 0 24px rgba(77, 79, 255, .2);
    }

    .trail-sel-btn-a:hover {
      background: rgba(77, 79, 255, .25);
      box-shadow: 0 0 32px rgba(77, 79, 255, .3);
    }

    .trail-sel-btn-b {
      border-color: var(--pink);
      background: rgba(242, 26, 123, .12);
      color: var(--pink-light);
      box-shadow: 0 0 24px rgba(242, 26, 123, .2);
    }

    .trail-sel-btn-b:hover {
      background: rgba(242, 26, 123, .22);
      box-shadow: 0 0 32px rgba(242, 26, 123, .3);
    }

    .trail-sel-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      flex-shrink: 0;
      box-shadow: 0 0 6px currentColor;
      animation: dot-blink 2s ease-in-out infinite;
    }

    @keyframes dot-blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    /* ── GRID PRINCIPAL ── */
    .trails-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0;
      align-items: start;
      position: relative;
      z-index: 2;
      max-width: 1040px;
      margin: 0 auto;
    }

    /* ── DIVISOR CENTRAL ── */
    .trail-vs-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      gap: 16px;
      position: relative;
      z-index: 3;
      align-self: stretch;
    }

    .trail-vs-line {
      flex: 1;
      width: 1px;
      background: linear-gradient(to bottom,
          transparent, rgba(255, 255, 255, .1) 20%,
          rgba(255, 255, 255, .1) 80%, transparent);
      min-height: 40px;
    }

    .trail-vs-line:first-child {
      flex: 0 0 80px;
    }

    .trail-vs-badge {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(5, 10, 40, .9);
      border: 1.5px solid rgba(255, 255, 255, .12);
      backdrop-filter: blur(16px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: .7rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .4);
      letter-spacing: .06em;
      font-variation-settings: 'opsz' 36;
    }

    .trail-vs-or {
      writing-mode: vertical-rl;
      font-size: .6rem;
      font-weight: 800;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .18);
    }

    /* ── TRAIL CARDS ── */
    .trail-card-new {
      background: rgba(255, 255, 255, .03);
      border-radius: 28px;
      padding: 44px 40px 40px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--t);
      border: 1px solid rgba(255, 255, 255, .07);
    }

    .trail-card-new:hover {
      background: rgba(255, 255, 255, .055);
      transform: translateY(-6px);
    }

    /* Barra superior */
    .trail-card-new::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
    }

    .tc-a::before {
      background: linear-gradient(90deg, var(--blue-light), #8B5CF6);
    }

    .tc-b::before {
      background: linear-gradient(90deg, var(--pink), #c4005e);
    }

    /* Glow de fundo */
    .trail-card-new::after {
      content: '';
      position: absolute;
      pointer-events: none;
      border-radius: 50%;
      opacity: 0;
      transition: opacity .5s, transform .5s var(--ease);
    }

    .tc-a::after {
      bottom: -100px;
      right: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(77, 79, 255, .15) 0%, transparent 65%);
    }

    .tc-b::after {
      bottom: -100px;
      left: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(242, 26, 123, .12) 0%, transparent 65%);
    }

    .trail-card-new:hover::after {
      opacity: 1;
      transform: scale(1.3);
    }

    /* ── TOPO DO CARD ── */
    .tc-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .tc-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 18px;
      border-radius: var(--r-full);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .tc-a .tc-badge {
      background: rgba(77, 79, 255, .15);
      border: 1px solid rgba(77, 79, 255, .28);
      color: var(--blue-light);
    }

    .tc-b .tc-badge {
      background: rgba(242, 26, 123, .12);
      border: 1px solid rgba(242, 26, 123, .25);
      color: var(--pink-light);
    }

    .tc-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 6px currentColor;
      flex-shrink: 0;
    }

    .tc-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--t);
    }

    .tc-a .tc-icon-wrap {
      background: rgba(77, 79, 255, .12);
      border: 1px solid rgba(77, 79, 255, .22);
      color: var(--blue-light);
    }

    .tc-b .tc-icon-wrap {
      background: rgba(242, 26, 123, .1);
      border: 1px solid rgba(242, 26, 123, .2);
      color: var(--pink-light);
    }

    .trail-card-new:hover .tc-icon-wrap {
      transform: scale(1.08) rotate(-4deg);
    }

    .tc-icon-wrap svg {
      width: 22px;
      height: 22px;
      stroke-width: 1.6;
    }

    /* ── TÍTULO ── */
    .tc-title {
      font-family: var(--font-display);
      font-size: clamp(1.7rem, 2.5vw, 2.2rem);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -.025em;
      font-variation-settings: 'opsz' 48;
      color: var(--white);
      margin-bottom: 6px;
    }

    .tc-sub {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .tc-a .tc-sub {
      color: rgba(77, 79, 255, .6);
    }

    .tc-b .tc-sub {
      color: rgba(242, 26, 123, .6);
    }

    /* ── DESCRIÇÃO ── */
    .tc-desc {
      font-size: .95rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .tc-desc strong {
      color: rgba(255, 255, 255, .88);
      font-weight: 600;
    }

    /* ── DIVISOR INTERNO ── */
    .tc-divider {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, .07);
      margin: 0 0 24px;
    }

    /* ── FEATURES ── */
    .tc-features {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 24px;
      flex: 1;
    }

    .tc-feat {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      font-size: .9rem;
      color: rgba(255, 255, 255, .72);
      line-height: 1.55;
      padding: 9px 12px;
      border-radius: 10px;
      border: 1px solid transparent;
      transition: background .2s, border-color .2s;
    }

    .tc-a .tc-feat:hover {
      background: rgba(77, 79, 255, .06);
      border-color: rgba(77, 79, 255, .15);
    }

    .tc-b .tc-feat:hover {
      background: rgba(242, 26, 123, .05);
      border-color: rgba(242, 26, 123, .12);
    }

    .tc-feat-icon {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .tc-a .tc-feat-icon {
      background: rgba(77, 79, 255, .15);
      color: var(--blue-light);
    }

    .tc-b .tc-feat-icon {
      background: rgba(242, 26, 123, .15);
      color: var(--pink-light);
    }

    .tc-feat-icon svg {
      width: 11px;
      height: 11px;
      stroke-width: 2.5;
    }

    /* ── OUTCOME BOX ── */
    .tc-outcome {
      border-radius: 14px;
      padding: 18px 20px;
      margin-bottom: 28px;
      font-size: .88rem;
      line-height: 1.65;
    }

    .tc-a .tc-outcome {
      background: rgba(77, 79, 255, .08);
      border: 1px solid rgba(77, 79, 255, .18);
      color: rgba(255, 255, 255, .75);
    }

    .tc-b .tc-outcome {
      background: rgba(242, 26, 123, .07);
      border: 1px solid rgba(242, 26, 123, .16);
      color: rgba(255, 255, 255, .75);
    }

    .tc-outcome-label {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .tc-a .tc-outcome-label {
      color: var(--blue-light);
    }

    .tc-b .tc-outcome-label {
      color: var(--pink-light);
    }

    .tc-outcome-label::before {
      content: '';
      width: 16px;
      height: 1px;
      background: currentColor;
    }

    .tc-outcome strong {
      color: var(--white);
      font-weight: 600;
    }

    /* ── CTA DO CARD ── */
    .tc-cta {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: var(--r-full);
      font-family: var(--font-body);
      font-size: .84rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      transition: var(--t);
      justify-content: center;
    }

    .tc-a .tc-cta {
      background: rgba(77, 79, 255, .18);
      border: 1.5px solid rgba(77, 79, 255, .35);
      color: #a5b4fc;
    }

    .tc-a .tc-cta:hover {
      background: rgba(77, 79, 255, .3);
      border-color: var(--blue-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(77, 79, 255, .25);
    }

    .tc-b .tc-cta {
      background: linear-gradient(135deg, var(--pink), #c4005e);
      border: none;
      color: var(--white);
      box-shadow: 0 8px 28px rgba(242, 26, 123, .35);
    }

    .tc-b .tc-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(242, 26, 123, .5);
      background: linear-gradient(135deg, #e0166f, #a80055);
    }

    .tc-cta-arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .25s var(--ease);
    }

    .tc-a .tc-cta-arrow {
      background: rgba(77, 79, 255, .2);
      color: var(--blue-light);
    }

    .tc-b .tc-cta-arrow {
      background: rgba(255, 255, 255, .15);
      color: var(--white);
    }

    .tc-cta:hover .tc-cta-arrow {
      transform: translateX(4px);
    }

    .tc-cta-arrow svg {
      width: 13px;
      height: 13px;
    }

    /* ── NOTA INFERIOR (idêntica ao original) ── */
    .trail-note {
      margin-top: 52px;
      padding: 22px 32px;
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: var(--r-lg);
      font-size: .9rem;
      color: rgba(255, 255, 255, .45);
      font-style: italic;
      text-align: center;
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .trail-note strong {
      color: rgba(255, 255, 255, .8);
      font-style: normal;
      font-weight: 600;
    }

    .trail-note::before {
      content: '"';
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 600;
      color: rgba(242, 26, 123, .2);
      line-height: 1;
      font-variation-settings: 'opsz' 72;
    }

    /* ── BÔNUS STRIP — abaixo dos cards ── */
    .trail-bonus-strip {
      display: flex;
      align-items: center;
      gap: 0;
      max-width: 1040px;
      margin: 32px auto 0;
      background: rgba(255, 255, 255, .025);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      z-index: 2;
    }

    .trail-bonus-item {
      flex: 1;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-right: 1px solid rgba(255, 255, 255, .06);
      transition: background .2s;
    }

    .trail-bonus-item:last-child {
      border-right: none;
    }

    .trail-bonus-item:hover {
      background: rgba(255, 255, 255, .03);
    }

    .trail-bonus-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      flex-shrink: 0;
      background: rgba(242, 26, 123, .1);
      border: 1px solid rgba(242, 26, 123, .18);
      color: var(--pink);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trail-bonus-icon svg {
      width: 16px;
      height: 16px;
      stroke-width: 1.6;
    }

    .trail-bonus-text {
      font-size: .8rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.4;
    }

    .trail-bonus-text strong {
      color: rgba(255, 255, 255, .8);
      font-weight: 600;
      display: block;
      font-size: .78rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width:900px) {
      .trails-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .trail-vs-col {
        flex-direction: row;
        padding: 0;
        gap: 12px;
      }

      .trail-vs-line {
        flex: 1;
        height: 1px;
        width: auto;
        min-height: 0;
      }

      .trail-vs-or {
        writing-mode: horizontal-tb;
      }

      .trail-bonus-strip {
        flex-direction: column;
      }

      .trail-bonus-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
      }

      .trail-bonus-item:last-child {
        border-bottom: none;
      }
    }

    @media (max-width:640px) {
      .trails {
        padding: 80px 20px 72px;
      }

      .wrap {
        padding: 0 20px;
      }

      .tc-title {
        font-size: 1.7rem;
      }

      .trail-selector {
        flex-wrap: wrap;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════════
       MÓDULOS — Premium Sidebar Layout
    ═══════════════════════════════════════════════════════════════════════ */

    .modules {
      padding: 112px 0;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .modules::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, .04) 0%, transparent 65%);
      pointer-events: none;
    }

    .modules::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(77, 79, 255, .04) 0%, transparent 65%);
      pointer-events: none;
    }

    .modules .wrap {
      position: relative;
      z-index: 1;
    }

    /* ── Phase pill nav ──────────────────────────────────────────── */
    .mod-pill-nav {
      display: flex;
      align-items: center;
      gap: 4px;
      background: var(--off-white);
      border: 1.5px solid #EAECF4;
      border-radius: var(--r-full);
      padding: 5px;
      margin-bottom: 56px;
      position: relative;
      overflow: hidden;
    }

    .mpn-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 20px;
      border-radius: 30px;
      font-size: .78rem;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      transition: all .35s var(--ease);
      border: none;
      background: none;
      white-space: nowrap;
      position: relative;
      z-index: 1;
    }

    .mpn-btn:hover {
      color: var(--text-dark);
    }

    .mpn-btn.active {
      background: var(--white);
      color: var(--mpn-c);
      box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    }

    .mpn-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--mpn-c);
      opacity: .45;
      flex-shrink: 0;
      transition: opacity .3s;
    }

    .mpn-btn.active .mpn-dot {
      opacity: 1;
    }

    .mpn-btn[data-p="1"] {
      --mpn-c: var(--pink);
    }

    .mpn-btn[data-p="2"] {
      --mpn-c: var(--blue-light);
    }

    .mpn-btn[data-p="3"] {
      --mpn-c: #8B5CF6;
    }

    .mpn-btn[data-p="4"] {
      --mpn-c: var(--pink);
    }

    .mpn-txt {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }

    .mpn-phase {
      font-size: .58rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      opacity: .6;
      line-height: 1;
      margin-bottom: 2px;
    }

    .mpn-btn.active .mpn-phase {
      opacity: .9;
      color: var(--mpn-c);
    }

    .mpn-name {
      font-size: .78rem;
      font-weight: 700;
      line-height: 1;
    }

    .mpn-count {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .06em;
      opacity: .45;
    }

    .mpn-btn.active .mpn-count {
      opacity: .7;
    }

    /* ── Sidebar layout ─────────────────────────────────────────── */
    .mod-layout {
      width: 100%;
    }

    .mod-sidebar {
      position: sticky;
      top: 108px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .mod-sidebar-lede {
      padding: 0 6px 14px;
      border-bottom: 1px solid #EAECF4;
      margin-bottom: 6px;
    }

    .mod-sidebar-kicker {
      font-size: .6rem;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: block;
      margin-bottom: 4px;
    }

    .mod-sidebar-headline {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1;
      font-variation-settings: "opsz" 72;
    }

    .mod-sidebar-headline em {
      font-style: italic;
      color: var(--pink);
      font-size: 1.1rem;
    }

    .msb-v2 {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1.5px solid #EAECF4;
      background: var(--white);
      cursor: pointer;
      transition: all .3s var(--ease);
      text-align: left;
      position: relative;
      overflow: hidden;
    }

    .msb-v2::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--msbv-c);
      transform: scaleY(0) scaleX(0);
      transition: transform .35s var(--ease);
      border-radius: 3px 0 0 3px;
    }

    .msb-v2:hover {
      border-color: rgba(12, 53, 177, .15);
      background: var(--off-white);
    }

    .msb-v2.active {
      background: rgba(12, 53, 177, .02);
      border-color: var(--msbv-c);
      box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    }

    .msb-v2.active::after {
      transform: scaleY(1) scaleX(1);
    }

    .msb-v2[data-p="1"] {
      --msbv-c: var(--pink);
    }

    .msb-v2[data-p="2"] {
      --msbv-c: var(--blue-light);
    }

    .msb-v2[data-p="3"] {
      --msbv-c: #8B5CF6;
    }

    .msb-v2[data-p="4"] {
      --msbv-c: var(--pink);
    }

    .msb-num-wrap {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      flex-shrink: 0;
      background: rgba(12, 53, 177, .05);
      border: 1.5px solid #EAECF4;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s;
    }

    .msb-v2.active .msb-num-wrap {
      background: var(--msbv-c);
      border-color: var(--msbv-c);
    }

    .msb-num-val {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-muted);
      font-variation-settings: "opsz" 72;
      transition: color .3s;
      line-height: 1;
    }

    .msb-v2.active .msb-num-val {
      color: var(--white);
    }

    .msb-info {
      flex: 1;
      min-width: 0;
    }

    .msb-fase-tag {
      font-size: .58rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--msbv-c);
      opacity: .65;
      display: block;
      margin-bottom: 2px;
      line-height: 1;
    }

    .msb-v2.active .msb-fase-tag {
      opacity: 1;
    }

    .msb-v2-title {
      font-size: .8rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.25;
    }

    .msb-v2-sub {
      font-size: .68rem;
      color: var(--text-muted);
      margin-top: 2px;
      line-height: 1.2;
    }

    .msb-v2-badge {
      flex-shrink: 0;
      font-size: .6rem;
      font-weight: 700;
      background: rgba(12, 53, 177, .05);
      color: var(--text-muted);
      border: 1px solid #EAECF4;
      border-radius: var(--r-full);
      padding: 3px 9px;
      transition: all .3s;
    }

    .msb-v2.active .msb-v2-badge {
      background: var(--msbv-c);
      color: white;
      border-color: var(--msbv-c);
    }

    /* ── Content panels ─────────────────────────────────────────── */
    .mod-pv2 {
      display: none;
    }

    .mod-pv2.active {
      display: flex;
      flex-direction: column;
      gap: 2px;
      animation: mpv2-in .4s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    @keyframes mpv2-in {
      from {
        opacity: 0;
        transform: translateX(10px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Phase header */
    .mph {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 24px;
      background: var(--mph-bg);
      border: 1.5px solid var(--mph-bd);
      border-radius: 18px 18px 0 0;
      position: relative;
      overflow: hidden;
    }

    .mph::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--mph-c);
    }

    .mph::after {
      content: '';
      position: absolute;
      right: -40px;
      top: -40px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(ellipse, var(--mph-glow) 0%, transparent 70%);
    }

    .mph-ico {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      flex-shrink: 0;
      background: rgba(255, 255, 255, .85);
      border: 1.5px solid var(--mph-bd);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .mph-ico svg {
      width: 20px;
      height: 20px;
      color: var(--mph-c);
      stroke-width: 1.7;
    }

    .mph-txt {
      position: relative;
      z-index: 1;
      flex: 1;
    }

    .mph-fase {
      font-size: .6rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--mph-c);
      margin-bottom: 3px;
    }

    .mph-title {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.2;
      font-variation-settings: "opsz" 72;
    }

    .mph-title em {
      color: var(--mph-c);
      font-style: italic;
    }

    .mph-badge {
      flex-shrink: 0;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .04em;
      color: var(--mph-c);
      background: rgba(255, 255, 255, .9);
      border: 1px solid var(--mph-bd);
      border-radius: var(--r-full);
      padding: 5px 14px;
      position: relative;
      z-index: 1;
    }

    /* Color tokens per phase */
    .mod-pv2[data-p="1"] {
      --mph-c: var(--pink);
      --mph-bg: rgba(242, 26, 123, .04);
      --mph-bd: rgba(242, 26, 123, .15);
      --mph-glow: rgba(242, 26, 123, .12);
      --mhv: var(--pink);
      --mhv-bg: rgba(242, 26, 123, .04);
      --mhv-bd: rgba(242, 26, 123, .15);
    }

    .mod-pv2[data-p="2"] {
      --mph-c: var(--blue-light);
      --mph-bg: rgba(77, 79, 255, .04);
      --mph-bd: rgba(77, 79, 255, .15);
      --mph-glow: rgba(77, 79, 255, .12);
      --mhv: var(--blue-light);
      --mhv-bg: rgba(77, 79, 255, .04);
      --mhv-bd: rgba(77, 79, 255, .15);
    }

    .mod-pv2[data-p="3"] {
      --mph-c: #8B5CF6;
      --mph-bg: rgba(139, 92, 246, .04);
      --mph-bd: rgba(139, 92, 246, .15);
      --mph-glow: rgba(139, 92, 246, .12);
      --mhv: #8B5CF6;
      --mhv-bg: rgba(139, 92, 246, .04);
      --mhv-bd: rgba(139, 92, 246, .15);
    }

    .mod-pv2[data-p="4"] {
      --mph-c: var(--pink);
      --mph-bg: rgba(242, 26, 123, .04);
      --mph-bd: rgba(242, 26, 123, .15);
      --mph-glow: rgba(242, 26, 123, .12);
      --mhv: var(--pink);
      --mhv-bg: rgba(242, 26, 123, .04);
      --mhv-bd: rgba(242, 26, 123, .15);
    }

    /* Module list */
    .modv-list {
      border: 1.5px solid var(--mph-bd);
      border-top: none;
      border-radius: 0 0 18px 18px;
      overflow: hidden;
    }

    .modv-item {
      border-bottom: 1px solid #F3F4F6;
    }

    .modv-item:last-child {
      border-bottom: none;
    }

    .modv-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 15px 22px;
      background: #FAFAFA;
      border: none;
      cursor: pointer;
      text-align: left;
      transition: background .2s;
    }

    .modv-trigger:hover {
      background: #F5F5F8;
    }

    .modv-item.open .modv-trigger {
      background: var(--mhv-bg);
    }

    .modv-seq {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      flex-shrink: 0;
      background: var(--white);
      border: 1.5px solid #EAECF4;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s var(--ease);
    }

    .modv-item.open .modv-seq {
      background: var(--mhv);
      border-color: var(--mhv);
    }

    .modv-num {
      font-family: var(--font-display);
      font-size: .9rem;
      font-weight: 700;
      color: var(--text-muted);
      line-height: 1;
      font-variation-settings: "opsz" 72;
      transition: color .3s;
    }

    .modv-item.open .modv-num {
      color: var(--white);
    }

    .modv-txt {
      flex: 1;
    }

    .modv-lbl {
      font-size: .58rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--mhv);
      opacity: .65;
      margin-bottom: 2px;
    }

    .modv-item.open .modv-lbl {
      opacity: 1;
    }

    .modv-name {
      font-size: .88rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.35;
    }

    .modv-arrow {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--off-white);
      border: 1px solid #E5E7EB;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .modv-arrow svg {
      width: 12px;
      height: 12px;
      color: var(--text-muted);
      transition: color .3s;
    }

    .modv-item.open .modv-arrow {
      background: var(--mhv);
      border-color: var(--mhv);
      transform: rotate(180deg);
    }

    .modv-item.open .modv-arrow svg {
      color: white;
    }

    .modv-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modv-body-in {
      padding: 6px 22px 18px 80px;
    }

    .topicv-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .topicv-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .875rem;
      color: var(--text-mid);
      line-height: 1.65;
      padding: 8px 12px;
      border-radius: 10px;
      background: rgba(12, 53, 177, .02);
      border: 1px solid transparent;
      transition: background .2s, border-color .2s;
    }

    .topicv-list li:hover {
      background: rgba(12, 53, 177, .04);
      border-color: var(--border);
    }

    .topicv-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 2px;
      background: var(--mhv-bg);
      border: 1.5px solid var(--mhv-bd);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .topicv-dot::after {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--mhv);
    }

    .modv-note {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 12px;
      padding: 12px 16px;
      background: var(--mhv-bg);
      border-left: 3px solid var(--mhv);
      border-radius: 0 10px 10px 0;
      font-size: .83rem;
      color: var(--text-muted);
      font-style: italic;
      line-height: 1.6;
    }

    .modv-note strong {
      color: var(--mhv);
      font-style: normal;
    }

    /* ── Responsive ─────────────────────────────────────────────── */
    @media(max-width:1024px) {
      .mod-layout {
        width: 100%;
      }

      .mod-sidebar {
        top: 96px;
      }
    }

    @media(max-width:800px) {
      .mod-layout {
        width: 100%;
      }

      .mod-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
      }

      .mod-sidebar-lede {
        display: none;
      }

      .msb-v2 {
        flex: 0 0 calc(50% - 3px);
      }

      .msb-v2-sub,
      .msb-v2-badge {
        display: none;
      }

      .mod-pill-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      .modv-body-in {
        padding: 6px 16px 16px;
      }
    }

    @media(max-width:500px) {
      .msb-v2 {
        flex: 0 0 100%;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════════
       BÔNUS — Pink-tinted dark section
    ═══════════════════════════════════════════════════════════════════════ */
    .bonus {
      padding: 112px 40px;
      background: linear-gradient(150deg, #0d0020 0%, #1a0035 40%, #0d0020 100%);
      position: relative;
      overflow: hidden;
    }

    .bonus::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 50% at 50% 50%, rgba(242, 26, 123, .1) 0%, transparent 55%),
        radial-gradient(ellipse 30% 30% at 10% 80%, rgba(77, 79, 255, .15) 0%, transparent 50%);
      pointer-events: none;
    }

    .bonus-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .bonus-card {
      border-radius: var(--r-xl);
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: var(--t);
    }

    .bonus-card:hover {
      transform: translateY(-5px);
    }

    .b1 {
      background: rgba(242, 26, 123, .08);
      border: 1px solid rgba(242, 26, 123, .18);
    }

    .b2 {
      background: rgba(77, 79, 255, .08);
      border: 1px solid rgba(77, 79, 255, .18);
    }

    .b3 {
      background: rgba(139, 92, 246, .08);
      border: 1px solid rgba(139, 92, 246, .18);
    }

    .bonus-top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
    }

    .b1 .bonus-top {
      background: var(--pink);
    }

    .b2 .bonus-top {
      background: var(--blue-light);
    }

    .b3 .bonus-top {
      background: #8B5CF6;
    }

    .bonus-num {
      font-family: var(--font-display);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .b1 .bonus-num {
      color: var(--pink-light);
    }

    .b2 .bonus-num {
      color: var(--blue-light);
    }

    .b3 .bonus-num {
      color: #A78BFA;
    }

    .bonus-icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, .15);
    }

    .bonus-icon svg {
      width: 26px;
      height: 26px;
    }

    .b1 .bonus-icon {
      background: rgba(242, 26, 123, .15);
      border-color: rgba(242, 26, 123, .3);
      color: #FF6CAB;
    }

    .b2 .bonus-icon {
      background: rgba(77, 79, 255, .15);
      border-color: rgba(77, 79, 255, .3);
      color: #818CF8;
    }

    .b3 .bonus-icon {
      background: rgba(52, 211, 153, .12);
      border-color: rgba(52, 211, 153, .25);
      color: #34D399;
    }

    .bonus-card h4 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 12px;
    }

    .bonus-card p {
      font-size: .9rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.65;
    }

    /* ═══════════════════════════════════════════════════════════════════════
       SOBRE THIARA — White section (REDESIGN)
    ═══════════════════════════════════════════════════════════════════════ */

    .about {
      padding: 112px 40px;
      background: var(--white);
    }

    /* Header */
    .about-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .about-header .eyebrow {
      justify-content: center;
    }

    .about-eyebrow-sub {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-weight: 500;
      line-height: 1.06;
      letter-spacing: -.03em;
      font-variation-settings: 'opsz' 72;
      color: var(--text-dark);
      margin-top: 4px;
    }

    .about-eyebrow-sub .accent {
      color: var(--pink);
      font-style: italic;
      font-weight: 400;
    }

    /* Layout */
    .about-inner {
      display: grid;
      grid-template-columns: 460px 1fr;
      gap: 72px;
      align-items: start;
    }

    /* ── Photo column ── */
    .about-photo-wrap {
      position: relative;
      flex-shrink: 0;
    }

    .about-photo-frame {
      border-radius: var(--r-2xl);
      overflow: hidden;
      aspect-ratio: 3/4;
      background: var(--blue-pale);
      border: 1.5px solid var(--border);
      position: relative;
      box-shadow:
        0 32px 80px rgba(1, 13, 67, .12),
        0 8px 24px rgba(1, 13, 67, .06);
    }

    .about-photo-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Pink/blue glow behind photo */
    .about-photo-frame::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      background: linear-gradient(160deg, var(--pink) 0%, var(--blue-light) 50%, var(--blue) 100%);
      z-index: -1;
      opacity: .15;
    }

    /* Badge strip below photo */
    .about-photo-badge {
      position: absolute;
      bottom: -18px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--pink);
      color: var(--white);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 10px 28px;
      border-radius: var(--r-full);
      white-space: nowrap;
      box-shadow: 0 8px 28px rgba(242, 26, 123, .35);
      z-index: 3;
    }

    /* Floating stat card — top right */
    .about-photo-card {
      position: absolute;
      top: 28px;
      right: -28px;
      z-index: 3;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--r-xl);
      padding: 18px 22px;
      box-shadow: 0 12px 40px rgba(1, 13, 67, .1);
      min-width: 130px;
      text-align: center;
    }

    .about-card-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 4px;
    }

    .about-card-num em {
      font-style: normal;
      color: var(--pink);
    }

    .about-card-lbl {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* Floating award card — bottom left */
    .about-photo-award {
      position: absolute;
      bottom: 40px;
      left: -28px;
      z-index: 3;
      background: var(--navy);
      color: var(--white);
      border-radius: var(--r-xl);
      padding: 16px 20px;
      box-shadow: 0 12px 40px rgba(1, 13, 67, .25);
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 190px;
    }

    .about-award-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      flex-shrink: 0;
      background: rgba(242, 26, 123, .15);
      border: 1px solid rgba(242, 26, 123, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pink-light);
    }

    .about-award-icon svg {
      width: 18px;
      height: 18px;
    }

    .about-award-text {
      font-size: .74rem;
      color: rgba(255, 255, 255, .8);
      line-height: 1.4;
    }

    .about-award-text strong {
      color: var(--white);
      font-weight: 700;
      display: block;
      font-size: .76rem;
    }

    /* ── Text column ── */
    .about-content {
      padding-top: 8px;
    }

    .about-name {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 600;
      color: var(--text-dark);
      letter-spacing: -.02em;
      line-height: 1.1;
      font-variation-settings: 'opsz' 72;
      margin-bottom: 6px;
    }

    .about-role {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 32px;
    }

    /* Stats grid */
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: linear-gradient(135deg, #0C35B1 0%, #0a2690 50%, #010D43 100%);
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 32px;
    }

    .astat {
      padding: 28px 20px;
      text-align: center;
      position: relative;
    }

    .astat+.astat::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: rgba(255, 255, 255, .12);
    }

    .astat-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff !important;
      line-height: 1;
    }

    .astat-num em {
      font-style: normal;
      color: #fff !important;
    }

    .astat-lbl {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-top: 7px;
    }

    /* Bio text */
    .about-text {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 28px;
    }

    /* Credentials list */
    .cred-list {
      display: grid;
      gap: 10px;
      margin-bottom: 32px;
    }

    .cred-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: .9rem;
      color: var(--text-mid);
      line-height: 1.5;
      padding: 14px 16px;
      border-radius: 12px;
      background: var(--off-white);
      border: 1px solid var(--border);
      transition: border-color .2s, background .2s;
    }

    .cred-item:hover {
      border-color: rgba(242, 26, 123, .2);
      background: rgba(242, 26, 123, .02);
    }

    .cred-dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 1px;
      background: rgba(242, 26, 123, .08);
      border: 1px solid rgba(242, 26, 123, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .65rem;
      color: var(--pink);
      font-weight: 700;
    }

    /* CTA row */
    .about-cta-row {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .about-cta-trust {
      font-size: .8rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .about-cta-trust::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--border);
    }

    /* Responsive */
    @media(max-width:1100px) {
      .about-inner {
        grid-template-columns: 400px 1fr;
        gap: 56px;
      }
    }

    @media(max-width:900px) {
      .about-inner {
        grid-template-columns: 1fr;
      }

      .about-photo-wrap {
        max-width: 420px;
        margin: 0 auto 60px;
      }

      .about-photo-card {
        display: none;
      }

      .about-photo-award {
        display: none;
      }
    }

    @media(max-width:640px) {
      .about {
        padding: 80px 20px 72px;
      }

      .about-photo-wrap {
        max-width: 300px;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════════
       TRAJETÓRIA TIMELINE — Off-white (PREMIUM UPGRADE)
    ═══════════════════════════════════════════════════════════════════════ */
    .traj {
      padding: 120px 40px 80px;
      background: var(--off-white);
      position: relative;
      overflow: hidden;
    }

    .traj-vline {
      position: relative;
      max-width: 1120px;
      margin: 72px auto 0;
    }

    .traj-vline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom,
          transparent 0%, var(--pink) 8%,
          var(--blue-light) 35%, #8B5CF6 65%, #0DBEAA 92%, transparent 100%);
      transform: translateX(-50%);
      border-radius: 2px;
      opacity: .5;
    }

    .traj-block {
      display: grid;
      grid-template-columns: 1fr 88px 1fr;
      align-items: start;
      gap: 0;
      margin-bottom: 80px;
    }

    .traj-left {
      padding-right: 48px;
      text-align: right;
    }

    .traj-right {
      padding-left: 48px;
      text-align: left;
    }

    .traj-empty {}

    .traj-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 10px;
      gap: 8px;
      z-index: 2;
      position: relative;
    }

    .traj-dot {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--white);
      border: 2.5px solid var(--nd, var(--pink));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--nd, var(--pink));
      transition: all .35s var(--ease);
      box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    }

    .traj-dot svg {
      width: 22px;
      height: 22px;
    }

    .traj-dot:hover {
      transform: scale(1.12);
      background: var(--nd);
      color: white;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    }

    .nd-pink {
      --nd: var(--pink);
      box-shadow: 0 0 0 8px rgba(242, 26, 123, .1), 0 4px 20px rgba(0, 0, 0, .08)
    }

    .nd-blue {
      --nd: var(--blue-light);
      box-shadow: 0 0 0 8px rgba(77, 79, 255, .1), 0 4px 20px rgba(0, 0, 0, .08)
    }

    .nd-purple {
      --nd: #8B5CF6;
      box-shadow: 0 0 0 8px rgba(139, 92, 246, .1), 0 4px 20px rgba(0, 0, 0, .08)
    }

    .nd-teal {
      --nd: #0DBEAA;
      box-shadow: 0 0 0 8px rgba(13, 190, 170, .1), 0 4px 20px rgba(0, 0, 0, .08)
    }

    .traj-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 32px 36px;
      transition: box-shadow .3s, transform .3s;
    }

    .traj-card:hover {
      box-shadow: 0 16px 56px rgba(12, 53, 177, .1);
      transform: translateY(-4px);
    }

    .traj-card.a-pink {
      border-left: 4px solid var(--pink);
    }

    .traj-card.a-blue {
      border-left: 4px solid var(--blue-light);
    }

    .traj-card.a-purple {
      border-left: 4px solid #8B5CF6;
    }

    .traj-card.a-teal {
      border-left: 4px solid #0DBEAA;
    }

    .traj-right .traj-card.a-pink {
      border-left: 1.5px solid var(--border);
      border-right: 4px solid var(--pink);
    }

    .traj-right .traj-card.a-blue {
      border-left: 1.5px solid var(--border);
      border-right: 4px solid var(--blue-light);
    }

    .traj-right .traj-card.a-purple {
      border-left: 1.5px solid var(--border);
      border-right: 4px solid #8B5CF6;
    }

    .traj-right .traj-card.a-teal {
      border-left: 1.5px solid var(--border);
      border-right: 4px solid #0DBEAA;
    }

    .traj-yr {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: rgba(255, 255, 255, .85);
      font-family: var(--font-body);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: var(--r-full);
      margin-bottom: 14px;
    }

    .traj-yr::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--pink);
      flex-shrink: 0;
    }

    .traj-card-title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .traj-card-text {
      font-size: .9rem;
      color: var(--text-mid);
      line-height: 1.7;
    }

    .traj-card-text strong {
      color: var(--text-dark);
      font-weight: 600;
    }

    .traj-card-text em {
      color: var(--pink);
      font-style: normal;
      font-weight: 600;
    }

    .traj-photos {
      display: grid;
      gap: 10px;
      margin-top: 20px;
    }

    .traj-photos.c2 {
      grid-template-columns: 1fr 1fr;
    }

    .traj-photos.c3 {
      grid-template-columns: 1fr 1fr 1fr;
    }

    .traj-photo-item {
      border-radius: 12px;
      overflow: hidden;
      background: var(--blue-pale);
      aspect-ratio: 4/3;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    }

    .traj-photo-item.wide {
      grid-column: span 2;
      aspect-ratio: 16/7;
    }

    .traj-photo-item.wide3 {
      grid-column: span 3;
      aspect-ratio: 16/7;
    }

    .traj-photo-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s var(--ease);
    }

    .traj-photo-item:hover img {
      transform: scale(1.06);
    }

    .traj-cap {
      font-size: .7rem;
      color: var(--text-muted);
      margin-top: 6px;
      font-style: italic;
    }

    .traj-hl {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      border-radius: var(--r-2xl);
      overflow: hidden;
      margin-top: 64px;
      max-width: 1020px;
      margin-left: auto;
      margin-right: auto;
    }

    .traj-hl-item {
      padding: 36px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, .1);
    }

    .traj-hl-item:last-child {
      border-right: none;
    }

    .traj-hl-num {
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--pink);
      line-height: 1;
    }

    .traj-hl-lbl {
      font-size: .82rem;
      color: rgba(255, 255, 255, .6);
      margin-top: 6px;
    }

    /* ═══════════════════════════════════════════════════════════════════════
       DEPOIMENTOS — Carousel
    ═══════════════════════════════════════════════════════════════════════ */
    .depo {
      padding: 112px 0;
      background: var(--off-white);
      overflow: hidden;
    }

    .depo .wrap {
      padding: 0 40px;
      text-align: center;
    }

    .depo-proof-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin: 28px auto 0;
      flex-wrap: wrap;
    }

    .depo-proof-item {
      text-align: center;
    }

    .depo-proof-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1;
    }

    .depo-proof-num span {
      color: var(--pink);
      font-style: italic;
      font-size: 1.4rem;
    }

    .depo-proof-lbl {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .depo-proof-sep {
      font-size: 1.5rem;
      color: var(--border);
      font-weight: 300;
    }

    .depo-carousel {
      position: relative;
      margin-top: 56px;
    }

    .depo-carousel::before,
    .depo-carousel::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }

    .depo-carousel::before {
      left: 0;
      background: linear-gradient(90deg, var(--off-white) 0%, transparent 100%);
    }

    .depo-carousel::after {
      right: 0;
      background: linear-gradient(-90deg, var(--off-white) 0%, transparent 100%);
    }

    .depo-track-wrap {
      overflow: hidden;
    }

    .depo-track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: depo-scroll 36s linear infinite;
    }

    .depo-track:hover {
      animation-play-state: paused;
    }

    @keyframes depo-scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .depo-card {
      flex-shrink: 0;
      width: 340px;
      background: var(--white);
      border: 1.5px solid #EAECF4;
      border-radius: 24px;
      padding: 30px 26px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      box-shadow: 0 2px 12px rgba(12, 53, 177, .04);
      position: relative;
      overflow: hidden;
      transition: box-shadow .3s, transform .3s;
    }

    .depo-card:hover {
      box-shadow: 0 12px 36px rgba(12, 53, 177, .1);
      transform: translateY(-4px);
    }

    .depo-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 24px 24px 0 0;
    }

    .dc1::before {
      background: linear-gradient(90deg, var(--pink), #c4005e)
    }

    .dc2::before {
      background: linear-gradient(90deg, var(--blue-light), var(--blue))
    }

    .dc3::before {
      background: linear-gradient(90deg, #8B5CF6, #6D28D9)
    }

    .dc4::before {
      background: linear-gradient(90deg, #0DBEAA, #0891B2)
    }

    .dc5::before {
      background: linear-gradient(90deg, #F59E0B, #D97706)
    }

    .dc6::before {
      background: linear-gradient(90deg, var(--pink), var(--blue-light))
    }

    .depo-stars {
      display: flex;
      gap: 2px;
    }

    .depo-star {
      color: #FBBF24;
      font-size: .85rem;
    }

    .depo-text {
      font-size: .875rem;
      color: var(--text-mid);
      line-height: 1.75;
      flex: 1;
      font-style: italic;
      position: relative;
    }

    .depo-mark {
      color: var(--pink);
      font-family: var(--font-display);
      font-size: 2.5rem;
      line-height: .6;
      display: block;
      margin-bottom: 6px;
      font-style: normal;
    }

    .depo-author {
      display: flex;
      align-items: center;
      gap: 10px;
      border-top: 1px solid #F3F4F6;
      padding-top: 14px;
    }

    .depo-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .82rem;
      font-weight: 800;
      color: var(--white);
    }

    .dc1 .depo-avatar {
      background: linear-gradient(135deg, var(--pink), #c4005e)
    }

    .dc2 .depo-avatar {
      background: linear-gradient(135deg, var(--blue-light), var(--blue))
    }

    .dc3 .depo-avatar {
      background: linear-gradient(135deg, #8B5CF6, #6D28D9)
    }

    .dc4 .depo-avatar {
      background: linear-gradient(135deg, #0DBEAA, #0891B2)
    }

    .dc5 .depo-avatar {
      background: linear-gradient(135deg, #F59E0B, #D97706)
    }

    .dc6 .depo-avatar {
      background: linear-gradient(135deg, var(--pink), var(--blue-light))
    }

    .depo-name {
      font-size: .82rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .depo-city {
      font-size: .72rem;
      color: var(--text-muted);
      margin-top: 1px;
    }

    .depo-bottom {
      text-align: center;
      margin-top: 48px;
      padding: 0 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .depo-bottom p {
      font-size: .9rem;
      color: var(--text-muted);
      margin-bottom: 0;
      text-align: center;
    }

    /* ── Depoimentos em vídeo ── */
    .depo-videos-wrap {
      max-width: 1120px;
      margin: 64px auto 0;
      padding: 0 40px;
    }

    .depo-videos-label {
      text-align: center;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
    }

    .depo-videos-label::before,
    .depo-videos-label::after {
      content: '';
      flex: 1;
      max-width: 80px;
      height: 1px;
      background: var(--border);
    }

    .depo-videos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .depo-video-item {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: var(--navy-deep);
      box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
      border: 1.5px solid #EAECF4;
    }

    .depo-video-item iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: none;
    }

    @media(max-width:768px) {
      .depo-videos-grid {
        grid-template-columns: 1fr;
      }

      .depo-videos-wrap {
        padding: 0 20px;
      }
    }

    /* Removed old .depo-cta-wrap styles */

    /* ═══════════════════════════════════════════════════════════════════════
       FAQ — Off-white
    ═══════════════════════════════════════════════════════════════════════ */
    .faq {
      padding: 112px 40px;
      background: var(--off-white);
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: grid;
      gap: 10px;
    }

    .faq-item {
      background: var(--white);
      border: 1.5px solid #EAECF4;
      border-radius: 16px;
      overflow: hidden;
      transition: border-color .3s ease, box-shadow .3s ease;
    }

    .faq-item.open {
      border-color: rgba(242, 26, 123, .25);
      box-shadow: 0 4px 24px rgba(242, 26, 123, .08);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      transition: background .2s;
    }

    .faq-q:hover {
      background: rgba(242, 26, 123, .02);
    }

    .faq-item.open .faq-q {
      background: rgba(242, 26, 123, .03);
    }

    .faq-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(242, 26, 123, .08);
      border: 1px solid rgba(242, 26, 123, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .25s ease, transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      width: 12px;
      height: 1.5px;
      background: var(--pink);
      border-radius: 2px;
      transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .faq-icon::after {
      transform: rotate(90deg);
    }

    .faq-item.open .faq-icon {
      background: var(--pink);
      transform: rotate(45deg);
    }

    .faq-item.open .faq-icon::before,
    .faq-item.open .faq-icon::after {
      background: var(--white);
    }

    .faq-q-text {
      flex: 1;
      font-size: .95rem;
      font-weight: 600;
      color: var(--text-dark);
      text-align: left;
      line-height: 1.4;
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-body-in {
      padding: 0 24px 24px 72px;
      font-size: .92rem;
      color: var(--text-muted);
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════════════════════════════════════
       PRICING — Dark
    ═══════════════════════════════════════════════════════════════════════ */
    .pricing {
      padding: 112px 40px;
      background: linear-gradient(150deg, var(--navy-deep) 0%, #040c38 100%);
      position: relative;
      overflow: hidden;
    }

    .pricing::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 30% 60%, rgba(12, 53, 177, .25) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 80% 30%, rgba(242, 26, 123, .15) 0%, transparent 50%);
      pointer-events: none;
    }

    .pricing-inner {
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 64px;
      align-items: start;
    }

    .risk-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 24px;
    }

    .risk-card {
      border-radius: var(--r-xl);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
    }

    .risk-danger {
      background: rgba(220, 20, 60, .05);
      border: 1px solid rgba(220, 20, 60, .2);
    }

    .risk-danger::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: #DC143C;
    }

    .risk-win {
      background: rgba(77, 79, 255, .08);
      border: 1px solid rgba(77, 79, 255, .2);
    }

    .risk-win::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--blue-light);
    }

    .risk-lbl {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .risk-danger .risk-lbl {
      color: #FF6B8A;
    }

    .risk-win .risk-lbl {
      color: var(--blue-light);
    }

    .risk-card h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .risk-card>p {
      font-size: .86rem;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 16px;
      line-height: 1.5;
      font-style: italic;
    }

    .risk-card>p strong {
      color: rgba(255, 255, 255, .75);
      font-style: normal;
    }

    .rlist {
      display: grid;
      gap: 8px;
    }

    .rlist li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .86rem;
      color: rgba(255, 255, 255, .65);
      line-height: 1.45;
    }

    .rdot {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
    }

    .risk-danger .rdot {
      background: rgba(220, 20, 60, .15);
      border: 1px solid rgba(220, 20, 60, .3);
      color: #FF6B8A;
    }

    .risk-win .rdot {
      background: rgba(77, 79, 255, .15);
      border: 1px solid rgba(77, 79, 255, .3);
      color: var(--blue-light);
    }

    .result-stmt {
      background: rgba(242, 26, 123, .07);
      border: 1px solid rgba(242, 26, 123, .2);
      border-radius: var(--r-xl);
      padding: 28px 32px;
      margin-bottom: 0;
    }

    .result-stmt p {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.6;
    }

    .rs-pink {
      color: var(--pink-light);
    }

    .rs-tag {
      display: block;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .25);
      margin-top: 12px;
    }

    /* Price card */
    .pc {
      background: linear-gradient(160deg, #07093e, #0b0839, #060529);
      border: 1px solid rgba(77, 79, 255, .25);
      border-radius: var(--r-2xl);
      padding: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 20, .6);
    }

    .pc::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--blue-light), #8B5CF6, var(--pink));
    }

    .pc-lvl {
      font-size: .62rem;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--blue-light);
      margin-bottom: 8px;
    }

    .pc-title {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .pc-desc {
      font-size: .85rem;
      color: rgba(255, 255, 255, .4);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .pc-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, .07);
      margin: 0 0 22px;
    }

    .pc-price-note {
      font-size: .72rem;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 8px;
    }

    .pc-price-row {
      display: flex;
      align-items: baseline;
      gap: 3px;
      margin-bottom: 8px;
    }

    .pc-cur {
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .55);
      align-self: flex-start;
      margin-top: 6px;
    }

    .pc-amount {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }

    .pc-install {
      font-size: .78rem;
      color: rgba(255, 255, 255, .4);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .pc-ok {
      background: rgba(16, 185, 129, .12);
      border: 1px solid rgba(16, 185, 129, .25);
      color: var(--success);
      font-size: .65rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: var(--r-full);
    }

    .pc-feats {
      display: grid;
      gap: 10px;
      margin-bottom: 28px;
    }

    .pc-feat {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .75);
      line-height: 1.4;
    }

    .pc-chk {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(16, 185, 129, .12);
      border: 1px solid rgba(16, 185, 129, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .6rem;
      color: var(--success);
    }

    .pc-cta {
      display: block;
      width: 100%;
      background: linear-gradient(135deg, var(--pink) 0%, #c4005e 100%);
      color: var(--white);
      text-align: center;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 22px 32px;
      border-radius: var(--r-full);
      box-shadow: 0 8px 32px rgba(242, 26, 123, .45), 0 0 0 0 rgba(242, 26, 123, .35);
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
      margin-bottom: 14px;
      position: relative;
      overflow: hidden;
      animation: cta-pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    .pc-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 50%);
      border-radius: inherit;
      pointer-events: none;
    }

    @keyframes cta-pulse {
      0% {
        box-shadow: 0 8px 32px rgba(242, 26, 123, .45), 0 0 0 0 rgba(242, 26, 123, .4);
      }

      60% {
        box-shadow: 0 8px 32px rgba(242, 26, 123, .45), 0 0 0 14px rgba(242, 26, 123, 0);
      }

      100% {
        box-shadow: 0 8px 32px rgba(242, 26, 123, .45), 0 0 0 0 rgba(242, 26, 123, 0);
      }
    }

    .pc-cta:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow: 0 18px 50px rgba(242, 26, 123, .6), 0 0 0 0 rgba(242, 26, 123, 0);
      animation: none;
    }

    .pc-guar {
      display: flex;
      align-items: center;
      gap: 7px;
      justify-content: center;
      font-size: .72rem;
      color: rgba(255, 255, 255, .3);
    }

    /* ═══════════════════════════════════════════════════════════════════════
       CONSULTORIA — Rich gradient (REDESIGNED)
    ═══════════════════════════════════════════════════════════════════════ */
    .consult {
      padding: 112px 40px;
      background: linear-gradient(140deg, #0C35B1 0%, #1A1B8C 35%, #3D0A6B 65%, #7B0D4E 100%);
      position: relative;
      overflow: hidden;
    }

    /* Noise texture overlay */
    .consult::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: .5;
    }

    /* Orb accents */
    .consult::after {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, .2) 0%, transparent 65%);
      pointer-events: none;
    }

    .consult-orb2 {
      position: absolute;
      bottom: -120px;
      left: -80px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(77, 79, 255, .25) 0%, transparent 65%);
      pointer-events: none;
    }

    .consult>.wrap {
      position: relative;
      z-index: 2;
    }

    .consult-intro {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, .88);
      line-height: 1.8;
      max-width: 820px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .consult-intro strong {
      color: var(--white);
      font-weight: 700;
    }

    .consult-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 48px;
    }

    .consult-card {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 24px;
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
      backdrop-filter: blur(16px);
      transition: var(--t);
      position: relative;
      overflow: hidden;
    }

    .consult-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .05));
    }

    .consult-card:hover {
      transform: translateY(-6px);
      background: rgba(255, 255, 255, .14);
      border-color: rgba(255, 255, 255, .28);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    }

    .consult-card-icon {
      font-size: 1.8rem;
      width: 68px;
      height: 68px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--t);
    }

    .consult-card-icon svg {
      width: 28px;
      height: 28px;
    }

    .consult-card:hover .consult-card-icon {
      background: rgba(255, 255, 255, .2);
      transform: scale(1.05);
    }

    .consult-card p {
      font-size: .92rem;
      color: rgba(255, 255, 255, .88);
      font-weight: 500;
      line-height: 1.6;
    }

    /* CTA buttons */
    .consult-btns {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .consult-btns .btn {
      min-width: 360px;
    }

    .btn-white {
      background: var(--white);
      color: var(--navy);
      font-weight: 700;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
      background: #f0f0ff;
    }

    .btn-glass {
      background: rgba(255, 255, 255, .1);
      color: var(--white);
      border: 1.5px solid rgba(255, 255, 255, .25);
      backdrop-filter: blur(10px);
    }

    .btn-glass:hover {
      background: rgba(255, 255, 255, .18);
      border-color: rgba(255, 255, 255, .4);
      transform: translateY(-2px);
    }

    .consult-note {
      font-size: .82rem;
      color: rgba(255, 255, 255, .4);
      margin-top: 12px;
      text-align: center;
    }

    /* ═══════════════════════════════════════════════════════════════════════
       FINAL CTA — Dark
    ═══════════════════════════════════════════════════════════════════════ */
    .final-cta {
      padding: 120px 40px;
      text-align: center;
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(242, 26, 123, .12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(12, 53, 177, .2) 0%, transparent 50%);
      pointer-events: none;
    }

    .final-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    .final-inner {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin: 0 auto;
    }

    .final-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 28px;
      background: rgba(242, 26, 123, .1);
      border: 1px solid rgba(242, 26, 123, .25);
      border-radius: var(--r-full);
      padding: 8px 22px;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--pink-light);
    }

    .final-cta h2 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 600;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .final-cta h2 span {
      color: var(--pink);
    }

    .final-cta p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .final-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ═══════════════════════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════════════════════ */
    .footer {
      background: #000510;
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding: 64px 40px 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 14px;
    }

    .footer-logo span {
      color: var(--pink);
    }

    .footer-brand p {
      font-size: .875rem;
      color: rgba(255, 255, 255, .35);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-soc {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      color: rgba(255, 255, 255, .4);
      transition: var(--t);
    }

    .footer-soc:hover {
      background: rgba(242, 26, 123, .15);
      border-color: var(--pink);
      color: var(--pink);
    }

    .footer-soc svg {
      width: 14px;
      height: 14px;
    }

    .footer-col h5 {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .25);
      margin-bottom: 18px;
    }

    .footer-col a {
      display: block;
      font-size: .875rem;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 10px;
      transition: color .2s;
    }

    .footer-col a:hover {
      color: var(--white);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: .78rem;
      color: rgba(255, 255, 255, .2);
    }

    .footer-quote {
      font-style: italic;
      font-size: .82rem;
      color: rgba(255, 255, 255, .25);
    }

    .footer-quote em {
      color: rgba(242, 26, 123, .5);
      font-style: normal;
    }

    /* ─── MOBILE NAV ─────────────────────────────────────────────────────── */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 108px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 5, 16, .97);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      z-index: 140;
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .65);
      transition: color .2s;
    }

    .mobile-nav a:hover {
      color: var(--white);
    }

    /* ─── RESPONSIVE ────────────────────────────────────────────────────── */
    @media(max-width: 1024px) {
      .about-inner {
        grid-template-columns: 1fr;
      }

      .about-photo-wrap {
        max-width: 360px;
        margin: 0 auto 60px;
      }

      .about-photo-card {
        display: none;
      }

      .pricing-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    @media(max-width: 900px) {
      .nav-links {
        display: none;
      }

      .nav-burger {
        display: flex;
      }

      .forwhom-grid,
      .trails-grid,
      .risk-grid {
        grid-template-columns: 1fr;
      }

      .deliv-grid {
        grid-template-columns: 1fr 1fr;
      }

      .incluso-bento {
        grid-template-columns: 1fr 1fr;
      }

      .inc-card.ic1 {
        grid-column: 1 / 3;
        grid-row: 1;
      }

      .inc-card.ic2 {
        grid-column: 1 / 2;
        grid-row: 2;
      }

      .inc-card.ic3 {
        grid-column: 2 / 3;
        grid-row: 2;
      }

      .inc-card.ic4 {
        grid-column: 1 / 2;
        grid-row: 3;
      }

      .inc-card.ic5 {
        grid-column: 2 / 3;
        grid-row: 3;
      }

      .inc-card.ic1 .inc-body {
        flex-direction: column;
      }

      .phases-row {
        flex-wrap: wrap;
        gap: 20px;
      }

      .phases-row::before {
        display: none;
      }

      .ph-item {
        flex: 0 0 45%;
      }

      .pillars-row-top {
        grid-template-columns: 1fr 1fr;
      }

      .pillars-row-bot {
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
      }

      .plc1 {
        grid-column: 1/3;
      }

      .plc2 {
        grid-column: 3/5;
      }

      .plc3 {
        grid-column: 1/3;
      }

      .plc4 {
        grid-column: 3/5;
      }

      .plc5 {
        grid-column: 2/4;
      }

      .bonus-grid {
        grid-template-columns: 1fr 1fr;
      }

      .consult-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .stat-item:nth-child(4) {
        border-right: none;
      }

      .lib-highlight {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    @media(max-width: 640px) {

      .wrap,
      .hero,
      .forwhom,
      .deliverables,
      .incluso,
      .how,
      .trails,
      .modules,
      .bonus,
      .about,
      .traj,
      .depo,
      .faq,
      .pricing,
      .consult,
      .final-cta,
      .footer,
      .topbar,
      .nav {
        padding-left: 20px;
        padding-right: 20px;
      }

      .nav {
        padding: 0 20px;
      }

      .topbar {
        padding: 0 20px;
      }

      .tb-link:not(:first-child) {
        display: none;
      }

      .deliv-grid,
      .incluso-bento,
      .bonus-grid {
        grid-template-columns: 1fr;
      }

      .pillars-row-top,
      .pillars-row-bot {
        grid-template-columns: 1fr;
      }

      .pillars-row-bot {
        max-width: 100%;
      }

      .inc-card.ic1,
      .inc-card.ic2,
      .inc-card.ic3,
      .inc-card.ic4,
      .inc-card.ic5 {
        grid-column: 1;
        grid-row: auto;
      }

      .plc1,
      .plc2,
      .plc3,
      .plc4,
      .plc5 {
        grid-column: 1 !important;
      }

      .ph-item {
        flex: 0 0 45%;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stat-item:nth-child(5) {
        grid-column: span 2;
        border-right: none;
      }

      .consult-grid {
        grid-template-columns: 1fr 1fr;
      }

      .consult-btns .btn {
        min-width: 0;
        width: 100%;
      }

      .traj-vline::before {
        left: 28px;
      }

      .traj-block {
        grid-template-columns: 56px 1fr;
        margin-bottom: 56px;
      }

      .traj-left,
      .traj-empty {
        display: none;
      }

      .traj-right {
        padding-left: 20px;
      }

      .traj-block.flip .traj-right {
        display: none;
      }

      .traj-block.flip .traj-left {
        display: block;
        padding-left: 20px;
        padding-right: 0;
        text-align: left;
      }

      .traj-block.flip {
        grid-template-columns: 56px 1fr;
      }

      .traj-hl {
        grid-template-columns: 1fr 1fr;
      }

      .traj-photos.c3 {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .mod-body-in {
        padding: 0 18px 18px;
      }

      .mod-trigger {
        padding: 14px 18px;
      }

      /* Testimonials carousel — narrower cards on mobile */
      .depo-card {
        width: 280px;
      }

      /* Pricing responsive */
      .pricing-inner {
        grid-template-columns: 1fr;
      }

      .pc {
        padding: 32px 24px;
      }

      /* About */
      .about-inner {
        grid-template-columns: 1fr;
      }

      .about-photo-wrap {
        max-width: 280px;
        margin: 0 auto 40px;
      }

      /* Section titles */
      .section-title {
        font-size: clamp(1.9rem, 8vw, 3rem);
      }

      /* Hero text */
      .hero h1 {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
        line-height: 1.12;
      }

      .hero-mini-stats {
        gap: 20px;
      }

      .hms-num {
        font-size: 1.6rem;
      }
    }
  

    .dor-v2-section {
      padding: 120px 20px 60px;
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
      z-index: 2;
    }

    .dor-v2-bg {
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 1000px;
      height: 1000px;
      background: radial-gradient(circle, rgba(242, 26, 123, 0.08) 0%, transparent 60%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .dor-v2-inner {
      max-width: 1140px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .dor-v2-header {
      text-align: center;
      margin-bottom: 72px;
    }

    /* Badge pulsante */
    .dor-v2-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 100px;
      background: rgba(242, 26, 123, 0.1);
      border: 1px solid rgba(242, 26, 123, 0.3);
      backdrop-filter: blur(10px);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 32px;
      box-shadow: 0 0 20px rgba(242, 26, 123, 0.1);
    }
    .dor-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--pink);
      box-shadow: 0 0 8px var(--pink);
      animation: pulse-dot 2s infinite;
    }

    .dor-v2-intro {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      line-height: 1.06;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 24px;
      letter-spacing: -0.03em;
      font-variation-settings: 'opsz' 72;
      text-wrap: balance;
    }

    .dor-v2-intro em {
      color: var(--pink);
      font-style: italic;
      font-weight: 400;
    }

    .dor-v2-sub {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.65);
      max-width: 660px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Bento Grid */
    .dor-v2-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 32px;
      padding-bottom: 80px;
    }

    @media (max-width: 900px) {
      .dor-v2-grid {
        display: flex;
        flex-direction: column;
        padding-bottom: 80px;
      }
    }

    .dor-v2-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-top: 2px solid rgba(242, 26, 123, 0.35);
      border-radius: var(--r-xl);
      padding: 40px;
      position: relative;
      transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      overflow: hidden;
    }

    /* Alternating top border color (cards 4,5,6 get blue) */
    .dor-v2-card.blue-accent {
      border-top-color: rgba(77, 130, 255, 0.45);
    }

    .dor-v2-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(242, 26, 123, 0.4);
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(242, 26, 123, 0.15) inset;
    }

    .dor-v2-card.blue-accent:hover {
      border-color: rgba(77, 130, 255, 0.5);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(77, 130, 255, 0.15) inset;
    }

    /* Decorative BIG number background */
    .dor-v2-card::before {
      content: attr(data-num);
      position: absolute;
      top: 0px;
      right: 16px;
      font-family: var(--font-display);
      font-size: 6rem;
      font-weight: 900;
      line-height: 1;
      color: var(--white);
      opacity: 0.04;
      pointer-events: none;
      letter-spacing: -0.04em;
      transition: opacity 0.4s;
    }
    .dor-v2-card:hover::before {
      opacity: 0.07;
    }

    .d2-c1 { grid-column: span 7; }
    .d2-c2 { grid-column: span 5; }
    .d2-c3 { grid-column: span 4; }
    .d2-c4 { grid-column: span 4; }
    .d2-c5 { grid-column: span 4; }
    .d2-c6 {
      grid-column: span 12;
      display: flex;
      align-items: center;
      text-align: left;
      background: rgba(255, 255, 255, 0.02);
      padding: 48px;
    }

    .dor-v2-ico {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(242, 26, 123, 0.1);
      border: 1px solid rgba(242, 26, 123, 0.2);
      color: var(--pink-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      flex-shrink: 0;
      transition: all 0.3s;
    }
    .dor-v2-ico svg {
      width: 22px;
      height: 22px;
    }
    .blue-accent .dor-v2-ico {
      background: rgba(77, 130, 255, 0.1);
      border-color: rgba(77, 130, 255, 0.2);
      color: #82AAFF;
    }

    .dor-v2-card:hover .dor-v2-ico {
      transform: scale(1.1);
      background: rgba(242, 26, 123, 0.2);
      box-shadow: 0 8px 20px rgba(242, 26, 123, 0.2);
    }
    .blue-accent:hover .dor-v2-ico {
      background: rgba(77, 130, 255, 0.2);
      box-shadow: 0 8px 20px rgba(77, 130, 255, 0.2);
    }

    .d2-c6 .dor-v2-ico {
      margin-bottom: 0;
      margin-right: 32px;
      width: 64px;
      height: 64px;
      border-radius: 16px;
    }
    .d2-c6 .dor-v2-ico svg {
      width: 32px;
      height: 32px;
    }

    @media (max-width: 900px) {
      .d2-c6 {
        flex-direction: column;
        text-align: left;
        padding: 40px 24px;
      }
      .d2-c6 .dor-v2-ico {
        margin-bottom: 24px;
        margin-right: 0;
      }
    }

    .dor-v2-text {
      font-size: 1.05rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.65);
      font-weight: 400;
    }

    .dor-v2-text strong {
      color: var(--white);
      font-weight: 700;
      font-size: 1.1rem;
      display: block;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .d2-c6 .dor-v2-text strong {
      display: inline;
      margin-bottom: 0px;
      font-size: 1.05rem;
    }

    /* The Glassmorphism Overlap Solution Card */
    .dor-v2-causa {
      margin-top: -50px; /* Reduzido de -80px para dar ainda mais respiro ao texto anterior */
      position: relative;
      z-index: 10;
      background: linear-gradient(145deg, rgba(242, 26, 123, 0.12) 0%, rgba(12, 53, 177, 0.45) 100%);
      border: 1px solid rgba(242, 26, 123, 0.35);
      border-top: 2px solid var(--pink);
      border-radius: var(--r-2xl);
      padding: 64px 80px;
      backdrop-filter: blur(32px);
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 50px rgba(242, 26, 123, 0.12);
      display: flex;
      gap: 48px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .dor-v2-causa::after {
      content: '';
      position: absolute;
      top: 50%;
      left: -100px;
      transform: translateY(-50%);
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, 0.15) 0%, transparent 70%);
      filter: blur(40px);
      pointer-events: none;
    }

    @media (max-width: 900px) {
      .dor-v2-causa {
        flex-direction: column;
        padding: 48px 32px;
        margin-top: 40px; /* Margem positiva no mobile para respiração do conteúdo */
        text-align: center;
        gap: 32px;
      }
    }

    .dv2-causa-icon {
      width: 88px;
      height: 88px;
      flex-shrink: 0;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--pink), var(--pink-light));
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 50px rgba(242, 26, 123, 0.45);
      position: relative;
      z-index: 2;
    }
    .dv2-causa-icon svg {
      width: 44px;
      height: 44px;
    }

    .dv2-causa-kicker {
      display: inline-flex;
      background: rgba(242, 26, 123, 0.15);
      border: 1px solid rgba(242, 26, 123, 0.25);
      color: var(--pink-light);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .dv2-causa-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      line-height: 1.2;
      color: var(--white);
      font-weight: 500;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .dv2-causa-title em {
      color: var(--pink-light);
      font-style: italic;
      font-weight: 600;
    }

    .dv2-causa-body {
      font-size: 1.1rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.8);
    }
    .dv2-causa-body strong {
      color: var(--white);
    }
  

    /* ── O QUE ESTÁ INCLUSO V2 — Feature Wall Redesign ── */
    .incluso-v2 {
      padding: 120px 20px;
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
    }

    /* Dot grid background */
    .incluso-v2::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    /* Ambient glow right */
    .incluso-v2::after {
      content: '';
      position: absolute;
      top: 10%;
      right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242,26,123,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .inc-v2-wrap {
      max-width: 1140px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Header */
    .inc-v2-header {
      text-align: center;
      margin-bottom: 64px;
    }

    /* ── Feature Wall Layout ── */
    .inc-v2-wall {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 64px;
    }

    @media (max-width: 900px) {
      .inc-v2-wall {
        grid-template-columns: 1fr;
      }
    }

    /* ── Hero Card ── */
    .inc-wall-hero {
      position: relative;
      background: linear-gradient(135deg, rgba(242,26,123,0.08) 0%, rgba(10,25,80,0.6) 100%);
      border: 1px solid rgba(242,26,123,0.2);
      border-radius: 24px;
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      gap: 28px;
      overflow: hidden;
      transition: border-color 0.4s, box-shadow 0.4s;
    }

    .inc-wall-hero:hover {
      border-color: rgba(242,26,123,0.45);
      box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(242,26,123,0.1);
    }

    /* Scanning neon line animation */
    .inc-wall-hero-glow {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--pink), #FF6CAB, transparent);
      border-radius: 24px 24px 0 0;
      animation: scan-line 3s ease-in-out infinite alternate;
    }

    @keyframes scan-line {
      0%   { opacity: 0.5; transform: scaleX(0.6); }
      100% { opacity: 1;   transform: scaleX(1); }
    }

    /* Large icon */
    .inc-wall-hero-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, rgba(242,26,123,0.25), rgba(242,26,123,0.05));
      border: 1px solid rgba(242,26,123,0.3);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FF6CAB;
      flex-shrink: 0;
      box-shadow: 0 8px 32px rgba(242,26,123,0.2);
      transition: transform 0.3s;
    }

    .inc-wall-hero:hover .inc-wall-hero-icon {
      transform: scale(1.08) rotate(-3deg);
    }

    .inc-wall-hero-icon svg {
      width: 34px;
      height: 34px;
    }

    /* Stat number (big) */
    .inc-wall-stat {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 8vw, 6rem);
      font-weight: 900;
      line-height: 0.9;
      color: var(--pink);
      letter-spacing: -0.04em;
      text-shadow: 0 0 40px rgba(242,26,123,0.4);
    }

    .inc-wall-title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 600;
      color: var(--white);
      line-height: 1.25;
      margin: 0;
      letter-spacing: -0.02em;
    }

    .inc-wall-sub {
      font-size: 1rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.65);
      margin: 0;
      max-width: 420px;
    }

    .inc-wall-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 4px;
    }

    .inc-wall-tags span {
      padding: 5px 14px;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      background: rgba(242,26,123,0.1);
      border: 1px solid rgba(242,26,123,0.25);
      color: #FF6CAB;
    }

    .inc-wall-hero-body {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    /* ── Secondary 2×2 Grid ── */
    .inc-wall-secondary {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    @media (max-width: 600px) {
      .inc-wall-secondary {
        grid-template-columns: 1fr;
      }
    }

    /* ── Secondary Cards ── */
    .inc-wall-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 20px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    }

    .inc-wall-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      border-radius: 20px 20px 0 0;
      transition: opacity 0.3s;
      opacity: 0.7;
    }

    .inc-wall-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.45);
    }

    .inc-wall-card:hover::before {
      opacity: 1;
    }

    /* Card icon */
    .inc-wall-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .inc-wall-card:hover .inc-wall-card-icon {
      transform: scale(1.1) rotate(-4deg);
    }

    .inc-wall-card-icon svg {
      width: 22px;
      height: 22px;
    }

    .inc-wall-card-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin: 0;
      line-height: 1.3;
    }

    .inc-wall-card-sub {
      font-size: 0.88rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.55);
      margin: 0;
      flex: 1;
    }

    /* Stat pill at bottom */
    .inc-wall-card-stat {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: auto;
      width: fit-content;
    }

    /* ── Color Variants ── */

    /* Blue */
    .iwc-blue::before { background: linear-gradient(90deg, var(--blue-light), #818CF8); }
    .iwc-blue:hover   { border-color: rgba(77,130,255,0.3); box-shadow: 0 20px 48px rgba(0,0,0,0.45), 0 0 20px rgba(77,130,255,0.08); }
    .iwc-blue .inc-wall-card-icon { background: rgba(77,130,255,0.12); border: 1px solid rgba(77,130,255,0.25); color: #93C5FD; }
    .iwc-blue .inc-wall-card-stat { background: rgba(77,130,255,0.12); border: 1px solid rgba(77,130,255,0.25); color: #93C5FD; }

    /* Green (teal) */
    .iwc-green::before { background: linear-gradient(90deg, #0D9488, #2DD4BF); }
    .iwc-green:hover   { border-color: rgba(13,148,136,0.3); box-shadow: 0 20px 48px rgba(0,0,0,0.45), 0 0 20px rgba(13,148,136,0.08); }
    .iwc-green .inc-wall-card-icon { background: rgba(13,148,136,0.12); border: 1px solid rgba(13,148,136,0.25); color: #5EEAD4; }
    .iwc-green .inc-wall-card-stat { background: rgba(13,148,136,0.12); border: 1px solid rgba(13,148,136,0.25); color: #5EEAD4; }

    /* Purple */
    .iwc-purple::before { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }
    .iwc-purple:hover   { border-color: rgba(139,92,246,0.3); box-shadow: 0 20px 48px rgba(0,0,0,0.45), 0 0 20px rgba(139,92,246,0.08); }
    .iwc-purple .inc-wall-card-icon { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); color: #C4B5FD; }
    .iwc-purple .inc-wall-card-stat { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); color: #C4B5FD; }

    /* Amber */
    .iwc-amber::before { background: linear-gradient(90deg, #D97706, #FBBF24); }
    .iwc-amber:hover   { border-color: rgba(217,119,6,0.3); box-shadow: 0 20px 48px rgba(0,0,0,0.45), 0 0 20px rgba(217,119,6,0.08); }
    .iwc-amber .inc-wall-card-icon { background: rgba(217,119,6,0.12); border: 1px solid rgba(217,119,6,0.25); color: #FCD34D; }
    .iwc-amber .inc-wall-card-stat { background: rgba(217,119,6,0.12); border: 1px solid rgba(217,119,6,0.25); color: #FCD34D; }


    /* ── O MÉTODO (Neo-Cross Grid) ── */
    .metodo-thiara {
      padding: 140px 20px;
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
      color: var(--white);
    }

    /* Fundo: Minimal Tech Grid */
    .metodo-thiara::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 50px 50px;
      pointer-events: none;
      opacity: 0.5;
    }

    .metodo-wrap {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Header do Método */
    .metodo-header {
      text-align: center;
      margin-bottom: 100px;
    }

    .metodo-header .eyebrow {
      display: inline-block;
      margin-bottom: 24px;
    }

    .metodo-title {
      margin-bottom: 16px;
      color: var(--white);
    }

    .metodo-sub {
      max-width: 600px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Grid Estrutural */
    .metodo-grid {
      display: grid;
      grid-template-columns: 1fr 300px 1fr;
      grid-template-rows: auto auto;
      gap: 40px 20px;
      align-items: center;
      justify-items: center;
      position: relative;
    }

    /* O Core Central (Núcleo) */
    .metodo-core {
      grid-column: 2;
      grid-row: 1 / span 2;
      width: 280px;
      height: 280px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Efeitos do Núcleo */
    .m-core-glow {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(242, 26, 123, 0.3) 0%, rgba(12, 53, 177, 0.1) 50%, transparent 70%);
      filter: blur(30px);
      animation: pulse-glow 4s infinite alternate;
    }

    @keyframes pulse-glow {
      0% {
        transform: scale(0.8);
        opacity: 0.6;
      }

      100% {
        transform: scale(1.1);
        opacity: 1;
      }
    }

    .m-core-ring {
      position: absolute;
      width: 80%;
      height: 80%;
      border-radius: 50%;
      border: 1px dashed rgba(255, 255, 255, 0.2);
      animation: rotate-ring 20s linear infinite;
    }

    .m-core-ring:nth-child(2) {
      width: 100%;
      height: 100%;
      animation-direction: reverse;
      animation-duration: 30s;
      border-style: solid;
      border-color: rgba(255, 255, 255, 0.05);
    }

    @keyframes rotate-ring {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

    /* Eye Iris Animation */
    @keyframes eyePulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.2); opacity: 0.8; }
    }
    .eye-iris {
      transform-origin: center;
      animation: eyePulse 2s ease-in-out infinite;
    }

    .m-core-glass {
      position: relative;
      z-index: 2;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 40px rgba(242, 26, 123, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
    }

    .m-core-glass svg {
      width: 50px;
      height: 50px;
      color: var(--pink);
      filter: drop-shadow(0 0 10px rgba(242, 26, 123, 0.8));
    }

    /* SVG Lines conectando os pilares ao centro (Apenas Desktop) */
    .m-lines {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .m-lines path {
      fill: none;
      stroke: rgba(255, 255, 255, 0.1);
      stroke-width: 1.5;
      stroke-dasharray: 6;
      animation: dash 30s linear infinite;
    }

    @keyframes dash {
      to {
        stroke-dashoffset: -1000;
      }
    }

    /* Os Pilares (Cards) */
    .m-pillar {
      position: relative;
      z-index: 2;
      max-width: 340px;
    }

    .m-pillar.m-left {
      text-align: right;
    }

    .m-pillar.m-right {
      text-align: left;
    }

    /* Grid posições desktop */
    .m-p-1 {
      grid-column: 1;
      grid-row: 1;
    }

    .m-p-2 {
      grid-column: 1;
      grid-row: 2;
    }

    .m-p-3 {
      grid-column: 3;
      grid-row: 1;
    }

    .m-p-4 {
      grid-column: 3;
      grid-row: 2;
    }

    /* Adições da Fusão Módulos -> Método */
    .m-outcomes {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .m-outcome {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 14px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.4;
      text-align: left;
      transition: all 0.3s ease;
    }

    .m-pillar:hover .m-outcome {
      background: rgba(255, 255, 255, 0.04);
      color: rgba(255, 255, 255, 0.9);
      border-color: rgba(255, 255, 255, 0.08);
    }

    .m-outcome svg {
      width: 14px;
      height: 14px;
      opacity: 0.8;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .m-p-1 .m-outcome svg {
      color: var(--pink);
    }

    .m-p-2 .m-outcome svg {
      color: var(--blue-light);
    }

    .m-p-3 .m-outcome svg {
      color: #8B5CF6;
    }

    .m-p-4 .m-outcome svg {
      color: #0DBEAA;
    }

    .m-p-badges {
      display: flex;
      gap: 6px;
      margin-top: 16px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .m-pillar.m-right .m-p-badges {
      justify-content: flex-start;
    }

    @media (max-width: 900px) {
      .m-p-badges {
        justify-content: center !important;
      }
    }

    .m-badge {
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 10px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .m-badge.highlight {
      background: rgba(242, 26, 123, 0.1);
      color: var(--pink);
      border-color: rgba(242, 26, 123, 0.3);
    }

    /* Stats Strip transferida para Método */
    .m-stats-strip {
      margin-top: 80px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 32px;
      backdrop-filter: blur(10px);
    }

    @media (max-width: 900px) {
      .m-stats-strip {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 480px) {
      .m-stats-strip {
        grid-template-columns: 1fr;
      }
    }

    .m-stats-strip .how-stat-label {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
      line-height: 1.4;
      text-align: center;
    }

    .m-stats-strip .how-stat-num {
      color: var(--white);
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 4px;
      text-align: center;
    }

    .m-stats-strip .how-stat-num em {
      color: var(--pink);
      font-style: italic;
      font-size: 1.2rem;
    }

    .m-p-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--white);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .m-pillar.m-left .m-p-title {
      justify-content: flex-end;
    }

    .m-p-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pink);
      flex-shrink: 0;
    }

    .m-p-icon svg {
      width: 18px;
      height: 18px;
    }

    .m-p-text {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
    }

    /* Responsividade */
    @media (max-width: 900px) {
      .metodo-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 40px !important;
        width: 100% !important;
      }

      .metodo-core {
        order: -1 !important;
        width: 250px !important;
        height: 250px !important;
        margin-bottom: 20px !important;
        position: relative !important;
      }

      .m-core-glass {
        width: 120px !important;
        height: 120px !important;
      }

      .m-pillar,
      .m-p-1,
      .m-p-2,
      .m-p-3,
      .m-p-4 {
        float: none !important;
        left: 0 !important;
        right: 0 !important;
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
      }

      .m-lines {
        display: none !important;
      }

      .m-pillar.m-left,
      .m-pillar.m-right {
        text-align: center !important;
      }

      .m-pillar.m-left .m-p-title,
      .m-pillar.m-right .m-p-title {
        justify-content: center !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 16px !important;
      }

      .m-p-icon {
        order: -1 !important;
      }
    }
  

    .cert-v2-section {
      padding: 120px 20px;
      background: linear-gradient(to bottom, var(--white) 0%, var(--off-white) 100%);
      position: relative;
      overflow: hidden;
    }

    .cert-v2-wrap {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    @media (max-width: 900px) {
      .cert-v2-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
      }
    }

    .cert-v2-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (max-width: 900px) {
      .cert-v2-left {
        align-items: center;
      }
    }

    .cert-v2-eyebrow {
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--pink);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .cert-v2-eyebrow::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--pink);
    }

    .cert-v2-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 500;
      line-height: 1.06;
      color: var(--navy-deep);
      margin-bottom: 32px;
      letter-spacing: -0.03em;
      font-variation-settings: 'opsz' 72;
      text-wrap: balance;
    }

    .cert-v2-title em {
      color: var(--pink);
      font-style: italic;
      font-weight: 400;
    }

    .cert-v2-body {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-mid);
      margin-bottom: 32px;
    }

    .cert-v2-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .cert-v2-list-item {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--navy-deep);
    }

    .cert-v2-list-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(242, 26, 123, 0.1);
      color: var(--pink);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* Right Side: Elite 3D Landscape Certificate */
    .cert-v2-diploma-wrapper {
      position: relative;
      perspective: 2000px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .cert-v2-diploma {
      background: #fff; /* Paper look for contrast */
      background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 252, 1) 100%),
        url("https://www.transparenttextures.com/patterns/handmade-paper.png");
      width: 100%;
      max-width: 680px;
      aspect-ratio: 1.414 / 1; /* A4 Ratio Landscape */
      border-radius: 4px; /* Shorter radius for paper look */
      padding: 30px;
      position: relative;
      /* overflow: hidden removed — seal is now anchored to wrapper, not diploma-inner */
      box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 0 100px rgba(0, 0, 0, 0.05);
      transform: rotateY(-18deg) rotateX(8deg) rotateZ(2deg);
      transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
      transform-style: preserve-3d;
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .cert-v2-diploma:hover {
      transform: rotateY(-5deg) rotateX(2deg) rotateZ(0deg) translateY(-15px) scale(1.05);
      box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .cert-v2-diploma-inner {
      height: 100%;
      border: 2px solid var(--navy-deep);
      position: relative;
      z-index: 2;
      padding: 40px;
      overflow: hidden; /* Prevent text from escaping inner border */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: transparent;
      outline: 1px solid var(--navy-deep);
      outline-offset: -8px;
    }

    /* Guilloché corners / borders */
    .cert-v2-diploma-inner::before,
    .cert-v2-diploma-inner::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 60px;
        border: 15px solid transparent;
        border-image: radial-gradient(circle, var(--pink) 20%, transparent 80%) 1;
        opacity: 0.8;
    }
    
    .cert-v2-diploma-inner::before { top: 10px; left: 10px; border-top: 2px solid var(--navy-deep); border-left: 2px solid var(--navy-deep); }
    .cert-v2-diploma-inner::after { bottom: 10px; right: 10px; border-bottom: 2px solid var(--navy-deep); border-right: 2px solid var(--navy-deep); }

    .cv2-new-top {
      font-family: var(--font-display);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.15em; /* Reduced from 0.3em to prevent horizontal overflow */
      color: var(--navy-deep);
      margin-bottom: 25px;
      font-weight: 700;
      opacity: 0.8;
    }

    .cv2-new-title {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 3vw, 2.2rem); /* Responsive: adapts to container width */
      color: var(--navy-deep);
      margin-bottom: 20px;
      font-weight: 700;
      line-height: 1.1;
    }

    .cv2-new-student {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(1.8rem, 4.5vw, 3.5rem); /* Responsive: scales with viewport */
      color: var(--pink);
      margin: 15px 0;
      border-bottom: 1px solid rgba(0,0,0,0.1);
      display: inline-block;
      padding: 0 40px;
      max-width: 100%; /* Prevent name from overflowing diploma width */
    }

    .cv2-new-desc {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.6;
      max-width: 85%;
      margin: 20px auto;
    }

    /* Real 3D Wax Seal — anchored to diploma card, top-right corner */
    .cv2-wax-seal {
      position: absolute;
      top: -20px;
      right: -20px;
      width: 90px;
      height: 90px;
      background: radial-gradient(circle at 35% 35%, var(--pink-light) 0%, var(--pink) 50%, #b00a52 100%);
      border-radius: 50%;
      box-shadow: 
        2px 4px 10px rgba(0,0,0,0.3),
        inset -2px -4px 6px rgba(0,0,0,0.4),
        inset 2px 4px 6px rgba(255,255,255,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: rotate(-10deg) translateZ(20px);
      z-index: 10;
    }

    .cv2-wax-seal::after {
      content: '';
      position: absolute;
      inset: 8px;
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: 50%;
    }

    .cv2-wax-seal svg {
      width: 45px;
      height: 45px;
      color: white;
      filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
    }

    .cv2-new-footer {
        margin-top: auto;
        display: flex;
        gap: 40px;
        width: 100%;
        justify-content: center;
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 20px;
    }

    .cv2-new-sig {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .cv2-sig-img {
        font-family: 'Great Vibes', cursive;
        font-size: 1.8rem;
        color: var(--navy-deep);
        opacity: 0.7;
    }

    .cv2-sig-line {
        width: 140px;
        height: 1px;
        background: var(--navy-deep);
        opacity: 0.3;
    }

    .cv2-sig-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-muted);
    }

    /* ── Intermediate breakpoint: tablets (641px–900px) ─────────────────── */
    @media (min-width: 641px) and (max-width: 900px) {
      .cert-v2-diploma {
        transform: rotateY(-10deg) rotateX(4deg) rotateZ(1deg);
        max-width: 100%;
        padding: 20px;
      }
      .cert-v2-diploma-inner {
        padding: 28px 20px;
      }
      .cv2-new-title {
        font-size: 1.4rem;
      }
      .cv2-new-student {
        font-size: 2.4rem;
        padding: 0 20px;
      }
      .cv2-wax-seal {
        width: 70px;
        height: 70px;
        top: 10px;
        right: 10px;
      }
      .cv2-wax-seal svg {
        width: 36px;
        height: 36px;
      }
    }

    /* ── Mobile breakpoint: small screens (≤640px) ───────────────────────── */
    @media (max-width: 640px) {
      .cert-v2-diploma {
        transform: rotateY(0) rotateX(0) rotateZ(0);
        aspect-ratio: auto;
        padding: 15px;
      }
      .cert-v2-diploma-inner {
        padding: 20px 12px;
      }
      .cv2-new-top {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
        margin-bottom: 14px;
      }
      .cv2-new-student {
        font-size: 2.2rem;
      }
      .cv2-new-title {
        font-size: 1.5rem;
      }
      .cv2-new-desc {
        font-size: 0.75rem;
        margin: 10px auto;
        max-width: 95%;
      }
      .cv2-new-footer {
        gap: 16px;
        padding-top: 12px;
      }
      .cv2-sig-img {
        font-size: 1.2rem;
      }
      .cv2-sig-label {
        font-size: 0.55rem;
      }
      .cv2-wax-seal {
          width: 60px;
          height: 60px;
          top: 8px;
          right: 8px;
      }
      .cv2-wax-seal svg {
          width: 30px;
          height: 30px;
      }
    }
  

    /* ── Trail card upgrades ─────────────────────────────────────────────── */
    .trail-card {
      position: relative;
    }

    .trail-divider {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, .08);
      margin: 24px 0;
    }

    .trail-features {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 20px 0;
    }

    .trail-feat {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .875rem;
      color: rgba(255, 255, 255, .72);
      line-height: 1.5;
    }

    .trail-feat-icon {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .trail-a .trail-feat-icon {
      background: rgba(77, 79, 255, .2);
      color: var(--blue-light);
    }

    .trail-b .trail-feat-icon {
      background: rgba(242, 26, 123, .2);
      color: var(--pink-light);
    }

    .trail-feat-icon svg {
      width: 12px;
      height: 12px;
    }

    .trail-outcome {
      margin-top: 24px;
      padding: 16px 20px;
      border-radius: 12px;
      font-size: .82rem;
      line-height: 1.6;
    }

    .trail-a .trail-outcome {
      background: rgba(77, 79, 255, .1);
      border: 1px solid rgba(77, 79, 255, .2);
      color: rgba(255, 255, 255, .75);
    }

    .trail-b .trail-outcome {
      background: rgba(242, 26, 123, .08);
      border: 1px solid rgba(242, 26, 123, .18);
      color: rgba(255, 255, 255, .75);
    }

    .trail-outcome strong {
      color: var(--white);
    }

    .trail-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
      padding: 14px 28px;
      border-radius: var(--r-full);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      transition: var(--t);
      cursor: pointer;
    }

    .trail-a .trail-cta-btn {
      background: rgba(77, 79, 255, .2);
      border: 1.5px solid rgba(77, 79, 255, .4);
      color: #a5b4fc;
    }

    .trail-a .trail-cta-btn:hover {
      background: rgba(77, 79, 255, .35);
      transform: translateY(-2px);
    }

    .trail-b .trail-cta-btn {
      background: rgba(242, 26, 123, .2);
      border: 1.5px solid rgba(242, 26, 123, .35);
      color: var(--pink-light);
    }

    .trail-b .trail-cta-btn:hover {
      background: rgba(242, 26, 123, .3);
      transform: translateY(-2px);
    }

    .trail-vs-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      z-index: 10;
      background: var(--navy-deep);
      border: 2px solid rgba(255, 255, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .65rem;
      font-weight: 900;
      color: rgba(255, 255, 255, .5);
      letter-spacing: .05em;
    }

    .trails-grid-wrap {
      position: relative;
    }
  

    .vs-section {
      background: var(--navy-deep);
      color: var(--white);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .vs-bg {
      position: absolute;
      width: 1000px;
      height: 1000px;
      background: radial-gradient(circle, var(--pink-glow) 0%, transparent 60%);
      border-radius: 50%;
      opacity: 0.6;
      top: 0;
      left: 50%;
      transform: translate(-30%, -30%);
      pointer-events: none;
    }

    .vs-wrap {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    .vs-header {
      text-align: center;
      margin-bottom: 72px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .vs-badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 16px;
      background: rgba(242, 26, 123, 0.1);
      border: 1px solid rgba(242, 26, 123, 0.2);
      border-radius: 100px;
      color: var(--pink-light);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .vs-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      line-height: 1.06;
      font-weight: 500;
      max-width: 900px;
      color: var(--white);
      letter-spacing: -0.03em;
      font-variation-settings: 'opsz' 72;
      text-wrap: balance;
    }

    .vs-title em {
      color: var(--pink);
      font-style: italic;
      font-weight: 400;
    }

    .vs-layout {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      gap: 0;
    }

    @media (max-width: 950px) {
      .vs-layout {
        flex-direction: column;
        gap: 24px;
      }
    }

    /* Lado Ruim (Recuado) */
    .vs-card-bad {
      width: 400px;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: var(--r-xl);
      padding: 48px 40px;
      opacity: 0.5;
      filter: grayscale(100%);
      transform: scale(0.95) translateX(40px);
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: var(--t);
    }

    .vs-card-bad:hover {
      opacity: 0.8;
      filter: grayscale(50%);
    }

    @media (max-width: 950px) {
      .vs-card-bad {
        width: 100%;
        transform: none;
        opacity: 0.7;
        filter: grayscale(50%);
        padding: 40px 24px;
      }
    }

    .vs-icon-bad {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .vs-card-title-bad {
      font-size: 1.1rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 24px;
    }

    .vs-list-bad {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .vs-list-bad li {
      position: relative;
      padding-left: 28px;
      font-size: 0.95rem;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.5);
    }

    .vs-list-bad li::before {
      content: '✕';
      position: absolute;
      left: 0;
      top: 0;
      color: rgba(255, 255, 255, 0.3);
      font-weight: 700;
    }

    /* Lado Bom (Gigante, Sobreposto) */
    .vs-card-good {
      width: 530px;
      flex-shrink: 0;
      background: linear-gradient(145deg, rgba(242, 26, 123, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-top: 4px solid var(--pink);
      border-radius: var(--r-xl);
      padding: 48px 40px;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(242, 26, 123, 0.2) inset;
      backdrop-filter: blur(20px);
      position: relative;
      z-index: 2;
      transform: translateX(-20px);
    }

    @media (max-width: 950px) {
      .vs-card-good {
        width: 100%;
        transform: none;
        padding: 48px 24px;
      }
    }

    .vs-icon-good {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--pink), var(--pink-light));
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 32px;
      box-shadow: 0 12px 30px rgba(242, 26, 123, 0.4);
    }

    .vs-icon-good svg {
      width: 32px;
      height: 32px;
    }

    .vs-card-title-good {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.2rem);
      line-height: 1.2;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .vs-card-sub-good {
      font-size: 1.15rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 40px;
      font-weight: 500;
    }

    .vs-list-good {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .vs-list-good li {
      position: relative;
      padding-left: 36px;
      font-size: 1.05rem;
      line-height: 1.5;
      color: var(--white);
      font-weight: 500;
    }

    /* List items icons handled inline in HTML for reliability */
  

    .bonus-torre {
      padding: 100px 20px;
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
    }

    .bonus-torre::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    }

    .bt-grid {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .bt-card {
      width: 100%;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--r-xl);
      padding: 40px;
      display: flex;
      align-items: center;
      gap: 48px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
      transition: var(--t);
    }

    .bt-card:hover {
      border-color: rgba(242, 26, 123, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .bt-card-glow {
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 50% 50%, rgba(242, 26, 123, 0.05), transparent 60%);
      pointer-events: none;
      opacity: 0;
      transition: var(--t);
    }

    .bt-card:hover .bt-card-glow {
      opacity: 1;
    }

    .bt-card-left {
      flex: 1;
      position: relative;
      z-index: 2;
    }

    .bt-card-right {
      flex: 1;
      position: relative;
      z-index: 2;
    }

    .bt-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(242, 26, 123, 0.2), rgba(242, 26, 123, 0.05));
      border: 1px solid rgba(242, 26, 123, 0.3);
      color: var(--pink);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      box-shadow: 0 8px 24px rgba(242, 26, 123, 0.2);
    }

    .bt-icon svg {
      width: 28px;
      height: 28px;
    }

    .bt-num {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 8px;
    }

    .bt-title {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .bt-desc {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
    }

    .bt-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      background: rgba(0, 0, 0, 0.2);
      padding: 32px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.03);
    }

    .bt-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 500;
      line-height: 1.5;
    }

    .bt-check {
      color: var(--pink);
      font-weight: 800;
      margin-top: 2px;
    }

    /* Urgency Footer */
    .bt-urgency {
      margin: 48px auto 0;
      max-width: 800px;
      padding: 24px 32px;
      background: rgba(242, 26, 123, 0.07);
      border: 1px solid rgba(242, 26, 123, 0.18);
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 20px;
      position: relative;
      overflow: hidden;
    }

    .bt-urgency::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--pink), transparent);
    }

    .bt-urgency-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      flex-shrink: 0;
      background: rgba(242, 26, 123, 0.15);
      border: 1px solid rgba(242, 26, 123, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pink);
    }

    .bt-urgency-icon svg {
      width: 22px;
      height: 22px;
    }

    .bt-urgency-text strong {
      display: block;
      color: var(--white);
      font-size: 0.92rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .bt-urgency-text span {
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.82rem;
      line-height: 1.5;
    }

    @media (max-width: 900px) {
      .bt-card {
        flex-direction: column;
        gap: 32px;
        padding: 32px 24px;
      }

      .bt-card-left,
      .bt-card-right {
        width: 100%;
      }

      .bt-list {
        padding: 24px;
      }

      .bt-urgency {
        flex-direction: column;
        text-align: center;
        padding: 24px;
      }
    }
  

    /* ── Mid CTA V2 Overrides ── */
    .mid-cta-v2 {
      padding: 120px 20px;
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .mid-cta-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 900px;
      background: radial-gradient(circle, var(--pink-glow) 0%, transparent 60%);
      border-radius: 50%;
      opacity: 0.6;
      pointer-events: none;
      z-index: 1;
    }

    .mid-cta-v2-inner {
      max-width: 860px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .mcta-kicker {
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--pink-light);
      margin-bottom: 24px;
    }

    .mcta-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      line-height: 1.06;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 24px;
      letter-spacing: -0.03em;
      font-variation-settings: 'opsz' 72;
      text-wrap: balance;
    }

    .mcta-title em {
      color: var(--pink);
      font-style: italic;
      font-weight: 400;
    }

    .mcta-sub {
      font-size: 1.25rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 48px;
      max-width: 760px;
    }

    .mcta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--pink), #D81268);
      color: var(--white);
      padding: 22px 56px;
      border-radius: 100px;
      font-size: 1.15rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-decoration: none;
      box-shadow: 0 15px 40px rgba(242, 26, 123, 0.4);
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
    }

    .mcta-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
      transform: skewX(-20deg);
      animation: shine 4s infinite;
    }

    @keyframes shine {
      0% {
        left: -100%;
      }

      20% {
        left: 200%;
      }

      100% {
        left: 200%;
      }
    }

    .mcta-btn:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 20px 50px rgba(242, 26, 123, 0.6);
      color: var(--white);
    }

    @media (max-width: 768px) {
      .mcta-btn {
        width: 100%;
        padding: 20px;
        font-size: 1rem;
      }
    }

    .mcta-trust-bar {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }

    .mcta-trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      background: rgba(255, 255, 255, 0.05);
      padding: 10px 20px;
      border-radius: var(--r-full);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mcta-trust-item svg {
      width: 18px;
      height: 18px;
      color: var(--pink-light);
    }
  

          /* ── About Biografia V2 Overrides ── */
          .about-v2-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
          }

          .about-name {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3.2rem);
            color: var(--navy-deep);
            line-height: 1.06;
            margin-bottom: 4px;
            letter-spacing: -0.03em;
            font-variation-settings: 'opsz' 72;
          }

          .about-role {
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--pink);
            margin-bottom: 32px;
          }

          .about-text-v2 {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-mid);
            margin-bottom: 40px;
          }

          .about-text-v2 strong {
            color: var(--navy-deep);
            font-weight: 700;
          }

          .cred-list-v2 {
            list-style: none;
            padding: 0;
            margin: 0 0 48px 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
          }

          .cred-item-v2 {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            font-size: 1rem;
            color: var(--navy-deep);
            line-height: 1.6;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
          }

          .cred-item-v2:last-child {
            border-bottom: none;
            padding-bottom: 0;
          }

          .cred-item-v2 .cred-dot-v2 {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            flex-shrink: 0;
            background: rgba(242, 26, 123, 0.1);
            border: 1px solid rgba(242, 26, 123, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pink);
            margin-top: 2px;
          }

          .cred-item-v2 .cred-dot-v2 svg {
            width: 14px;
            height: 14px;
          }

          .cred-item-v2 strong {
            font-weight: 800;
            color: var(--pink);
          }

          .about-btn-v2 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--pink), #D81268);
            color: var(--white);
            padding: 20px 48px;
            border-radius: 100px;
            font-size: 1.1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-decoration: none;
            box-shadow: 0 15px 40px rgba(242, 26, 123, 0.35);
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            overflow: hidden;
          }

          .about-btn-v2::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: skewX(-20deg);
            animation: shine 4s infinite;
          }

          .about-btn-v2:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 50px rgba(242, 26, 123, 0.5);
            color: var(--white);
          }

          .about-cta-trust-v2 {
            margin-top: 16px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
            justify-content: center;
            text-transform: uppercase;
            letter-spacing: 0.05em;
          }

          .about-cta-row-v2 {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
          }

          @media (max-width: 900px) {
            .about-cta-row-v2 {
              align-items: center;
              text-align: center;
            }
          }
        

    .traj-v2 {
      padding: 120px 0;
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
    }

    .traj-v2::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(242, 26, 123, .08) 0%, transparent 60%);
      pointer-events: none;
    }

    .traj-v2-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 64px;
      padding: 0 40px;
      position: relative;
      z-index: 2;
    }

    .traj-v2-eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--pink-light);
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .traj-v2-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      color: var(--white);
      line-height: 1.06;
      font-weight: 500;
      margin-bottom: 20px;
      letter-spacing: -0.03em;
      font-variation-settings: 'opsz' 72;
      text-wrap: balance;
    }

    .traj-v2-title em {
      color: var(--pink);
      font-style: italic;
    }

    .traj-v2-sub {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Carrosel Container */
    .traj-v2-carousel-wrap {
      position: relative;
      width: 100%;
      margin: 0 auto;
      z-index: 2;
      overflow: hidden;
    }

    /* Fades laterais */
    .traj-v2-carousel-wrap::before,
    .traj-v2-carousel-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 5;
      pointer-events: none;
    }

    .traj-v2-carousel-wrap::before {
      left: 0;
      background: linear-gradient(90deg, var(--navy-deep) 0%, transparent 100%);
    }

    .traj-v2-carousel-wrap::after {
      right: 0;
      background: linear-gradient(-90deg, var(--navy-deep) 0%, transparent 100%);
    }

    .traj-v2-track {
      display: flex;
      gap: 24px;
      padding: 20px 0 60px;
      width: max-content;
      animation: depo-scroll 36s linear infinite;
    }

    .traj-v2-track:hover {
      animation-play-state: paused;
    }

    /* Cards Premium */
    .traj-v2-card {
      flex: 0 0 380px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--r-2xl);
      padding: 32px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(12px);
      transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      display: flex;
      flex-direction: column;
    }

    .traj-v2-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(242, 26, 123, 0.3);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(242, 26, 123, 0.1) inset;
    }

    /* Accent bar on top of card */
    .traj-v2-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .traj-v2-card:hover::before {
      opacity: 1;
    }

    /* Image Area */
    .traj-v2-img-container {
      width: 100%;
      aspect-ratio: 16/10;
      border-radius: var(--r-xl);
      background: rgba(0, 0, 0, 0.2);
      margin-bottom: 28px;
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .traj-v2-img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s var(--ease);
    }

    .traj-v2-card:hover .traj-v2-img-container img {
      transform: scale(1.05);
    }

    /* Badge/Year */
    .traj-v2-year {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(8px);
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      font-size: 0.7rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: 0.1em;
    }

    /* Content */
    .traj-v2-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(242, 26, 123, 0.1);
      border: 1px solid rgba(242, 26, 123, 0.2);
      color: var(--pink);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 4px 16px rgba(242, 26, 123, 0.1);
    }

    .traj-v2-icon svg {
      width: 24px;
      height: 24px;
    }

    .traj-v2-name {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .traj-v2-desc {
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.65);
      flex-grow: 1;
    }

    .traj-v2-desc strong {
      color: rgba(255, 255, 255, 0.95);
      font-weight: 600;
    }

    /* Swipe Helper */
    .traj-v2-swipe-hint {
      text-align: center;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-weight: 600;
      margin-bottom: 20px;
      display: none;
    }

    /* Indicator Dots Highlighting (bottom stats) */
    .traj-v2-hl {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--r-2xl);
      overflow: hidden;
      max-width: 900px;
      margin: 0 auto;
      backdrop-filter: blur(10px);
    }

    .traj-v2-hl-item {
      padding: 36px 20px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .traj-v2-hl-item:last-child {
      border-right: none;
    }

    .traj-v2-hl-num {
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--pink);
      line-height: 1;
      margin-bottom: 8px;
    }

    .traj-v2-hl-lbl {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    @media(max-width: 900px) {
      .traj-v2-card {
        flex: 0 0 320px;
        padding: 24px;
      }

      .traj-v2-track {
        padding: 20px 40px 40px;
      }
    }

    @media(max-width: 640px) {
      .traj-v2 {
        padding: 80px 0;
      }

      .traj-v2-header {
        padding: 0 20px;
        margin-bottom: 40px;
      }

      .traj-v2-card {
        flex: 0 0 82vw;
        padding: 20px;
      }

      .traj-v2-track {
        padding: 20px 20px 40px;
        gap: 16px;
        scroll-padding-left: 20px;
      }

      .traj-v2-swipe-hint {
        display: block;
      }

      .traj-v2-carousel-wrap::before,
      .traj-v2-carousel-wrap::after {
        display: none;
      }

      .traj-v2-hl {
        grid-template-columns: 1fr;
        margin: 0 20px;
      }

      .traj-v2-hl-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 24px 20px;
      }

      .traj-v2-hl-item:last-child {
        border-bottom: none;
      }
    }
  

    /* ── Garantia section ──────────────────────────────────────────────── */
    .garantia {
      padding: 80px 40px;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .garantia::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(242, 26, 123, .04) 0%, transparent 70%);
      pointer-events: none;
    }

    .garantia-inner {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    /* Seal */
    .garantia-seal {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 180px;
      height: 180px;
      flex-shrink: 0;
      position: relative;
    }

    .garantia-seal-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: conic-gradient(var(--pink) 0deg, #c4005e 90deg,
          var(--pink) 180deg, #e8006b 270deg, var(--pink) 360deg);
      animation: seal-spin 12s linear infinite;
    }

    .garantia-seal-inner {
      position: absolute;
      inset: 6px;
      border-radius: 50%;
      background: var(--white);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      box-shadow: 0 4px 24px rgba(242, 26, 123, .15);
    }

    @keyframes seal-spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .seal-days {
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--pink);
      line-height: 1;
      font-variation-settings: 'opsz' 72;
    }

    .seal-label {
      font-size: .6rem;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--text-muted);
      line-height: 1;
    }

    .seal-sub {
      font-size: .65rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: .06em;
      text-transform: uppercase;
      line-height: 1;
    }

    /* Text side */
    .garantia-text {}

    .garantia-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 14px;
    }

    .garantia-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--pink);
    }

    .garantia-title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 500;
      line-height: 1.1;
      color: var(--text-dark);
      margin-bottom: 16px;
      font-variation-settings: 'opsz' 72;
      letter-spacing: -.02em;
    }

    .garantia-title em {
      font-style: italic;
      color: var(--pink);
    }

    .garantia-body {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .garantia-body strong {
      color: var(--text-dark);
      font-weight: 700;
    }

    .garantia-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .garantia-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 18px;
      border-radius: var(--r-full);
      font-size: .75rem;
      font-weight: 700;
    }

    .gb-pink {
      background: rgba(242, 26, 123, .08);
      border: 1px solid rgba(242, 26, 123, .2);
      color: var(--pink);
    }

    .gb-green {
      background: rgba(16, 185, 129, .08);
      border: 1px solid rgba(16, 185, 129, .2);
      color: #059669;
    }

    .gb-blue {
      background: rgba(12, 53, 177, .07);
      border: 1px solid rgba(12, 53, 177, .15);
      color: var(--blue);
    }

    .garantia-badge svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    @media(max-width:720px) {
      .garantia-inner {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .garantia-seal {
        margin: 0 auto;
      }

      .garantia-badges {
        justify-content: center;
      }

      .garantia-eyebrow {
        justify-content: center;
      }
    }


    /* ═══════════════════════════════════════════════════════════════════════
       DOR — Pain/Identification section
    ═══════════════════════════════════════════════════════════════════════ */
    .dor {
      padding: 100px 40px;
      background: linear-gradient(160deg, var(--navy-deep) 0%, #060c2e 60%, #010D43 100%);
      position: relative;
      overflow: hidden;
    }

    .dor::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 60% at 5% 50%, rgba(242, 26, 123, .1) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 95% 30%, rgba(77, 79, 255, .12) 0%, transparent 55%);
      pointer-events: none;
    }

    .dor::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
    }

    .dor-inner {
      position: relative;
      z-index: 1;
      max-width: 1120px;
      margin: 0 auto;
    }

    .dor-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .dor-kicker {
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-bottom: 18px;
      display: block;
    }

    .dor-intro {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-weight: 500;
      line-height: 1.15;
      color: var(--white);
      font-variation-settings: "opsz" 72;
      letter-spacing: -.03em;
      margin-bottom: 16px;
    }

    .dor-intro em {
      color: var(--pink);
      font-style: italic;
    }

    .dor-sub {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, .45);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.75;
    }

    .dor-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 56px;
    }

    .dor-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 20px;
      padding: 28px 24px;
      position: relative;
      overflow: hidden;
      transition: background .3s, border-color .3s;
    }

    .dor-card:hover {
      background: rgba(255, 255, 255, .07);
      border-color: rgba(242, 26, 123, .2);
    }

    .dor-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--pink), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .dor-card:hover::before {
      opacity: 1;
    }

    .dor-card-ico {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      margin-bottom: 16px;
      background: rgba(242, 26, 123, .1);
      border: 1px solid rgba(242, 26, 123, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pink);
    }

    .dor-card-ico svg {
      width: 18px;
      height: 18px;
    }

    .dor-card-text {
      font-size: .95rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.65;
    }

    .dor-card-text strong {
      color: rgba(255, 255, 255, .9);
      font-weight: 600;
    }

    .dor-causa {
      background: rgba(242, 26, 123, .05);
      border: 1.5px solid rgba(242, 26, 123, .18);
      border-radius: 24px;
      padding: 48px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 36px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .dor-causa::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--pink), var(--blue-light));
    }

    .dor-causa-icon {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      flex-shrink: 0;
      background: rgba(242, 26, 123, .12);
      border: 1px solid rgba(242, 26, 123, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pink);
    }

    .dor-causa-icon svg {
      width: 32px;
      height: 32px;
    }

    .dor-causa-kicker {
      font-size: .62rem;
      font-weight: 800;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 10px;
    }

    .dor-causa-title {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2.5vw, 1.85rem);
      font-weight: 500;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 14px;
      font-variation-settings: "opsz" 72;
    }

    .dor-causa-title em {
      color: var(--pink);
      font-style: italic;
    }

    .dor-causa-body {
      font-size: 1rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.8;
    }

    .dor-causa-body strong {
      color: rgba(255, 255, 255, .9);
      font-weight: 600;
    }

    @media(max-width:900px) {
      .dor-grid {
        grid-template-columns: 1fr 1fr;
      }

      .dor-causa {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .dor-causa-icon {
        margin: 0 auto;
      }
    }

    @media(max-width:640px) {
      .dor {
        padding: 72px 20px;
      }

      .dor-grid {
        grid-template-columns: 1fr;
      }

      .dor-causa {
        padding: 32px 24px;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════════
       CERTIFICADO — Dedicated highlight section
    ═══════════════════════════════════════════════════════════════════════ */
    .cert-section {
      padding: 96px 40px;
      background: var(--off-white);
      position: relative;
      overflow: hidden;
    }

    .cert-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--blue-light), var(--blue));
    }

    .cert-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .cert-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--pink);
    }

    .cert-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--pink);
    }

    .cert-title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      font-weight: 500;
      line-height: 1.1;
      color: var(--text-dark);
      margin-bottom: 16px;
      font-variation-settings: "opsz" 72;
      letter-spacing: -.03em;
    }

    .cert-title em {
      color: var(--pink);
      font-style: italic;
    }

    .cert-body {
      font-size: 1.05rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .cert-body strong {
      color: var(--text-dark);
      font-weight: 700;
    }

    .cert-pills {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cert-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 20px;
      border-radius: var(--r-full);
      font-size: .78rem;
      font-weight: 700;
      background: rgba(242, 26, 123, .07);
      border: 1px solid rgba(242, 26, 123, .18);
      color: var(--pink);
    }

    .cert-pill svg {
      width: 14px;
      height: 14px;
    }

    .cert-card {
      background: linear-gradient(140deg, #010D43 0%, #0C35B1 60%, #010D43 100%);
      border-radius: 28px;
      padding: 48px 44px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(12, 53, 177, .22);
    }

    .cert-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--blue-light));
    }

    .cert-card::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, .2) 0%, transparent 70%);
    }

    .cert-badge-num {
      font-family: var(--font-display);
      font-size: 5.5rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      font-variation-settings: "opsz" 72;
    }

    .cert-badge-num em {
      color: var(--pink);
      font-style: normal;
      font-size: 2rem;
      vertical-align: 1.2rem;
    }

    .cert-badge-unit {
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 28px;
      display: block;
    }

    .cert-badge-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .cert-badge-sub {
      font-size: .85rem;
      color: rgba(255, 255, 255, .45);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .cert-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, .1);
      margin: 24px 0;
    }

    .cert-card-feats {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .cert-feat {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: .88rem;
      color: rgba(255, 255, 255, .7);
    }

    .cert-feat-dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(16, 185, 129, .15);
      border: 1px solid rgba(16, 185, 129, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .6rem;
      color: #10B981;
    }

    @media(max-width:900px) {
      .cert-inner {
        grid-template-columns: 1fr;
      }
    }

    @media(max-width:640px) {
      .cert-section {
        padding: 72px 20px;
      }

      .cert-card {
        padding: 36px 28px;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════════
       CTA INTERMEDIÁRIO
    ═══════════════════════════════════════════════════════════════════════ */
    .mid-cta {
      padding: 88px 40px;
      text-align: center;
      background: linear-gradient(135deg, #010D43 0%, #0C35B1 50%, #010D43 100%);
      position: relative;
      overflow: hidden;
    }

    .mid-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(242, 26, 123, .1) 0%, transparent 60%);
    }

    .mid-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    .mid-cta-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
    }

    .mid-cta-kicker {
      font-size: .62rem;
      font-weight: 800;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-bottom: 18px;
    }

    .mid-cta-title {
      font-family: var(--font-display);
      font-size: clamp(1.7rem, 3.5vw, 2.8rem);
      font-weight: 500;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 16px;
      font-variation-settings: "opsz" 72;
      letter-spacing: -.03em;
    }

    .mid-cta-title em {
      color: var(--pink);
      font-style: italic;
    }

    .mid-cta-sub {
      font-size: 1rem;
      color: rgba(255, 255, 255, .45);
      line-height: 1.75;
      margin-bottom: 36px;
    }

    .mid-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--pink);
      color: var(--white);
      font-family: var(--font-body);
      font-size: .92rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 18px 48px;
      border-radius: var(--r-full);
      box-shadow: 0 8px 36px rgba(242, 26, 123, .45);
      transition: var(--t);
    }

    .mid-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 50px rgba(242, 26, 123, .55);
    }

    .mid-cta-trust {
      margin-top: 16px;
      font-size: .78rem;
      color: rgba(255, 255, 255, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .mid-cta-trust::before,
    .mid-cta-trust::after {
      content: '';
      width: 32px;
      height: 1px;
      background: rgba(255, 255, 255, .12);
    }

    @media(max-width:640px) {
      .mid-cta {
        padding: 64px 20px;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════════
       BONUS — Detail and urgency enhancements
    ═══════════════════════════════════════════════════════════════════════ */
    .bonus-detail-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 14px;
    }

    .bonus-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .78rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.5;
    }

    .bonus-detail-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 2px;
      border: 1px solid rgba(255, 255, 255, .18);
      background: rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bonus-detail-dot::after {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--pink);
    }

    .bonus-urgency {
      margin-top: 48px;
      padding: 24px 32px;
      background: rgba(242, 26, 123, .07);
      border: 1px solid rgba(242, 26, 123, .18);
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 20px;
      position: relative;
      overflow: hidden;
    }

    .bonus-urgency::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--pink), transparent);
    }

    .bonus-urgency-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      flex-shrink: 0;
      background: rgba(242, 26, 123, .15);
      border: 1px solid rgba(242, 26, 123, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pink);
    }

    .bonus-urgency-icon svg {
      width: 22px;
      height: 22px;
    }

    .bonus-urgency-text strong {
      display: block;
      color: var(--white);
      font-size: .92rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .bonus-urgency-text span {
      color: rgba(255, 255, 255, .45);
      font-size: .82rem;
      line-height: 1.5;
    }

    @media(max-width:640px) {
      .bonus-urgency {
        flex-direction: column;
        text-align: center;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════════
       PRICING — urgency badge
    ═══════════════════════════════════════════════════════════════════════ */
    .pc-urgency {
      background: rgba(242, 26, 123, .08);
      border: 1px solid rgba(242, 26, 123, .2);
      border-radius: 12px;
      padding: 14px 18px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pc-urgency-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--pink);
      flex-shrink: 0;
      animation: blink 1.5s ease-in-out infinite;
    }

    .pc-urgency-text {
      font-size: .82rem;
      color: rgba(255, 255, 255, .7);
      line-height: 1.5;
    }

    .pc-urgency-text strong {
      color: var(--white);
      font-weight: 700;
    }
  

    .garantia-v3 {
      background: var(--white);
      padding: 120px 20px;
      position: relative;
      overflow: hidden;
    }

    .garantia-v3-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(242, 26, 123, 0.04) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .garantia-v3-container {
      max-width: 1040px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      background: var(--navy-deep);
      border: 1px solid rgba(242, 26, 123, 0.2);
      border-radius: 32px;
      padding: 80px 64px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 80px;
      align-items: center;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(16px);
    }

    @media (max-width: 900px) {
      .garantia-v3-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 56px 32px;
        gap: 48px;
      }
    }

    .g-v3-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    .g-v3-num-giant {
      font-family: var(--font-display);
      font-size: 16rem;
      font-weight: 900;
      line-height: 0.75;
      letter-spacing: -0.05em;
      background: linear-gradient(180deg, var(--pink-light) 0%, var(--pink) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      opacity: 0.95;
      filter: drop-shadow(0 20px 30px rgba(242, 26, 123, 0.3));
      margin-bottom: -24px;
    }

    @media (max-width: 640px) {
      .g-v3-num-giant {
        font-size: 11rem;
      }
    }

    .g-v3-seal-text {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1.1;
      text-align: center;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
      z-index: 2;
    }

    .g-v3-stars {
      display: flex;
      gap: 6px;
      margin-top: 16px;
      z-index: 2;
    }

    .g-v3-stars svg {
      width: 24px;
      height: 24px;
      color: var(--pink);
      fill: var(--pink);
      filter: drop-shadow(0 2px 8px rgba(242, 26, 123, 0.4));
    }

    .g-v3-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 24px;
      font-weight: 500;
      letter-spacing: -0.02em;
    }

    .g-v3-content h2 strong {
      color: var(--pink-light);
      font-weight: 600;
    }

    .g-v3-content p {
      font-size: clamp(1rem, 1.5vw, 1.1rem);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 24px;
    }

    .g-v3-content p:last-child {
      margin-bottom: 0;
    }

    .g-v3-content p em {
      font-style: normal;
      color: var(--white);
      font-weight: 600;
    }

    /* Badge para o risco zero */
    .g-v3-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(242, 26, 123, 0.1);
      border: 1px solid rgba(242, 26, 123, 0.3);
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--pink-light);
      margin-bottom: 24px;
    }

    @media (max-width: 900px) {
      .g-v3-kicker {
        display: none;
      }
    }
  

    /* ── PRICING V2 Overrides (Anchoring Edition) ── */
    .pricing-v2 {
      padding: 140px 20px;
      background: var(--navy-deep); /* halo branco removido — fundo azul uniforme */
      position: relative;
      overflow: hidden;
    }

    .pricing-v2::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
      opacity: 0.5;
    }

    /* ── TRAJETÓRIA: ocultar ícones de cada card ── */
    .traj-v2-icon {
      display: none;
    }

    .pricing-v2-inner {
      max-width: 1140px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 80px;
      align-items: center;
    }

    @media (max-width: 1024px) {
      .pricing-v2-inner {
        grid-template-columns: 1fr;
        gap: 64px;
      }
    }

    /* Lado Esquerdo: Fatura de Valor */
    .p-v2-left {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .p-v2-value-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      line-height: 1.06;
      color: var(--white);
      font-weight: 500;
      margin-bottom: 32px;
      letter-spacing: -0.03em;
      font-variation-settings: 'opsz' 72;
      text-wrap: balance;
    }

    .p-v2-value-sub {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .p-v2-receipt {
      display: flex;
      flex-direction: column;
      gap: 16px;
      background: rgba(0, 0, 0, 0.25);
      border-radius: 20px;
      padding: 32px;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .p-v2-receipt-item {
      display: flex;
      align-items: flex-end;
      width: 100%;
      font-size: 0.95rem;
      line-height: 1.2;
    }

    .p-v2-r-icon {
      color: var(--pink);
      font-weight: 800;
      margin-right: 12px;
      font-size: 1.1rem;
    }

    .p-v2-r-name {
      color: rgba(255, 255, 255, 0.85);
      font-weight: 500;
    }

    .p-v2-r-dots {
      flex-grow: 1;
      border-bottom: 2px dotted rgba(255, 255, 255, 0.15);
      margin: 0 12px;
      position: relative;
      top: -4px;
    }

    .p-v2-r-price {
      color: var(--white);
      font-weight: 700;
      font-family: var(--font-display);
      white-space: nowrap;
    }

    .p-v2-anchor {
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .p-v2-anchor-text {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
    }

    .p-v2-anchor-value {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 700;
      color: var(--pink);
      line-height: 1;
      text-shadow: 0 4px 24px rgba(242, 26, 123, 0.3);
      letter-spacing: -1px;
    }

    @media (max-width: 640px) {
      .p-v2-receipt {
        padding: 24px 16px;
        gap: 24px;
      }

      .p-v2-receipt-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }

      .p-v2-r-icon {
        display: none;
      }

      .p-v2-r-name::before {
        content: '✓ ';
        color: var(--pink);
        font-weight: 800;
      }

      .p-v2-r-dots {
        display: none;
      }

      .p-v2-r-price {
        color: var(--pink-light);
      }

      .p-v2-anchor-value {
        font-size: 2.2rem;
      }
    }

    /* Lado Direito: Checkout Card Obelisco */
    .p-v2-card {
      background: linear-gradient(145deg, rgba(12, 53, 177, 0.3) 0%, rgba(10, 20, 60, 0.6) 100%);
      border-radius: var(--r-2xl);
      padding: 56px 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(16px);
    }

    .p-v2-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--pink), var(--pink-light), transparent);
    }

    .pc-v2-head {
      text-align: center;
      margin-bottom: 24px;
    }

    .pc-v2-level {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 16px;
      padding: 6px 16px;
      background: rgba(242, 26, 123, 0.1);
      border-radius: 100px;
    }

    .pc-v2-name {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .pc-v2-price-wrap {
      text-align: center;
      margin-bottom: 32px;
      padding: 24px 0 32px;
      border-top: 1px dashed rgba(255, 255, 255, 0.1);
      border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    }

    .pc-v2-anchor-strike {
      font-size: 1.05rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(242, 26, 123, 0.15);
      padding: 8px 24px;
      border-radius: 100px;
      border: 1px solid rgba(242, 26, 123, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .pc-v2-anchor-strike .strike {
      text-decoration: line-through;
      color: var(--pink-light);
      text-decoration-thickness: 2px;
      font-family: var(--font-display);
      font-size: 1.25rem;
    }

    .pc-v2-installments {
      font-size: 0.9rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .pc-v2-price {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 8px;
      color: var(--white);
      line-height: 0.8;
      margin-bottom: 16px;
    }

    .pc-v2-cur {
      font-size: 2rem;
      font-weight: 600;
      color: var(--pink);
      margin-top: 8px;
    }

    .pc-v2-amount {
      font-family: var(--font-display);
      font-size: 5.5rem;
      font-weight: 700;
      letter-spacing: -3px;
    }

    .pc-v2-cents {
      font-size: 2rem;
      font-weight: 600;
      color: var(--pink);
      margin-top: 14px;
    }

    .pc-v2-cash {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .pc-v2-cash strong {
      color: var(--white);
      font-weight: 700;
    }

    .pc-v2-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      background: linear-gradient(135deg, var(--pink), #D81268);
      color: var(--white);
      padding: 24px;
      border-radius: var(--r-xl);
      font-size: 1.15rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-decoration: none;
      box-shadow: 0 15px 40px rgba(242, 26, 123, 0.4);
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
      margin-bottom: 24px;
    }

    .pc-v2-btn:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 20px 50px rgba(242, 26, 123, 0.6);
      color: var(--white);
    }

    .pc-v2-badges {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .pc-v2-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 0.82rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      padding: 12px;
      background: rgba(0, 0, 0, 0.2);
      border-radius: 12px;
      text-align: center;
    }

    .pc-v2-badge svg {
      width: 16px;
      height: 16px;
      color: #10b981;
      flex-shrink: 0;
    }

    @media (max-width: 640px) {
      .p-v2-card {
        padding: 40px 24px;
      }

      .pc-v2-anchor-strike {
        font-size: 0.9rem;
        padding: 8px 16px;
        flex-direction: column;
        gap: 4px;
      }

      .pc-v2-anchor-strike .strike {
        font-size: 1.15rem;
      }

      .pc-v2-amount {
        font-size: 4.5rem;
      }

      .pc-v2-cur,
      .pc-v2-cents {
        font-size: 1.4rem;
        margin-top: 6px;
      }
    }
  

    /* ── FINAL CTA V2 (Glassmorphism + Neon Orb) ── */
    .final-cta-v2 {
      padding: 140px 20px;
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    /* Background Grid Pattern */
    .final-cta-v2::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
      z-index: 0;
    }

    /* Central Neon Glow Orb */
    .final-cta-v2::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(242, 26, 123, 0.15) 0%, rgba(12, 53, 177, 0.1) 40%, transparent 70%);
      filter: blur(80px);
      pointer-events: none;
      z-index: 1;
    }

    .final-cta-inner {
      position: relative;
      z-index: 2;
      max-width: 800px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    /* Animated Badge */
    .final-cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 100px;
      background: rgba(242, 26, 123, 0.1);
      border: 1px solid rgba(242, 26, 123, 0.3);
      backdrop-filter: blur(10px);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 32px;
      box-shadow: 0 0 20px rgba(242, 26, 123, 0.15);
    }

    .f-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--pink);
      box-shadow: 0 0 10px var(--pink);
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(1.5);
      }
    }

    /* Title overridden globally, just setting color and spacing */
    .f-cta-title {
      color: var(--white);
      margin-bottom: 24px;
    }

    .f-cta-title span {
      color: var(--pink);
      font-style: italic;
      font-weight: 400;
    }

    .f-cta-sub {
      color: rgba(255, 255, 255, 0.65);
      max-width: 600px;
      margin-bottom: 48px;
    }

    /* Action Machine */
    .f-cta-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      width: 100%;
    }

    .f-cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Primary Kinetic Button */
    .f-btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--pink), #D81268);
      color: var(--white);
      padding: 22px 48px;
      border-radius: 100px;
      font-size: 1.1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-decoration: none;
      box-shadow: 0 15px 40px rgba(242, 26, 123, 0.4);
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .f-btn-primary::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
      transform: skewX(-20deg);
      animation: shine 4s infinite 1s;
    }

    .f-btn-primary:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 20px 50px rgba(242, 26, 123, 0.6);
      color: var(--white);
    }

    /* Secondary Button (WhatsApp) */
    .f-btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--white);
      padding: 20px 40px;
      border-radius: 100px;
      font-size: 1rem;
      font-weight: 700;
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      text-decoration: none;
      transition: var(--t);
    }

    .f-btn-secondary svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .f-btn-secondary:hover {
      background: rgba(37, 211, 102, 0.1);
      border-color: rgba(37, 211, 102, 0.5);
      color: #25D366;
      transform: translateY(-2px);
    }

    /* Trust Anchor */
    .f-cta-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 8px;
    }

    .f-cta-trust svg {
      width: 14px;
      height: 14px;
      color: var(--success);
    }

    @media (max-width: 768px) {
      .f-cta-buttons {
        flex-direction: column;
        width: 100%;
      }

      .f-btn-primary,
      .f-btn-secondary {
        width: 100%;
        padding: 20px 32px;
      }

      .f-cta-trust {
        text-align: center;
        line-height: 1.5;
        flex-direction: column;
      }
    }
  

    /* TITLES: Fallback to the original setup clamp(2.4rem, 5vw, 4rem) */
    .g-v2-content h2,
    .dor-v2-title,
    .vs-title,
    .cert-v2-title,
    .mcta-title {
      font-family: var(--font-display) !important;
      font-size: clamp(2.4rem, 5vw, 4rem) !important;
      line-height: 1.06 !important;
      letter-spacing: -0.03em !important;
      font-weight: 500 !important;
    }

    /* SUBTITLES: Fallback to the original setup 1.05rem */
    .g-v2-content p:not(.g-v2-badges p),
    .dor-v2-sub,
    .vs-sub,
    .cert-v2-body:not(ul),
    .mcta-sub {
      font-family: var(--font-body) !important;
      font-size: 1.05rem !important;
      line-height: 1.75 !important;
      font-weight: 400 !important;
    }

    /* Ensure global original classes are strictly enforced */
    .section-title {
      font-family: var(--font-display) !important;
      font-size: clamp(2.4rem, 5vw, 4rem) !important;
      line-height: 1.06 !important;
      letter-spacing: -0.03em !important;
    }

    .section-sub {
      font-family: var(--font-body) !important;
      font-size: 1.05rem !important;
      line-height: 1.75 !important;
    }
  
/*  FINAL CTA SECTION  */
.final-cta-v2 {
  padding: 100px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.final-cta-v2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(242, 26, 123, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.final-cta-v2 .wrap {
  position: relative;
  z-index: 2;
}

.final-cta-v2 .wrap.centered {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

/* ─── V3 BONUS (Tamara Style) ────────────────────────────────────────────────── */
.bonus-v3 {
  padding: 100px 20px;
  background: var(--navy-deep); /* Thiara's navy */
  position: relative;
  overflow: hidden;
}

.bonus-v3-layout {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 950px) {
  .bonus-v3-layout {
    flex-direction: column;
    gap: 48px;
  }
}

.bonus-v3-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bonus-v3-supertitle {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  color: var(--white) !important;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 72;
  text-wrap: balance;
}

.bonus-v3-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  list-style: none; /* Remove HTML bullets */
  padding-left: 0;
}

.bonus-v3-list li {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  padding-left: 32px;
}

/* Check icon */
.bonus-v3-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23F21A7B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bonus-v3-urgency p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 500px;
}

.bonus-v3-btn.btn-primary-gold {
  background: #D8AF71; /* Gold button */
  color: #111;
  font-weight: 800;
  border-radius: 6px; 
  padding: 18px 32px;
  text-align: center;
  align-self: flex-start;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: var(--t);
  border: none;
  text-decoration: none;
  display: inline-flex;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(216, 175, 113, 0.2);
}

.bonus-v3-btn.btn-primary-gold:hover {
  background: #e8bd7c;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(216, 175, 113, 0.4);
}

.bonus-v3-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bonus-v3-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  animation: floatBonus 6s ease-in-out infinite;
}

@keyframes floatBonus {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ==============================================================
   Sessão "Um método validado no campo de batalha"
   ============================================================== */
#trajetoria.traj-v2 {
  background-image: url('imagens/capa-5.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ==============================================================
   DIAGNÓSTICO (SIMULAÇÃO) - GLASSMORPHISM
   ============================================================== */
.diagnostic-banner {
  padding: 40px 0 80px 0;
  background: var(--navy-deep);
  position: relative;
  z-index: 10;
}

.diagnostic-box {
  background: #060b24;
  border: 1px solid rgba(242, 26, 123, 0.25);
  border-radius: var(--r-2xl);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  box-shadow: 0 24px 60px rgba(0, 5, 20, 0.4), inset 0 0 80px rgba(242, 26, 123, 0.05);
  position: relative;
  overflow: hidden;
}

.diagnostic-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(242, 26, 123, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.db-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.db-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.db-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 580px;
}

.db-action {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .diagnostic-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
    gap: 32px;
  }
  .db-text {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .diagnostic-banner {
    padding: 20px 0 60px 0;
  }
  .diagnostic-box {
    padding: 32px 20px;
    border-radius: var(--r-xl);
  }
  .db-title {
    font-size: 1.6rem;
  }
}

/* ==============================================================
   Background da Seção "Um ecossistema completo"
   ============================================================== */
#incluso.incluso-v2 {
  position: relative;
  overflow: hidden;
}

#incluso.incluso-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('imagens/content_mentoria.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

#incluso.incluso-v2 .inc-v2-wrap {
  position: relative;
  z-index: 2;
}
