* {
      box-sizing: border-box;
    }

    :root {
      --bg: #1a1a1a;
      --bg-soft: #1a1a1a;
      --white: #ffffff;
      --muted: #94a3b8;
      --line: rgba(255, 255, 255, 0.1);
      --secondary: #00d2ff;
      --secondary-hover: #66e4ff;
      --secondary-soft: rgba(0, 210, 255, 0.14);
      --text-dark: #1a1a1a;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--white);
      background: var(--bg);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(26, 26, 26, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }

    .header-content {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-icon {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      object-fit: contain;
    }

    .brand strong,
    .brand span {
      display: block;
    }

    .brand span {
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 26px;
      color: #cbd5e1;
      font-size: 14px;
    }

    .nav a:hover {
      color: var(--white);
    }

    .nav-panel {
      padding: 10px 18px;
      border: 1px solid var(--line);
      border-radius: 999px;
    }

    .nav-panel:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 14px;
      color: var(--white);
      background: transparent;
      font-size: 22px;
      cursor: pointer;
    }

    .start-hero {
      position: relative;
      min-height: 100vh;
      background: url('../assets/ClienteStartPage.webp') center center / cover no-repeat;
    }

    .start-hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }

    .start-hero-content {
      position: relative;
      z-index: 1;
      padding: 20px 0;
    }

    .start-hero-top h1 {
      max-width: 520px;
      margin: 0;
      font-size: clamp(38px, 5vw, 64px);
      line-height: 0.95;
      letter-spacing: -2px;
    }

    .start-hero-top p {
      max-width: 440px;
      margin: 16px 0 0;
      color: #cbd5e1;
      font-size: 17px;
      line-height: 1.7;
    }

    .start-hero-actions {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }

    .start-hero-actions .store-button {
      min-width: 150px;
      min-height: 52px;
      padding: 10px 14px;
      gap: 8px;
      column-gap: 8px;
      row-gap: 2px;
      border-radius: 12px;
    }

    .start-hero-actions .store-icon {
      width: 26px;
      height: 26px;
    }

    .start-hero-actions .store-button span {
      font-size: 10px;
    }

    .start-hero-actions .store-button strong {
      font-size: 13px;
    }

    .start-notifications {
      position: absolute;
      bottom: 40px;
      right: 40px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .start-notification {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 20px;
      border-radius: 16px;
      background: rgba(16, 16, 16, 0.92);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 210, 255, 0.2);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
      max-width: 280px;
      animation: notifIn 0.4s ease both;
    }

    .start-notification:nth-child(1) { animation-delay: 0.1s; }
    .start-notification:nth-child(2) { animation-delay: 0.25s; }
    .start-notification:nth-child(3) { animation-delay: 0.4s; }

    @keyframes notifIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .notif-icon {
      font-size: 28px;
      flex-shrink: 0;
    }

    .notif-text strong {
      display: block;
      font-size: 15px;
    }

    .notif-text span {
      display: block;
      margin-top: 3px;
      color: #9fb2bc;
      font-size: 13px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 90px 0;
    }

    .hero-glow {
      position: absolute;
      top: 20px;
      left: 50%;
      width: 520px;
      height: 520px;
      transform: translateX(-50%);
      background: rgba(0, 210, 255, 0.17);
      border-radius: 999px;
      filter: blur(90px);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      align-items: center;
      gap: 54px;
    }

    .pill {
      display: inline-flex;
      padding: 10px 16px;
      margin-bottom: 24px;
      color: #b8f4ff;
      border: 1px solid rgba(0, 210, 255, 0.35);
      border-radius: 999px;
      background: rgba(0, 210, 255, 0.1);
      font-size: 14px;
    }

    .hero h1 {
      max-width: 650px;
      margin: 0;
      font-size: clamp(40px, 7vw, 68px);
      line-height: 0.95;
      letter-spacing: -2px;
    }

    .hero p {
      max-width: 580px;
      margin: 26px 0 0;
      color: #cbd5e1;
      font-size: 18px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-actions .store-button {
      min-width: 230px;
      flex: 1 1 230px;
    }

    .hero .hero-note {
      max-width: 520px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .hero-screenshot {
      display: flex;
      justify-content: center;
    }

    .hero-screenshot img {
      width: 100%;
      max-width: 360px;
      height: auto;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    }

    .ease-section {
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .ease-section::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 400px;
      height: 400px;
      background: rgba(0, 210, 255, 0.08);
      border-radius: 999px;
      filter: blur(100px);
    }

    .ease-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 54px;
    }

    .ease-text .section-heading {
      margin-bottom: 0;
    }

    .ease-text .section-heading h2 {
      font-size: clamp(40px, 5.5vw, 66px);
      line-height: 0.95;
      letter-spacing: -2px;
    }

    .ease-text .section-heading p {
      font-size: 18px;
      margin-top: 22px;
      color: #cbd5e1;
    }

    .ease-screenshot {
      display: flex;
      justify-content: center;
    }

    .ease-screenshot img {
      width: 100%;
      max-width: 360px;
      height: auto;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 26px;
      border-radius: 999px;
      font-weight: 800;
      transition: 0.2s ease;
    }

    .primary {
      background: var(--secondary);
      color: var(--text-dark);
    }

    .primary:hover {
      background: var(--secondary-hover);
    }

    .secondary {
      border: 1px solid var(--line);
      color: var(--white);
    }

    .secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .dashboard-card {
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 36px;
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    }

    .dashboard-inner {
      padding: 24px;
      border-radius: 26px;
      background: var(--bg-soft);
    }

    .dashboard-header,
    .products-title,
    .product-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .dashboard-header span,
    .stats span,
    .product-row span,
    .products-title span {
      color: var(--muted);
      font-size: 13px;
    }

    .dashboard-header h2 {
      margin: 4px 0 0;
      font-size: 26px;
    }

    .status {
      padding: 7px 12px;
      color: #7be8ff;
      background: rgba(0, 210, 255, 0.13);
      border-radius: 999px;
      font-size: 13px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 26px;
    }

    .stats div,
    .products-box {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 20px;
      padding: 18px;
    }

    .stats strong {
      display: block;
      margin-top: 8px;
      font-size: 30px;
    }

    .products-box {
      margin-top: 16px;
    }

    .product-row {
      margin-top: 12px;
      padding: 12px;
      border-radius: 16px;
      background: rgba(26, 26, 26, 0.55);
      gap: 12px;
    }

    .product-row > div:nth-child(2) {
      flex: 1;
    }

    .product-row strong,
    .product-row span {
      display: block;
    }

    .product-row em {
      color: var(--secondary);
      font-style: normal;
      font-weight: 900;
    }

    .product-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: rgba(0, 210, 255, 0.18);
    }

    .phone-preview {
      display: flex;
      justify-content: center;
    }

    .phone-screen {
      width: min(360px, 100%);
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 38px;
      background: var(--white);
      color: var(--text-dark);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    }

    .app-top span,
    .market-card span,
    .cart-preview span,
    .app-items small {
      color: #64748b;
    }

    .app-top strong,
    .app-top span {
      display: block;
    }

    .app-top strong {
      margin-top: 6px;
      font-size: 28px;
      line-height: 1;
    }

    .search-mock {
      margin-top: 20px;
      padding: 14px 16px;
      border: 1px solid #e2e8f0;
      border-radius: 18px;
      color: #64748b;
      background: #f8fafc;
    }

    .market-card,
    .cart-preview {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .market-card {
      margin-top: 16px;
      padding: 16px;
      border-radius: 22px;
      color: var(--white);
      background: var(--bg);
    }

    .market-card strong,
    .market-card span {
      display: block;
    }

    .market-card em {
      color: var(--secondary);
      font-style: normal;
      font-weight: 900;
    }

    .app-section-title {
      margin-top: 22px;
      font-weight: 900;
    }

    .app-items {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 12px;
    }

    .app-items div {
      padding: 14px;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      background: #f8fafc;
    }

    .app-items span,
    .app-items strong,
    .app-items small {
      display: block;
    }

    .app-items span {
      font-size: 28px;
    }

    .app-items strong {
      margin-top: 10px;
      font-size: 14px;
    }

    .app-items small {
      margin-top: 6px;
      font-weight: 900;
    }

    .cart-preview {
      margin-top: 16px;
      padding: 16px;
      border-radius: 20px;
      background: var(--secondary);
    }

    .cart-preview strong {
      color: var(--text-dark);
    }

    .section {
      padding: 74px 0;
    }

    .section-heading {
      max-width: 680px;
      margin-bottom: 34px;
    }

    .section-heading span {
      color: var(--secondary);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: 4px;
      text-transform: uppercase;
    }

    .section-heading h2 {
      margin: 12px 0 0;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.05;
      letter-spacing: -1px;
    }

    .section-heading p {
      color: var(--muted);
      line-height: 1.7;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .benefit-card {
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.06);
    }

    .benefit-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      border-radius: 18px;
      background: var(--secondary-soft);
      font-size: 24px;
    }

    .benefit-card h3 {
      margin: 0;
      font-size: 19px;
    }

    .benefit-card p {
      margin: 12px 0 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .details-section {
      background: rgba(255, 255, 255, 0.03);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .details-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      align-items: start;
      gap: 54px;
    }

    .details-panel {
      display: grid;
      gap: 14px;
    }

    .detail-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.06);
    }

    .detail-item strong {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--text-dark);
      background: var(--secondary);
      font-size: 14px;
    }

    .detail-item h3 {
      margin: 0;
      font-size: 20px;
    }

    .detail-item p {
      margin: 8px 0 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .how-section {
      padding: 80px 0;
      background: var(--white);
      color: var(--text-dark);
    }

    .how-grid {
      display: grid;
      grid-template-columns: 0.9fr 1fr;
      align-items: center;
      gap: 60px;
    }

    .section-heading.dark span {
      color: var(--secondary);
    }

    .steps {
      display: grid;
      gap: 14px;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px;
      border: 1px solid #e2e8f0;
      border-radius: 22px;
    }

    .step strong {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      border-radius: 14px;
      color: var(--secondary);
      background: var(--bg);
    }

    .step p {
      margin: 0;
      color: #334155;
      font-weight: 700;
    }

    .starter-section {
      background: rgba(255, 255, 255, 0.03);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .starter-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .starter-card {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.06);
    }

    .starter-card strong {
      display: inline-flex;
      margin-bottom: 16px;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--secondary);
      background: rgba(0, 210, 255, 0.1);
      font-size: 12px;
      text-transform: uppercase;
    }

    .starter-card h3 {
      margin: 0;
      font-size: 21px;
    }

    .starter-card p {
      margin: 10px 0 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .starter-card a {
      display: inline-flex;
      margin-top: 16px;
      color: var(--secondary);
      font-weight: 900;
    }

    .starter-card a:hover {
      color: var(--secondary-hover);
    }

    .flow-horizontal {
      display: flex;
      align-items: stretch;
      gap: 0;
      overflow: visible;
    }

    .flow-card {
      position: relative;
      flex: 1;
      min-width: 200px;
      padding: 24px 22px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.06);
      overflow: visible;
    }

    .flow-num {
      position: absolute;
      top: -32px;
      left: 0;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: var(--secondary);
      color: var(--text-dark);
      font-size: 13px;
      font-weight: 900;
      z-index: 1;
    }

    .flow-icon {
      font-size: 30px;
      margin-bottom: 12px;
      margin-top: 6px;
    }

    .flow-card h3 {
      margin: 0;
      font-size: 17px;
    }

    .flow-card p {
      margin: 8px 0 0;
      color: var(--muted);
      line-height: 1.5;
      font-size: 14px;
    }

    .flow-arrow {
      display: flex;
      align-items: center;
      font-size: 28px;
      color: var(--secondary);
      opacity: 0.5;
      padding: 0 8px;
      flex-shrink: 0;
    }

    .download-section {
      background: rgba(255, 255, 255, 0.03);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .download-grid {
      display: grid;
      grid-template-columns: 0.9fr 1fr;
      align-items: center;
      gap: 54px;
    }

    .download-panel {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.06);
    }

    .store-button {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 14px;
      row-gap: 6px;
      align-items: center;
      min-height: 84px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: var(--bg);
    }

    .store-icon {
      width: 38px;
      height: 38px;
      grid-row: span 2;
      object-fit: contain;
    }

    .store-button span {
      color: var(--secondary);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .store-button strong {
      font-size: 18px;
    }

    .download-panel p {
      grid-column: 1 / -1;
      margin: 4px 0 0;
      color: var(--muted);
      line-height: 1.5;
    }

    .client-page {
      color: var(--white);
      background: #060606;
    }

    .client-page .header {
      background: rgba(6, 6, 6, 0.94);
      border-bottom: 1px solid rgba(0, 210, 255, 0.18);
    }

    .client-page .brand span,
    .client-page .nav {
      color: #9fb2bc;
    }

    .client-page .nav a:hover {
      color: var(--secondary);
    }

    .client-page .nav-panel {
      color: var(--secondary);
      border-color: rgba(0, 210, 255, 0.45);
      background: rgba(0, 210, 255, 0.08);
    }

    .client-page .nav-panel:hover,
    .client-page .secondary:hover {
      background: rgba(0, 210, 255, 0.16);
    }

    .client-page .menu-button {
      color: var(--secondary);
      border-color: rgba(0, 210, 255, 0.35);
    }

    .client-page .hero {
      padding: 82px 0 92px;
      color: var(--white);
      background: #060606;
      border-bottom: 1px solid rgba(0, 210, 255, 0.16);
    }

    .client-page .hero-glow {
      top: -80px;
      left: 72%;
      width: 460px;
      height: 460px;
      background: rgba(0, 210, 255, 0.22);
      filter: blur(80px);
    }

    .client-page .hero-grid {
      grid-template-columns: 0.9fr 1.1fr;
    }

    .client-page .hero-screenshot img {
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .client-page .ease-section {
      background: #0c0c0c;
    }

    .client-page .ease-text .section-heading p {
      color: #b6c6cc;
    }

    .client-page .ease-screenshot img {
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .client-page .pill {
      color: var(--secondary);
      border-color: rgba(0, 210, 255, 0.45);
      background: rgba(0, 210, 255, 0.08);
    }

    .client-page .hero h1 {
      max-width: 620px;
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1;
      letter-spacing: 0;
    }

    .client-page .hero p {
      color: #b6c6cc;
    }

    .client-page .hero .hero-note {
      color: #7f929b;
    }

    .client-page .secondary {
      color: var(--white);
      border-color: rgba(0, 210, 255, 0.35);
      background: rgba(0, 210, 255, 0.06);
    }

    .client-page .phone-preview {
      justify-content: flex-end;
      padding: 18px;
      border: 1px solid rgba(0, 210, 255, 0.18);
      border-radius: 42px;
      background: #00d2ff;
      box-shadow: 0 34px 80px rgba(0, 210, 255, 0.16);
    }

    .client-page .phone-screen {
      color: var(--white);
      border: 10px solid #050505;
      border-radius: 42px;
      background: #101010;
      box-shadow: 0 26px 54px rgba(0, 0, 0, 0.45);
    }

    .client-page .app-top span,
    .client-page .market-card span,
    .client-page .cart-preview span,
    .client-page .app-items small,
    .client-page .search-mock {
      color: #99aeb8;
    }

    .client-page .search-mock,
    .client-page .app-items div {
      border-color: rgba(0, 210, 255, 0.14);
      background: #181818;
    }

    .client-page .market-card {
      background: #00d2ff;
      color: var(--text-dark);
    }

    .client-page .market-card span,
    .client-page .market-card em {
      color: #0f3f49;
    }

    .client-page .cart-preview {
      background: #00d2ff;
    }

    .client-page .section {
      color: var(--white);
      background: #060606;
    }

    .client-page #como-funciona {
      background: #ffffff;
      color: var(--text-dark);
    }

    .client-page #como-funciona .section-heading p,
    .client-page #como-funciona .detail-item p {
      color: #334155;
    }

    .client-page #como-funciona .detail-item {
      border-color: rgba(0, 210, 255, 0.18);
      background: #101010;
    }

    .client-page #como-funciona .detail-item h3 {
      color: var(--white);
    }

    .client-page #como-funciona .detail-item p {
      color: #9fb2bc;
    }

    .client-page #como-funciona .detail-item strong {
      color: var(--white);
      background: var(--secondary);
    }

    .client-page .section-heading span {
      color: var(--secondary);
    }

    .client-page .section-heading p {
      color: #9fb2bc;
    }

    .client-page .detail-item,
    .client-page .benefit-card,
    .client-page .download-panel {
      border-color: rgba(0, 210, 255, 0.18);
      background: #101010;
      box-shadow: none;
    }

    .client-page .detail-item p,
    .client-page .benefit-card p,
    .client-page .download-panel p {
      color: #9fb2bc;
    }

    .client-page .detail-item strong {
      color: var(--text-dark);
      background: var(--secondary);
    }

    .client-page .client-benefits {
      background: #0c0c0c;
      border-top: 1px solid rgba(0, 210, 255, 0.12);
      border-bottom: 1px solid rgba(0, 210, 255, 0.12);
    }

    .client-page .benefit-card {
      border-radius: 22px;
    }

    .client-page .benefit-icon {
      background: rgba(0, 210, 255, 0.12);
    }

    .client-page .download-section {
      color: var(--text-dark);
      background: var(--secondary);
      border: 0;
    }

    .client-page .download-section .section-heading span {
      color: #0f3f49;
    }

    .client-page .download-section .section-heading p {
      color: #0f3f49;
    }

    .client-page .download-panel {
      background: #080808;
      border-color: rgba(26, 26, 26, 0.22);
    }

    .client-page .store-button {
      background: #111111;
      color: var(--white);
      border-color: rgba(0, 210, 255, 0.22);
    }

    .client-page .store-button strong {
      color: var(--white);
    }

    .client-page .faq-section {
      background: #060606;
    }

    .client-page .faq-item {
      border-color: rgba(0, 210, 255, 0.16);
      background: #101010;
    }

    .client-page .faq-item summary {
      color: var(--white);
    }

    .client-page .faq-item p {
      color: #9fb2bc;
    }

    .client-page .seller-callout {
      background: #00d2ff;
      border: 0;
      box-shadow: 0 28px 70px rgba(0, 210, 255, 0.16);
    }

    .client-page .seller-callout p {
      color: #0f3f49;
    }

    .client-page .dark-button {
      background: var(--bg);
      color: var(--white);
    }

    .client-page .outline-dark {
      border-color: rgba(26, 26, 26, 0.3);
    }

    .client-page .footer {
      color: #7f929b;
      background: #060606;
      border-top: 1px solid rgba(0, 210, 255, 0.18);
    }

    .client-page .footer a:hover {
      color: var(--secondary);
    }

    .pricing-page .footer {
      color: #7f929b;
      background: #050505;
      border-top: 1px solid rgba(0, 210, 255, 0.16);
    }

    .pricing-page .footer a:hover {
      color: var(--secondary);
    }

    .docs-page {
      color: var(--white);
      background: var(--bg);
    }

    .docs-hero {
      border-bottom: 1px solid var(--line);
    }

    .docs-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 0.55fr;
      align-items: center;
      gap: 54px;
    }

    .docs-summary {
      display: grid;
      gap: 12px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.06);
    }

    .docs-summary strong {
      margin-bottom: 6px;
      font-size: 20px;
    }

    .docs-summary a {
      padding: 14px 16px;
      border-radius: 16px;
      color: var(--secondary);
      background: rgba(0, 210, 255, 0.1);
      font-weight: 900;
    }

    .docs-section {
      background: #0c0c0c;
    }

    .docs-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      align-items: start;
      gap: 34px;
    }

    .docs-sidebar {
      position: sticky;
      top: 98px;
      display: grid;
      gap: 8px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.06);
    }

    .docs-sidebar a {
      padding: 12px 14px;
      border-radius: 14px;
      color: #cbd5e1;
      font-weight: 800;
    }

    .docs-sidebar a:hover {
      color: var(--secondary);
      background: rgba(0, 210, 255, 0.1);
    }

    .docs-content {
      display: grid;
      gap: 18px;
    }

    .docs-card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.06);
    }

    .docs-card span {
      color: var(--secondary);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 4px;
      text-transform: uppercase;
    }

    .docs-card h2 {
      margin: 12px 0 0;
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.05;
    }

    .docs-card p,
    .docs-card li {
      color: #cbd5e1;
      line-height: 1.7;
    }

    .docs-card ol {
      margin: 18px 0 0;
      padding-left: 24px;
    }

    .docs-card a {
      color: var(--secondary);
      font-weight: 900;
    }

    .docs-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
    }

    .policy-page .docs-hero-grid {
      grid-template-columns: 1fr 0.75fr;
    }

    .policy-page .hero h1 {
      max-width: 700px;
      font-size: clamp(34px, 4.8vw, 58px);
      line-height: 0.92;
      letter-spacing: -1.4px;
    }

    .policy-page .docs-summary {
      gap: 10px;
    }

    .policy-page .docs-summary a {
      line-height: 1.35;
    }

    .policy-page .docs-section {
      background: #0c0c0c;
    }

    .policy-page .docs-card h2 {
      max-width: 720px;
    }

    .policy-page .docs-card p {
      margin-top: 14px;
    }

    .policy-page .docs-card ul {
      margin: 14px 0 0;
      padding-left: 22px;
    }

    .policy-page .docs-card li + li {
      margin-top: 8px;
    }

    .policy-page .policy-note {
      margin-top: 8px;
      color: #94a3b8;
      font-size: 14px;
      line-height: 1.6;
    }

    .policy-page .policy-subdesc {
      margin-top: -6px;
      margin-bottom: 8px;
      padding-left: 14px;
      color: #cbd5e1;
      border-left: 2px solid rgba(0, 210, 255, 0.35);
      font-size: 14px;
      line-height: 1.55;
    }

    .policy-page .button.primary {
      color: var(--text-dark);
    }

    .pricing-page {
      color: var(--white);
      background:
        radial-gradient(circle at top, rgba(0, 210, 255, 0.14), transparent 34%),
        #050505;
    }

    .pricing-page .header {
      background: rgba(5, 5, 5, 0.94);
      border-bottom: 1px solid rgba(0, 210, 255, 0.16);
    }

    .pricing-page .brand span,
    .pricing-page .nav {
      color: #9fb2bc;
    }

    .pricing-page .nav a:hover {
      color: var(--secondary);
    }

    .pricing-page .nav-panel {
      color: var(--secondary);
      border-color: rgba(0, 210, 255, 0.45);
      background: rgba(0, 210, 255, 0.08);
    }

    .pricing-page .nav-panel:hover {
      background: rgba(0, 210, 255, 0.16);
    }

    .pricing-page .menu-button {
      color: var(--secondary);
      border-color: rgba(0, 210, 255, 0.35);
    }

    .pricing-section {
      padding: 74px 0;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .pricing-card {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 10px;
      height: 100%;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.06);
    }

    .pricing-card.featured {
      border-color: rgba(0, 210, 255, 0.45);
      background: linear-gradient(180deg, rgba(0, 210, 255, 0.18), rgba(255, 255, 255, 0.07));
      box-shadow: 0 28px 60px rgba(0, 210, 255, 0.12);
      transform: translateY(-10px);
    }

    .pricing-badge {
      display: inline-flex;
      align-self: start;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--secondary);
      background: rgba(0, 210, 255, 0.1);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .pricing-card h2 {
      margin: 0;
      font-size: 26px;
      line-height: 1.05;
    }

    .pricing-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .pricing-card .pricing-commission {
      margin-top: -10px;
      color: var(--white);
      font-size: 14px;
      line-height: 1.1;
      font-weight: 700;
    }

    .pricing-card .pricing-commission + p {
      margin-top: 8px;
    }

    .pricing-card .pricing-commission + p + ul {
      margin-top: 12px;
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-top: 4px;
      font-weight: 900;
    }

    .pricing-price strong {
      font-size: clamp(38px, 5vw, 54px);
      line-height: 1;
    }

    .pricing-price span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .pricing-card ul {
      display: grid;
      gap: 10px;
      margin: 12px 0 0;
      padding: 0;
      list-style: none;
    }

    .pricing-card li {
      position: relative;
      padding-left: 28px;
      color: #d7e3ea;
      line-height: 1.5;
    }

    .pricing-card li::before {
      content: "✓";
      position: absolute;
      top: 0;
      left: 0;
      color: var(--secondary);
      font-weight: 900;
    }

    .pricing-card li.pricing-limit::before {
      content: "🔒";
    }

    .pricing-card .button {
      margin-top: auto;
      width: 100%;
    }

    .pricing-card .button.secondary {
      color: var(--white);
      background: rgba(0, 210, 255, 0.06);
      border: 1px solid rgba(0, 210, 255, 0.35);
    }

    .pricing-card .button.secondary:hover {
      background: rgba(0, 210, 255, 0.16);
    }

    .pricing-note {
      margin-top: 16px;
      color: #7f929b;
      font-size: 14px;
      line-height: 1.5;
    }

    .compare-table-wrapper {
      overflow-x: auto;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
    }

    .compare-table th,
    .compare-table td {
      padding: 16px 20px;
      text-align: center;
      border-bottom: 1px solid var(--line);
    }

    .compare-table th {
      font-weight: 900;
      color: var(--white);
      background: rgba(255, 255, 255, 0.04);
    }

    .compare-table td:first-child,
    .compare-table th:first-child {
      text-align: left;
      font-weight: 700;
    }

    .compare-highlight {
      background: rgba(0, 210, 255, 0.08);
      color: var(--secondary);
      font-weight: 700;
    }

    .compare-table .compare-highlight strong {
      color: var(--secondary);
    }

    .compare-bad {
      color: #ef4444;
    }

    .compare-good strong {
      color: #22c55e;
      font-weight: 900;
    }

    .pricing-includes {
      background: rgba(255, 255, 255, 0.03);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .pricing-callout {
      background: var(--secondary);
      color: var(--text-dark);
    }

    .pricing-callout p {
      color: #0f3f49;
    }

    .pricing-callout .outline-dark {
      border-color: rgba(26, 26, 26, 0.24);
    }

    .lojista-page {
      color: var(--white);
      background: var(--bg);
    }

    .lojista-page .start-hero {
      background: url('../assets/LojistaStartPage.webp') center center / cover no-repeat;
    }

    .lojista-page .header {
      background: rgba(26, 26, 26, 0.94);
      border-bottom: 1px solid rgba(0, 210, 255, 0.18);
    }

    .lojista-page .brand span,
    .lojista-page .nav {
      color: #9fb2bc;
    }

    .lojista-page .nav a:hover {
      color: var(--secondary);
    }

    .lojista-page .nav-panel {
      color: var(--secondary);
      border-color: rgba(0, 210, 255, 0.45);
      background: rgba(0, 210, 255, 0.08);
    }

    .lojista-page .menu-button {
      color: var(--secondary);
      border-color: rgba(0, 210, 255, 0.35);
    }

    .lojista-page .section-heading span {
      color: var(--secondary);
    }

    .lojista-page .detail-item,
    .lojista-page .benefit-card {
      border-color: rgba(0, 210, 255, 0.18);
      background: #101010;
    }

    .lojista-page .detail-item strong {
      color: var(--text-dark);
      background: var(--secondary);
    }

    .lojista-page .faq-item {
      border-color: #e2e8f0;
    }

    .lojista-page .faq-item summary {
      color: var(--text-dark);
    }

    .lojista-page .starter-card {
      border-color: rgba(0, 210, 255, 0.18);
      background: #101010;
    }

    .lojista-page .flow-card {
      border-color: rgba(0, 210, 255, 0.18);
      background: #101010;
    }

    .lojista-page .footer {
      color: #7f929b;
      background: var(--bg);
      border-top: 1px solid rgba(0, 210, 255, 0.18);
    }

    .lojista-page .footer a:hover {
      color: var(--secondary);
    }

    .faq-section {
      background: var(--white);
      color: var(--text-dark);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      align-items: start;
      gap: 54px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid #e2e8f0;
      border-radius: 22px;
      background: #ffffff;
      overflow: hidden;
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 22px;
      color: var(--text-dark);
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      border-radius: 10px;
      color: var(--text-dark);
      background: var(--secondary);
      font-weight: 900;
    }

    .faq-item[open] summary::after {
      content: "-";
    }

    .faq-item p {
      margin: 0;
      padding: 0 22px 20px;
      color: #334155;
      line-height: 1.65;
    }

    .seller-callout {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 30px;
      padding: 44px;
      border-radius: 34px;
      background: var(--secondary);
      color: var(--text-dark);
    }

    .seller-callout h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 44px);
      letter-spacing: -1px;
    }

    .seller-callout p {
      color: #0f3f49;
      line-height: 1.6;
    }

    .callout-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .dark-button {
      background: var(--bg);
      color: var(--white);
    }

    .outline-dark {
      border: 1px solid rgba(26, 26, 26, 0.24);
      color: var(--text-dark);
    }

    .outline-dark:hover {
      background: rgba(26, 26, 26, 0.08);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.85fr 1fr;
      gap: 54px;
    }

    .contact-form {
      display: grid;
      gap: 14px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.06);
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 16px;
      color: var(--white);
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--bg);
      outline: none;
      font: inherit;
    }

    .contact-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--secondary);
    }

    .contact-form button {
      min-height: 52px;
      border: 0;
      border-radius: 999px;
      background: var(--secondary);
      color: var(--text-dark);
      font-weight: 900;
      cursor: pointer;
    }

    .contact-form small {
      color: var(--muted);
      line-height: 1.5;
    }

    .contact-divider {
      border: none;
      border-top: 1px solid var(--line);
      margin: 8px 0 4px;
    }

    .contact-fallback {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
      text-align: center;
    }

    .contact-fallback a {
      color: var(--secondary);
      text-decoration: underline;
    }

    .contact-channels {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .contact-channel-card {
      flex: 1;
      min-width: 240px;
      max-width: 360px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      padding: 32px 24px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.06);
      transition: border-color 0.2s, transform 0.2s;
    }

    .contact-channel-card:hover {
      border-color: var(--secondary);
      transform: translateY(-4px);
    }

    .contact-channel-card .channel-icon {
      font-size: 36px;
    }

    .contact-channel-card h3 {
      margin: 0;
      font-size: 18px;
      color: var(--white);
    }

    .contact-channel-card p {
      margin: 0;
      font-size: 15px;
      color: var(--white);
      font-weight: 600;
    }

    .contact-channel-card span {
      font-size: 13px;
      color: var(--muted);
    }

    .contact-inline {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      padding: 20px 24px;
      border-radius: 20px;
      background: rgba(0, 0, 0, 0.04);
    }

    .contact-inline-fields {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      flex: 1;
    }

    .contact-inline-fields input {
      flex: 1;
      min-width: 170px;
      padding: 14px 18px;
      border: 1px solid rgba(26, 26, 26, 0.18);
      border-radius: 12px;
      background: var(--white);
      color: var(--text-dark);
      font: inherit;
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
    }

    .contact-inline-fields input:focus {
      border-color: var(--text-dark);
      box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
    }

    .contact-inline .button {
      flex-shrink: 0;
      white-space: nowrap;
      min-height: 50px;
      padding: 0 32px;
    }

    .footer {
      padding: 28px 0;
      border-top: 1px solid var(--line);
    }

    .footer-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-brand img {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      object-fit: contain;
    }

    .footer-links {
      display: flex;
      gap: 32px;
    }

    .footer-category {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-category-title {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--white);
      margin-bottom: 4px;
    }

    .footer a:hover {
      color: var(--white);
    }

    @media (max-width: 920px) {
      .menu-button {
        display: block;
      }

      .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
      }

      .client-page .nav {
        background: #060606;
        border-bottom: 1px solid rgba(0, 210, 255, 0.18);
      }

      .nav.open {
        display: flex;
      }

      .nav a {
        padding: 14px;
        border-radius: 14px;
      }

      .nav a:hover {
        background: rgba(255, 255, 255, 0.06);
      }

      .hero-grid,
      .ease-grid,
      .how-grid,
      .contact-grid,
      .details-grid,
      .faq-grid,
      .download-grid,
      .docs-hero-grid,
      .docs-layout,
      .seller-callout {
        grid-template-columns: 1fr;
      }

      .client-page .hero-grid {
        grid-template-columns: 1fr;
      }

      .client-page .phone-preview {
        justify-content: center;
      }

      .start-notifications {
        right: 16px;
        bottom: 20px;
      }

      .start-notification {
        padding: 12px 16px;
        max-width: 240px;
      }

      .docs-sidebar {
        position: static;
      }

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

      .policy-page .docs-hero-grid {
        grid-template-columns: 1fr;
      }

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

      .pricing-card.featured {
        transform: none;
      }

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

      .flow-horizontal {
        flex-wrap: wrap;
        justify-content: center;
      }

      .flow-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
      }

      .seller-callout {
        padding: 32px;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding: 60px 0;
      }

      .hero-screenshot img,
      .ease-screenshot img {
        max-width: 260px;
      }

      .hero h1 {
        letter-spacing: -1px;
      }

      .hero-actions,
      .callout-actions {
        flex-direction: column;
      }

      .contact-inline-fields {
        flex-direction: column;
      }

      .button {
        width: 100%;
      }

      .start-hero {
        min-height: 100dvh;
      }

      .start-hero-actions {
        flex-direction: column;
      }

      .start-hero-actions .store-button {
        min-width: 100%;
      }

      .start-notifications {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 32px;
        padding: 0;
      }

      .start-notification {
        max-width: 100%;
      }

      .lojista-page .start-notifications {
        display: none;
      }

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

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

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

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

      .flow-horizontal {
        flex-direction: column;
        align-items: stretch;
      }

      .flow-arrow {
        transform: rotate(90deg);
        justify-content: center;
        padding: 8px 0;
      }

      .pricing-card .button {
        width: 100%;
      }

      .download-panel,
      .app-items {
        grid-template-columns: 1fr;
      }

      .compare-table-wrapper {
        overflow: visible;
        margin: 0;
        padding: 0;
      }

      .compare-table,
      .compare-table thead,
      .compare-table tbody,
      .compare-table tr,
      .compare-table th,
      .compare-table td {
        display: block;
      }

      .compare-table thead {
        display: none;
      }

      .compare-table tr {
        margin-bottom: 16px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.06);
      }

      .compare-table td:first-child {
        font-weight: 900;
        font-size: 16px;
        padding: 0 0 12px;
        text-align: left;
        border-bottom: none;
        color: var(--white);
      }

      .compare-table td:not(:first-child) {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        border-bottom: none;
        text-align: right;
      }

      .compare-table td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--muted);
        text-align: left;
        font-size: 13px;
        flex-shrink: 0;
      }

      .compare-table .compare-highlight {
        background: transparent;
        color: var(--secondary);
      }

      .compare-table .compare-bad {
        color: #ef4444;
      }

      .compare-table .compare-good strong {
        color: #22c55e;
      }

      .footer-content,
      .footer-links {
        flex-direction: column;
        align-items: flex-start;
      }
    }
