:root {
  --ink: #0A0614;
  --panel: #150C28;
  --panel-2: #1F1339;
  --line: #3A2563;
  --paper: #F6F1FF;
  --muted: #B9AAD8;

  --roxo: #A63BFF;
  --magenta: #E14BF0;
  --roxo-claro: #D6AEFF;
  --azul: #3D7BFF;
  --violeta: #7B55FF;
  --ouro: #FFC21A;
  --ouro-ink: #1C1300;
  --zap: #25D366;
  --zap-ink: #062B16;

  --neon: linear-gradient(90deg, #3D7BFF, #A63BFF 50%, #E14BF0);
  --neon-btn: linear-gradient(135deg, #8A3BFF, #D946EF);

  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --texto: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Remove o quadrado azul que o celular desenha ao tocar em links e botões */
  -webkit-tap-highlight-color: transparent;
}
/* Contorno de foco só para quem navega pelo teclado, nunca no toque ou clique */
:focus:not(:focus-visible) { outline: none; }
body {
  margin: 0;
  background:
    radial-gradient(60rem 40rem at 110% 40%, rgba(166, 59, 255, .14), transparent 60%),
    radial-gradient(50rem 36rem at -10% 75%, rgba(61, 123, 255, .1), transparent 60%),
    var(--ink);
  color: var(--paper);
  font: 400 1rem/1.55 var(--texto);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
a { color: inherit; }

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--roxo-claro);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: 0 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: 600 1rem/1 var(--texto);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, background-color .15s ease;
}
.btn:active { transform: scale(.97); }
.btn-sinal {
  background: var(--neon-btn);
  color: #fff;
  box-shadow: 0 0 26px -4px rgba(166, 59, 255, .7);
}
.btn-sinal:hover { filter: brightness(1.12); }
.btn-contorno { background: transparent; color: var(--paper); border-color: rgba(246, 241, 255, .65); }
.btn-contorno:hover { background: rgba(246, 241, 255, .1); }
.btn-teste {
  background: rgba(255, 194, 26, .07);
  color: #FFD65C;
  border-color: var(--ouro);
  animation: pulsar 2s ease-out infinite;
}
.btn-teste:hover { background: rgba(255, 194, 26, .16); }
.btn-teste:focus-visible { outline-color: var(--ouro); }
@keyframes pulsar {
  0% { box-shadow: 0 0 0 0 rgba(255, 194, 26, .55), 0 0 18px -4px rgba(255, 194, 26, .7); }
  70% { box-shadow: 0 0 0 14px rgba(255, 194, 26, 0), 0 0 18px -4px rgba(255, 194, 26, .7); }
  100% { box-shadow: 0 0 0 0 rgba(255, 194, 26, 0), 0 0 18px -4px rgba(255, 194, 26, .7); }
}
.btn-zap { background: var(--zap); color: var(--zap-ink); width: 100%; }
.btn-zap:hover { background: #4BE584; }
.btn-bloco { width: 100%; }

/* ---------- Marca ---------- */
.marca {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font: 800 1.35rem/1 var(--display);
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
}
.marca-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(166, 59, 255, .55), 0 0 18px -2px rgba(166, 59, 255, .6);
}
.rodape .marca-logo { width: 36px; height: 36px; }

.topo {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
}
.topo-link {
  font-weight: 600;
  text-decoration: none;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(10, 6, 20, .6);
  border: 1px solid rgba(166, 59, 255, .5);
  backdrop-filter: blur(6px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(94svh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 7rem var(--gutter) 3rem;
}
.parede { position: absolute; inset: 0; }
.parede-inclinada {
  position: absolute;
  inset: -25% -40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  transform: rotate(-9deg);
}
.parede::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 6, 20, .3) 0%, rgba(10, 6, 20, .66) 42%, var(--ink) 88%);
}
@media (min-width: 820px) {
  .parede::after {
    background:
      linear-gradient(90deg, rgba(10, 6, 20, .9) 0%, rgba(10, 6, 20, .58) 45%, rgba(10, 6, 20, .1) 75%),
      linear-gradient(180deg, rgba(10, 6, 20, 0) 50%, var(--ink) 96%);
  }

}
.fileira {
  display: flex;
  width: max-content;
  animation: rolar 80s linear infinite;
}
.fileira:nth-child(even) { animation-direction: reverse; animation-duration: 95s; }
.trilho { display: flex; gap: 14px; padding-right: 14px; }
@keyframes rolar { to { transform: translateX(-50%); } }

.capa {
  position: relative;
  flex: none;
  width: clamp(104px, 24vw, 164px);
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}
.capa img { width: 100%; height: 100%; object-fit: cover; }
.capa-gerada {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .7rem;
}
.capa-gerada .capa-tipo { font-size: .7rem; font-weight: 600; opacity: .85; }
.capa-gerada .capa-titulo {
  font: 900 clamp(1.3rem, 4.4vw, 1.9rem)/.9 var(--display);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.capa-liga {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  padding: .7rem .6rem .8rem;
  background: linear-gradient(170deg, #FFFFFF, #E4DCF5);
  color: #1A0F33;
  text-align: center;
}
.capa-liga img {
  flex: 1;
  min-height: 0;
  width: 80%;
  object-fit: contain;
}
.capa-liga .capa-tipo {
  align-self: flex-start;
  padding: .15rem .45rem;
  border-radius: 999px;
  background: #E3262F;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
}
.capa-liga .capa-titulo {
  font: 900 clamp(1rem, 3.4vw, 1.3rem)/.95 var(--display);
  text-transform: uppercase;
}
.c0 { background: linear-gradient(165deg, #3D7BFF, #120A2E 75%); }
.c1 { background: linear-gradient(165deg, #E14BF0, #2E0B3F 80%); }
.c2 { background: linear-gradient(165deg, #7B55FF, #140A30 80%); }
.c3 { background: linear-gradient(165deg, #A63BFF, #1B0833 80%); }
.c4 { background: linear-gradient(165deg, #FFC21A, #5A2A08 85%); color: var(--ouro-ink); }
.c5 { background: linear-gradient(165deg, #2F9BFF, #0B1636 80%); }

.hero-texto { position: relative; z-index: 1; max-width: 42rem; }
.hero h1 {
  font: 900 clamp(3rem, 13vw, 6.8rem)/.88 var(--display);
  text-transform: uppercase;
  letter-spacing: -.005em;
  text-wrap: balance;
  text-shadow: 0 0 36px rgba(166, 59, 255, .35);
}
.hero-texto > p {
  margin-top: 1.1rem;
  max-width: 34rem;
  font-size: 1.1rem;
  color: #E2D9F5;
}
.hero-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}
@media (max-width: 479px) {
  .hero-acoes .btn { flex: 1 1 100%; }
}

/* ---------- Seções ---------- */
.passos, .inclui, .planos, .faq {
  padding-inline: var(--gutter);
  max-width: 78rem;
  margin-inline: auto;
}
.passos h2, .inclui h2, .planos h2, .faq h2 {
  font: 800 clamp(2.2rem, 7vw, 3.6rem)/.95 var(--display);
  text-transform: uppercase;
}

/* Como funciona */
.passos { padding-block: 3.5rem 4.5rem; }
.passos ol {
  list-style: none;
  counter-reset: passo;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}
.passos li {
  counter-increment: passo;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  column-gap: .5rem;
}
.passos li::before {
  content: counter(passo);
  grid-row: span 2;
  font: 900 3.4rem/.8 var(--display);
  background: var(--neon-btn);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.passos h3 { font-size: 1.15rem; font-weight: 700; }
.passos li p { color: var(--muted); max-width: 30ch; }
@media (min-width: 700px) {
  .passos ol { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 2.5rem; }
}
@media (min-width: 1120px) {
  .passos ol { grid-template-columns: repeat(4, 1fr); }
}

/* O que está incluído */
.inclui { padding-block: 0 5rem; }
.inclui-cabeca p { margin-top: 1rem; max-width: 40rem; color: var(--muted); }
.inclui-grade {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.inclui-item {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.inclui-item:last-child { grid-column: span 2; }
@media (min-width: 1120px) {
  .inclui-grade { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .inclui-item:last-child { grid-column: auto; }
}
.inclui-visual {
  position: relative;
  height: 160px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 120%, rgba(166, 59, 255, .38), transparent 70%);
  border-bottom: 1px solid var(--line);
}
.leque { position: absolute; inset: 0; }
.leque img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .55);
}
.leque img:nth-child(1) { transform: translate(-112%, -46%) rotate(-12deg); }
.leque img:nth-child(2) { transform: translate(-50%, -54%); z-index: 1; }
.leque img:nth-child(3) { transform: translate(12%, -46%) rotate(12deg); }
.leque-logos img {
  padding: .45rem;
  object-fit: contain;
  background: linear-gradient(170deg, #FFFFFF, #E4DCF5);
}
.canal { position: relative; color: var(--magenta); }
.canal svg {
  width: 84px;
  height: 84px;
  filter: drop-shadow(0 0 12px rgba(225, 75, 240, .6));
}
.ao-vivo {
  position: absolute;
  top: -2px;
  right: -22px;
  padding: .15rem .45rem;
  border-radius: 999px;
  background: #E3262F;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  white-space: nowrap;
}
.inclui-texto { padding: 1rem 1.1rem 1.2rem; }
.inclui-texto h3 { font: 800 1.7rem/1 var(--display); text-transform: uppercase; }
.inclui-texto p { margin-top: .35rem; color: var(--muted); font-size: .95rem; }

/* Planos */
.planos { padding-block: 0 5rem; }
.barras {
  height: 4px;
  border-radius: 999px;
  background: var(--neon);
  box-shadow: 0 0 18px rgba(166, 59, 255, .7);
  margin-bottom: 3.5rem;
}
.planos-cabeca p { margin-top: 1rem; max-width: 40rem; color: var(--muted); }
.planos-grade {
  display: grid;
  gap: 2rem 1rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .planos-grade { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1120px) {
  .planos-grade { grid-template-columns: repeat(4, 1fr); }
}

.plano {
  --cor: var(--roxo);
  --btn-ink: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.9rem 1.5rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(31, 19, 57, .85), rgba(10, 6, 20, .92));
  border: 2px solid var(--cor);
  box-shadow: 0 0 30px -8px var(--cor), inset 0 0 30px -18px var(--cor);
}
.plano-azul { --cor: var(--azul); }
.plano-violeta { --cor: var(--violeta); }
.plano-roxo { --cor: #C040FF; }
.plano-ouro { --cor: var(--ouro); --btn-ink: var(--ouro-ink); }

.plano-selo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55%);
  padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--cor);
  color: var(--btn-ink);
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 0 18px -2px var(--cor);
}
.plano-nome {
  font: 800 2.1rem/1 var(--display);
  text-transform: uppercase;
}
.plano-de {
  margin-top: .9rem;
  min-height: 1.5rem;
  color: var(--muted);
  font-weight: 600;
}
.plano-de s { text-decoration-color: #FF3D8B; text-decoration-thickness: 2px; }
.plano-preco {
  display: flex;
  align-items: baseline;
  margin-top: .1rem;
}
.plano-preco strong {
  font: 900 3.5rem/.9 var(--display);
  letter-spacing: -.01em;
}
.plano-centavos { font: 800 1.6rem/1 var(--display); }
.plano-periodo { margin-top: .35rem; color: var(--muted); }

.plano-lista {
  list-style: none;
  margin: 1.4rem 0 1.6rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--cor) 45%, transparent);
  display: grid;
  gap: .7rem;
  font-size: .95rem;
}
.plano-lista li {
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  gap: .55rem;
  align-items: start;
}
.plano-lista li::before {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  margin-top: .05rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3L15 6.5' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 80% no-repeat,
    color-mix(in srgb, var(--cor) 70%, #000);
}
.plano .btn {
  margin-top: auto;
  background: var(--cor);
  color: var(--btn-ink);
  box-shadow: 0 0 22px -6px var(--cor);
}
.plano .btn:hover { filter: brightness(1.15); }
.plano :focus-visible { outline-color: var(--cor); }

.teste {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.6rem;
  border-radius: 18px;
  border: 2px solid rgba(166, 59, 255, .75);
  background: linear-gradient(90deg, rgba(61, 123, 255, .08), rgba(166, 59, 255, .12) 50%, rgba(225, 75, 240, .08));
  box-shadow: 0 0 34px -12px var(--roxo);
}
.teste h3 { font: 800 clamp(1.9rem, 5vw, 2.4rem)/1 var(--display); text-transform: uppercase; }
.teste p { margin-top: .5rem; color: var(--muted); max-width: 44ch; }
@media (min-width: 720px) {
  .teste { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* FAQ */
.faq { padding-block: 0 5rem; max-width: 52rem; margin-inline: auto; }
.faq h2 { margin-bottom: 1.5rem; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 800 1.6rem/1 var(--display); color: var(--magenta); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 1.2rem; color: var(--muted); max-width: 60ch; }

/* Atendimento */
.atendimento {
  max-width: 78rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: 0 5rem;
}
.atendimento-caixa {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 22px;
  border: 2px solid rgba(37, 211, 102, .6);
  background:
    radial-gradient(40rem 20rem at 100% 100%, rgba(37, 211, 102, .14), transparent 60%),
    var(--panel);
  box-shadow: 0 0 40px -14px var(--zap);
}
@media (min-width: 860px) {
  .atendimento-caixa { grid-template-columns: 1.2fr 1fr; align-items: center; }
}
.atendimento h2 {
  font: 800 clamp(2.2rem, 7vw, 3.6rem)/.95 var(--display);
  text-transform: uppercase;
}
.atendimento-texto p { margin-top: 1rem; color: var(--muted); max-width: 42ch; font-size: 1.05rem; }
.btn-atendente {
  margin-top: 1.75rem;
  background: var(--zap);
  color: var(--zap-ink);
  box-shadow: 0 0 26px -6px var(--zap);
}
.btn-atendente svg { width: 22px; height: 22px; }
.btn-atendente:hover { background: #4BE584; }
.btn-atendente:focus-visible { outline-color: var(--zap); }
@media (max-width: 479px) {
  .btn-atendente { width: 100%; }
}
.conversa {
  display: grid;
  gap: .6rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: #0B141A;
}
.balao {
  max-width: 85%;
  padding: .65rem .85rem;
  font-size: .95rem;
  line-height: 1.4;
}
.balao-cliente {
  justify-self: end;
  border-radius: 12px 12px 2px 12px;
  background: #005C4B;
  color: #E9FFF7;
}
.balao-atendente {
  justify-self: start;
  border-radius: 12px 12px 12px 2px;
  background: #1F2C34;
  color: #E9EDEF;
}
.balao small {
  display: block;
  margin-bottom: .15rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--zap);
}

.rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.rodape .marca { color: var(--paper); font-size: 1.1rem; }

/* ---------- Modal ---------- */
.fluxo {
  width: min(560px, calc(100% - 2rem));
  max-width: none;
  max-height: min(88svh, 780px);
  padding: 0;
  border: 1px solid rgba(166, 59, 255, .45);
  border-radius: 20px;
  background: var(--panel);
  color: var(--paper);
  overflow: hidden;
  box-shadow: 0 0 60px -20px var(--roxo);
}
.fluxo[open] { display: flex; flex-direction: column; }
.fluxo::backdrop { background: rgba(4, 2, 10, .78); backdrop-filter: blur(4px); }
@media (max-width: 599px) {
  .fluxo {
    width: 100%;
    max-height: 92svh;
    margin: auto 0 0;
    border-radius: 20px 20px 0 0;
    border-bottom: 0;
  }
  .fluxo[open] { animation: subir .28s cubic-bezier(.2, .8, .2, 1); }
}
@keyframes subir { from { transform: translateY(40px); opacity: 0; } }

.fluxo-topo { flex: none; }
.progresso {
  position: relative;
  height: 5px;
  background: var(--neon);
}
.progresso span {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  background: var(--line);
  transition: width .35s ease;
}
.fluxo-barra {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .6rem 0;
}
.fluxo-pedido {
  flex: 1;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
  color: var(--roxo-claro);
}
.icone-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}
.icone-btn:hover { background: var(--panel-2); }
.icone-btn[hidden] { display: grid !important; visibility: hidden; }

.fluxo-corpo {
  overflow-y: auto;
  padding: .75rem 1.5rem calc(1.75rem + env(safe-area-inset-bottom));
  overscroll-behavior: contain;
}
.etapa { animation: entrar .25s ease; }
@keyframes entrar { from { opacity: 0; transform: translateX(12px); } }
.etapa h2 {
  font: 800 clamp(2rem, 8vw, 2.5rem)/.95 var(--display);
  text-transform: uppercase;
}
.etapa h2:focus { outline: none; }
.etapa-sub { margin-top: .5rem; color: var(--muted); }

.opcoes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
  margin-top: 1.4rem;
}
@media (min-width: 480px) {
  .opcoes-aparelhos { grid-template-columns: repeat(3, 1fr); }
}
.opcao {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .7rem;
  min-height: 56px;
  padding: 1rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--panel-2);
  color: var(--paper);
  font: 600 1rem/1.2 var(--texto);
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.opcao svg { width: 34px; height: 34px; color: var(--magenta); }
.opcao:hover, .opcao[aria-pressed="true"] { border-color: var(--roxo); box-shadow: 0 0 18px -6px var(--roxo); }
.opcao[aria-pressed="true"] { background: #2B1850; }
.opcoes-modelos .opcao { justify-content: center; }

.apps {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.apps li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: var(--panel-2);
}
.apps strong { font-size: 1.05rem; }
.apps small { color: var(--muted); font-size: .8rem; white-space: nowrap; }
.apps li:first-child { box-shadow: inset 0 0 0 1.5px var(--roxo), 0 0 18px -8px var(--roxo); }
.apps li:first-child small { color: var(--roxo-claro); font-weight: 600; }

.apps-rotulo { margin-top: 1.4rem; font-weight: 700; }
.apps-escolha { grid-template-columns: repeat(2, 1fr); margin-top: .7rem; }
.app-opcao {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-height: 52px;
  padding: .7rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--panel-2);
  color: var(--paper);
  font: 600 .98rem/1.2 var(--texto);
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.app-opcao { position: relative; }
.app-nome { min-width: 0; overflow-wrap: break-word; }
.app-logo {
  position: relative;
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  overflow: hidden;
  color: #fff;
  font: 900 1.25rem/1 var(--display);
  text-transform: uppercase;
}
.app-logo::before { content: attr(data-inicial); }
.app-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}
.app-cor-0 { background: linear-gradient(135deg, #3D7BFF, #1B2F7A); }
.app-cor-1 { background: linear-gradient(135deg, #A63BFF, #4A1580); }
.app-cor-2 { background: linear-gradient(135deg, #E14BF0, #6E1777); }
.app-cor-3 { background: linear-gradient(135deg, #7B55FF, #2F1F80); }
.app-cor-4 { background: linear-gradient(135deg, #FFB020, #9A4A00); }
.app-opcao:hover { border-color: var(--roxo); }
.app-opcao[aria-pressed="true"] {
  border-color: var(--roxo);
  background: #2B1850;
  box-shadow: 0 0 18px -6px var(--roxo);
}
/* Selo de check no canto do app escolhido */
.app-opcao[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3L15 6.5' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 72% no-repeat,
    var(--magenta);
  box-shadow: 0 0 0 3px var(--panel);
}
.apps-vazio {
  margin-top: 1.4rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: var(--panel-2);
  color: var(--roxo-claro);
}

.tutorial-titulo { margin-top: 1.6rem; font-size: 1rem; font-weight: 700; }
.tutorial {
  list-style: none;
  counter-reset: t;
  margin: .8rem 0 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.tutorial li {
  counter-increment: t;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .6rem;
}
.tutorial li::before {
  content: counter(t);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--neon-btn);
  color: #fff;
  font: 800 1.1rem/1 var(--display);
}

.acoes-etapa { display: grid; gap: .6rem; margin-top: 1.75rem; }
.nota { font-size: .9rem; color: var(--muted); text-align: center; }

.resumo {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .45rem 1rem;
  margin: 1.4rem 0 0;
  padding: 1rem;
  border-radius: 12px;
  background: var(--panel-2);
}
.resumo dt { color: var(--muted); }
.resumo dd { margin: 0; font-weight: 600; text-align: right; }

.campo { display: grid; gap: .4rem; margin-top: 1.25rem; font-weight: 600; }
.campo input {
  min-height: 52px;
  padding: 0 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  font: 400 1rem var(--texto);
}
.campo input::placeholder { color: #8676AD; }
.campo input:focus-visible { outline-offset: 0; border-color: var(--roxo); }

.previa-rotulo { margin-top: 1.25rem; font-size: .9rem; color: var(--muted); }
.previa {
  margin-top: .45rem;
  margin-left: auto;
  max-width: 92%;
  padding: .75rem .9rem;
  border-radius: 12px 12px 2px 12px;
  background: #075E54;
  color: #ECFFF8;
  font: 400 .92rem/1.45 var(--texto);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.Developer {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--paper);
  /* Faixa laranja estreita que atravessa o texto e depois pausa */
  background: linear-gradient(100deg, var(--paper) 0%, var(--paper) 42%, #FF9A3C 50%, var(--paper) 58%, var(--paper) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    dev-flutuar 3.4s ease-in-out infinite,
    dev-flash 5s ease-in-out infinite;
}
.Developer:hover,
.Developer:focus-visible {
  -webkit-text-fill-color: #FF9A3C;
  text-underline-offset: 3px;
}
@keyframes dev-flutuar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
@keyframes dev-flash {
  0% { background-position: 100% 0; }
  30%, 100% { background-position: 0 0; }
}