    :root {
      --primary: #4c2d6d;
      --primary-deep: #341c4f;
      --accent: #03a39a;
      --accent-soft: #c8fffb;
      --bg: #f7f5fb;
      --bg-alt: #e9edf6;
      --text: #1e152d;
      --text-soft: #615877;
      --white: #ffffff;
      --shadow-soft: 0 14px 34px rgba(47, 25, 74, 0.12);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
    }

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

    a,
    button,
    [role="button"] {
      -webkit-tap-highlight-color: transparent;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Maven Pro", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 0%, rgba(3, 163, 154, 0.24) 0%, transparent 38%),
        radial-gradient(circle at 92% 18%, rgba(76, 45, 109, 0.22) 0%, transparent 34%),
        var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 112px;
    }

    h1, h2, h3 {
      font-family: "Maven Pro", sans-serif;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1140px, 92%);
      margin: 0 auto;
    }

    .section {
      padding: 86px 0;
    }

    .section-title {
      color: var(--primary);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      margin-bottom: 14px;
    }

    .section-lead {
      color: var(--text-soft);
      max-width: 760px;
      font-size: 1.03rem;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }

    .tag::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--accent);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      cursor: pointer;
      text-decoration: none;
      border-radius: 999px;
      padding: 13px 24px;
      font-size: 0.95rem;
      font-weight: 700;
      transition: transform 0.2s ease, box-shadow 0.25s ease;
    }

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

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #5f3a86 55%, var(--accent));
      box-shadow: none;
    }

    .btn-primary::after {
      content: "↗";
      font-size: 0.9rem;
      line-height: 1;
    }

    .hero-actions {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .scroll-down {
      display: none !important;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 0;
      color: var(--primary);
      text-decoration: none;
      font-size: 1.6rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      animation: bounceDown 1.25s ease-in-out infinite;
    }

    .section-soft-bg {
      background: rgba(255, 255, 255, 0.58);
      backdrop-filter: blur(8px);
      border-top: 1px solid rgba(76, 45, 109, 0.08);
      border-bottom: 1px solid rgba(76, 45, 109, 0.08);
    }

    main .btn-primary {
      margin-top: 14px;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
    }

    .nav {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 10px 0;
      border-radius: 0;
      position: relative;
      border: 1px solid transparent;
      background: transparent;
      overflow: visible;
      transform: translateY(-2px);
      transition: transform 0.35s ease;
    }

    .nav-content {
      width: min(1140px, 92%);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      position: relative;
    }

    .nav::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid rgba(76, 45, 109, 0.2);
      background-color: rgba(255, 255, 255, 0.86);
      box-shadow: 0 10px 28px rgba(36, 18, 57, 0.16);
      backdrop-filter: blur(14px);
      opacity: 0;
      transition: opacity 0.45s ease;
      pointer-events: none;
      z-index: 0;
    }

    .nav > * {
      position: relative;
      z-index: 1;
    }

    .nav.is-scrolled {
      transform: translateY(0);
    }

    .nav.is-scrolled::before {
      opacity: 1;
    }

    .brand img {
      width: 128px;
      height: auto;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.9);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #4a5667;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.92rem;
    }

    .nav-links .btn-primary {
      color: #fff;
    }

    .hero {
      padding: 32px 0 84px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.06fr 0.94fr;
      gap: 30px;
      align-items: center;
    }

    .hero-title {
      color: var(--primary);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      margin-bottom: 14px;
    }

    .hero-highlight {
      color: var(--accent);
    }

    .hero-subtitle {
      font-size: clamp(1.06rem, 1.9vw, 1.4rem);
      font-weight: 700;
      color: #2b1e3f;
      margin-bottom: 12px;
    }

    .hero-text {
      color: var(--text-soft);
      font-size: 1.03rem;
      margin-bottom: 22px;
      max-width: 640px;
    }

    .hero-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
      margin-bottom: 26px;
      max-width: none;
      width: 100%;
    }

    .hero-list li {
      display: flex;
      align-items: center;
      gap: 9px;
      background: transparent;
      border: 0;
      border-radius: 0;
      padding: 0;
      color: #3a2a55;
      font-weight: 700;
      min-height: auto;
    }

    .check-icon {
      width: 26px;
      height: 26px;
      min-width: 26px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      font-size: 0.8rem;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: none;
    }

    .hero-visual {
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: auto 16px 0 16px;
      height: 68%;
      border-radius: 38px;
      background: linear-gradient(140deg, rgba(3, 163, 154, 0.28), rgba(76, 45, 109, 0.25));
      border: 1px solid rgba(76, 45, 109, 0.2);
      z-index: 1;
    }

    .hero-photo {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      overflow: visible;
    }

    .hero-photo img {
      width: min(540px, 100%);
      max-height: 590px;
      object-fit: contain;
      object-position: top center;
      filter: drop-shadow(0 10px 22px rgba(41, 21, 64, 0.2));
      align-self: flex-end;
      display: block;
    }

    .floating-card {
      position: absolute;
      left: 14px;
      bottom: 16px;
      z-index: 3;
      max-width: 260px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(76, 45, 109, 0.14);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-soft);
      padding: 14px;
      animation: floatCard 3.2s ease-in-out infinite;
    }

    .floating-icon {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
      animation: pulseIcon 2.2s ease-in-out infinite;
    }

    .floating-icon svg {
      width: 19px;
      height: 19px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .floating-card strong {
      display: block;
      color: var(--primary);
      margin-bottom: 2px;
      line-height: 1.1;
      font-family: "Maven Pro", sans-serif;
    }

    .floating-card p {
      color: var(--text-soft);
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .info-box {
      background: #fff;
      border: 1px solid rgba(76, 45, 109, 0.16);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: 0 10px 22px rgba(42, 22, 66, 0.1);
    }

    .info-box p {
      color: var(--text-soft);
      margin-bottom: 10px;
    }

    .media-box {
      position: relative;
      min-height: 560px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .media-box::before {
      content: "";
      position: absolute;
      inset: auto 16px 0 16px;
      height: 68%;
      border-radius: 38px;
      background: linear-gradient(140deg, rgba(3, 163, 154, 0.28), rgba(76, 45, 109, 0.25));
      border: 1px solid rgba(76, 45, 109, 0.2);
      z-index: 1;
    }

    .media-box img {
      position: relative;
      z-index: 2;
      width: min(540px, 100%);
      max-height: 550px;
      object-fit: contain;
      object-position: bottom center;
      filter: drop-shadow(0 10px 20px rgba(49, 24, 75, 0.15));
      align-self: flex-end;
      display: block;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(220px, 1fr));
      gap: 18px;
      margin-top: 16px;
    }

    .feature {
      background: #ffffff;
      border: 1px solid rgba(76, 45, 109, 0.15);
      border-radius: 18px;
      padding: 20px;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .feature:hover {
      transform: translateY(-3px);
      border-color: rgba(3, 163, 154, 0.48);
    }

    .feature-head {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
    }

    .icon-badge {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: none;
    }

    .icon-badge svg {
      width: 28px;
      height: 28px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .feature h3 {
      color: var(--primary);
      font-size: 1.45rem;
      line-height: 1.2;
    }

    .feature p {
      color: var(--text-soft);
      font-size: 0.95rem;
    }

    .trust-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .trust-map {
      background: transparent;
      border: 0;
      box-shadow: none;
      border-radius: 0;
      overflow: visible;
    }

    .trust-map img {
      width: 100%;
      object-fit: contain;
      background: transparent;
      filter: none;
    }

    .audience-section {
      background: linear-gradient(120deg, rgba(76, 45, 109, 0.96), rgba(3, 163, 154, 0.94));
    }

    .audience {
      background: transparent;
      border-radius: 0;
      padding: 12px 0;
      color: #fff;
      position: relative;
      overflow: visible;
    }

    .audience h2 {
      color: #fff;
      margin-bottom: 12px;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
    }

    .audience p {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 12px;
    }

    .audience-grid {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }

    .audience-grid li {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.08);
      padding: 16px;
      font-weight: 700;
      font-size: 1.02rem;
      min-height: 120px;
    }

    .audience-item-icon {
      width: 30px;
      height: 30px;
      min-width: 30px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 800;
    }

    .audience-grid li span:last-child {
      line-height: 1.32;
      max-width: 28ch;
    }

    .cta-final {
      text-align: center;
      padding: 84px 0;
    }

    .cta-panel {
      background: #fff;
      border: 1px solid rgba(76, 45, 109, 0.15);
      border-radius: 28px;
      padding: 40px 24px;
      box-shadow: var(--shadow-soft);
    }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 18px;
    }

    .plan-card {
      background: #fff;
      border: 1px solid rgba(76, 45, 109, 0.18);
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 10px 22px rgba(37, 19, 58, 0.08);
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    }

    .plan-card:hover {
      border-color: rgba(3, 163, 154, 0.75);
      box-shadow: 0 16px 30px rgba(3, 163, 154, 0.22);
      transform: translateY(-3px);
    }

    .plan-card.featured {
      border-color: rgba(3, 163, 154, 0.65);
      box-shadow: 0 14px 28px rgba(3, 163, 154, 0.18);
    }

    .plan-top {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 10px;
    }

    .plan-name {
      color: var(--primary);
      font-size: 1.52rem;
      line-height: 1.2;
    }

    .price {
      font-family: "Maven Pro", sans-serif;
      color: #27153c;
      font-size: 2rem;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .price small {
      margin-left: 6px;
      font-size: 0.88rem;
      font-family: "Maven Pro", sans-serif;
      color: var(--text-soft);
    }

    .plan-lead {
      font-weight: 700;
      color: #312147;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .plan-desc {
      color: var(--text-soft);
      margin-bottom: 12px;
      font-size: 0.95rem;
    }

    .plan-list {
      list-style: none;
      margin-bottom: 14px;
      display: grid;
      gap: 8px;
    }

    .plan-list li {
      position: relative;
      padding-left: 30px;
      color: #3a2a55;
      font-size: 0.93rem;
      font-weight: 600;
    }

    .plan-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 1px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff;
      font-size: 0.72rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: none;
    }

    .plan-note {
      color: #3a2a55;
      font-weight: 600;
      margin-bottom: 14px;
      font-size: 0.92rem;
    }

    footer {
      margin-top: 84px;
      background: #241437;
      color: rgba(255, 255, 255, 0.92);
      padding: 44px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: center;
    }

    .footer-brand img {
      width: 122px;
      filter: brightness(0) invert(1);
      margin-bottom: 12px;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.8);
      max-width: 430px;
      font-size: 0.95rem;
    }

    .footer-contact {
      display: grid;
      gap: 10px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.94);
      font-size: 0.95rem;
      text-decoration: none;
    }

    .contact-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.14);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-soft);
    }

    .contact-icon svg {
      width: 17px;
      height: 17px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      animation: fadeUp 0.65s ease forwards;
    }

    .enter {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    img.enter {
      transform: translateY(24px) scale(0.98);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .enter.entered {
      opacity: 1;
      transform: translateY(0);
    }

    img.enter.entered {
      transform: translateY(0) scale(1);
    }

    .delay-1 { animation-delay: 0.08s; }
    .delay-2 { animation-delay: 0.16s; }
    .delay-3 { animation-delay: 0.24s; }

    @keyframes floatCard {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-5px);
      }
    }

    @keyframes pulseIcon {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.06);
      }
    }

    @keyframes bounceDown {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(6px);
      }
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 1024px) {
      body {
        padding-top: 130px;
      }

      .hero-grid,
      .split,
      .trust-wrap,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual,
      .media-box {
        min-height: 520px;
      }

      .features-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
      }

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

      .audience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .trust-map {
        order: 1;
      }

      .trust-text {
        order: 2;
      }
    }

    @media (max-width: 760px) {
      body {
        padding-top: 100px;
      }

      header {
        top: 0;
      }

      .nav {
        border-radius: 0;
        padding: 12px;
      }

      .nav-content {
        width: 100%;
        gap: 8px;
      }

      .menu-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 14px);
        left: 14px;
        right: 14px;
        width: auto;
        max-width: none;
        background: #ffffff;
        border: 1px solid rgba(76, 45, 109, 0.14);
        border-radius: 24px;
        box-shadow: 0 14px 34px rgba(32, 17, 51, 0.18);
        padding: 22px 20px 18px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease;
        z-index: 30;
      }

      .nav.open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links a:not(.btn) {
        font-size: 1.05rem;
        padding: 9px 4px;
      }

      .nav-links .btn-primary {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
      }

      .hero,
      .cta-final {
        padding-top: 38px;
        padding-bottom: 56px;
      }

      .section {
        padding-top: 62px;
        padding-bottom: 62px;
      }

      .hero-list,
      .features-grid,
      .audience-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual,
      .media-box {
        min-height: 440px;
      }

      .hero-visual {
        min-height: auto;
        margin-top: 26px;
      }

      .hero-photo,
      .hero-visual::before {
        display: none;
      }

      .hero-actions {
        width: 100%;
        align-items: stretch;
      }

      .hero .btn-primary {
        width: 100%;
        justify-content: center;
      }

      .hero .btn-primary::after {
        margin-left: 4px;
      }

      .scroll-down {
        display: inline-flex !important;
        align-self: center;
      }

      .hero-visual::before,
      .media-box::before {
        inset: auto 10px 0 10px;
        height: 66%;
      }

      .hero-photo img,
      .media-box img {
        max-height: 410px;
      }

      .floating-card {
        position: static;
        margin-top: 22px;
        max-width: 100%;
        padding: 18px;
      }

      .floating-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
      }

      .floating-icon svg {
        width: 28px;
        height: 28px;
      }

      .floating-card strong {
        font-size: 1.45rem;
        line-height: 1.2;
      }

      .floating-card p {
        font-size: 0.95rem;
      }

      #acessibilidade .media-box {
        order: 1;
      }

      #acessibilidade .info-box {
        order: 2;
      }

      .info-box,
      .audience,
      .plan-card,
      .cta-panel {
        padding: 22px;
      }
    }
