:root {
        --bg: #0a0b0f;
        --panel: rgba(15, 17, 25, 0.72);
        --panel2: rgba(255, 255, 255, 0.06);
        --text: #f3f4f7;
        --muted: #b3bbcc;
        --line: rgba(255, 255, 255, 0.12);
        --yellow: #f2c200; /* inspirado no "S" amarelo do logo do PDF */
        --radius: 18px;
        --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
        --max: 1120px;
      }
      * {
        box-sizing: border-box;
      }
      html,
      body {
        height: 100%;
      }
      body {
        margin: 0;
        font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
          Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
        color: var(--text);
        background: var(--bg);
        line-height: 1.55;
      }
      a {
        color: inherit;
      }
      .wrap {
        max-width: var(--max);
        margin: 0 auto;
        padding: 24px 18px 70px;
      }
      .card {
        border: 1px solid var(--line);
        background: var(--panel);
        backdrop-filter: blur(10px);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
      }
      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        border-radius: 999px;
        position: sticky;
        top: 14px;
        z-index: 10;
      }

      .nav {
        gap: 12px;
      }
      .brand {
        display: flex;
        gap: 10px;
        align-items: center;
        font-weight: 800;
        letter-spacing: 0.2px;
      }
      .logo {
        display: flex;
        align-items: flex-end;
        gap: 6px;
        line-height: 1;
        font-weight: 900;
      }
      .logo .s {
        color: var(--yellow);
        font-family: "Brush Script MT", "Segoe Script", cursive;
        font-size: 28px;
        font-weight: 700;
        transform: translateY(2px);
      }
      .logo .rest {
        font-size: 22px;
      }
      .logo .sub {
        display: block;
        font-size: 10px;
        letter-spacing: 1.6px;
        color: var(--muted);
        margin-top: 4px;
      }
      .nav ul {
        display: flex;
        gap: 12px;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
      }
      .nav a {
        padding: 8px 10px;
        border-radius: 10px;
        color: var(--muted);
        text-decoration: none;
        font-size: 14px;
      }
      .nav a:hover {
        color: var(--text);
        background: rgba(255, 255, 255, 0.06);
      }
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(255, 255, 255, 0.06);
        text-decoration: none;
        color: var(--text);
        font-weight: 700;
      }
      .btn:hover {
        background: rgba(255, 255, 255, 0.1);
      }
      .btn.primary {
        border-color: rgba(242, 194, 0, 0.55);
        background: linear-gradient(
          135deg,
          rgba(242, 194, 0, 0.2),
          rgba(255, 255, 255, 0.06)
        );
      }
      .btn.small {
        padding: 10px 14px;
        font-size: 14px;
      } /* HERO */
      .hero {
        margin-top: 16px;
        background: linear-gradient(
            180deg,
            rgba(10, 11, 15, 0.7) 0%,
            rgba(10, 11, 15, 0.92) 70%,
            rgba(10, 11, 15, 1) 100%
          ),
          url("../img/photo-1542314831-068cd1dbfeeb.jpg");
        background-size: cover;
        background-position: center;
        padding: 34px 26px;
      }
      .heroGrid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 18px;
        align-items: stretch;
      }
      h1 {
        margin: 0 0 10px;
        font-size: 44px;
        line-height: 1.05;
      }
      .subline {
        color: var(--muted);
        font-size: 18px;
        margin: 0 0 18px;
        max-width: 62ch;
      }
      .kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 7px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(255, 255, 255, 0.06);
        color: var(--muted);
        font-size: 12px;
        margin-bottom: 12px;
      }
      .kicker b {
        color: var(--text);
      }
      .pills {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin: 18px 0 22px;
      }
      .pill {
        padding: 8px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
        color: var(--muted);
        font-size: 13px;
      }
      .ctaRow {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }
      .note {
        margin-top: 14px;
        color: var(--muted);
        font-size: 13px;
      }
      .aside {
        display: grid;
        grid-template-rows: 1fr auto;
        background: rgba(15, 17, 25, 0.55);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        overflow: hidden;
      }
      .asideTop {
        background: linear-gradient(
            180deg,
            transparent 20%,
            rgba(10, 11, 15, 0.92) 100%
          ),
          url("../img/photo-1520250497591-112f2f40a3f4.jpg");
        background-size: cover;
        background-position: center;
        min-height: 290px;
        position: relative;
        padding: 16px;
      }
      .badgeCorner {
        position: absolute;
        top: 14px;
        left: 14px;
        padding: 8px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(15, 17, 25, 0.55);
        font-size: 12px;
        font-weight: 700;
      }
      .badgeCorner span {
        color: var(--yellow);
      }
      .asideBottom {
        display: flex;
        gap: 12px;
        padding: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.04);
      }
      .kpi {
        flex: 1;
        padding: 12px 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        border-radius: 14px;
      }
      .kpi b {
        display: block;
        font-size: 16px;
      }
      .kpi span {
        color: var(--muted);
        font-size: 12px;
      } /* SEÇÕES */
      section {
        margin-top: 22px;
      }
      .sectionCard {
        padding: 20px 18px;
      }
      .head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 14px;
        flex-wrap: wrap;
        margin: 0 0 12px;
      }
      h2 {
        margin: 0;
        font-size: 28px;
      }
      .desc {
        margin: 0;
        color: var(--muted);
        max-width: 74ch;
      }
      .grid3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }
      .grid2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
      .box {
        padding: 18px 18px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius);
      }
      .box h3 {
        margin: 0 0 8px;
        font-size: 18px;
      }
      .box p {
        margin: 0;
        color: var(--muted);
      }
      .list {
        margin: 0;
        padding-left: 18px;
        color: var(--muted);
      }
      .list li {
        margin: 6px 0;
      } /* Planos */
      .plan {
        position: relative;
        padding: 18px 18px;
      }
      .plan .price {
        font-size: 28px;
        font-weight: 900;
        margin-top: 10px;
      }
      .plan .price small {
        color: var(--muted);
        font-weight: 700;
        font-size: 12px;
      }
      .plan .tag {
        display: inline-flex;
        align-items: center;
        padding: 7px 10px;
        border-radius: 999px;
        border: 1px solid rgba(242, 194, 0, 0.45);
        background: rgba(242, 194, 0, 0.1);
        color: var(--text);
        font-weight: 800;
        font-size: 12px;
      }
      .plan ul {
        margin: 12px 0 0;
        padding-left: 18px;
        color: var(--muted);
      }
      .plan li {
        margin: 6px 0;
      }
      .plan.primary {
        border-color: rgba(242, 194, 0, 0.45);
        background: linear-gradient(
          135deg,
          rgba(242, 194, 0, 0.1),
          rgba(255, 255, 255, 0.04)
        );
      } /* FAQ */
      .faq details {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 14px 0;
      }
      .faq summary {
        cursor: pointer;
        font-weight: 800;
        outline: none;
      }
      .faq p {
        color: var(--muted);
        margin: 8px 0 0;
      } /* Footer CTA */
      .finalCta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        flex-wrap: wrap;
        padding: 22px 18px;
        background: linear-gradient(
          135deg,
          rgba(242, 194, 0, 0.14),
          rgba(255, 255, 255, 0.04)
        );
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
      footer {
        margin-top: 18px;
        color: var(--muted);
        font-size: 13px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
      }
      .muted {
        color: var(--muted);
      }
      .hr {
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 18px 0;
      }
      .fineprint {
        font-size: 12px;
        color: rgba(179, 187, 204, 0.85);
      }
      @media (max-width: 980px) {
        .heroGrid {
          grid-template-columns: 1fr;
        }
        h1 {
          font-size: 38px;
        }
        .grid3 {
          grid-template-columns: 1fr;
        }
        .grid2 {
          grid-template-columns: 1fr;
        }
        .nav {
          position: relative;
          top: auto;
        }
        .asideTop {
          min-height: 240px;
        }
      }
      .brandLogo {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 220px;
      }
      .brandLogo img {
        height: 64px;
        width: auto;
        display: block;
        object-fit: contain;
      }
      .brandLogo .tagline {
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 1.2px;
        color: var(--muted);
        white-space: nowrap;
      }

      /* Mobile menu */
      .navInner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
      }
      .navLeft {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
      }
      .navRight {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .navMenu {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .navToggle {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(255, 255, 255, 0.06);
        color: var(--text);
        cursor: pointer;
        align-items: center;
        justify-content: center;
      }
      .navToggle:hover {
        background: rgba(255, 255, 255, 0.1);
      }
      .navToggle svg {
        width: 22px;
        height: 22px;
      }
      .mobilePanel {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        margin: 0 auto;
        max-width: var(--max);
        padding: 12px;
      }
      .mobileCard {
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(15, 17, 25, 0.92);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
        overflow: hidden;
      }
      .mobileLinks {
        display: flex;
        flex-direction: column;
        padding: 10px;
        gap: 6px;
      }
      .mobileLinks a {
        display: flex;
        padding: 12px 12px;
        border-radius: 12px;
        color: var(--text);
        background: rgba(255, 255, 255, 0.04);
      }
      .mobileLinks a:hover {
        background: rgba(255, 255, 255, 0.08);
      }
      .mobileActions {
        display: flex;
        gap: 10px;
        padding: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.03);
        flex-wrap: wrap;
      }
      .mobileActions .btn {
        padding: 8px 12px;
        font-size: 12px;
      }

      @media (max-width: 980px) {
        .nav {
          position: sticky;
          overflow: visible;
        }
        .nav ul {
          display: none;
        }
        .navRight > a.btn {
          display: none;
        } /* hide top CTA, will appear inside mobile panel */
        .navToggle {
          display: inline-flex;
        }
        .mobilePanel {
          display: block;
        }
        .mobilePanel[hidden] {
          display: none !important;
        }
      }
