body {
    font-family: 'AcuminProWide', sans-serif;
    background: var(--bg);
    color: var(--text);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ══════════════════════════════════
     BANNER
  ══════════════════════════════════ */
  .banner {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--purple-4) 0%, var(--purple-3) 50%, var(--purple-1) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .banner::before {
    content: ''; position: absolute;
    right: -80px; top: -80px;
    width: 300px; height: 300px;
    border-radius: 50%; background: rgba(148,76,245,0.30);
  }
  .banner::after {
    content: ''; position: absolute;
    left: 10%; bottom: -60px;
    width: 200px; height: 200px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
  }
  .banner-placeholder-text {
    color: rgba(255,255,255,0.18); font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    border: 1.5px dashed rgba(255,255,255,0.2);
    padding: 10px 24px; border-radius: 8px; position: relative; z-index: 1;
  }

  /* ══════════════════════════════════
     PAGE BODY
  ══════════════════════════════════ */
  .page-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px 80px;
  }

  /* ══════════════════════════════════
     INTRO
  ══════════════════════════════════ */
  .page-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
    animation: fadeUp 0.6s ease both;
  }

  .page-intro h1 {
    font-size: 42px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .page-intro h1 span { color: var(--primary); }

  .page-intro p {
    font-size: 16px;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.7;
  }

  /* ══════════════════════════════════
     APP CARDS
  ══════════════════════════════════ */
  .apps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .app-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
    box-shadow: 0 2px 20px rgba(148,76,245,0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
  }
  .app-card:nth-child(1) { animation-delay: 0.05s; }
  .app-card:nth-child(2) { animation-delay: 0.15s; }
  .app-card:nth-child(3) { animation-delay: 0.25s; }

  .app-card:hover {
    box-shadow: 0 16px 48px rgba(148,76,245,0.14);
    transform: translateY(-4px);
  }

  /* Cards pares ficam invertidos (imagem esquerda) */
  .app-card:nth-child(even) { direction: rtl; }
  .app-card:nth-child(even) > * { direction: ltr; }

  /* Conteúdo */
  .app-content {
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .app-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-5);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
  }

  .app-name {
    font-size: 34px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .app-name span { color: var(--primary); }

  .app-desc {
    font-size: 15px;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  /* Bullets de features */
  .app-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
  }

  .app-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
  }

  .app-features li svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
  }

  /* Botões de download */
  .app-download-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-store {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid var(--border);
    background: var(--dark);
    color: var(--white);
    font-family: 'AcuminProWide', sans-serif;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s, transform 0.14s;
    cursor: pointer;
  }

  .btn-store:hover {
    background: var(--purple-3);
    border-color: var(--purple-3);
    transform: scale(1.03);
  }

  .btn-store-icon { width: 22px; height: 22px; flex-shrink: 0; }

  .btn-store-text { display: flex; flex-direction: column; }
  .btn-store-sub  { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.6); line-height: 1; }
  .btn-store-name { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; }

  /* Visual do app (lado direito) */
  .app-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* Cada app tem sua cor de fundo */
  .app-card:nth-child(1) .app-visual { background: linear-gradient(135deg, #1a0f2e 0%, var(--purple-3) 100%); }
  .app-card:nth-child(2) .app-visual { background: linear-gradient(135deg, var(--purple-3) 0%, #1a3a4a 100%); }
  .app-card:nth-child(3) .app-visual { background: linear-gradient(135deg, #1a0f2e 0%, #2d1060 100%); }

  /* Círculo decorativo */
  .app-visual::before {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .app-visual::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
  }

  /* Placeholder do mockup de celular */
  .app-mockup-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .app-mockup-icon {
    width: 80px; height: 80px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }

  .app-mockup-icon svg { width: 44px; height: 44px; }

  .app-mockup-placeholder {
    width: 150px;
    background: rgba(255,255,255,0.08);
    border: 1.5px dashed rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 40px 16px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.6;
  }

  /* ══════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════ */
  @media (max-width: 900px) {
    .app-card,
    .app-card:nth-child(even) {
      grid-template-columns: 1fr;
      direction: ltr;
    }
    .app-visual { min-height: 220px; }
    .app-content { padding: 36px 32px; }
    .app-name { font-size: 26px; }
  }
  @media (max-width: 640px) {
    .page-intro h1 { font-size: 30px; }
    .page-body { padding: 40px 20px 60px; }
    .app-content { padding: 28px 24px; }
    .banner { height: 120px; }
  }