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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      background: #080e1a;
      color: #f1f5f9;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    .sec-title,
    .plan-price,
    .plan-name,
    .stat-val,
    .big-num,
    .vs-amt,
    .ent-price,
    .logo-text,
    .logo-dot {
      font-family: "Outfit", sans-serif;
    }

    :root {
      --dark: #080e1a;
      --dark2: #0b1220;
      --slate: #111827;
      --slate2: #1a2538;
      --blue: #0a99dd;
      --blue-d: #0880bb;
      --blue-glow: rgba(10, 153, 221, 0.45);
      --orange: #f59e0b;
      --orange-d: #d97706;
      --orange-glow: rgba(245, 158, 11, 0.35);
      --green: #16a34a;
      --green-light: #22c55e;
      --green-glow: rgba(22, 163, 74, 0.45);
      --white: #ffffff;
      --gray: #94a3b8;
      --border: rgba(255, 255, 255, 0.06);
      --border-bright: rgba(255, 255, 255, 0.12);
      --r: 16px;
      --card-shadow:
        0 4px 32px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
      --card-shadow-hover:
        0 24px 80px rgba(0, 0, 0, 0.65),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
      --glow-blue: 0 0 40px rgba(10, 153, 221, 0.18);
      --glow-green: 0 0 40px rgba(22, 163, 74, 0.18);
      --glow-orange: 0 0 40px rgba(245, 158, 11, 0.18);
    }

    /* ── TEXTURE OVERLAY ── */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px,
          transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
          #000 50%,
          transparent 100%);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 300;
      background: rgba(8, 14, 26, 0.92);
      backdrop-filter: blur(10px) saturate(150%);
      border-bottom: 1px solid rgba(10, 153, 221, 0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3%;
      height: 60px;
      transition: all 0.3s;
      box-shadow:
        0 1px 0 rgba(10, 153, 221, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.3);
      gap: .8rem;
      overflow: visible;
      min-width: 0;
    }

    .logo {
      display: flex;
      align-items: baseline;
    }

    .logo-text {
      font-family: "Outfit", sans-serif;
      font-size: 3rem;
      font-weight: 900;
      letter-spacing: -3px;
      color: #fff;
      line-height: 1;
    }

    .logo-dot {
      font-family: "Outfit", sans-serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--blue);
      line-height: 1;
      text-shadow: 0 0 20px var(--blue-glow);
    }

    .nav-links {
      display: flex;
      gap: .8rem;
      list-style: none;
      flex-shrink: 1;
      min-width: 0;
      overflow: hidden;
    }

    .nav-links a {
      color: #6b7fa0;
      font-size: 0.83rem;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--blue);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.25s;
    }

    .nav-links a:hover {
      color: #e2e8f0;
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--green), #0a7a30);
      color: #fff;
      border: none;
      padding: 0.5rem 1.4rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.84rem;
      cursor: pointer;
      transition: all 0.25s;
      font-family: "Inter", sans-serif;
      text-decoration: none;
      white-space: nowrap;
      box-shadow:
        0 4px 20px var(--green-glow),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
      position: relative;
      overflow: hidden;
    }

    .nav-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--blue), var(--blue-d));
      opacity: 0;
      transition: opacity 0.25s;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 30px var(--green-glow);
    }

    .nav-cta:hover::before {
      opacity: 1;
    }

    .nav-cta span,
    .nav-cta {
      position: relative;
      z-index: 1;
    }

    /* NAV MOBILE */
    .nav-right-controls {
      display: flex;
      align-items: center;
      gap: .6rem;
      flex-shrink: 0
    }

    .nav-mobile-controls {
      display: none;
      align-items: center;
      gap: .6rem
    }

    .hamburger-btn,
    .lang-btn {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      color: #fff;
      border-radius: 10px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: .85rem;
      transition: all .2s;
      position: relative;
      padding: 0 .65rem;
      gap: .3rem;
      white-space: nowrap;
    }

    .hamburger-btn {
      width: 36px;
      padding: 0
    }

    .hamburger-btn:hover,
    .lang-btn:hover {
      background: rgba(10, 153, 221, .15);
      border-color: rgba(10, 153, 221, .4);
      box-shadow: 0 0 16px rgba(10, 153, 221, .2);
    }

    /* NAV DROPDOWN (Soluções) */
    .has-drop {
      position: relative
    }

    .nav-sub-drop {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: #111827;
      border: 1px solid rgba(10, 153, 221, .2);
      border-radius: 14px;
      padding: .4rem;
      min-width: 195px;
      list-style: none;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .7);
      opacity: 0;
      visibility: hidden;
      transform: translateX(-50%) translateY(-8px);
      transition: opacity .2s, transform .2s, visibility .2s;
      z-index: 300;
    }

    .has-drop:hover .nav-sub-drop {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0)
    }

    .nav-sub-drop li a {
      display: block;
      padding: .5rem .85rem;
      border-radius: 8px;
      color: #c8d6e5;
      font-size: .8rem;
      font-weight: 500;
      text-decoration: none;
      transition: all .15s;
      white-space: nowrap;
    }

    .nav-sub-drop li a:hover {
      background: rgba(10, 153, 221, .12);
      color: #fff
    }

    .nav-sub-drop li a::after {
      display: none
    }

    .nav-drop-trigger {
      cursor: pointer
    }

    /* CURRENCY SWITCHER */
    .currency-switcher {
      display: flex;
      align-items: center;
      gap: .2rem;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 10px;
      padding: .2rem;
    }

    .cur-btn {
      background: transparent;
      border: none;
      color: #8fa3c0;
      font-size: .78rem;
      font-weight: 700;
      cursor: pointer;
      padding: .22rem .45rem;
      border-radius: 7px;
      transition: all .2s;
      font-family: inherit;
    }

    .cur-btn.active {
      background: rgba(10, 153, 221, .25);
      color: #38bdf8
    }

    .cur-btn:hover:not(.active) {
      color: #e2e8f0;
      background: rgba(255, 255, 255, .07)
    }

    /* LANG DROPDOWN */
    .lang-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: #111827;
      border: 1px solid rgba(10, 153, 221, .2);
      border-radius: 14px;
      padding: .4rem;
      min-width: 170px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .7), 0 1px 0 rgba(255, 255, 255, .05) inset;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity .2s, transform .2s, visibility .2s;
      z-index: 400;
    }

    .lang-dropdown.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0)
    }

    .lang-option {
      display: flex;
      align-items: center;
      gap: .65rem;
      padding: .5rem .85rem;
      border-radius: 10px;
      cursor: pointer;
      transition: background .15s;
      font-size: .82rem;
      color: #e2e8f0;
      font-weight: 500;
    }

    .lang-option:hover {
      background: rgba(10, 153, 221, .12)
    }

    .lang-option.active {
      color: var(--blue)
    }

    .lang-flag {
      font-size: 1rem;
      line-height: 1
    }

    /* MOBILE DRAWER */
    .mobile-drawer {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: rgba(8, 14, 26, .98);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(10, 153, 221, .12);
      padding: 0 5% 1.4rem;
      display: flex;
      flex-direction: column;
      gap: .15rem;
      transform: translateY(-20px);
      opacity: 0;
      visibility: hidden;
      transition: all .3s cubic-bezier(.23, 1, .32, 1);
      z-index: 998;
      max-height: calc(100dvh - 64px);
      overflow-y: auto;
    }

    .mobile-drawer.open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible
    }

    .drawer-lang-cur {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0 .8rem;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      margin-bottom: .3rem;
      gap: .6rem;
      flex-wrap: wrap;
    }

    .drawer-cur {
      display: flex;
      gap: .2rem;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 8px;
      padding: .15rem
    }

    .drawer-flags {
      display: flex;
      gap: .4rem;
      flex-wrap: wrap
    }

    .dflag {
      font-size: 1.3rem;
      cursor: pointer;
      opacity: .5;
      transition: opacity .2s;
      line-height: 1
    }

    .dflag.active,
    .dflag:hover {
      opacity: 1
    }

    .mobile-drawer a {
      color: #8fa3c0;
      font-size: .94rem;
      font-weight: 500;
      text-decoration: none;
      padding: .68rem .4rem;
      border-bottom: 1px solid rgba(255, 255, 255, .04);
      transition: color .2s, padding-left .2s;
    }

    .mobile-drawer a:hover {
      color: var(--blue);
      padding-left: .7rem
    }

    .drawer-cta {
      background: linear-gradient(135deg, var(--green), #0a7a30) !important;
      color: #fff !important;
      border-radius: 50px;
      text-align: center;
      font-weight: 700 !important;
      padding: .8rem !important;
      border-bottom: none !important;
      margin-top: .5rem !important;
      box-shadow: 0 4px 20px var(--green-glow) !important;
    }

    /* ── BUTTONS ── */
    .btn-p {
      background: linear-gradient(135deg, var(--green), #0a7a30);
      color: #fff;
      border: none;
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.96rem;
      cursor: pointer;
      transition: all 0.28s;
      font-family: "Inter", sans-serif;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow:
        0 4px 28px var(--green-glow),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
      position: relative;
      overflow: hidden;
    }

    /* btn-p ::before removed */
    .btn-p:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px var(--blue-glow);
      background: linear-gradient(135deg, var(--blue-d), #0a6a99);
      color: #fff;
    }

    .btn-s {
      background: rgba(255, 255, 255, 0.04);
      color: #e2e8f0;
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(8px);
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      font-weight: 500;
      font-size: 0.96rem;
      cursor: pointer;
      transition: all 0.25s;
      font-family: "Inter", sans-serif;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-s:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: rgba(10, 153, 221, 0.08);
      box-shadow: 0 0 24px rgba(10, 153, 221, 0.15);
    }

    .btn-o {
      background: linear-gradient(135deg, var(--orange), #c07000);
      color: #fff;
      border: none;
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.96rem;
      cursor: pointer;
      transition: all 0.28s;
      font-family: "Inter", sans-serif;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow:
        0 4px 28px var(--orange-glow),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    }

    .btn-o:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px var(--orange-glow);
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background-image:
        radial-gradient(ellipse 80% 60% at 70% 50%,
          rgba(10, 153, 221, 0.07) 0%,
          transparent 65%),
        radial-gradient(ellipse 50% 70% at 10% 80%,
          rgba(22, 163, 74, 0.05) 0%,
          transparent 55%),
        linear-gradient(to right,
          rgba(8, 14, 26, 0.99) 0%,
          rgba(8, 14, 26, 0.93) 50%,
          rgba(8, 14, 26, 0.72) 100%),
        url("https://images.unsplash.com/photo-1586125674857-4eb86880905d?q=80&w=1920&auto=format&fit=crop");
      background-size: auto, auto, auto, cover;
      background-position: center right;
      padding: 80px 5% 60px;
      position: relative;
      overflow: hidden;
    }

    #hero::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: linear-gradient(transparent, var(--dark));
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(10, 153, 221, 0.08);
      border: 1px solid rgba(10, 153, 221, 0.2);
      color: var(--blue);
      padding: 0.32rem 0.9rem;
      border-radius: 50px;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
      box-shadow: 0 0 20px rgba(10, 153, 221, 0.1);
    }

    .pulse {
      width: 7px;
      height: 7px;
      background: var(--blue);
      border-radius: 50%;
      animation: pulse 1.6s infinite;
      box-shadow: 0 0 8px var(--blue);
    }

    @keyframes pulse {

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

      50% {
        opacity: 0.4;
        transform: scale(0.7);
      }
    }

    h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      line-height: 1.07;
      letter-spacing: -2px;
      color: #fff;
      margin-bottom: 1.2rem;
    }

    h1 .pain {
      color: var(--orange);
      text-shadow: 0 0 40px rgba(245, 158, 11, 0.25);
    }

    h1 .hl {
      background: linear-gradient(135deg, var(--blue), #7dd3fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(10, 153, 221, 0.3));
    }

    .hero-sub {
      color: #8fa3c0;
      font-size: 1.08rem;
      line-height: 1.8;
      max-width: 520px;
      margin-bottom: 2rem;
    }

    .hero-sub strong {
      color: #e2e8f0;
    }

    .hero-actions {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .hero-trust {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .htrust {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.8rem;
      color: #6b7fa0;
    }

    .htrust-icon {
      color: var(--green-light);
      font-size: 0.95rem;
    }

    /* VIDEO CARD */
    .vid-card {
      background: linear-gradient(180deg, #13213a, #0b1220);
      border: 1px solid rgba(10, 153, 221, 0.18);
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition:
        transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.35s,
        border-color 0.3s;
      box-shadow:
        var(--card-shadow),
        0 0 60px rgba(10, 153, 221, 0.06);
      position: relative;
    }

    .vid-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      border-radius: 20px;
      background: linear-gradient(135deg,
          rgba(10, 153, 221, 0.03),
          transparent);
      pointer-events: none;
    }

    .vid-card:hover {
      transform: translateY(-10px) scale(1.01);
      box-shadow:
        var(--card-shadow-hover),
        0 0 80px rgba(10, 153, 221, 0.12);
      border-color: rgba(10, 153, 221, 0.4);
    }

    .vid-thumb {
      aspect-ratio: 16/10;
      position: relative;
      overflow: hidden;
      background-image:
        linear-gradient(rgba(8, 14, 26, 0.5), rgba(8, 14, 26, 0.7)),
        url("https://images.unsplash.com/photo-1586125674857-4eb86880905d?q=80&w=900&auto=format&fit=crop");
      background-size: cover;
      background-position: center;
    }

    .vid-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .play-ring {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--green), #0a7a30);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      box-shadow:
        0 0 0 0 var(--green-glow),
        0 8px 24px rgba(0, 0, 0, 0.4);
      animation: ring 3s infinite;
    }

    @keyframes ring {
      0%, 100% {
        box-shadow:
          0 0 0 0 var(--green-glow),
          0 8px 24px rgba(0, 0, 0, 0.4);
      }

      60% {
        box-shadow:
          0 0 0 14px rgba(22, 163, 74, 0),
          0 8px 24px rgba(0, 0, 0, 0.4);
      }
    }

    .vid-card:hover .play-ring {
      background: linear-gradient(135deg, var(--blue), var(--blue-d));
      animation: none;
      box-shadow:
        0 0 60px rgba(10, 153, 221, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4);
      transform: scale(1.12);
    }

    .play-tri {
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 11px 0 11px 20px;
      border-color: transparent transparent transparent #fff;
      margin-left: 5px;
    }

    .vid-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(8, 14, 26, 0.95));
      padding: 2.5rem 1.5rem 1.2rem;
      z-index: 1;
    }

    .vc-tag {
      font-size: 0.72rem;
      color: var(--blue);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 0.3rem;
    }

    .vc-title {
      font-size: 0.96rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
    }

    .vid-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
      z-index: 1;
    }

    .vs-item {
      padding: 0.9rem;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .vs-item:last-child {
      border-right: none;
    }

    .vs-val {
      font-size: 1.3rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .vs-val span {
      background: linear-gradient(135deg, var(--blue), #7dd3fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .vs-lbl {
      font-size: 0.68rem;
      color: #6b7fa0;
      margin-top: 0.1rem;
    }

    /* ── HERO RIGHT COL + INVITE BUTTONS ── */
    .hero-right-col {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .hero-invite {
      display: flex;
      flex-direction: column;
      gap: .55rem;
    }

    .hero-invite-label {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #4b5e7a;
      display: flex;
      align-items: center;
      gap: .35rem;
    }

    .hero-invite-btns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .65rem;
    }

    .invite-btn {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      gap: .7rem;
      padding: .75rem 1rem;
      border-radius: 14px;
      text-decoration: none;
      border: 1px solid transparent;
      transition: transform .25s, box-shadow .25s;
      cursor: pointer;
    }

    .invite-btn:hover {
      transform: translateY(-2px) scale(1.02);
    }

    /* Agency button — violet */
    .invite-agency {
      background: linear-gradient(135deg, rgba(139,92,246,.18), rgba(109,40,217,.10));
      border-color: rgba(139,92,246,.35);
      color: #c4b5fd;
      animation: agencyPulse 3s ease-in-out infinite;
    }

    .invite-agency:hover {
      box-shadow: 0 0 28px rgba(139,92,246,.45);
      border-color: rgba(139,92,246,.7);
    }

    /* Affiliate button — gold/green */
    .invite-affiliate {
      background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(22,163,74,.10));
      border-color: rgba(245,158,11,.35);
      color: #fcd34d;
      animation: affiliateFlash 2.8s ease-in-out infinite;
      animation-delay: 1.4s;
    }

    .invite-affiliate:hover {
      box-shadow: 0 0 28px rgba(245,158,11,.4);
      border-color: rgba(245,158,11,.7);
    }

    .invite-btn > i:first-of-type {
      font-size: 1.15rem;
      flex-shrink: 0;
    }

    .invite-btn-text {
      display: flex;
      flex-direction: column;
      flex: 1;
      min-width: 0;
    }

    .invite-btn-text strong {
      font-size: .88rem;
      font-weight: 800;
      line-height: 1.2;
      color: #f1f5f9;
    }

    .invite-btn-text small {
      font-size: .67rem;
      color: #6b7fa0;
      margin-top: .1rem;
      line-height: 1.3;
    }

    .invite-btn-arrow {
      font-size: .65rem;
      opacity: .5;
      flex-shrink: 0;
    }

    /* Shine sweep element */
    .invite-btn-shine {
      position: absolute;
      top: 0; left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,.12), transparent);
      transform: skewX(-20deg);
      animation: shineSweep 3.5s ease-in-out infinite;
    }

    .invite-affiliate .invite-btn-shine {
      animation-delay: 1.75s;
    }

    /* Keyframes */
    @keyframes agencyPulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.82; }
    }

    @keyframes affiliateFlash {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.8; }
    }

    @keyframes shineSweep {
      0%   { left: -75%; opacity: 0; }
      10%  { opacity: 1; }
      50%  { left: 125%; opacity: 1; }
      51%, 100% { left: 125%; opacity: 0; }
    }

    /* ── SECTION COMMONS ── */
    section {
      padding: 88px 5%;
      position: relative;
    }

    section:not(#hero),
    .parallax {
      content-visibility: auto;
      contain-intrinsic-size: 0 700px;
    }

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

    .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.85rem;
    }

    .sec-tag.orange {
      color: var(--orange);
    }

    .sec-tag.green {
      color: var(--green-light);
    }

    .sec-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 0.8rem;
    }

    .sec-title .pain {
      color: var(--orange);
    }

    .sec-title .hl {
      background: linear-gradient(135deg, var(--blue), #7dd3fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sec-sub {
      color: #6b7fa0;
      font-size: 1.05rem;
      line-height: 1.85;
      max-width: 620px;
    }

    .center {
      text-align: center;
    }

    .center .sec-title,
    .center .sec-sub {
      margin-left: auto;
      margin-right: auto;
    }

    /* CARDS GENERIC */
    .card {
      background: linear-gradient(180deg, #13213a 0%, #0b1220 100%);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.8rem;
      transition:
        transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.32s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(10, 153, 221, 0.25);
    }

    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg,
          transparent,
          var(--blue),
          var(--green-light),
          transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .card:hover::before {
      transform: scaleX(1);
    }

    /* ── PARALLAX ── */
    .parallax {
      background-attachment: fixed;
      background-position: center;
      background-size: cover;
      padding: 70px 5%;
      position: relative;
    }

    .parallax-overlay {
      position: absolute;
      inset: 0;
    }

    .parallax-content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ── STATS ROW ── */
    .stats-row {
      background: var(--dark2);
      border-top: 1px solid rgba(10, 153, 221, 0.1);
      border-bottom: 1px solid rgba(10, 153, 221, 0.1);
      padding: 0;
      position: relative;
      z-index: 1;
    }

    .stats-row::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg,
          rgba(10, 153, 221, 0.03),
          transparent 30%,
          transparent 70%,
          rgba(10, 153, 221, 0.03));
      pointer-events: none;
    }

    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    /* TRUST BAR */
    .trust-bar {
      background: rgba(5, 10, 20, 0.9);
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      overflow: hidden;
      position: relative;
      z-index: 1;
    }

    .trust-bar-inner {
      display: flex;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      height: 60px;
      gap: 1.5rem;
      padding: 0 2rem;
    }

    .trust-label {
      font-size: 0.68rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.35);
      white-space: nowrap;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .trust-label i {
      color: #22c55e;
      font-size: 0.75rem;
    }

    .trust-divider {
      width: 1px;
      height: 28px;
      background: rgba(255, 255, 255, 0.1);
      flex-shrink: 0;
    }

    .trust-scroll {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .trust-scroll::before,
    .trust-scroll::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 70px;
      z-index: 2;
      pointer-events: none;
    }

    .trust-scroll::before {
      left: 0;
      background: linear-gradient(90deg, rgba(5, 10, 20, 0.95), transparent);
    }

    .trust-scroll::after {
      right: 0;
      background: linear-gradient(-90deg, rgba(5, 10, 20, 0.95), transparent);
    }

    .trust-track {
      display: flex;
      align-items: center;
      gap: 2rem;
      animation: trustScroll 36s linear infinite;
      width: max-content;
    }

    .trust-track:hover {
      animation-play-state: paused;
    }

    @keyframes trustScroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .trust-logo {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      white-space: nowrap;
      transition: color 0.2s, transform 0.2s;
      cursor: default;
    }

    .trust-logo:hover {
      color: rgba(255, 255, 255, 0.9);
      transform: translateY(-1px);
    }

    .trust-logo i {
      font-size: 1rem;
    }

    .trust-sep {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      flex-shrink: 0;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.38);
      white-space: nowrap;
    }

    .trust-badge i {
      font-size: 0.85rem;
    }

    .stat-item {
      padding: 2rem 1.5rem;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      transition: background 0.25s;
      position: relative;
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-item:hover {
      background: rgba(10, 153, 221, 0.04);
    }

    .stat-val {
      font-size: 2.4rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1;
    }

    .stat-val span {
      background: linear-gradient(135deg, var(--blue), #7dd3fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-lbl {
      font-size: 0.77rem;
      color: #6b7fa0;
      margin-top: 0.45rem;
      line-height: 1.45;
    }

    /* ── PROBLEM ── */
    #problema {
      background: var(--slate);
    }

    .prob-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 2.5rem;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .prob-header {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    .big-box {
      background: linear-gradient(135deg,
          rgba(245, 158, 11, 0.06) 0%,
          rgba(11, 18, 32, 0.9) 100%);
      border: 1px solid rgba(245, 158, 11, 0.2);
      border-radius: 18px;
      padding: 2rem;
      text-align: center;
      transition:
        transform 0.3s,
        box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-self: stretch;
      box-shadow: 0 0 40px rgba(245, 158, 11, 0.06);
    }

    .big-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(245, 158, 11, 0.12);
    }

    .big-num {
      font-size: 6rem;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -4px;
      background: linear-gradient(135deg, var(--orange), #fde68a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.3));
    }

    .big-num-lbl {
      font-size: 1rem;
      color: #e2e8f0;
      line-height: 1.6;
      margin-top: 0.8rem;
    }

    .big-num-sub {
      font-size: 0.85rem;
      color: #6b7fa0;
      margin-top: 0.5rem;
    }

    .prob-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    .prob-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      background: linear-gradient(180deg, #0b1220 0%, #080e1a 100%);
      border: 1px solid var(--border);
      border-left: 3px solid var(--orange);
      border-radius: 12px;
      padding: 1.3rem 1.4rem;
      transition:
        transform 0.28s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.28s,
        border-left-color 0.2s;
      box-shadow: var(--card-shadow);
    }

    .prob-item:hover {
      transform: translateX(5px);
      box-shadow: var(--card-shadow-hover);
      border-left-color: var(--blue);
    }

    .pi-ico {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .pi-title {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }

    .pi-desc {
      font-size: 0.92rem;
      color: #6b7fa0;
      line-height: 1.65;
    }

    /* ── STEPS ── */
    #como {
      background: var(--dark);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .step-card {
      background: linear-gradient(180deg, #13213a 0%, #0b1220 100%);
      border: 1px solid rgba(10, 153, 221, 0.12);
      border-radius: var(--r);
      padding: 1.8rem;
      transition:
        transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.32s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden;
    }

    .step-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at top left,
          rgba(10, 153, 221, 0.04),
          transparent 60%);
      pointer-events: none;
    }

    .step-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--card-shadow-hover), var(--glow-blue);
      border-color: rgba(10, 153, 221, 0.35);
    }

    .step-num {
      width: 42px;
      height: 42px;
      background: rgba(10, 153, 221, 0.1);
      border: 1px solid rgba(10, 153, 221, 0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 900;
      color: var(--blue);
      margin-bottom: 1rem;
    }

    .step-icon {
      font-size: 2rem;
      margin-bottom: 0.6rem;
    }

    .step-title {
      font-weight: 800;
      font-size: 1.05rem;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .step-desc {
      font-size: 0.92rem;
      color: #6b7fa0;
      line-height: 1.7;
    }

    .step-tag {
      margin-top: 1rem;
      display: inline-flex;
      font-size: 0.73rem;
      font-weight: 700;
      border-radius: 20px;
      padding: 0.22rem 0.7rem;
    }

    .tag-g {
      background: rgba(22, 163, 74, 0.1);
      color: var(--green-light);
      border: 1px solid rgba(22, 163, 74, 0.2);
    }

    .tag-b {
      background: rgba(10, 153, 221, 0.1);
      color: var(--blue);
      border: 1px solid rgba(10, 153, 221, 0.2);
    }

    .tag-o {
      background: rgba(245, 158, 11, 0.1);
      color: var(--orange);
      border: 1px solid rgba(245, 158, 11, 0.2);
    }

    /* ── PARALLAX 1 ── */
    .px1 {
      background-image:
        linear-gradient(135deg,
          rgba(8, 14, 26, 0.97) 0%,
          rgba(8, 14, 26, 0.9) 60%,
          rgba(8, 30, 55, 0.95) 100%),
        url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1920&q=80");
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
    }

    .rateio-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    .vs-card {
      background: rgba(11, 18, 32, 0.9);
      border: 1px solid rgba(10, 153, 221, 0.15);
      border-radius: 18px;
      overflow: hidden;
      backdrop-filter: blur(12px);
      box-shadow: 0 0 60px rgba(10, 153, 221, 0.06);
    }

    .vs-head {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .vs-col {
      padding: 1.4rem;
      text-align: center;
    }

    .vs-col.bad {
      background: rgba(239, 68, 68, 0.04);
    }

    .vs-col.good {
      background: rgba(22, 163, 74, 0.04);
    }

    .vs-lb {
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.7rem;
    }

    .vs-lb.r {
      color: #ef4444;
    }

    .vs-lb.g {
      color: var(--green-light);
    }

    .vs-amt {
      font-size: 1.9rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1;
    }

    .vs-unit {
      font-size: 0.74rem;
      color: #6b7fa0;
      margin-top: 0.3rem;
    }

    .vs-res {
      font-size: 0.75rem;
      margin-top: 0.65rem;
      padding: 0.3rem 0.6rem;
      border-radius: 20px;
      display: inline-block;
      font-weight: 600;
    }

    .vs-res.r {
      background: rgba(239, 68, 68, 0.1);
      color: #ef4444;
    }

    .vs-res.g {
      background: rgba(22, 163, 74, 0.1);
      color: var(--green-light);
    }

    .vs-div-cell {
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 0.95rem;
      color: #6b7fa0;
      border-left: 1px solid rgba(255, 255, 255, 0.05);
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      padding: 0 0.6rem;
    }

    .vs-body {
      padding: 1.4rem;
    }

    .vs-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.55rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .vs-row:last-child {
      border-bottom: none;
      padding-top: 0.9rem;
    }

    .vs-rl {
      font-size: 0.84rem;
      color: #6b7fa0;
    }

    .vs-rv {
      font-size: 0.86rem;
      font-weight: 700;
      color: #e2e8f0;
    }

    .vs-rv.g {
      color: var(--green-light);
    }

    .vs-rv.r {
      color: #ef4444;
    }

    .vs-rv.big {
      font-size: 1.25rem;
      font-weight: 900;
      color: var(--green-light);
    }

    .excl {
      margin: 0 1.4rem 1.4rem;
      background: rgba(10, 153, 221, 0.07);
      border: 1px solid rgba(10, 153, 221, 0.18);
      border-radius: 10px;
      padding: 0.9rem 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .excl-t {
      font-size: 0.84rem;
      color: #e2e8f0;
      line-height: 1.5;
    }

    .excl-t strong {
      color: var(--blue);
    }

    .rf-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .rf {
      display: flex;
      gap: 0.9rem;
      align-items: flex-start;
    }

    .rf-chk {
      width: 22px;
      height: 22px;
      background: rgba(22, 163, 74, 0.1);
      border: 1px solid rgba(22, 163, 74, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .rf-chk svg {
      width: 10px;
      height: 10px;
      stroke: var(--green-light);
      fill: none;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .rf-title {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 1rem;
      margin-bottom: 0.2rem;
    }

    .rf-desc {
      font-size: 0.9rem;
      color: #6b7fa0;
      line-height: 1.65;
    }

    /* ── SEO ── */
    #seo {
      background: var(--slate);
    }

    .seo-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    .seo-pts {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      margin-top: 1.5rem;
    }

    .seo-pt {
      display: flex;
      gap: 0.9rem;
      align-items: flex-start;
      background: linear-gradient(135deg, #0b1220, #080e1a);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.15rem 1.4rem;
      transition:
        transform 0.28s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.28s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
    }

    .seo-pt:hover {
      transform: translateX(7px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(10, 153, 221, 0.3);
    }

    .seo-pt-i {
      font-size: 1.2rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .seo-pt-t {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 0.95rem;
      margin-bottom: 0.25rem;
    }

    .seo-pt-d {
      font-size: 0.87rem;
      color: #6b7fa0;
      line-height: 1.6;
    }

    /* browser mock */
    .browser {
      background: linear-gradient(180deg, #13213a, #0b1220);
      border: 1px solid rgba(10, 153, 221, 0.18);
      border-radius: 16px;
      overflow: hidden;
      box-shadow:
        var(--card-shadow),
        0 0 60px rgba(10, 153, 221, 0.08);
      transition: box-shadow 0.3s;
      position: sticky;
      top: 80px;
    }

    .browser:hover {
      box-shadow:
        var(--card-shadow-hover),
        0 0 80px rgba(10, 153, 221, 0.15);
    }

    .bbar {
      background: rgba(8, 14, 26, 0.95);
      padding: 0.85rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-bottom: 1px solid rgba(10, 153, 221, 0.1);
    }

    .bdot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
    }

    .bd1 {
      background: #ff5f57;
    }

    .bd2 {
      background: #febc2e;
    }

    .bd3 {
      background: #28c840;
    }

    .burl {
      flex: 1;
      background: rgba(8, 14, 26, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 6px;
      padding: 0.32rem 0.85rem;
      font-size: 0.74rem;
      color: #6b7fa0;
      font-family: monospace;
    }

    .bbody {
      padding: 1.3rem;
    }

    .sr {
      padding: 0.9rem 1rem;
      border-radius: 12px;
      margin-bottom: 0.65rem;
      background: rgba(8, 14, 26, 0.7);
      cursor: pointer;
      transition:
        background 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
      border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .sr:last-of-type {
      margin-bottom: 0;
    }

    .sr:hover {
      background: #0d1929;
      transform: translateX(3px);
      border-color: rgba(10, 153, 221, 0.15);
    }

    .sr-url {
      font-size: 0.7rem;
      color: var(--green-light);
      margin-bottom: 0.22rem;
      font-family: monospace;
    }

    .sr-title {
      font-size: 0.9rem;
      color: #8ab4f8;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .sr-desc {
      font-size: 0.78rem;
      color: #6b7fa0;
      line-height: 1.45;
    }

    .sr-pos {
      display: inline-block;
      font-size: 0.62rem;
      font-weight: 800;
      background: rgba(22, 163, 74, 0.15);
      color: var(--green-light);
      padding: 0.12rem 0.4rem;
      border-radius: 3px;
      margin-right: 0.35rem;
    }

    .pages-pill {
      margin-top: 1rem;
      background: rgba(10, 153, 221, 0.07);
      border: 1px solid rgba(10, 153, 221, 0.18);
      border-radius: 10px;
      padding: 0.85rem 1.1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .pp-l {
      font-size: 0.8rem;
      color: #6b7fa0;
    }

    .pp-v {
      font-size: 1.55rem;
      font-weight: 900;
      color: var(--blue);
      letter-spacing: -0.5px;
    }

    .url-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.9rem;
    }

    .url-tag {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      padding: 0.28rem 0.75rem;
      font-size: 0.72rem;
      color: #6b7fa0;
      font-family: monospace;
      transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
    }

    .url-tag:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: rgba(10, 153, 221, 0.06);
    }

    /* ── HISTÓRIA ── */
    #historia {
      background: #080e1a;
    }

    .hist-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    .hist-compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .hist-card {
      background: linear-gradient(135deg, #0b1220, #080e1a);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.4rem;
    }

    .hist-card.before {
      border-color: rgba(239, 68, 68, .3);
    }

    .hist-card.after {
      border-color: rgba(34, 197, 94, .3);
    }

    .hist-card-label {
      font-size: .72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: .7rem;
    }

    .hist-card.before .hist-card-label {
      color: #ef4444;
    }

    .hist-card.after .hist-card-label {
      color: #22c55e;
    }

    .hist-val {
      font-size: 2rem;
      font-weight: 900;
      line-height: 1;
    }

    .hist-card.before .hist-val {
      color: #ef4444;
    }

    .hist-card.after .hist-val {
      color: #22c55e;
    }

    .hist-val-sub {
      font-size: .82rem;
      color: var(--muted);
      margin-top: .3rem;
      line-height: 1.4;
    }

    .hist-arrow {
      text-align: center;
      font-size: 2rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hist-timeline {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .hist-step {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 1.1rem;
      align-items: start;
    }

    .hist-dot {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .hist-dot.g {
      background: rgba(34, 197, 94, .12);
      color: #22c55e;
      border: 1.5px solid rgba(34, 197, 94, .3);
    }

    .hist-dot.b {
      background: rgba(10, 153, 221, .12);
      color: #0a99dd;
      border: 1.5px solid rgba(10, 153, 221, .3);
    }

    .hist-dot.o {
      background: rgba(249, 115, 22, .12);
      color: #f97316;
      border: 1.5px solid rgba(249, 115, 22, .3);
    }

    .hist-t {
      font-weight: 700;
      color: #e2e8f0;
      font-size: .95rem;
      margin-bottom: .25rem;
    }

    .hist-d {
      font-size: .86rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .hist-intl {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: .9rem;
      margin-top: 2rem;
    }

    .hist-country {
      text-align: center;
      padding: 1rem .8rem;
      background: #0b1220;
      border: 1px solid var(--border);
      border-radius: 10px;
    }

    .hist-flag {
      font-size: 1.7rem;
      margin-bottom: .4rem;
    }

    .hist-cname {
      font-size: .78rem;
      font-weight: 700;
      color: #e2e8f0;
    }

    .hist-cpain {
      font-size: .72rem;
      color: var(--muted);
      margin-top: .2rem;
    }

    @media(max-width:900px) {
      .hist-layout {
        grid-template-columns: 1fr;
      }

      .hist-compare {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:480px) {
      .hist-compare {
        grid-template-columns: 1fr;
      }
    }

    /* ── SACADAS ── */
    #sacadas {
      background: var(--slate);
    }

    .sacadas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 2.5rem;
    }

    .sacada-card {
      background: linear-gradient(135deg, #0b1220, #080e1a);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem;
      transition: transform .28s cubic-bezier(.23, 1, .32, 1), border-color .25s, box-shadow .25s;
      display: flex;
      flex-direction: column;
    }

    .sacada-card:hover {
      transform: translateY(-5px);
      border-color: rgba(10, 153, 221, .35);
      box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
    }

    .sacada-num {
      font-size: .68rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: #0a99dd;
      margin-bottom: .5rem;
    }

    .sacada-icon {
      font-size: 1.5rem;
      margin-bottom: .7rem;
    }

    .sacada-title {
      font-size: .95rem;
      font-weight: 800;
      color: #e2e8f0;
      margin-bottom: .45rem;
    }

    .sacada-desc {
      font-size: .83rem;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: .85rem;
      flex: 1;
    }

    .sacada-vantagem {
      font-size: .78rem;
      color: #22c55e;
      background: rgba(34, 197, 94, .08);
      border: 1px solid rgba(34, 197, 94, .2);
      border-radius: 8px;
      padding: .5rem .8rem;
      line-height: 1.45;
    }

    @media(max-width:960px) {
      .sacadas-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:580px) {
      .sacadas-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── MARKETPLACE ── */
    #marketplace {
      background: #070c15;
    }

    .mkt-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: center;
    }

    .mkt-steps {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      margin-top: 1.8rem;
    }

    .mkt-step {
      display: flex;
      gap: .9rem;
      align-items: flex-start;
      background: #0b1220;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1rem 1.2rem;
    }

    .mkt-ico {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      flex-shrink: 0;
    }

    .mkt-ico.blue {
      background: rgba(10, 153, 221, .14);
      color: #0a99dd;
    }

    .mkt-ico.green {
      background: rgba(34, 197, 94, .14);
      color: #22c55e;
    }

    .mkt-ico.orange {
      background: rgba(249, 115, 22, .14);
      color: #f97316;
    }

    .mkt-ico.purple {
      background: rgba(139, 92, 246, .14);
      color: #8b5cf6;
    }

    .mkt-step-t {
      font-weight: 700;
      color: #e2e8f0;
      font-size: .9rem;
      margin-bottom: .15rem;
    }

    .mkt-step-d {
      font-size: .81rem;
      color: var(--muted);
    }

    .mkt-visual {
      background: linear-gradient(135deg, #0b1220, #060a12);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.8rem;
    }

    .mkt-badge-new {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      background: rgba(139, 92, 246, .14);
      border: 1px solid rgba(139, 92, 246, .35);
      color: #a78bfa;
      font-size: .68rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      border-radius: 20px;
      padding: .28rem .75rem;
      margin-bottom: 1rem;
    }

    .mkt-pedido {
      background: #0f172a;
      border: 1px solid rgba(139, 92, 246, .2);
      border-radius: 10px;
      padding: 1rem;
      margin-bottom: .9rem;
    }

    .mkt-pedido-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: .45rem;
    }

    .mkt-pedido-title {
      font-weight: 700;
      color: #e2e8f0;
      font-size: .88rem;
    }

    .mkt-pedido-badge {
      font-size: .66rem;
      font-weight: 800;
      padding: .22rem .55rem;
      border-radius: 20px;
    }

    .mkt-badge-open {
      background: rgba(34, 197, 94, .14);
      color: #22c55e;
      border: 1px solid rgba(34, 197, 94, .3);
    }

    .mkt-badge-boost {
      background: rgba(139, 92, 246, .14);
      color: #a78bfa;
      border: 1px solid rgba(139, 92, 246, .3);
    }

    .mkt-pedido-info {
      font-size: .78rem;
      color: var(--muted);
      display: flex;
      gap: .9rem;
      flex-wrap: wrap;
      margin-bottom: .7rem;
    }

    .mkt-btn-prop {
      width: 100%;
      padding: .5rem;
      border-radius: 8px;
      border: 1px solid rgba(10, 153, 221, .35);
      background: rgba(10, 153, 221, .1);
      color: #0a99dd;
      font-size: .8rem;
      font-weight: 700;
      cursor: pointer;
      text-align: center;
    }

    @media(max-width:900px) {
      .mkt-layout {
        grid-template-columns: 1fr;
      }
    }

    /* ── SDR ── */
    #atendimento {
      background-image:
        linear-gradient(rgba(8, 14, 26, 0.97), rgba(8, 14, 26, 0.97)),
        url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80");
      background-size: cover;
      background-position: center;
    }

    .sdr-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    .sdr-flow {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .sdr-step {
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      position: relative;
      padding-bottom: 1.4rem;
    }

    .sdr-step:last-child {
      padding-bottom: 0;
    }

    .sdr-left {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .sdr-dot {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      border: 2px solid;
      transition:
        transform 0.2s,
        box-shadow 0.2s;
    }

    .sdr-dot:hover {
      transform: scale(1.1);
    }

    .sdr-dot.g {
      background: rgba(22, 163, 74, 0.1);
      border-color: rgba(22, 163, 74, 0.35);
    }

    .sdr-dot.b {
      background: rgba(10, 153, 221, 0.1);
      border-color: rgba(10, 153, 221, 0.35);
    }

    .sdr-dot.g:hover {
      box-shadow: 0 0 20px var(--green-glow);
    }

    .sdr-dot.b:hover {
      box-shadow: 0 0 20px var(--blue-glow);
    }

    .sdr-line {
      flex: 1;
      width: 2px;
      background: linear-gradient(to bottom,
          rgba(10, 153, 221, 0.15),
          rgba(10, 153, 221, 0.05));
      margin: 0.35rem 0;
    }

    .sdr-step:last-child .sdr-line {
      display: none;
    }

    .sdr-t {
      font-weight: 800;
      color: #e2e8f0;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .sdr-d {
      font-size: 0.9rem;
      color: #6b7fa0;
      line-height: 1.65;
    }

    .sdr-pill {
      display: inline-block;
      font-size: 0.74rem;
      font-weight: 700;
      border-radius: 20px;
      padding: 0.18rem 0.6rem;
      margin-top: 0.35rem;
    }

    .sdr-cards {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .sdr-card {
      background: linear-gradient(180deg, #13213a 0%, #0b1220 100%);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.3rem 1.5rem;
      transition:
        transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.32s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
    }

    .sdr-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(10, 153, 221, 0.25);
    }

    .sdr-card.feat {
      border-color: rgba(10, 153, 221, 0.22);
      background: linear-gradient(135deg,
          rgba(10, 153, 221, 0.07),
          rgba(11, 18, 32, 0.95));
    }

    .sdr-c-ico {
      font-size: 1.6rem;
      margin-bottom: 0.65rem;
    }

    .sdr-c-t {
      font-weight: 800;
      color: #fff;
      font-size: 0.94rem;
      margin-bottom: 0.38rem;
    }

    .sdr-c-d {
      font-size: 0.83rem;
      color: #6b7fa0;
      line-height: 1.6;
    }

    .sdr-highlight {
      background: rgba(245, 158, 11, 0.06);
      border: 1px solid rgba(245, 158, 11, 0.16);
      border-radius: 10px;
      padding: 0.8rem 1rem;
      margin-top: 0.9rem;
      font-size: 0.82rem;
      color: #e2e8f0;
      line-height: 1.55;
    }

    .sdr-highlight strong {
      color: var(--orange);
    }

    /* SDR AI HERO CARD */
    .sdr-ai-card {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      min-height: 160px;
      display: flex;
      align-items: flex-end;
      border: 1px solid rgba(103, 126, 234, 0.35);
      box-shadow:
        var(--card-shadow),
        0 0 40px rgba(103, 126, 234, 0.12);
      transition:
        transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.32s;
      cursor: default;
    }

    .sdr-ai-card:hover {
      transform: translateY(-5px);
      box-shadow:
        var(--card-shadow-hover),
        0 0 60px rgba(103, 126, 234, 0.2);
    }

    .sdr-ai-card-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(to top,
          rgba(8, 14, 26, 0.97) 0%,
          rgba(8, 14, 26, 0.6) 50%,
          rgba(8, 14, 26, 0.25) 100%),
        url("https://images.unsplash.com/photo-1485827404703-89b55fcc595e?q=80&w=800&auto=format&fit=crop");
      background-size: cover;
      background-position: center top;
    }

    .sdr-ai-card-content {
      position: relative;
      z-index: 1;
      padding: 1.4rem 1.5rem;
      width: 100%;
    }

    .sdr-ai-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(103, 126, 234, 0.15);
      border: 1px solid rgba(103, 126, 234, 0.35);
      color: #a5b4fc;
      padding: 0.2rem 0.7rem;
      border-radius: 50px;
      font-size: 0.66rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    .sdr-ai-title {
      font-size: 1.25rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.5px;
      line-height: 1.15;
      font-family: "Outfit", sans-serif;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    }

    .sdr-ai-sub {
      font-size: 0.78rem;
      color: #a5b4fc;
      font-weight: 500;
      margin-top: 0.3rem;
      letter-spacing: 0.02em;
    }

    /* ── SPLIT ── */
    #split {
      background: var(--dark);
    }

    .split-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    .flow-box {
      background: linear-gradient(180deg, #13213a 0%, #0b1220 100%);
      border: 1px solid rgba(10, 153, 221, 0.12);
      border-radius: 18px;
      padding: 1.5rem;
      box-shadow:
        var(--card-shadow),
        0 0 40px rgba(10, 153, 221, 0.05);
      transition: box-shadow 0.3s;
    }

    .flow-box:hover {
      box-shadow:
        var(--card-shadow-hover),
        0 0 60px rgba(10, 153, 221, 0.1);
    }

    .flow-title {
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--blue);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .flow-step {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 0.9rem;
      padding: 0.9rem;
      background: rgba(8, 14, 26, 0.7);
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      transition:
        transform 0.25s,
        border-color 0.2s,
        background 0.2s;
    }

    .flow-step:hover {
      transform: translateX(5px);
      border-color: rgba(10, 153, 221, 0.22);
      background: rgba(10, 153, 221, 0.04);
    }

    .flow-step:last-child {
      margin-bottom: 0;
    }

    .fs-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(10, 153, 221, 0.1);
      border: 1px solid rgba(10, 153, 221, 0.28);
      color: var(--blue);
      font-size: 0.75rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .fs-t {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 0.86rem;
      margin-bottom: 0.18rem;
    }

    .fs-d {
      font-size: 0.78rem;
      color: #6b7fa0;
      line-height: 1.5;
    }

    .split-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }

    .split-table th {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #6b7fa0;
      padding: 0.6rem 0.8rem;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .split-table td {
      font-size: 0.85rem;
      padding: 0.7rem 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
      color: #e2e8f0;
      vertical-align: middle;
    }

    .split-table tr:hover td {
      background: rgba(10, 153, 221, 0.03);
    }

    .split-table td.pct {
      font-weight: 800;
      color: var(--green-light);
    }

    .ticket-badge {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      border-radius: 20px;
      padding: 0.2rem 0.6rem;
    }

    .tb-low {
      background: rgba(22, 163, 74, 0.1);
      color: var(--green-light);
      border: 1px solid rgba(22, 163, 74, 0.2);
    }

    .tb-mid {
      background: rgba(10, 153, 221, 0.1);
      color: var(--blue);
      border: 1px solid rgba(10, 153, 221, 0.2);
    }

    .tb-high {
      background: rgba(245, 158, 11, 0.1);
      color: var(--orange);
      border: 1px solid rgba(245, 158, 11, 0.2);
    }

    .split-callout {
      margin-top: 1.5rem;
      background: rgba(22, 163, 74, 0.05);
      border: 1px solid rgba(22, 163, 74, 0.15);
      border-radius: 12px;
      padding: 1rem 1.2rem;
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.6;
    }

    .split-callout strong {
      color: var(--green-light);
    }

    /* ── PARALLAX 2 ── */
    .px2 {
      background-image:
        linear-gradient(rgba(8, 14, 26, 0.95), rgba(8, 14, 26, 0.95)),
        url("https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1920&q=80");
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
    }

    .academy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .ac-card {
      background: rgba(17, 24, 39, 0.85);
      border: 1px solid rgba(10, 153, 221, 0.12);
      border-radius: var(--r);
      padding: 1.7rem;
      backdrop-filter: blur(10px);
      transition:
        transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.32s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
    }

    .ac-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--card-shadow-hover), var(--glow-blue);
      border-color: rgba(10, 153, 221, 0.3);
    }

    .ac-icon {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }

    .ac-title {
      font-weight: 800;
      color: #fff;
      font-size: 1.05rem;
      margin-bottom: 0.4rem;
    }

    .ac-desc {
      font-size: 0.9rem;
      color: #6b7fa0;
      line-height: 1.65;
      margin-bottom: 0.8rem;
    }

    .ac-impact {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--green-light);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    /* ── GAMIFICATION ── */
    #gamification {
      background: var(--slate);
    }

    .levels-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      margin-top: 2.5rem;
    }

    .level-card {
      background: linear-gradient(180deg, #0b1220 0%, #080e1a 100%);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.5rem;
      text-align: center;
      transition:
        transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.32s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden;
    }

    .level-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: var(--card-shadow-hover);
    }

    .level-card.l1:hover {
      border-color: rgba(148, 163, 184, 0.3);
    }

    .level-card.l2:hover {
      border-color: rgba(250, 204, 21, 0.35);
      box-shadow:
        var(--card-shadow-hover),
        0 0 30px rgba(250, 204, 21, 0.1);
    }

    .level-card.l3:hover {
      border-color: rgba(10, 153, 221, 0.35);
      box-shadow: var(--card-shadow-hover), var(--glow-blue);
    }

    .level-card.l4 {
      border-color: rgba(245, 158, 11, 0.22);
      background: linear-gradient(180deg,
          rgba(245, 158, 11, 0.05),
          var(--dark));
    }

    .level-card.l4:hover {
      border-color: rgba(245, 158, 11, 0.45);
      box-shadow: var(--card-shadow-hover), var(--glow-orange);
    }

    .level-emoji {
      font-size: 2.2rem;
      margin-bottom: 0.65rem;
    }

    .level-name {
      font-weight: 900;
      font-size: 1.06rem;
      color: #fff;
      margin-bottom: 0.3rem;
    }

    .level-pts {
      font-size: 0.83rem;
      color: var(--blue);
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    .level-perks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .level-perks li {
      font-size: 0.87rem;
      color: #6b7fa0;
      display: flex;
      align-items: flex-start;
      gap: 0.35rem;
      text-align: left;
    }

    .level-perks li::before {
      content: "▸";
      color: var(--green-light);
      flex-shrink: 0;
      font-size: 0.65rem;
      margin-top: 0.15rem;
    }

    .missions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }

    .mission {
      background: linear-gradient(180deg, #0b1220, #080e1a);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1rem 1.2rem;
      transition:
        transform 0.28s,
        box-shadow 0.28s,
        border-color 0.2s;
      box-shadow: var(--card-shadow);
    }

    .mission:hover {
      transform: translateY(-4px);
      box-shadow: var(--card-shadow-hover), var(--glow-orange);
      border-color: rgba(245, 158, 11, 0.3);
    }

    .mission-name {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 0.97rem;
      margin-bottom: 0.3rem;
    }

    .mission-desc {
      font-size: 0.87rem;
      color: #6b7fa0;
      line-height: 1.5;
      margin-bottom: 0.5rem;
    }

    .mission-reward {
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--orange);
    }

    /* ── CORPORATE ── */
    #corporativo {
      background-image:
        linear-gradient(rgba(8, 14, 26, 0.96), rgba(8, 14, 26, 0.96)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80");
      background-size: cover;
      background-position: center;
    }

    .corp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    .corp-cards {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .corp-card {
      background: rgba(17, 24, 39, 0.75);
      border: 1px solid rgba(10, 153, 221, 0.1);
      border-radius: 14px;
      padding: 1.25rem 1.5rem;
      backdrop-filter: blur(12px);
      transition:
        transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
    }

    .corp-card:hover {
      transform: translateX(9px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(10, 153, 221, 0.3);
    }

    .cc-ico {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }

    .cc-t {
      font-weight: 800;
      color: #fff;
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }

    .cc-d {
      font-size: 0.9rem;
      color: #6b7fa0;
      line-height: 1.6;
    }

    .corp-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 0.8rem;
    }

    .corp-badge {
      background: rgba(10, 153, 221, 0.07);
      border: 1px solid rgba(10, 153, 221, 0.18);
      color: var(--blue);
      padding: 0.28rem 0.75rem;
      border-radius: 20px;
      font-size: 0.74rem;
      font-weight: 600;
      transition: all 0.2s;
    }

    .corp-badge:hover {
      background: rgba(10, 153, 221, 0.18);
      box-shadow: 0 0 12px rgba(10, 153, 221, 0.2);
    }

    /* ── PODCAST ── */
    #podcast {
      background: var(--slate);
    }

    .podcast-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .podcast-visual {
      position: relative;
    }

    .podcast-img-wrap {
      border-radius: 22px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 28px 100px rgba(0, 0, 0, 0.7);
      transition:
        transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.35s;
      cursor: pointer;
    }

    .podcast-img-wrap:hover {
      transform: scale(1.02);
      box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(22, 163, 74, 0.1);
    }

    .podcast-img {
      aspect-ratio: 4/3;
      background-image:
        linear-gradient(rgba(8, 14, 26, 0.4), rgba(8, 14, 26, 0.5)),
        url("https://images.unsplash.com/photo-1590602847861-f357a9332bbc?auto=format&fit=crop&w=900&q=80");
      background-size: cover;
      background-position: center;
    }

    .pod-play-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pod-play {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--green), #0a7a30);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      animation: ring 2s infinite;
    }

    .podcast-img-wrap:hover .pod-play {
      background: linear-gradient(135deg, var(--blue), var(--blue-d));
      transform: scale(1.12);
      animation: none;
      box-shadow: 0 0 50px rgba(10, 153, 221, 0.6);
    }

    .pod-play-tri {
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 13px 0 13px 23px;
      border-color: transparent transparent transparent #fff;
      margin-left: 5px;
    }

    .pod-caption {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      right: 1.5rem;
      background: rgba(8, 14, 26, 0.9);
      backdrop-filter: blur(16px);
      border-radius: 14px;
      padding: 1rem 1.2rem;
      border: 1px solid rgba(10, 153, 221, 0.15);
    }

    .pod-ep {
      font-size: 0.72rem;
      color: var(--blue);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 0.3rem;
    }

    .pod-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
    }

    .pod-duration {
      font-size: 0.75rem;
      color: #6b7fa0;
      margin-top: 0.4rem;
    }

    .pod-platforms {
      display: flex;
      gap: 0.7rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }

    .pod-plat {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(8, 14, 26, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 50px;
      padding: 0.45rem 1rem;
      font-size: 0.78rem;
      font-weight: 600;
      color: #6b7fa0;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s;
    }

    .pod-plat:hover {
      border-color: var(--blue);
      color: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(10, 153, 221, 0.15);
    }

    .pod-list {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .pod-item {
      background: linear-gradient(135deg, #0b1220, #080e1a);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1rem 1.3rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition:
        transform 0.28s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.28s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
    }

    .pod-item:hover {
      transform: translateX(7px);
      box-shadow: var(--card-shadow-hover), var(--glow-green);
      border-color: rgba(22, 163, 74, 0.3);
    }

    .pod-item-num {
      width: 36px;
      height: 36px;
      background: rgba(22, 163, 74, 0.1);
      border: 1px solid rgba(22, 163, 74, 0.22);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 900;
      color: var(--green-light);
      flex-shrink: 0;
    }

    .pod-item-title {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 0.88rem;
      margin-bottom: 0.2rem;
    }

    .pod-item-desc {
      font-size: 0.76rem;
      color: #6b7fa0;
    }

    .pod-item-play {
      margin-left: auto;
      color: var(--green-light);
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .pod-item:hover .pod-item-play {
      transform: scale(1.2);
    }

    /* ── PLANS ── */
    #planos {
      background: var(--dark);
    }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 1200px;
      margin: 2.5rem auto 0;
    }

    .plan {
      background: linear-gradient(180deg, #13213a 0%, #0b1220 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      position: relative;
      transition:
        transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.35s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
    }

    .plan:hover {
      transform: translateY(-12px);
      box-shadow: var(--card-shadow-hover);
    }

    .plan.feat {
      border-color: var(--blue);
      background: linear-gradient(180deg,
          rgba(10, 153, 221, 0.09) 0%,
          #0b1220 50%);
      box-shadow:
        0 0 60px rgba(10, 153, 221, 0.12),
        var(--card-shadow);
    }

    .plan.feat:hover {
      box-shadow:
        0 32px 100px rgba(10, 153, 221, 0.25),
        var(--card-shadow-hover);
    }

    .plan-badge {
      position: absolute;
      top: 1.2rem;
      right: 1.2rem;
      background: linear-gradient(135deg, var(--blue), var(--blue-d));
      color: #fff;
      font-size: 0.67rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 0.22rem 0.7rem;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(10, 153, 221, 0.4);
    }

    .plan-icon {
      font-size: 1.8rem;
      margin-bottom: 0.75rem;
    }

    .plan-name {
      font-size: 1rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b7fa0;
      margin-bottom: 0.4rem;
    }

    .plan-name.b {
      color: var(--blue);
    }

    .plan-price-row {
      display: flex;
      align-items: flex-end;
      gap: 0.4rem;
      margin-bottom: 0.2rem;
    }

    .plan-price {
      font-size: 2.9rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1.5px;
      line-height: 1;
    }

    .plan-price sup {
      font-size: 1.2rem;
      font-weight: 500;
      vertical-align: super;
      letter-spacing: 0;
    }

    .plan-period {
      font-size: 1rem;
      color: #6b7fa0;
      margin-bottom: 0.28rem;
    }

    .sites-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(245, 158, 11, 0.06);
      border: 1px solid rgba(245, 158, 11, 0.16);
      border-radius: 10px;
      padding: 0.55rem 0.9rem;
      margin-bottom: 0.5rem;
    }

    .sites-n {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--orange);
      letter-spacing: -1px;
      line-height: 1;
    }

    .sites-l {
      font-size: 0.76rem;
      color: #e2e8f0;
      line-height: 1.35;
    }

    .plan-hr {
      height: 1px;
      background: rgba(255, 255, 255, 0.06);
      margin: 1.1rem 0;
    }

    .plan-feats {
      list-style: none;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .plan-feats li {
      display: flex;
      gap: 0.65rem;
      align-items: flex-start;
      font-size: 0.92rem;
      color: #6b7fa0;
      line-height: 1.55;
    }

    .plan-feats li .chk {
      color: var(--green-light);
      font-weight: 900;
      flex-shrink: 0;
    }

    .plan-feats li .no {
      color: #2d3d52;
      flex-shrink: 0;
    }

    .plan-feats li strong {
      color: #e2e8f0;
    }

    .plan-cta {
      margin-top: 1.6rem;
      display: block;
      text-align: center;
      text-decoration: none;
      padding: 0.85rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      transition: all 0.28s;
      font-family: "Inter", sans-serif;
    }

    .pc-green {
      background: linear-gradient(135deg, var(--green), #0a7a30);
      color: #fff;
      box-shadow:
        0 4px 20px var(--green-glow),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
    }

    .pc-green:hover {
      background: linear-gradient(135deg, var(--blue), var(--blue-d));
      box-shadow: 0 8px 32px var(--blue-glow);
      transform: translateY(-1px);
    }

    .pc-outline {
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #e2e8f0;
    }

    .pc-outline:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: rgba(10, 153, 221, 0.06);
    }

    .ent-strip {
      max-width: 1200px;
      margin: 1.5rem auto 0;
      background: linear-gradient(135deg,
          rgba(10, 153, 221, 0.07),
          rgba(245, 158, 11, 0.04));
      border: 1px solid rgba(10, 153, 221, 0.18);
      border-radius: 20px;
      padding: 1.8rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      transition: box-shadow 0.3s;
    }

    .ent-strip:hover {
      box-shadow: 0 20px 60px rgba(10, 153, 221, 0.12);
    }

    .ent-t {
      font-size: 1.25rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 0.35rem;
    }

    .ent-d {
      font-size: 0.86rem;
      color: #6b7fa0;
      line-height: 1.6;
      max-width: 560px;
    }

    .ent-tags {
      display: flex;
      gap: 0.55rem;
      flex-wrap: wrap;
      margin-top: 0.75rem;
    }

    .et {
      background: rgba(10, 153, 221, 0.07);
      border: 1px solid rgba(10, 153, 221, 0.18);
      color: var(--blue);
      padding: 0.25rem 0.7rem;
      border-radius: 20px;
      font-size: 0.74rem;
      font-weight: 600;
    }

    .ent-right {
      text-align: right;
      flex-shrink: 0;
    }

    .ent-from {
      font-size: 0.76rem;
      color: #6b7fa0;
    }

    .ent-price {
      font-size: 2.1rem;
      font-weight: 900;
      color: var(--blue);
      letter-spacing: -1px;
    }

    /* ── AFFILIATES ── */
    #afiliados {
      background: var(--dark);
    }

    .aff-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .aff-tiers {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .aff-tier {
      display: flex;
      align-items: center;
      gap: 1.1rem;
      background: linear-gradient(135deg, #0b1220, #080e1a);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.1rem 1.3rem;
      transition:
        transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
    }

    .aff-tier:hover {
      transform: translateX(7px);
      box-shadow: var(--card-shadow-hover), var(--glow-green);
      border-color: rgba(22, 163, 74, 0.32);
    }

    .aff-n {
      font-size: 1.8rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
      flex-shrink: 0;
      width: 38px;
    }

    .aff-ct {
      flex: 1;
    }

    .aff-title {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 0.9rem;
      margin-bottom: 0.18rem;
    }

    .aff-desc {
      font-size: 0.78rem;
      color: #6b7fa0;
    }

    .aff-rw {
      text-align: right;
      flex-shrink: 0;
    }

    .aff-rw-v {
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--green-light);
      letter-spacing: -0.5px;
    }

    .aff-rw-l {
      font-size: 0.7rem;
      color: #6b7fa0;
    }

    .aff-rule {
      margin-top: 1.5rem;
      background: rgba(245, 158, 11, 0.05);
      border: 1px solid rgba(245, 158, 11, 0.15);
      border-radius: 12px;
      padding: 1rem 1.2rem;
    }

    .aff-rule-t {
      font-weight: 700;
      color: var(--orange);
      font-size: 0.84rem;
      margin-bottom: 0.4rem;
    }

    .aff-rule-d {
      font-size: 0.82rem;
      color: #6b7fa0;
      line-height: 1.6;
    }

    /* ── CTA FINAL ── */
    #cta-final {
      background-image:
        radial-gradient(ellipse 70% 60% at 50% 100%,
          rgba(10, 153, 221, 0.08) 0%,
          transparent 70%),
        linear-gradient(rgba(8, 14, 26, 0.93), rgba(8, 14, 26, 0.96)),
        url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1920&q=80");
      background-size: auto, auto, cover;
      background-position: center;
      background-attachment: scroll, scroll, fixed;
      padding: 120px 5%;
      text-align: center;
    }

    .cta-title {
      font-size: clamp(1.8rem, 4vw, 3.5rem);
      font-weight: 900;
      letter-spacing: -1px;
      color: #fff;
      line-height: 1.15;
      max-width: 1200px;
      margin: 0 auto 1.2rem;
      font-family: "Outfit", sans-serif;
    }

    .cta-title .pain {
      color: var(--orange);
    }

    .cta-title .hl {
      background: linear-gradient(135deg, var(--green-light), #4ade80);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-sub {
      color: #6b7fa0;
      font-size: 1.08rem;
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
    }

    .urgency {
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(245, 158, 11, 0.07);
      border: 1px solid rgba(245, 158, 11, 0.2);
      color: var(--orange);
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      box-shadow: 0 0 24px rgba(245, 158, 11, 0.1);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark2);
      border-top: 1px solid rgba(10, 153, 221, 0.08);
      padding: 2rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    footer p {
      font-size: 0.8rem;
      color: #4b5a70;
    }

    /* ── SOCIAL CARD ── */
    #socialcard {
      background: var(--dark);
    }

    .sc-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .sc-feats {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      margin-top: 1.8rem;
    }

    .sc-feat {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .sc-feat:hover {
      transform: translateX(7px);
    }

    .sc-feat-ico {
      width: 44px;
      height: 44px;
      background: rgba(10, 153, 221, 0.09);
      border: 1px solid rgba(10, 153, 221, 0.2);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: all 0.2s;
      color: var(--blue);
    }

    .sc-feat:hover .sc-feat-ico {
      background: rgba(10, 153, 221, 0.2);
      box-shadow: 0 0 20px rgba(10, 153, 221, 0.2);
    }

    .sc-feat-t {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 0.92rem;
      margin-bottom: 0.25rem;
    }

    .sc-feat-d {
      font-size: 0.83rem;
      color: #6b7fa0;
      line-height: 1.6;
    }

    /* phone mockup */
    .phone-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .phone-outer {
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .phone-outer:hover {
      transform: translateY(-6px);
    }

    .phone-frame {
      width: 420px;
      background: #0f1d32;
      border-radius: 22px;
      padding: 0;
      border: 2px solid rgba(10, 153, 221, 0.4);
      box-shadow:
        0 0 0 6px rgba(10, 153, 221, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      overflow: hidden;
    }

    .phone-notch-bar {
      height: 32px;
      background: #090e1c;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1.2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .phone-notch-time {
      font-size: 0.68rem;
      font-weight: 700;
      color: #fff;
    }

    .phone-notch-icons {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .phone-notch-icons i {
      font-size: 0.6rem;
      color: #6b7fa0;
    }

    .phone-body {
      padding: 1.6rem 1.4rem 1.8rem;
    }

    .phone-tag {
      text-align: center;
      font-size: 0.85rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      color: var(--blue);
      margin-bottom: 0.9rem;
      text-transform: uppercase;
      font-family: "Outfit", sans-serif;
    }

    .phone-name {
      text-align: center;
      font-size: 1.3rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 0.1rem;
      font-family: "Outfit", sans-serif;
    }

    .phone-role {
      text-align: center;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1.4rem;
    }

    .phone-bar {
      height: 9px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      margin-bottom: 0.8rem;
    }

    .phone-bar2 {
      height: 9px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 4px;
      width: 70%;
      margin: 0 auto 0.8rem;
    }

    .phone-stars {
      display: flex;
      justify-content: center;
      gap: 0.2rem;
      margin-bottom: 1.2rem;
    }

    .phone-star {
      color: #f59e0b;
      font-size: 1rem;
    }

    .phone-cta {
      background: linear-gradient(135deg, var(--green), #0a7a30);
      border-radius: 50px;
      padding: 0.75rem;
      text-align: center;
      color: #fff;
      font-size: 0.9rem;
      font-weight: 800;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 0.2s;
      box-shadow: 0 4px 20px var(--green-glow);
    }

    .phone-outer:hover .phone-cta {
      background: linear-gradient(135deg, var(--blue), var(--blue-d));
    }

    .phone-glow {
      display: none;
    }

    /* ── RATEIO BANNER ── */
    .rateio-banner {
      text-align: center;
      padding: 1.8rem 2.5rem;
      margin-bottom: 3rem;
      background: linear-gradient(135deg,
          rgba(10, 153, 221, 0.09),
          rgba(245, 158, 11, 0.04));
      border: 1px solid rgba(10, 153, 221, 0.18);
      border-radius: 18px;
      box-shadow: 0 0 60px rgba(10, 153, 221, 0.08);
    }

    .rateio-banner-title {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 900;
      letter-spacing: -1px;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 0.5rem;
    }

    .rateio-banner-title span {
      color: var(--orange);
    }

    .rateio-banner-sub {
      font-size: 0.9rem;
      color: #6b7fa0;
    }

    /* ── DIRECTORY ── */
    #diretorio {
      background: var(--slate);
    }

    .dir-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .dir-points {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      margin-top: 1.5rem;
    }

    .dir-point {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .dir-num {
      width: 36px;
      height: 36px;
      background: rgba(10, 153, 221, 0.1);
      border: 1px solid rgba(10, 153, 221, 0.22);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 900;
      color: var(--blue);
      flex-shrink: 0;
    }

    .dir-pt-t {
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--blue);
      margin-bottom: 0.25rem;
    }

    .dir-pt-d {
      font-size: 0.84rem;
      color: #6b7fa0;
      line-height: 1.6;
    }

    /* ── REALISTIC SMARTPHONES ── */
    .dir-phones {
      display: flex;
      gap: 2.5rem;
      align-items: flex-end;
      justify-content: center;
      overflow: visible;
      padding: 1rem 0 2rem;
    }

    .smartphone {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      background: linear-gradient(170deg, #0e1a2d 0%, #060d18 100%);
      border: 2px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.85),
        0 0 0 4px rgba(255, 255, 255, 0.04),
        0 0 0 6px rgba(10, 153, 221, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.6);
      transition:
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.4s;
      min-width: 0;
      flex-shrink: 1;
    }

    .smartphone::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 10;
      pointer-events: none;
      background: linear-gradient(135deg,
          rgba(255, 255, 255, 0.04) 0%,
          transparent 50%);
      border-radius: 22px;
    }

    .smartphone:hover {
      transform: translateY(-14px) scale(1.02);
      box-shadow:
        0 60px 140px rgba(0, 0, 0, 0.9),
        0 0 0 4px rgba(255, 255, 255, 0.05),
        0 0 60px rgba(10, 153, 221, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .smartphone.sp1 {
      width: 300px;
      margin-bottom: 36px;
    }

    .smartphone.sp2 {
      width: 300px;
    }

    /* Status bar */
    .sp-top-bar {
      height: 40px;
      background: rgba(6, 11, 20, 0.95);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1.3rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
    }

    /* Dynamic island pill */
    .sp-top-bar::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 72px;
      height: 18px;
      background: #000;
      border-radius: 20px;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .sp-time {
      font-size: 0.72rem;
      font-weight: 700;
      color: #fff;
      font-family: "Outfit", sans-serif;
      letter-spacing: -0.3px;
    }

    .sp-icons {
      display: flex;
      gap: 0.45rem;
      align-items: center;
    }

    .sp-icons i {
      font-size: 0.6rem;
      color: rgba(255, 255, 255, 0.7);
    }

    /* App body */
    .sp-body {
      padding: 1.2rem 1.1rem 1.4rem;
      background: linear-gradient(180deg, #0a1525 0%, #060d18 100%);
    }

    .sp-tag {
      font-size: 0.65rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1rem;
      text-align: center;
      font-family: "Outfit", sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
    }

    .sp-tag::before,
    .sp-tag::after {
      content: "";
      flex: 1;
      height: 1px;
      background: rgba(10, 153, 221, 0.2);
    }

    /* Professional cards */
    .sp-card {
      background: linear-gradient(135deg,
          rgba(255, 255, 255, 0.06),
          rgba(255, 255, 255, 0.03));
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 16px;
      padding: 0.9rem 1rem;
      margin-bottom: 0.55rem;
      cursor: pointer;
      transition: all 0.22s;
      position: relative;
      overflow: hidden;
    }

    .sp-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent);
    }

    .sp-card:hover {
      background: linear-gradient(135deg,
          rgba(10, 153, 221, 0.12),
          rgba(10, 153, 221, 0.06));
      border-color: rgba(10, 153, 221, 0.3);
      transform: scale(1.01);
    }

    .sp-card-name {
      font-size: 0.9rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.3rem;
      font-family: "Outfit", sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .sp-card-loc {
      font-size: 0.72rem;
      color: #8fa3c0;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 0.5rem;
    }

    .sp-card-loc .sp-stars {
      display: flex;
      gap: 0.1rem;
    }

    .sp-card-loc .sp-stars i {
      color: #f59e0b;
      font-size: 0.62rem;
    }

    .sp-card-loc .sp-rat {
      color: #f59e0b;
      font-weight: 700;
      font-size: 0.72rem;
    }

    .sp-card-wa {
      background: linear-gradient(135deg,
          rgba(22, 163, 74, 0.25),
          rgba(22, 163, 74, 0.15));
      border: 1px solid rgba(22, 163, 74, 0.3);
      border-radius: 50px;
      padding: 0.32rem 0.9rem;
      font-size: 0.7rem;
      font-weight: 700;
      color: #4ade80;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      width: 100%;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(22, 163, 74, 0.15);
    }

    .sp-card-wa i {
      font-size: 0.85rem;
    }

    /* ── Pro-card real dentro do smartphone ── */
    .sp-body .pro-card {
      background: #1e293b;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: .95rem;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: .6rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .sp-body .pro-card:hover {
      transform: translateY(-3px);
      border-color: #38bdf8;
    }

    .sp-body .card-top {
      display: flex;
      gap: .7rem;
      align-items: flex-start;
    }

    .sp-body .pro-av {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      position: relative;
      flex-shrink: 0;
      background: #2a3a52;
      overflow: hidden;
    }

    .sp-body .pro-av img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sp-body .pro-status-dot {
      position: absolute;
      top: 5px;
      right: -5px;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #f59e0b;
      border: 2px solid #1e293b;
    }

    .sp-body .pro-header-info {
      flex: 1;
      min-width: 0;
    }

    .sp-body .cat-label {
      color: #38bdf8;
      font-size: .63rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 2px;
    }

    .sp-body .pro-header-info h3 {
      font-size: .95rem;
      font-weight: 900;
      color: #f8fafc;
      margin-bottom: 5px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .sp-body .mini-actions {
      display: flex;
      gap: 5px;
    }

    .sp-body .action-sq {
      width: 32px;
      height: 32px;
      border-radius: 9px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      font-size: .82rem;
      transition: 0.2s;
    }

    .sp-body .action-sq.wpp-sq {
      color: #10b981;
      background: rgba(16, 185, 129, 0.07);
    }

    .sp-body .guarantee-row {
      background: rgba(56, 189, 248, 0.04);
      border: 1px solid rgba(56, 189, 248, 0.18);
      border-radius: 12px;
      padding: 8px;
      text-align: center;
    }

    .sp-body .g-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      color: #38bdf8;
      font-weight: 700;
      font-size: .78rem;
    }

    .sp-body .guarantee-row span {
      font-size: .63rem;
      color: #94a3b8;
      display: block;
      margin-top: 2px;
    }

    .sp-body .loc-footer {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 12px;
      padding: 8px 11px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .sp-body .loc-left {
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: 700;
      font-size: .85rem;
      color: #f8fafc;
    }

    .sp-body .loc-right div {
      font-size: .57rem;
      font-weight: 800;
      color: #94a3b8;
      text-transform: uppercase;
    }

    /* Home bar */
    .sp-home-bar {
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(6, 11, 20, 0.95);
    }

    .sp-home-bar::after {
      content: "";
      width: 90px;
      height: 4px;
      background: rgba(255, 255, 255, 0.22);
      border-radius: 2px;
    }

    /* Lock screen */
    .sp-lock {
      padding: 0;
    }

    .sp-lock-top {
      background: linear-gradient(180deg, #080e1a 0%, #0a1525 100%);
      padding: 2rem 1.2rem 1.4rem;
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
    }

    .sp-lock-time {
      font-family: "Outfit", sans-serif;
      font-size: 4rem;
      font-weight: 200;
      color: #fff;
      line-height: 1;
      letter-spacing: -2px;
      text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
    }

    .sp-lock-date {
      font-size: 0.8rem;
      color: #8fa3c0;
      margin-top: 0.4rem;
      font-family: "Outfit", sans-serif;
      font-weight: 500;
    }

    /* Notification cards */
    .sp-notifs {
      padding: 0.8rem 0.9rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      background: linear-gradient(180deg, #0a1525, #060d18);
    }

    .sp-notif {
      background: rgba(255, 255, 255, 0.07);
      border-radius: 18px;
      padding: 0.8rem 1rem;
      border: 1px solid rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(10px);
      transition: background 0.2s;
    }

    .sp-notif:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .sp-notif-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.4rem;
    }

    .sp-notif-app {
      width: 22px;
      height: 22px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .sp-notif-app i {
      font-size: 0.7rem;
      color: #fff;
    }

    .sp-notif-name {
      font-size: 0.68rem;
      font-weight: 800;
      color: #e2e8f0;
      flex: 1;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .sp-notif-time {
      font-size: 0.63rem;
      color: #4b5a70;
      font-weight: 500;
    }

    .sp-notif-title {
      font-size: 0.82rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.25rem;
      line-height: 1.35;
    }

    .sp-notif-msg {
      font-size: 0.72rem;
      color: #8fa3c0;
      line-height: 1.55;
    }

    .modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(16px);
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .modal.open {
      display: flex;
    }

    .modal-inner {
      width: 100%;
      max-width: 940px;
      background: #0b1220;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(10, 153, 221, 0.2);
      position: relative;
      box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(10, 153, 221, 0.1);
    }

    .modal-x {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      z-index: 10;
      background: rgba(255, 255, 255, 0.07);
      border: none;
      color: #fff;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .modal-x:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .modal-frame {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
    }

    .modal-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ── PERIGO ── */
    #perigo {
      background: var(--dark);
    }

    .perigo-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .perigo-img-wrap {
      position: relative;
    }

    .perigo-img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 22px;
      filter: grayscale(15%);
      box-shadow: 0 28px 100px rgba(0, 0, 0, 0.6);
      transition: filter 0.35s;
    }

    .perigo-img-wrap:hover .perigo-img {
      filter: grayscale(0);
    }

    .perigo-badge {
      position: absolute;
      bottom: -1.8rem;
      right: -1.8rem;
      background: linear-gradient(180deg, #13213a, #0b1220);
      border: 1px solid rgba(239, 68, 68, 0.22);
      border-radius: 18px;
      padding: 1.5rem 2rem;
      box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(239, 68, 68, 0.1);
      animation: floatY 3s ease-in-out infinite;
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .perigo-badge-n {
      font-family: "Outfit", sans-serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: #ef4444;
      line-height: 1;
      letter-spacing: -2px;
      text-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
    }

    .perigo-badge-l {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b7fa0;
      margin-top: 0.35rem;
      line-height: 1.45;
    }

    .perigo-items {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .perigo-item {
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      background: rgba(239, 68, 68, 0.03);
      border: 1px solid rgba(239, 68, 68, 0.09);
      border-radius: 16px;
      padding: 1.4rem 1.5rem;
      transition:
        transform 0.28s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.28s,
        border-color 0.2s;
      box-shadow: var(--card-shadow);
    }

    .perigo-item:hover {
      transform: translateX(6px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(239, 68, 68, 0.22);
    }

    .perigo-item-ico {
      width: 46px;
      height: 46px;
      background: rgba(239, 68, 68, 0.08);
      border: 1px solid rgba(239, 68, 68, 0.18);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #ef4444;
      font-size: 1.1rem;
    }

    .perigo-item-t {
      font-weight: 800;
      color: #e2e8f0;
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }

    .perigo-item-d {
      font-size: 0.9rem;
      color: #6b7fa0;
      line-height: 1.65;
    }

    /* ── DOMINÂNCIA LOCAL ── */
    #dominancia {
      background: var(--slate);
    }

    .dom-wrap {
      background: linear-gradient(135deg,
          rgba(10, 153, 221, 0.06),
          rgba(17, 24, 39, 0.85));
      border: 1px solid rgba(10, 153, 221, 0.12);
      border-radius: 26px;
      padding: 3.5rem;
      box-shadow: 0 0 80px rgba(10, 153, 221, 0.06);
    }

    .dom-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: center;
    }

    .dom-img-wrap {
      position: relative;
    }

    .dom-img-glow {
      position: absolute;
      inset: -1.5rem;
      background: rgba(10, 153, 221, 0.1);
      border-radius: 50%;
      filter: blur(50px);
      pointer-events: none;
    }

    .dom-img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 28px 100px rgba(0, 0, 0, 0.6);
      position: relative;
      z-index: 1;
      animation: floatY 4s ease-in-out infinite;
    }

    .dom-checklist {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      margin-top: 1.8rem;
    }

    .dom-check {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      font-size: 0.97rem;
      color: #e2e8f0;
    }

    .dom-check-icon {
      color: var(--green-light);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .dom-check strong {
      color: #fff;
    }

    /* ── AFF2 ── */
    #afiliados {
      background: var(--dark);
    }

    .aff2-wrap {
      background: linear-gradient(135deg,
          rgba(10, 153, 221, 0.06),
          rgba(17, 24, 39, 0.7));
      border: 1px solid rgba(10, 153, 221, 0.1);
      border-radius: 26px;
      padding: 3.5rem 4rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 80px rgba(10, 153, 221, 0.06);
    }

    .aff2-deco {
      position: absolute;
      top: 0;
      right: 2rem;
      font-weight: 900;
      font-size: 9rem;
      color: rgba(255, 255, 255, 0.02);
      pointer-events: none;
      line-height: 1;
      font-family: "Outfit", sans-serif;
      user-select: none;
    }

    .aff2-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .aff2-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .aff2-stat {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 1.4rem 1.6rem;
    }

    .aff2-stat-n {
      font-family: "Outfit", sans-serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1.5px;
      line-height: 1;
    }

    .aff2-stat-l {
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b7fa0;
      margin-top: 0.4rem;
    }

    .aff2-ladder {
      background: rgba(8, 14, 26, 0.7);
      border: 1px solid rgba(10, 153, 221, 0.1);
      border-radius: 20px;
      padding: 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .aff2-ladder-title {
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #6b7fa0;
      margin-bottom: 0.3rem;
    }

    .aff2-rung {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 0.85rem 1.1rem;
      transition: all 0.2s;
    }

    .aff2-rung:hover {
      background: rgba(10, 153, 221, 0.05);
      border-color: rgba(10, 153, 221, 0.18);
    }

    .aff2-rung-l {
      font-size: 0.9rem;
      font-weight: 700;
      color: #e2e8f0;
    }

    .aff2-rung-v {
      font-size: 0.88rem;
      font-weight: 900;
    }

    .aff2-rung-v.green {
      color: var(--green-light);
    }

    .aff2-rung-v.orange {
      color: var(--orange);
    }

    .aff2-rung-v.blue {
      color: var(--blue);
    }

    .aff2-rung.highlight {
      border-color: rgba(22, 163, 74, 0.28);
      background: rgba(22, 163, 74, 0.05);
    }

    .aff2-rule {
      margin-top: 1.5rem;
      background: rgba(245, 158, 11, 0.05);
      border: 1px solid rgba(245, 158, 11, 0.15);
      border-radius: 12px;
      padding: 1rem 1.2rem;
    }

    .aff2-rule-t {
      font-weight: 700;
      color: var(--orange);
      font-size: 0.84rem;
      margin-bottom: 0.4rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .aff2-rule-d {
      font-size: 0.82rem;
      color: #6b7fa0;
      line-height: 1.6;
    }

    /* ── BILLING SWITCHER ── */
    .billing-switcher {
      display: inline-flex;
      background: rgba(8, 14, 26, 0.8);
      border: 1px solid rgba(10, 153, 221, 0.15);
      border-radius: 50px;
      padding: 0.3rem;
      gap: 0.2rem;
      backdrop-filter: blur(8px);
    }

    .bill-btn {
      padding: 0.45rem 1.2rem;
      border-radius: 50px;
      border: none;
      font-size: 0.8rem;
      font-weight: 700;
      cursor: pointer;
      font-family: "Inter", sans-serif;
      color: #6b7fa0;
      background: transparent;
      transition: all 0.25s;
      white-space: nowrap;
      position: relative;
    }

    .bill-btn.active {
      background: linear-gradient(135deg, var(--blue), var(--blue-d));
      color: #fff;
      box-shadow: 0 2px 16px rgba(10, 153, 221, 0.4);
    }

    .bill-btn .bill-badge {
      position: absolute;
      top: -10px;
      right: -4px;
      background: linear-gradient(135deg, var(--green), #0a7a30);
      color: #fff;
      font-size: 0.58rem;
      font-weight: 800;
      padding: 0.12rem 0.4rem;
      border-radius: 20px;
      white-space: nowrap;
      pointer-events: none;
    }

    .setup-note {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(245, 158, 11, 0.06);
      border: 1px solid rgba(245, 158, 11, 0.18);
      border-radius: 50px;
      padding: 0.35rem 1rem;
      font-size: 0.78rem;
      color: var(--orange);
      font-weight: 600;
    }

    .price-orig {
      font-size: 0.8rem;
      color: #6b7fa0;
      text-decoration: line-through;
      margin-left: 0.3rem;
      font-weight: 500;
    }

    .price-save {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 800;
      background: rgba(22, 163, 74, 0.14);
      color: var(--green-light);
      padding: 0.1rem 0.4rem;
      border-radius: 10px;
      margin-left: 0.4rem;
    }

    /* ── AFFILIATE CALCULATOR ── */
    .calc-box {
      background: linear-gradient(180deg, #13213a, #0b1220);
      border: 1px solid rgba(10, 153, 221, 0.15);
      border-radius: 20px;
      padding: 2rem;
      margin-top: 2rem;
      box-shadow: 0 0 40px rgba(10, 153, 221, 0.06);
    }

    .calc-box-title {
      font-weight: 800;
      color: #fff;
      font-size: 1rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding-bottom: 0.9rem;
      border-bottom: 1px solid rgba(10, 153, 221, 0.1);
    }

    .calc-slider-wrap {
      margin-bottom: 1.5rem;
    }

    .calc-slider-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.82rem;
      font-weight: 700;
      color: #6b7fa0;
      margin-bottom: 0.85rem;
    }

    .calc-slider-count {
      color: var(--blue);
      font-size: 1.1rem;
      font-weight: 900;
    }

    input[type="range"].calc-slider {
      width: 100%;
      height: 6px;
      border-radius: 3px;
      appearance: none;
      background: linear-gradient(to right,
          var(--blue) 0%,
          var(--blue) var(--pct, 10%),
          rgba(255, 255, 255, 0.08) var(--pct, 10%),
          rgba(255, 255, 255, 0.08) 100%);
      cursor: pointer;
      outline: none;
    }

    input[type="range"].calc-slider::-webkit-slider-thumb {
      appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--blue);
      border: 3px solid #fff;
      box-shadow: 0 2px 12px var(--blue-glow);
      cursor: pointer;
    }

    input[type="range"].calc-slider::-moz-range-thumb {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--blue);
      border: 3px solid #fff;
      cursor: pointer;
    }

    .calc-result {
      background: rgba(22, 163, 74, 0.07);
      border: 1px solid rgba(22, 163, 74, 0.18);
      border-left: 4px solid var(--green-light);
      border-radius: 14px;
      padding: 1.2rem 1.4rem;
    }

    .calc-result-label {
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--green-light);
      margin-bottom: 0.3rem;
    }

    .calc-result-val {
      font-family: "Outfit", sans-serif;
      font-size: 2.8rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1.5px;
      line-height: 1;
    }

    .calc-cta {
      display: block;
      width: 100%;
      text-align: center;
      margin-top: 1.2rem;
      background: linear-gradient(135deg, var(--green), #0a7a30);
      color: #fff;
      border: none;
      padding: 0.82rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.25s;
      font-family: "Inter", sans-serif;
      text-decoration: none;
      box-shadow: 0 4px 20px var(--green-glow);
    }

    .calc-cta:hover {
      background: linear-gradient(135deg, var(--blue), var(--blue-d));
      box-shadow: 0 8px 32px var(--blue-glow);
      transform: translateY(-1px);
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal.from-left {
      transform: translateX(-36px);
    }

    .reveal.from-right {
      transform: translateX(36px);
    }

    .reveal.visible.from-left,
    .reveal.visible.from-right {
      transform: translateX(0);
    }

    .d1 {
      transition-delay: 0.1s;
    }

    .d2 {
      transition-delay: 0.2s;
    }

    .d3 {
      transition-delay: 0.3s;
    }

    .d4 {
      transition-delay: 0.4s;
    }

    .high-ticket-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 980px) {

      .hero-inner,
      .rateio-grid,
      .seo-layout,
      .sdr-layout,
      .split-layout,
      .corp-grid,
      .podcast-layout,
      .aff-layout,
      .perigo-layout,
      .dom-layout,
      .aff2-layout {
        grid-template-columns: 1fr;
      }

      .hero-invite-btns {
        grid-template-columns: 1fr;
      }

      .steps-grid,
      .academy-grid,
      .plans-grid {
        grid-template-columns: 1fr;
      }

      .levels-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .missions-grid {
        grid-template-columns: 1fr;
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .currency-switcher {
        display: none;
      }

      .hamburger-btn {
        display: flex;
      }

      .ent-strip {
        flex-direction: column;
      }

      .ent-right {
        text-align: left;
      }

      h1 {
        letter-spacing: -1px;
      }

      .parallax {
        background-attachment: scroll;
      }

      #cta-final {
        background-attachment: scroll;
      }

      .px1,
      .px2 {
        background-attachment: scroll;
      }

      .prob-layout {
        grid-template-columns: 1fr;
      }

      .prob-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .sc-layout {
        grid-template-columns: 1fr;
      }

      .phone-wrap {
        margin-top: 2rem;
      }

      .phone-frame {
        width: 260px;
      }

      .dir-layout {
        grid-template-columns: 1fr;
      }

      .dir-phones {
        margin-top: 2rem;
        justify-content: center;
        align-items: flex-end;
        gap: 1rem;
        flex-wrap: nowrap;
      }

      .smartphone.sp1,
      .smartphone.sp2 {
        width: 46%;
        max-width: 290px;
      }

      .high-ticket-grid {
        grid-template-columns: 1fr !important;
      }

      #planos [style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
      }
    }

    @media (max-width: 600px) {
      section {
        padding: 64px 4%;
      }

      .prob-list {
        grid-template-columns: 1fr;
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .levels-row {
        grid-template-columns: 1fr;
      }

      .dir-phones {
        flex-direction: column;
        align-items: center;
      }

      .smartphone.sp1,
      .smartphone.sp2 {
        width: 88%;
        max-width: 320px;
      }

      .perigo-badge {
        position: static;
        margin-top: 1.5rem;
        display: inline-block;
      }

      .dom-wrap {
        padding: 1.8rem;
      }

      .aff2-wrap {
        padding: 2rem 1.5rem;
      }

      .aff2-stats {
        grid-template-columns: 1fr 1fr;
      }

      .sc-layout {
        grid-template-columns: 1fr;
      }

      .phone-frame {
        width: 240px;
      }

      .cta-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        letter-spacing: -0.5px;
        line-height: 1.2;
      }

      h1 {
        font-size: clamp(2rem, 7vw, 3rem);
      }

      .sec-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
      }

      #planos [style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
      }
    }

    /* ── AUDIO PULSE ── */
    .audio-pulse-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: rgba(22, 163, 74, 0.15);
      color: var(--green-light);
      font-size: 0.85rem;
      margin-left: 0.7rem;
      vertical-align: middle;
      position: relative;
      transition: all 0.2s;
      animation: audioPulse 2.2s infinite;
      flex-shrink: 0;
    }

    .audio-pulse-btn:hover {
      background: rgba(22, 163, 74, 0.35);
      transform: scale(1.15);
    }

    @keyframes audioPulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55);
      }

      70% {
        box-shadow: 0 0 0 12px rgba(22, 163, 74, 0);
      }
    }

    /* ── AUDIO PILL BUTTON ── */
    .audio-pulse-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.3rem 0.85rem 0.3rem 0.6rem;
      border-radius: 999px;
      border: 1.5px solid rgba(22, 163, 74, 0.65);
      background: rgba(10, 20, 30, 0.55);
      color: #4ade80;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      cursor: pointer;
      vertical-align: middle;
      margin-left: 0.55rem;
      flex-shrink: 0;
      transition: all 0.25s;
      animation: pillGlow 2.2s infinite;
      backdrop-filter: blur(4px);
      position: relative;
    }

    .audio-pulse-pill i {
      font-size: 0.8rem;
      color: #4ade80;
    }

    .audio-pulse-pill:hover {
      background: rgba(22, 163, 74, 0.18);
      border-color: #4ade80;
      color: #fff;
      transform: scale(1.07);
      box-shadow: 0 0 18px rgba(22, 163, 74, 0.5);
    }

    .audio-pulse-pill:hover i {
      color: #fff;
    }

    @keyframes pillGlow {

      0%,
      100% {
        box-shadow:
          0 0 0 0 rgba(22, 163, 74, 0.55),
          0 0 8px rgba(22, 163, 74, 0.2);
      }

      50% {
        box-shadow:
          0 0 0 7px rgba(22, 163, 74, 0),
          0 0 16px rgba(22, 163, 74, 0.35);
      }
    }

    @keyframes pillBlink {

      0%,
      100% {
        border-color: rgba(22, 163, 74, 0.65);
        color: #4ade80;
      }

      50% {
        border-color: rgba(22, 163, 74, 1);
        color: #fff;
      }
    }

    /* ── VIDEO PILL BUTTON ── */
    /* USO: <button onclick="openVideo('https://vimeo.com/SEU_ID_AQUI')" class="video-pill-btn" title="Assistir vídeo"><i class="fas fa-play"></i></button> */
    .video-pill-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1.5px solid rgba(10, 153, 221, 0.65);
      background: rgba(10, 20, 35, 0.55);
      color: #38bdf8;
      font-size: 0.72rem;
      cursor: pointer;
      vertical-align: middle;
      margin-left: 0.55rem;
      flex-shrink: 0;
      transition: all 0.25s;
      animation: videoPillGlow 2.2s infinite;
      backdrop-filter: blur(4px);
      padding-left: 2px;
    }

    .video-pill-btn:hover {
      background: rgba(10, 153, 221, 0.2);
      border-color: #38bdf8;
      color: #fff;
      transform: scale(1.12);
      box-shadow: 0 0 18px rgba(10, 153, 221, 0.55);
    }

    @keyframes videoPillGlow {

      0%,
      100% {
        box-shadow:
          0 0 0 0 rgba(10, 153, 221, 0.55),
          0 0 6px rgba(10, 153, 221, 0.15);
      }

      50% {
        box-shadow:
          0 0 0 7px rgba(10, 153, 221, 0),
          0 0 14px rgba(10, 153, 221, 0.3);
      }
    }

    /* AUDIO MODAL PLAYER */
    #audioModal .modal-inner {
      max-width: 500px;
      border-color: rgba(22, 163, 74, 0.25);
    }

    #audioModal .modal-inner:hover {
      box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(22, 163, 74, 0.1);
    }

    .audio-modal-body {
      padding: 2.5rem 2rem 2rem;
    }

    .audio-modal-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.8rem;
    }

    .audio-modal-icon {
      width: 58px;
      height: 58px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--green), #0a7a30);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 30px var(--green-glow);
    }

    .audio-modal-icon i {
      color: #fff;
      font-size: 1.5rem;
    }

    .audio-modal-tag {
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--green-light);
      margin-bottom: 0.28rem;
    }

    .audio-modal-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.35;
    }

    audio {
      width: 100%;
      border-radius: 12px;
      outline: none;
      accent-color: var(--green-light);
      margin-top: 0.5rem;
      display: block;
      background: #1e2d45;
      border: 1px solid rgba(22, 163, 74, 0.35);
      box-shadow: 0 0 20px rgba(22, 163, 74, 0.12);
    }

    audio::-webkit-media-controls-panel {
      background: #1a2d42;
      border-radius: 12px;
    }

    audio::-webkit-media-controls-play-button,
    audio::-webkit-media-controls-mute-button {
      filter: brightness(2) saturate(1.5);
    }

    audio::-webkit-media-controls-current-time-display,
    audio::-webkit-media-controls-time-remaining-display {
      color: #e2e8f0;
    }

    audio::-webkit-media-controls-timeline {
      accent-color: var(--green-light);
    }

    .audio-modal-sub {
      margin-top: 1.2rem;
      font-size: 0.8rem;
      color: #6b7fa0;
      text-align: center;
      line-height: 1.65;
    }

    /* ── TELEFONIA INTELIGENTE ── */
    #telefonia {
      background: var(--slate);
    }

    .tel-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    .tel-nums {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .tel-num {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: linear-gradient(135deg, #0b1220, #080e1a);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.1rem 1.4rem;
      transition:
        transform 0.28s,
        box-shadow 0.28s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
    }

    .tel-num:hover {
      transform: translateX(7px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(10, 153, 221, 0.3);
    }

    .tel-num-ico {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .tel-num-ico.blue {
      background: rgba(10, 153, 221, 0.12);
      color: var(--blue);
      border: 1px solid rgba(10, 153, 221, 0.2);
    }

    .tel-num-ico.green {
      background: rgba(22, 163, 74, 0.12);
      color: var(--green-light);
      border: 1px solid rgba(22, 163, 74, 0.2);
    }

    .tel-num-ico.orange {
      background: rgba(245, 158, 11, 0.12);
      color: var(--orange);
      border: 1px solid rgba(245, 158, 11, 0.2);
    }

    .tel-num-t {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 0.94rem;
      margin-bottom: 0.2rem;
    }

    .tel-num-d {
      font-size: 0.83rem;
      color: #6b7fa0;
      line-height: 1.55;
    }

    .tel-filter {
      background: linear-gradient(135deg,
          rgba(10, 153, 221, 0.06),
          rgba(11, 18, 32, 0.95));
      border: 1px solid rgba(10, 153, 221, 0.18);
      border-radius: 16px;
      padding: 1.6rem;
      margin-top: 1rem;
    }

    .tel-filter-title {
      font-weight: 800;
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .tel-filter-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .tel-filter-row:last-child {
      border-bottom: none;
    }

    .tel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .td-r {
      background: #ef4444;
    }

    .td-y {
      background: #f59e0b;
    }

    .td-g {
      background: #22c55e;
    }

    .tel-filter-lbl {
      font-size: 0.83rem;
      font-weight: 600;
      color: #e2e8f0;
      flex: 1;
    }

    .tel-filter-tag {
      font-size: 0.72rem;
      padding: 0.2rem 0.6rem;
      border-radius: 20px;
      font-weight: 700;
    }

    .tf-r {
      background: rgba(239, 68, 68, 0.1);
      color: #ef4444;
    }

    .tf-y {
      background: rgba(245, 158, 11, 0.1);
      color: var(--orange);
    }

    .tf-g {
      background: rgba(22, 163, 74, 0.1);
      color: var(--green-light);
    }

    .tel-cob {
      background: linear-gradient(135deg,
          rgba(245, 158, 11, 0.07),
          rgba(11, 18, 32, 0.95));
      border: 1px solid rgba(245, 158, 11, 0.2);
      border-radius: 16px;
      padding: 1.5rem;
    }

    .tel-cob-title {
      font-weight: 800;
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .tel-cob-desc {
      font-size: 0.85rem;
      color: #94a3b8;
      line-height: 1.65;
    }

    .tel-cob-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(245, 158, 11, 0.1);
      border: 1px solid rgba(245, 158, 11, 0.25);
      color: var(--orange);
      padding: 0.25rem 0.8rem;
      border-radius: 20px;
      font-size: 0.72rem;
      font-weight: 700;
      margin-top: 0.8rem;
    }

    /* ── REDES SOCIAIS ── */
    #social-mgmt {
      background: var(--dark2);
    }

    .social-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 2.5rem;
    }

    .social-card {
      background: linear-gradient(180deg, #13213a 0%, #0b1220 100%);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.6rem;
      text-align: center;
      transition:
        transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.32s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden;
    }

    .social-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(10, 153, 221, 0.25);
    }

    .social-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg,
          transparent,
          var(--blue),
          transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .social-card:hover::before {
      transform: scaleX(1);
    }

    .social-ico {
      font-size: 2rem;
      margin-bottom: 0.9rem;
    }

    .social-t {
      font-weight: 800;
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 0.45rem;
    }

    .social-d {
      font-size: 0.83rem;
      color: #6b7fa0;
      line-height: 1.6;
    }

    .social-tag {
      display: inline-flex;
      margin-top: 0.85rem;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.22rem 0.7rem;
      border-radius: 20px;
    }

    .social-banner {
      margin-top: 2.5rem;
      background: linear-gradient(135deg,
          rgba(103, 126, 234, 0.08),
          rgba(11, 18, 32, 0.95));
      border: 1px solid rgba(103, 126, 234, 0.2);
      border-radius: 16px;
      padding: 1.8rem 2rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .social-banner-left {
      flex: 1;
      min-width: 200px;
    }

    .social-banner-t {
      font-weight: 900;
      color: #fff;
      font-size: 1.1rem;
      margin-bottom: 0.4rem;
      font-family: "Outfit", sans-serif;
    }

    .social-banner-d {
      font-size: 0.85rem;
      color: #94a3b8;
      line-height: 1.6;
    }

    .social-platforms {
      display: flex;
      gap: 0.7rem;
      flex-wrap: wrap;
      margin-top: 0.9rem;
    }

    .soc-plat {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 0.35rem 0.75rem;
      font-size: 0.78rem;
      font-weight: 600;
      color: #e2e8f0;
    }

    /* ── ESCRITÓRIO VIRTUAL ── */
    #escritorio {
      background: var(--slate);
    }

    .escritorio-intro {
      max-width: 680px;
      margin: 0 auto 3rem;
      text-align: center;
    }

    .escritorio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.3rem;
    }

    .esc-card {
      background: linear-gradient(180deg, #13213a 0%, #0b1220 100%);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.6rem;
      transition:
        transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.32s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden;
    }

    .esc-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(10, 153, 221, 0.3);
    }

    .esc-ico {
      font-size: 1.9rem;
      margin-bottom: 0.75rem;
    }

    .esc-t {
      font-weight: 800;
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
    }

    .esc-d {
      font-size: 0.84rem;
      color: #6b7fa0;
      line-height: 1.6;
    }

    .esc-feat {
      font-size: 0.75rem;
      margin-top: 0.7rem;
      color: #94a3b8;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.7rem;
    }

    .esc-feat span {
      color: var(--green-light);
    }

    .esc-wide {
      grid-column: span 3;
    }

    .esc-wide-inner {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      background: linear-gradient(135deg,
          rgba(22, 163, 74, 0.06),
          rgba(11, 18, 32, 0.95));
      border: 1px solid rgba(22, 163, 74, 0.18);
      border-radius: 14px;
      padding: 1.8rem 2rem;
    }

    .esc-wide-text {
      flex: 1;
      min-width: 220px;
    }

    .esc-wide-t {
      font-weight: 900;
      color: #fff;
      font-size: 1.05rem;
      margin-bottom: 0.5rem;
      font-family: "Outfit", sans-serif;
    }

    .esc-wide-d {
      font-size: 0.87rem;
      color: #94a3b8;
      line-height: 1.65;
    }

    .esc-dash {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .esc-dash-item {
      background: rgba(22, 163, 74, 0.08);
      border: 1px solid rgba(22, 163, 74, 0.18);
      border-radius: 10px;
      padding: 0.55rem 1rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green-light);
      white-space: nowrap;
    }

    /* ── EQUIPE DE ELITE ── */
    #equipe {
      background: var(--dark);
    }

    .equipe-intro {
      max-width: 700px;
      margin: 0 auto 3rem;
      text-align: center;
    }

    .equipe-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.3rem;
      margin-bottom: 2.5rem;
    }

    .equipe-card {
      background: linear-gradient(180deg, #13213a 0%, #0b1220 100%);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.6rem;
      transition:
        transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.32s,
        border-color 0.25s;
      box-shadow: var(--card-shadow);
    }

    .equipe-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(103, 126, 234, 0.35);
    }

    .eq-num {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(103, 126, 234, 0.12);
      border: 1px solid rgba(103, 126, 234, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 900;
      color: #a5b4fc;
      margin-bottom: 0.9rem;
    }

    .eq-ico {
      font-size: 1.8rem;
      margin-bottom: 0.55rem;
    }

    .eq-role {
      font-size: 0.68rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #a5b4fc;
      margin-bottom: 0.3rem;
    }

    .eq-t {
      font-weight: 800;
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
    }

    .eq-d {
      font-size: 0.83rem;
      color: #6b7fa0;
      line-height: 1.6;
    }

    .equipe-vs {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 1.5rem;
      align-items: center;
      background: linear-gradient(135deg,
          rgba(103, 126, 234, 0.06),
          rgba(11, 18, 32, 0.95));
      border: 1px solid rgba(103, 126, 234, 0.2);
      border-radius: 16px;
      padding: 2rem;
      margin-top: 1rem;
    }

    .eq-vs-col {
      text-align: center;
    }

    .eq-vs-label {
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.7rem;
    }

    .eq-vs-label.bad {
      color: #ef4444;
    }

    .eq-vs-label.good {
      color: var(--green-light);
    }

    .eq-vs-price {
      font-size: 2.4rem;
      font-weight: 900;
      letter-spacing: -2px;
      font-family: "Outfit", sans-serif;
    }

    .eq-vs-price.bad {
      color: #ef4444;
    }

    .eq-vs-price.good {
      color: var(--green-light);
    }

    .eq-vs-note {
      font-size: 0.78rem;
      color: #6b7fa0;
      margin-top: 0.3rem;
    }

    .eq-vs-div {
      text-align: center;
      font-size: 1.5rem;
      color: #6b7fa0;
    }

    .eq-vs-includes {
      margin-top: 0.7rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .eq-vs-item {
      font-size: 0.8rem;
      color: #94a3b8;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      justify-content: center;
    }

    .eq-vs-item i {
      color: var(--green-light);
      font-size: 0.75rem;
    }

    /* ── BLINDAGEM ── */
    .blind-card {
      background: linear-gradient(135deg,
          rgba(239, 68, 68, 0.05),
          rgba(11, 18, 32, 0.95));
      border: 1px solid rgba(239, 68, 68, 0.18);
      border-radius: 12px;
      padding: 1.4rem;
      margin-top: 1rem;
      box-shadow: var(--card-shadow);
    }

    .blind-title {
      font-weight: 800;
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .blind-title i {
      color: #ef4444;
    }

    .blind-desc {
      font-size: 0.85rem;
      color: #94a3b8;
      line-height: 1.65;
    }

    .blind-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.25);
      color: #fca5a5;
      padding: 0.22rem 0.75rem;
      border-radius: 20px;
      font-size: 0.72rem;
      font-weight: 700;
      margin-top: 0.7rem;
    }

    /* ── LEAD FORM SECTION ── */
    #contato {
      padding: 80px 5%;
      background:
        linear-gradient(135deg,
          rgba(10, 153, 221, 0.12) 0%,
          rgba(103, 126, 234, 0.1) 50%,
          rgba(22, 163, 74, 0.08) 100%),
        var(--dark2);
      position: relative;
    }

    #contato::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(10, 153, 221, 0.04) 1px,
          transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    .form-wrap {
      max-width: 760px;
      margin: 0 auto;
      background: rgba(11, 18, 32, 0.95);
      border: 1px solid rgba(10, 153, 221, 0.2);
      border-radius: 24px;
      overflow: hidden;
      box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(10, 153, 221, 0.08);
      backdrop-filter: blur(16px);
      position: relative;
    }

    .form-left {
      background: linear-gradient(135deg, rgba(10, 153, 221, 0.18), rgba(103, 126, 234, 0.12));
      padding: 2.2rem 2.5rem 1.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .form-left-title {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1.2;
      margin-bottom: 0.6rem;
    }

    .form-left-desc {
      font-size: 0.88rem;
      color: #94a3b8;
      line-height: 1.6;
      margin-bottom: 1.4rem;
    }

    .form-feat-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.6rem;
    }

    .form-feat {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 0.65rem 0.9rem;
    }

    .form-feat-ico {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.82rem;
      color: #fff;
    }

    .form-feat-t {
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.1rem;
    }

    .form-feat-d {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.3;
    }

    .form-right {
      padding: 2.2rem 2.5rem 2.5rem;
    }

    .form-inner-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.85rem;
      margin-bottom: 0.85rem;
    }

    .form-section-title {
      font-family: "Outfit", sans-serif;
      font-size: 1.2rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 1.4rem;
      letter-spacing: -0.5px;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.85rem;
      margin-bottom: 1rem;
    }

    .form-grid-full {
      grid-column: span 1;
    }

    .form-label {
      display: block;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #94a3b8;
      margin-bottom: 0.4rem;
    }

    .form-input,
    .form-select {
      width: 100%;
      padding: 0.65rem 0.95rem;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
      color: #e2e8f0;
      font-size: 0.87rem;
      outline: none;
      transition:
        border-color 0.2s,
        box-shadow 0.2s;
      font-family: "Inter", sans-serif;
    }

    .form-input::placeholder {
      color: #4b5b75;
    }

    .form-input:focus,
    .form-select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(10, 153, 221, 0.12);
    }

    .form-select option {
      background: #0b1220;
      color: #e2e8f0;
    }

    .form-checks-label {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #94a3b8;
      margin-bottom: 0.6rem;
      display: block;
    }

    .form-checks-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.4rem;
      margin-bottom: 1rem;
    }

    .form-check {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 8px;
      padding: 0.5rem 0.7rem;
      cursor: pointer;
      transition:
        border-color 0.15s,
        background 0.15s;
    }

    .form-check:hover {
      border-color: rgba(10, 153, 221, 0.35);
      background: rgba(10, 153, 221, 0.06);
    }

    .form-check input[type="checkbox"] {
      width: 14px;
      height: 14px;
      border-radius: 4px;
      flex-shrink: 0;
      accent-color: var(--blue);
      cursor: pointer;
    }

    .form-check-lbl {
      font-size: 0.77rem;
      font-weight: 600;
      color: #94a3b8;
    }

    .form-interests {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.2rem;
    }

    .form-interest {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      cursor: pointer;
    }

    .form-interest input {
      accent-color: var(--blue);
      width: 14px;
      height: 14px;
    }

    .form-interest span {
      font-size: 0.83rem;
      color: #94a3b8;
    }

    .form-submit {
      width: 100%;
      padding: 0.9rem;
      border: none;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--green), #0a7a30);
      color: #fff;
      font-weight: 800;
      font-size: 0.95rem;
      cursor: pointer;
      font-family: "Inter", sans-serif;
      letter-spacing: 0.02em;
      box-shadow:
        0 4px 24px rgba(22, 163, 74, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
      transition: all 0.25s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(22, 163, 74, 0.5);
      background: linear-gradient(135deg, #22c55e, #16a34a);
    }

    @media (max-width: 600px) {
      .form-left {
        padding: 1.5rem;
      }

      .form-right {
        padding: 1.5rem;
      }

      .form-feat-cards {
        grid-template-columns: 1fr;
      }

      .form-inner-grid {
        grid-template-columns: 1fr;
      }
    }

    /* NAV medium screens - show compact */
    @media (max-width: 1100px) {
      .nav-links {
        gap: .5rem;
      }

      .nav-links a {
        font-size: .78rem;
      }

      .currency-switcher {
        display: none;
      }
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .currency-switcher {
        display: none;
      }
    }

    /* ── READING PROGRESS ── */
    #read-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--blue), var(--green));
      z-index: 9999;
      width: 0%;
      transition: width .1s linear;
      border-radius: 0 3px 3px 0;
      box-shadow: 0 0 8px rgba(10, 153, 221, .5)
    }

    /* ── ANNOUNCEMENT BAR ── */
    .ann-bar {
      background: linear-gradient(135deg, rgba(10, 153, 221, .13), rgba(139, 92, 246, .1));
      border-bottom: 1px solid rgba(10, 153, 221, .16);
      padding: .52rem 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .75rem;
      font-size: .8rem;
      color: #c8d6e5;
      position: relative;
      z-index: 200
    }

    .ann-bar .ann-badge {
      background: linear-gradient(135deg, var(--green), #0a7a30);
      color: #fff;
      font-size: .65rem;
      font-weight: 800;
      padding: .18rem .55rem;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: .06em
    }

    .ann-bar a {
      color: var(--blue);
      font-weight: 700;
      text-decoration: none
    }

    .ann-bar a:hover {
      text-decoration: underline
    }

    .ann-close {
      position: absolute;
      right: 5%;
      background: none;
      border: none;
      color: #6b7fa0;
      cursor: pointer;
      font-size: .9rem;
      padding: .2rem
    }

    .ann-close:hover {
      color: #e2e8f0
    }

    /* ── FLOATING CTA ── */
    .float-cta {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 500;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: .6rem;
      opacity: 0;
      transform: translateY(20px);
      transition: all .4s cubic-bezier(.23, 1, .32, 1);
      pointer-events: none
    }

    .float-cta.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all
    }

    .float-cta-btn {
      background: linear-gradient(135deg, var(--green), #0a7a30);
      color: #fff;
      border: none;
      padding: .82rem 1.55rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: .88rem;
      cursor: pointer;
      font-family: "Inter", sans-serif;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      box-shadow: 0 8px 32px rgba(22, 163, 74, .48), 0 1px 0 rgba(255, 255, 255, .2) inset;
      transition: all .25s;
      white-space: nowrap
    }

    .float-cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(22, 163, 74, .65)
    }

    .float-top-btn {
      width: 46px;
      height: 46px;
      background: var(--blue);
      border: 2px solid rgba(255, 255, 255, .2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      font-size: .9rem;
      transition: all .25s;
      backdrop-filter: blur(12px);
      box-shadow: 0 0 20px rgba(10, 153, 221, .4)
    }

    .float-top-btn:hover {
      transform: translateY(-3px) scale(1.08);
      box-shadow: 0 0 30px rgba(10, 153, 221, .65)
    }

    /* ── HERO ORBS ── */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      animation: floatOrb 8s ease-in-out infinite
    }

    .hero-orb-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(10, 153, 221, .08), transparent 70%);
      top: -120px;
      right: -120px;
      animation-delay: 0s
    }

    .hero-orb-2 {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(22, 163, 74, .06), transparent 70%);
      bottom: 40px;
      left: -90px;
      animation-delay: 3s
    }

    .hero-orb-3 {
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(139, 92, 246, .05), transparent 70%);
      top: 180px;
      right: 180px;
      animation-delay: 5s
    }

    @keyframes floatOrb {

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

      50% {
        transform: translateY(-28px) scale(1.04)
      }
    }

    @media(max-width:900px) {
      .hero-orb {
        display: none
      }
    }

    /* ── .hlg (green gradient highlight) ── */
    .sec-title .hlg,
    .hlg {
      background: linear-gradient(135deg, var(--green-light), #4ade80);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    /* ── TESTIMONIALS ── */
    #testimonials {
      background: var(--dark2)
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem
    }

    .testi-card {
      background: linear-gradient(180deg, #13243e, #0b1322);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 20px;
      padding: 2rem;
      transition: transform .32s cubic-bezier(.23, 1, .32, 1), box-shadow .32s, border-color .25s;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden
    }

    .testi-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--card-shadow-hover), 0 0 50px rgba(10, 153, 221, .12);
      border-color: rgba(10, 153, 221, .22)
    }

    .testi-stars {
      display: flex;
      gap: .25rem;
      margin-bottom: 1rem;
      color: var(--orange)
    }

    .testi-stars i {
      font-size: .85rem
    }

    .testi-text {
      font-size: .9rem;
      color: #8fa3c0;
      line-height: 1.75;
      margin-bottom: 1.5rem;
      font-style: italic;
      position: relative;
      z-index: 1
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: .85rem
    }

    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--green));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: .9rem;
      color: #fff;
      flex-shrink: 0;
      border: 2px solid rgba(10, 153, 221, .3)
    }

    .testi-name {
      font-weight: 700;
      color: #e2e8f0;
      font-size: .88rem
    }

    .testi-role {
      font-size: .75rem;
      color: #6b7fa0;
      margin-top: .1rem
    }

    .testi-badge {
      display: inline-block;
      font-size: .65rem;
      font-weight: 800;
      background: rgba(22, 163, 74, .1);
      color: var(--green-light);
      border: 1px solid rgba(22, 163, 74, .18);
      padding: .12rem .45rem;
      border-radius: 10px;
      margin-top: .4rem
    }

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

    /* ── FAQ ── */
    #faq {
      background: var(--slate)
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: .75rem;
      max-width: 820px;
      margin: 2.5rem auto 0
    }

    .faq-item {
      background: linear-gradient(135deg, #0d1929, #080e1a);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color .25s, box-shadow .25s
    }

    .faq-item:hover {
      border-color: rgba(10, 153, 221, .2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, .28)
    }

    .faq-item.open {
      border-color: rgba(10, 153, 221, .28);
      box-shadow: 0 12px 40px rgba(10, 153, 221, .07)
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.3rem 1.6rem;
      cursor: pointer;
      gap: 1rem;
      user-select: none
    }

    .faq-q-text {
      font-weight: 700;
      color: #e2e8f0;
      font-size: .95rem;
      line-height: 1.4
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      background: rgba(10, 153, 221, .1);
      border: 1px solid rgba(10, 153, 221, .22);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all .28s;
      color: var(--blue);
      font-size: .75rem
    }

    .faq-item.open .faq-icon {
      background: rgba(10, 153, 221, .2);
      transform: rotate(45deg)
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s cubic-bezier(.23, 1, .32, 1)
    }

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

    .faq-a-inner {
      padding: 0 1.6rem 1.4rem;
      font-size: .9rem;
      color: #6b7fa0;
      line-height: 1.75;
      border-top: 1px solid rgba(255, 255, 255, .05)
    }

    .faq-a-inner strong {
      color: #e2e8f0
    }

    /* ── URGENCY BADGE ── */
    .urgency {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(245, 158, 11, .07);
      border: 1px solid rgba(245, 158, 11, .22);
      color: var(--orange);
      padding: .4rem 1.2rem;
      border-radius: 50px;
      font-size: .8rem;
      font-weight: 600;
      margin-top: 1.5rem;
      box-shadow: 0 0 28px rgba(245, 158, 11, .1)
    }

    /* ── TRUST LOGOS ── */
    .trust-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 3rem;
      flex-wrap: wrap;
      opacity: .5
    }

    .trust-logo {
      font-size: .78rem;
      font-weight: 700;
      color: #6b7fa0;
      text-transform: uppercase;
      letter-spacing: .1em
    }


    /* ── SECTION DIVIDERS ── */
    .sec-divider {
      position: relative;
      height: 1px;
      margin: 0;
      overflow: visible;
    }

    .sec-divider::before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(10, 153, 221, 0.25) 30%, rgba(10, 153, 221, 0.25) 70%, transparent);
    }

    .sec-divider::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 1px;
      background: var(--blue);
      box-shadow: 0 0 18px 4px rgba(10, 153, 221, 0.5);
    }

    .sec-divider-dot {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 14px 5px rgba(10, 153, 221, 0.55);
      z-index: 2;
    }

    .sec-divider-orange::before {
      background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.22) 30%, rgba(245, 158, 11, 0.22) 70%, transparent);
    }

    .sec-divider-orange::after {
      background: var(--orange);
      box-shadow: 0 0 18px 4px rgba(245, 158, 11, 0.5);
    }

    .sec-divider-orange .sec-divider-dot {
      background: var(--orange);
      box-shadow: 0 0 14px 5px rgba(245, 158, 11, 0.55);
    }

    .sec-divider-green::before {
      background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.22) 30%, rgba(22, 163, 74, 0.22) 70%, transparent);
    }

    .sec-divider-green::after {
      background: var(--green-light);
      box-shadow: 0 0 18px 4px rgba(22, 163, 74, 0.5);
    }

    .sec-divider-green .sec-divider-dot {
      background: var(--green-light);
      box-shadow: 0 0 14px 5px rgba(22, 163, 74, 0.55);
    }

    /* ── URGENCY RIBBON (top of page) ── */
    .urgency-ribbon {
      background: linear-gradient(90deg, #92400e, #b45309, #92400e);
      background-size: 200% 100%;
      animation: ribbonShift 4s linear infinite;
      padding: 0.52rem 1rem;
      text-align: center;
      font-size: 0.78rem;
      font-weight: 700;
      color: #fef3c7;
      letter-spacing: 0.03em;
      position: relative;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    @keyframes ribbonShift {
      0% {
        background-position: 0% 50%;
      }

      100% {
        background-position: 200% 50%;
      }
    }

    .urgency-ribbon i {
      color: #fbbf24;
    }

    .urgency-ribbon strong {
      color: #fff;
    }

    .ribbon-countdown {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: rgba(0, 0, 0, 0.25);
      border-radius: 6px;
      padding: 0.15rem 0.55rem;
      font-size: 0.8rem;
      font-variant-numeric: tabular-nums;
      font-weight: 800;
      color: #fff;
    }

    .ribbon-sep {
      width: 1px;
      height: 14px;
      background: rgba(255, 255, 255, 0.25);
      display: inline-block;
      margin: 0 0.2rem;
    }

    /* ── SPOTS BADGE (inline urgency) ── */
    .spots-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: #fca5a5;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      animation: spotsPulse 2.5s ease-in-out infinite;
    }

    @keyframes spotsPulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.08);
      }
    }

    .spots-badge .spots-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #ef4444;
      animation: dotBlink 1.4s ease-in-out infinite;
    }

    @keyframes dotBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.2;
      }
    }

    /* ===================================================
         ENHANCED VISUAL DESIGN
      =================================================== */

    /* Body subtle grid texture */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(10, 153, 221, .022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 153, 221, .022) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
      z-index: -1;
    }

    /* Read progress bar */
    #read-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), #34d399, #a78bfa);
      z-index: 9999;
      width: 0%;
      transition: width .08s linear;
      pointer-events: none;
    }

    /* Announcement bar pulse */
    .ann-bar {
      background: linear-gradient(135deg, rgba(22, 163, 74, .13), rgba(10, 153, 221, .09));
      border-bottom: 1px solid rgba(22, 163, 74, .25);
      animation: annBorderPulse 3s ease-in-out infinite;
    }

    @keyframes annBorderPulse {

      0%,
      100% {
        border-bottom-color: rgba(22, 163, 74, .25);
      }

      50% {
        border-bottom-color: rgba(22, 163, 74, .5);
      }
    }

    /* Improved reveal animation */
    .reveal {
      transition:
        opacity .85s cubic-bezier(.23, 1, .32, 1),
        transform .85s cubic-bezier(.23, 1, .32, 1);
    }

    .reveal.from-left,
    .reveal.from-right {
      transition:
        opacity .95s cubic-bezier(.23, 1, .32, 1),
        transform .95s cubic-bezier(.23, 1, .32, 1);
    }

    /* Hero orbs - more vivid */
    .hero-orb-1 {
      width: 640px;
      height: 640px;
      background: radial-gradient(circle, rgba(10, 153, 221, .14), transparent 70%);
      top: -160px;
      right: -160px;
    }

    .hero-orb-2 {
      background: radial-gradient(circle, rgba(22, 163, 74, .1), transparent 70%);
      width: 400px;
      height: 400px;
    }

    .hero-orb-3 {
      background: radial-gradient(circle, rgba(139, 92, 246, .12), transparent 70%);
      width: 320px;
      height: 320px;
    }

    /* sec-tag subtle glow */
    .sec-tag {
      box-shadow: 0 0 24px rgba(10, 153, 221, .12);
    }

    .sec-tag.green {
      box-shadow: 0 0 24px rgba(22, 163, 74, .12);
    }

    .sec-tag.orange {
      box-shadow: 0 0 24px rgba(245, 158, 11, .12);
    }

    /* Section title text-shadow */
    .sec-title {
      text-shadow: 0 2px 48px rgba(10, 153, 221, .07);
    }

    /* btn-p glass sheen */
    .btn-p {
      position: relative;
      overflow: hidden;
    }

    .btn-p::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .1) 0%, transparent 60%);
      pointer-events: none;
      border-radius: inherit;
    }

    /* Floating CTA pulse */
    .float-cta-btn {
      animation: floatBtnPulse 2.8s ease-in-out infinite;
    }

    @keyframes floatBtnPulse {

      0%,
      100% {
        box-shadow: 0 8px 32px rgba(22, 163, 74, .48), 0 1px 0 rgba(255, 255, 255, .18) inset;
      }

      50% {
        box-shadow: 0 14px 52px rgba(22, 163, 74, .72), 0 1px 0 rgba(255, 255, 255, .18) inset;
      }
    }

    /* Hero trust badges hover */
    .htrust {
      transition: background .22s ease, transform .22s ease;
    }

    .htrust:hover {
      background: rgba(10, 153, 221, .1);
      transform: translateY(-2px);
    }

    /* Plan cards improved hover */
    .plan {
      transition: transform .32s cubic-bezier(.23, 1, .32, 1), box-shadow .32s cubic-bezier(.23, 1, .32, 1);
    }

    .plan:hover {
      transform: translateY(-8px) scale(1.012);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .5), 0 0 0 1px rgba(10, 153, 221, .15);
    }

    /* Feature / academy / level cards */
    .feat-card,
    .ac-card,
    .level-card {
      transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
    }

    .feat-card:hover,
    .ac-card:hover,
    .level-card:hover {
      border-color: rgba(10, 153, 221, .3);
      box-shadow: 0 20px 56px rgba(0, 0, 0, .45), 0 0 0 1px rgba(10, 153, 221, .12);
      transform: translateY(-5px);
    }

    /* Urgency badge pulse */
    .urgency {
      animation: urgencyPulse 2.2s ease-in-out infinite;
    }

    @keyframes urgencyPulse {

      0%,
      100% {
        box-shadow: 0 0 28px rgba(245, 158, 11, .1);
      }

      50% {
        box-shadow: 0 0 44px rgba(245, 158, 11, .28);
      }
    }

    /* Footer gradient top border */
    footer {
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(10, 153, 221, .35) 35%, rgba(139, 92, 246, .25) 65%, transparent 100%);
    }

    /* Nav transition */
    #main-nav {
      transition: background .3s ease, box-shadow .3s ease;
    }

    /* Podcast items hover */
    .pod-item {
      transition: border-color .25s ease, background .25s ease, transform .25s ease;
    }

    .pod-item:hover {
      border-color: rgba(10, 153, 221, .25);
      background: rgba(10, 153, 221, .06);
      transform: translateX(4px);
    }

    /* FAQ item hover */
    .faq-item {
      transition: border-color .25s ease;
    }

    .faq-item:hover {
      border-color: rgba(10, 153, 221, .2);
    }

    /* Stats row ambient glow */
    .stats-row {
      position: relative;
    }

    .stats-row::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(10, 153, 221, .05), transparent);
      pointer-events: none;
    }

    /* Plan CTA hover */
    .plan-cta:hover,
    .calc-cta:hover {
      box-shadow: 0 8px 36px rgba(22, 163, 74, .38);
    }

    /* Subtle section divider */
    section+section {
      border-top: 1px solid rgba(255, 255, 255, .04);
    }



    /* ── PLAN BONUS SECTION ── */
    .plan-bonus-hr {
      display: flex;
      align-items: center;
      gap: .6rem;
      margin: 1.1rem 0 .7rem;
    }

    .plan-bonus-hr::before,
    .plan-bonus-hr::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245, 158, 11, .3), transparent);
    }

    .plan-bonus-hr span {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      padding: .2rem .65rem;
      border-radius: 20px;
      background: rgba(245, 158, 11, .07);
      border: 1px solid rgba(245, 158, 11, .22);
      color: var(--orange);
      font-size: .67rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .07em;
      white-space: nowrap;
    }

    .plan-feats li.bonus-item {
      opacity: .9;
    }

    .plan-feats li.bonus-item .chk i {
      color: var(--orange) !important;
    }

    /* ── REDESIGNED CONTACT FORM ── */
    .form-right {
      padding: 2rem 1.8rem;
      background: rgba(8, 14, 26, .78);
      overflow-y: auto
    }

    .fs-hdr {
      display: flex;
      align-items: center;
      gap: .6rem;
      margin: 1.1rem 0 .7rem
    }

    .fs-hdr:first-child {
      margin-top: 0
    }

    .fs-hdr::before {
      content: '';
      display: block;
      width: 3px;
      height: 16px;
      border-radius: 2px;
      flex-shrink: 0
    }

    .fs-blue::before {
      background: var(--blue)
    }

    .fs-orange::before {
      background: var(--orange)
    }

    .fs-green::before {
      background: var(--green-light)
    }

    .fs-purple::before {
      background: #a78bfa
    }

    .fs-hdr-txt {
      font-size: .67rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #64748b
    }

    .f-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: .7rem;
      margin-bottom: .7rem
    }

    .f-row.f-full {
      grid-template-columns: 1fr
    }

    .rp-group {
      display: flex;
      flex-wrap: wrap;
      gap: .35rem;
      margin-bottom: .8rem
    }

    .rp-label {
      cursor: pointer
    }

    .rp-label input {
      display: none
    }

    .rp-pill {
      display: inline-flex;
      align-items: center;
      padding: .33rem .8rem;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, .1);
      background: rgba(255, 255, 255, .04);
      font-size: .77rem;
      color: #94a3b8;
      font-weight: 600;
      transition: all .18s;
      white-space: nowrap;
      user-select: none
    }

    .rp-label input:checked+.rp-pill {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
      box-shadow: 0 0 14px rgba(10, 153, 221, .35)
    }

    .rp-label:hover .rp-pill {
      border-color: rgba(10, 153, 221, .4);
      color: #e2e8f0
    }

    .fc-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-bottom: .8rem
    }

    .fc-col-label {
      font-size: .67rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: .4rem;
      display: block
    }

    .fi-row {
      display: flex;
      flex-direction: column;
      gap: .25rem
    }

    .fi-item {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .82rem;
      color: #94a3b8;
      cursor: pointer;
      padding: .28rem 0;
      transition: color .15s
    }

    .fi-item input {
      accent-color: var(--blue);
      width: 13px;
      height: 13px;
      flex-shrink: 0
    }

    .fi-item:hover {
      color: #e2e8f0
    }

    .form-right .form-input,
    .form-right .form-select {
      padding: .7rem 1rem;
      font-size: .88rem
    }

    /* ── FORM LEFT: identification fields ── */
    .form-left {
      justify-content: flex-start;
      gap: .6rem;
      padding: 2rem 1.8rem
    }

    .form-left-desc {
      margin-bottom: .8rem
    }

    .form-feat-cards {
      gap: .5rem
    }

    .form-feat {
      padding: .55rem .9rem
    }

    .fl-id-section {
      margin-top: auto;
      padding-top: 1.2rem;
      width: 100%
    }

    .fl-id-sep {
      height: 1px;
      background: linear-gradient(90deg, rgba(10, 153, 221, .4), rgba(10, 153, 221, .08), transparent);
      margin-bottom: .9rem
    }

    .fl-id-hdr {
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: .6rem
    }

    .fl-input {
      background: rgba(0, 0, 0, .25) !important;
      border-color: rgba(255, 255, 255, .12) !important
    }

    .fl-input:focus {
      border-color: var(--blue) !important;
      box-shadow: 0 0 0 3px rgba(10, 153, 221, .15) !important
    }

    .fl-input::placeholder {
      color: #3d4f68 !important
    }

    .form-wrap {
      grid-template-columns: 1fr;
      max-width: 680px
    }

    @media(max-width:768px) {
      #agencias > .container > div {
        grid-template-columns: 1fr !important;
      }
      #nao-para-nos > .container > div:nth-child(2) {
        grid-template-columns: 1fr !important;
      }
    }

    #btnTopo {
      position: fixed;
      bottom: 5.8rem;
      right: 2rem;
      z-index: 9995;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: var(--blue);
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 24px rgba(10,153,221,.5);
      opacity: 0;
      transform: translateY(16px);
      pointer-events: none;
      transition: opacity .35s, transform .35s;
    }
    #btnTopo.vis {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }
    #btnTopo:hover {
      transform: translateY(-3px) scale(1.1);
      box-shadow: 0 0 36px rgba(10,153,221,.7);
    }

    .share-float {
      position: fixed;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 9990;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .share-float-trigger {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.10);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      color: #fff;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.30);
      transition: background .25s, transform .2s;
    }
    .share-float-trigger:hover {
      background: rgba(255,255,255,0.20);
      transform: scale(1.1);
    }
    .share-float-links {
      display: flex;
      flex-direction: column;
      gap: 7px;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height .35s ease, opacity .3s ease;
    }
    .share-float-links.open {
      max-height: 300px;
      opacity: 1;
    }
    .share-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: #fff;
      font-size: .95rem;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
      transition: background .2s, transform .2s;
    }
    .share-link:hover { transform: scale(1.12); }
    .share-wa:hover { background: rgba(37,211,102,0.55); }
    .share-tg:hover { background: rgba(0,136,204,0.55); }
    .share-fb:hover { background: rgba(24,119,242,0.55); }
    .share-tw:hover { background: rgba(0,0,0,0.60); }
    .share-li:hover { background: rgba(0,119,181,0.55); }
    @media(max-width:480px) {
      .share-float { left: 8px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .reveal { opacity: 1; transform: none !important; }
    }
