:root {
  --bg: #030711;
  --bg-2: #07101e;
  --panel: rgba(10, 16, 28, 0.84);
  --panel-2: rgba(14, 23, 39, 0.72);
  --stroke: rgba(255, 215, 84, 0.23);
  --stroke-soft: rgba(255, 255, 255, 0.09);
  --gold: #ffd84d;
  --gold-2: #d8af35;
  --green: #22c55e;
  --red: #ef4444;
  --text: #f8fafc;
  --muted: #b9c2d0;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

/* Poppins auto-hospedada (assets/fonts/), sem depender de fonts.googleapis.com
   — a CSP do site é script-src/style-src 'self'. Usada só na capa (Tarefa B
   do PROMPT 7), pra aproximar a tipografia do vídeo de referência. */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/poppins-500.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/poppins-800.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/poppins-900.woff2") format("woff2");
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 216, 77, 0.08), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(45, 122, 255, 0.08), transparent 24%),
    radial-gradient(circle at 50% 92%, rgba(255, 216, 77, 0.07), transparent 27%),
    linear-gradient(180deg, #030711 0%, #07101e 48%, #030711 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .42));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .55), transparent 22%, transparent 78%, rgba(0, 0, 0, .55)),
    radial-gradient(circle at 50% 0%, rgba(255, 216, 77, .10), transparent 36%);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

section,
header {
  scroll-margin-top: 95px;
}

.hidden {
  display: none !important;
}

/* TELA INICIAL */

.intro-screen {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 44px 22px;
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  border: 3px solid var(--gold-2);
  border-radius: 0;
  overflow: hidden;
}

@media (max-width: 760px) {
  .intro-screen {
    border-width: 2px;
    padding: 26px 16px;
  }
}

/* Tarefa C — brilho "neon" percorrendo a moldura, contínuo (sem
   alternate — 0deg e 360deg são o mesmo ângulo, então o loop não "reseta"
   visualmente) e na mesma família de dourado usada no nome "André".
   Truque de máscara: um anel do tamanho exato da faixa da borda (por
   isso o inset NEGATIVO — sem isso o anel cai dentro do padding, não em
   cima da borda de verdade), com conic-gradient girando por trás,
   mascarado pra só o anel aparecer. */
.intro-screen::before {
  content: "";
  position: absolute;
  inset: -3px;
  padding: 3px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 268deg,
    var(--gold-2) 300deg,
    #f2d99a 320deg,
    var(--gold-2) 340deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
  animation: introBorderChase 7s linear infinite;
}

@keyframes introBorderChase {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .intro-screen::before {
    inset: -2px;
    padding: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-screen::before {
    display: none;
  }
}

/* Pausado via JS (classe alternada em visibilitychange) quando a aba
   está oculta. */
.intro-screen.chase-paused::before {
  animation-play-state: paused;
}

.intro-panel {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  position: relative;
}

.intro-content {
  width: min(920px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: .86rem;
}

.intro-content .intro-label {
  display: inline-block;
  color: #bbbbbb;
  font-family: "Poppins", Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: .86rem;
}

.intro-label-line {
  display: block;
  width: 220px;
  max-width: 100%;
  height: 2px;
  margin-top: 12px;
  background: var(--gold-2);
  transform-origin: left center;
}

.intro-content h1 {
  margin: 22px 0 0;
  font-family: "Poppins", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.4rem, 7.2vw, 6.2rem);
  line-height: .95;
  letter-spacing: -.03em;
  font-weight: 900;
  text-shadow: none;
}

.intro-content h1 .intro-name-a {
  color: var(--gold-2);
  -webkit-text-stroke: 0;
}

.intro-content h1 .intro-name-b {
  color: #bdbdbd;
  -webkit-text-stroke: 0;
}

/* Efeito "metálico": gradiente dourado recortado no texto, com fallback
   sólido (var(--gold-2)) em navegadores sem suporte a background-clip:text */
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .intro-content h1 .intro-name-a {
    background: linear-gradient(180deg, #f2d99a 0%, var(--gold-2) 55%, #a9822f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.intro-subtitle {
  margin: 24px 0 0;
  font-family: "Poppins", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: .02em;
}

.intro-subtitle span {
  color: #bbbbbb;
}

.intro-subtitle .dot {
  color: var(--gold-2);
  margin: 0 6px;
}

.intro-text {
  max-width: 560px;
  margin: 14px 0 0;
  color: #bbbbbb;
  font-family: "Poppins", Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.7;
  font-size: 1.02rem;
}

.intro-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(6, 10, 18, .55);
  border: 1px solid rgba(255, 255, 255, .08);
  width: fit-content;
}

.intro-tool {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.intro-tool img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.intro-tool:hover,
.intro-tool:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 216, 77, .5);
  background: linear-gradient(180deg, rgba(255, 216, 77, .22), rgba(255, 255, 255, .04));
}

.enter-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  padding: 16px 26px;
  background: rgba(255,255,255,.05);
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 15px 32px rgba(0, 0, 0, .26);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.enter-button {
  margin-top: 30px;
  min-width: 290px;
  position: relative;
}

.enter-button:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 216, 77, .45);
}

/* SITE PRINCIPAL */

.site {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 34px);
  background: rgba(4, 8, 16, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 950;
  font-size: 1.28rem;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,216,77,.26);
  background: rgba(255,216,77,.08);
}

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

.nav-menu a {
  text-decoration: none;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  padding: 10px 13px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
  background: rgba(255,255,255,.075);
}

.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.section-space {
  padding: clamp(54px, 8vw, 90px) clamp(16px, 4vw, 34px);
}

.hero {
  width: min(var(--max), 100%);
  min-height: calc(100svh - 74px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .8fr);
  gap: 26px;
  align-items: center;
}

.hero-card,
.smart-preview,
.section,
.product-card,
.glass-card,
.info-card,
.download-panel {
  border: 1px solid rgba(255,255,255,.085);
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .26);
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 52px);
}

.hero-card h2,
.section-head h2,
.contact h2 {
  margin: 14px 0 0;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 950;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button.primary {
  background: linear-gradient(180deg, #ffdf64, #d9b437);
  color: #07101e;
  border-color: rgba(255, 228, 126, .42);
}

.button.secondary {
  background: rgba(255, 255, 255, .045);
}

.button.full {
  width: 100%;
}

.smart-preview {
  border-radius: var(--radius-xl);
  padding: 24px;
  background:
    radial-gradient(circle at 70% 0%, rgba(255,216,77,.10), transparent 36%),
    rgba(10, 16, 28, .82);
}

.preview-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.preview-top span {
  color: var(--muted);
}

.preview-top strong {
  color: var(--gold);
}

.preview-stats {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.preview-stats article {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255,216,77,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.preview-stats span {
  color: var(--muted);
}

.preview-chart {
  height: 230px;
  display: flex;
  align-items: end;
  gap: 13px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    rgba(255,255,255,.025);
  background-size: 100% 46px;
  border: 1px solid rgba(255,255,255,.075);
}

.preview-chart span {
  flex: 1;
  min-width: 20px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 26px;
  border-radius: var(--radius-xl);
}

.section-head {
  max-width: 820px;
}

.section-head h2,
.contact h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.section-head p,
.glass-card p,
.info-card p,
.product-info p,
.download-panel p,
.contact p {
  color: var(--muted);
  line-height: 1.8;
}

.glass-card {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  padding: 24px;
}

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

.info-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--panel-2);
  transition: transform .18s ease, border-color .18s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,216,77,.24);
}

.card-icon {
  color: var(--gold);
  font-size: 1.45rem;
}

.tools-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.tools-row a {
  min-height: 56px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.085);
  background: rgba(255,255,255,.035);
  font-weight: 900;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 24px;
  margin-top: 26px;
  border-radius: var(--radius-xl);
  padding: 24px;
}

.product-badge,
.status {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255,216,77,.075);
  border: 1px solid rgba(255,216,77,.18);
  font-weight: 900;
}

.product-info h3 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 18px 0 10px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 20px 0;
  gap: 10px;
}

.feature-list li {
  padding: 10px 12px;
  border: 1px solid rgba(255,216,77,.16);
  border-radius: 10px;
  background: rgba(255,216,77,.055);
}

.requirements {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,216,77,.18);
  background: rgba(255,216,77,.05);
}

.requirements h4 {
  margin: 0 0 10px;
  color: var(--gold);
}

.requirements ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.requirements p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
  word-break: break-word;
}

.requirements p:last-child {
  margin-bottom: 0;
}

.requirements code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .28);
  color: var(--gold);
  font-size: .82em;
}

.download-panel {
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  height: fit-content;
  position: sticky;
  top: 96px;
}

.download-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px solid rgba(255,216,77,.24);
  background: rgba(255,216,77,.08);
  color: var(--gold);
  font-size: 2rem;
  font-weight: 950;
}

.download-panel .button {
  margin-top: 12px;
}

.download-panel small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  text-align: center;
}

.footer {
  padding: 20px 16px 44px;
  text-align: center;
  color: rgba(255,255,255,.60);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 1000px) {
  .hero,
  .product-card {
    grid-template-columns: 1fr;
  }

  .download-panel {
    position: static;
  }

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

  .tools-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  body::before {
    background-size: 42px 42px;
    opacity: .12;
  }

  .intro-screen {
    padding: 18px 12px;
  }

  .intro-panel {
    min-height: auto;
    padding: 12px;
    border-radius: 28px;
  }

  .intro-content {
    width: 100%;
    padding: 34px 18px 26px;
  }

  .intro-label,
  .section-tag {
    font-size: .76rem;
    letter-spacing: .18em;
  }

  .intro-content h1 {
    color: var(--text);
    -webkit-text-stroke: 0;
    text-shadow: 0 12px 28px rgba(0,0,0,.35);
    font-size: clamp(2.8rem, 14vw, 4.4rem);
    line-height: 1;
  }

  /* Os 6 ícones numa linha só, sem quebrar em 4+2 */
  .intro-tools {
    flex-wrap: nowrap;
    gap: 5px;
    padding: 5px;
    width: fit-content;
    max-width: 100%;
  }

  .intro-tool {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex: none;
  }

  .intro-tool img {
    width: 20px;
    height: 20px;
  }

  .intro-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .intro-text {
    font-size: .96rem;
    line-height: 1.65;
  }

  .enter-button,
  .button {
    width: 100%;
    padding: 15px 18px;
  }

  .topbar {
    padding: 12px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .menu-button {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(6, 10, 18, .96);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    text-align: center;
  }

  .section-space {
    padding: 46px 12px;
  }

  .hero {
    min-height: auto;
    gap: 18px;
  }

  .hero-card,
  .smart-preview,
  .section,
  .product-card {
    border-radius: 26px;
  }

  .hero-card {
    padding: 28px 18px;
  }

  .hero-card h2,
  .section-head h2,
  .contact h2 {
    font-size: clamp(2.25rem, 13vw, 4rem);
  }

  .hero-text,
  .section-head p {
    font-size: .98rem;
  }

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

  .preview-chart {
    height: 170px;
  }

  .section {
    width: calc(100% - 20px);
    padding: 26px 18px;
  }

  .cards-grid,
  .tools-row,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .tools-row a {
    min-height: 50px;
  }

  .product-card {
    padding: 18px;
  }

  .download-logo {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}


/* AJUSTES 1.0.4 */

/* Remove o visual do SC no topo: agora fica só o nome */
.brand {
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.brand:hover {
  filter: brightness(1.08);
}

/* Gráfico do painel com movimento suave */
.preview-chart span {
  animation: barFloat 2.8s ease-in-out infinite;
  transform-origin: bottom;
}

.preview-chart span:nth-child(2) {
  animation-delay: .18s;
}

.preview-chart span:nth-child(3) {
  animation-delay: .34s;
}

.preview-chart span:nth-child(4) {
  animation-delay: .52s;
}

.preview-chart span:nth-child(5) {
  animation-delay: .70s;
}

.preview-chart span:nth-child(6) {
  animation-delay: .88s;
}

@keyframes barFloat {
  0%, 100% {
    transform: scaleY(0.92);
    filter: brightness(0.95);
  }

  50% {
    transform: scaleY(1.08);
    filter: brightness(1.18);
  }
}

/* Seção de apoio */
.support-section {
  position: relative;
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .75fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 26px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 216, 77, .20);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 216, 77, .11), transparent 34%),
    rgba(10, 16, 28, .78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.support-info h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.support-info p {
  color: var(--muted);
  line-height: 1.8;
}

.pix-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 216, 77, .22);
  background:
    linear-gradient(180deg, rgba(255, 216, 77, .08), rgba(255,255,255,.025));
  text-align: center;
}

.pix-box span {
  color: var(--muted);
  font-weight: 800;
}

.pix-box strong {
  display: block;
  padding: 14px 12px;
  border-radius: 16px;
  color: var(--gold);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  word-break: break-all;
}

.pix-box small {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .brand {
    font-size: 1.18rem;
  }

  .support-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .pix-box {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preview-chart span {
    animation: none;
  }
}
/* Logo no topo */
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
}

/* Logo no card de download */
.download-logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
  border-radius: 22px;
}

/* Hover mais bonito nos botões principais */
.enter-button:hover,
.main-button:hover,
.button:hover {
  background: linear-gradient(180deg, #ffe680, #d9b437);
  color: #07101e;
  border-color: rgba(255, 216, 77, 0.65);
  box-shadow:
    0 0 0 1px rgba(255, 216, 77, 0.25),
    0 18px 44px rgba(255, 216, 77, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.38);
}

/* Hover nos links do menu */
.nav-menu a:hover,
.nav-menu a.active {
  background: linear-gradient(180deg, rgba(255, 216, 77, 0.22), rgba(255, 216, 77, 0.08));
  color: #ffd84d;
}

/* Hover nos cards */
.info-card:hover,
.glass-card:hover,
.product-card:hover,
.smart-preview:hover,
.dashboard-preview:hover {
  border-color: rgba(255, 216, 77, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 216, 77, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.35);
}

/* Mobile */
@media (max-width: 760px) {
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .download-logo-img {
    width: 78px;
    height: 78px;
  }
}
/* Botões não começam amarelos */
.button.primary,
.enter-button,
.main-button {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
}

/* Só fica amarelo quando passa o mouse */
.button.primary:hover,
.button.secondary:hover,
.enter-button:hover,
.main-button:hover,
.nav-menu a:hover,
.nav-menu a.active {
  background: linear-gradient(180deg, #ffe680, #d9b437) !important;
  color: #07101e !important;
  border-color: rgba(255, 216, 77, 0.65) !important;
  box-shadow:
    0 0 0 1px rgba(255, 216, 77, 0.25),
    0 18px 44px rgba(255, 216, 77, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.38) !important;
}

/* Ferramentas depois de entrar na experiência */
.tools-row a {
  transition: 0.2s ease;
}

.tools-row a:hover {
  background: linear-gradient(180deg, rgba(255, 216, 77, 0.25), rgba(255, 255, 255, 0.05)) !important;
  color: #ffd84d !important;
  border-color: rgba(255, 216, 77, 0.65) !important;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 216, 77, 0.18),
    0 18px 42px rgba(255, 216, 77, 0.12),
    0 20px 46px rgba(0, 0, 0, 0.35);
}

/* =========================
   AJUSTES FINAIS 1.0.6
   Compatível com script.js novo
   ========================= */

/* Transição da tela inicial */
.intro-screen {
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
}

.intro-screen.intro-exit {
  opacity: 0;
  transform: scale(1.015);
  visibility: hidden;
  pointer-events: none;
}

/* Site principal aparece suave */
.site {
  opacity: 1;
  transition: opacity 0.45s ease;
}

.site.hidden {
  display: none !important;
}

.site.site-visible {
  opacity: 1;
}

/* Corrige logo do topo */
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* Corrige logo do card de download */
.download-logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
  border-radius: 22px;
}

/* Botões começam escuros, não amarelos */
.button.primary,
.button.secondary,
.enter-button {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
}

/* Só ficam dourados no hover */
.button.primary:hover,
.button.secondary:hover,
.enter-button:hover {
  background: linear-gradient(180deg, #ffe680, #d9b437) !important;
  color: #07101e !important;
  border-color: rgba(255, 216, 77, 0.65) !important;
  box-shadow:
    0 0 0 1px rgba(255, 216, 77, 0.25),
    0 18px 44px rgba(255, 216, 77, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.38) !important;
}

/* Seta do botão também muda no hover */
.enter-button:hover span {
  color: #07101e !important;
}

/* Link ativo do menu */
.nav-menu a.active {
  background: linear-gradient(180deg, rgba(255, 216, 77, 0.24), rgba(255, 216, 77, 0.08)) !important;
  color: #ffd84d !important;
}

/* Hover das ferramentas após entrar no site */
.tools-row a {
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.tools-row a:hover {
  background: linear-gradient(180deg, rgba(255, 216, 77, 0.25), rgba(255, 255, 255, 0.05)) !important;
  color: #ffd84d !important;
  border-color: rgba(255, 216, 77, 0.65) !important;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 216, 77, 0.18),
    0 18px 42px rgba(255, 216, 77, 0.12),
    0 20px 46px rgba(0, 0, 0, 0.35);
}

/* Ajuste mobile das logos */
@media (max-width: 760px) {
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .download-logo-img {
    width: 78px;
    height: 78px;
  }
}

/* Alturas das barras do preview-chart (extraídas de style inline por segurança/CSP) */
.preview-chart .bar-h-42 { height: 42%; }
.preview-chart .bar-h-58 { height: 58%; }
.preview-chart .bar-h-48 { height: 48%; }
.preview-chart .bar-h-72 { height: 72%; }
.preview-chart .bar-h-64 { height: 64%; }
.preview-chart .bar-h-88 { height: 88%; }

/* =========================
   Redesign dos cards de app (SmartCapital / Onyx)
   Card único, mobile-first, ícone em destaque (clicável e reativo no
   hover), chip de plataforma pra separar Windows x Android sem mudar
   a paleta de cores, e uma fileira de barrinhas decorativas animadas
   (gráfico dinâmico) reaproveitando o mesmo espírito do preview-chart.
   Substitui o antigo .product-card / .download-panel lado a lado.
   ========================= */

.app-tile {
  margin-top: 26px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, .085);
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .26);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.app-tile:hover {
  border-color: rgba(255, 216, 77, .30);
  box-shadow: 0 0 0 1px rgba(255, 216, 77, .07), 0 24px 70px rgba(0, 0, 0, .32);
}

.app-tile-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.app-icon-link {
  position: relative;
  display: inline-flex;
  flex: none;
  width: 88px;
  height: 88px;
  border-radius: 26px;
}

.app-icon-frame {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.app-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  display: block;
}

.app-icon-link:hover .app-icon-frame,
.app-icon-link:focus-visible .app-icon-frame {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(255, 216, 77, .55);
  box-shadow:
    0 18px 44px rgba(255, 216, 77, .20),
    0 10px 30px rgba(0, 0, 0, .35);
}

.app-icon-link:focus-visible {
  outline: 2px solid rgba(255, 216, 77, .65);
  outline-offset: 3px;
  border-radius: 26px;
}

.badge-new {
  position: absolute;
  top: -8px;
  right: -10px;
  background: linear-gradient(180deg, #ffe680, #d9b437);
  color: #07101e;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 3px 9px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
  pointer-events: none;
}

.app-tile-heading {
  min-width: 0;
  flex: 1 1 220px;
}

.app-tile-heading h3 {
  margin: 8px 0 4px;
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  line-height: 1.15;
}

.app-tile-tagline {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Chip de plataforma: só diferencia Windows x Android, sem tocar na
   paleta principal — usa o azul e o verde que já existem no design
   (gradiente de fundo do body e var(--green)) só nesse detalhe. */
.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.platform-chip svg {
  flex: none;
}

.platform-windows {
  color: #8fc4ff;
  background: rgba(45, 122, 255, .12);
  border: 1px solid rgba(45, 122, 255, .28);
}

.platform-android {
  color: #8fc4ff;
  background: rgba(45, 122, 255, .12);
  border: 1px solid rgba(45, 122, 255, .28);
}

.app-tile > .product-badge {
  margin-top: 22px;
}

/* Grupo do botão de baixar + setinha de versões anteriores */
.sc-download-group {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.sc-download-group .button {
  flex: 1;
}

.sc-versoes-toggle {
  flex: none;
  width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.sc-versoes-toggle:hover {
  background: rgba(255, 255, 255, .09);
}

.sc-versoes-toggle svg {
  transition: transform .2s ease;
}

.sc-versoes-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.sc-versoes-dropdown {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
}

.sc-versoes-dropdown p {
  margin: 0;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

.sc-versoes-dropdown p + p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.sc-versoes-dropdown strong {
  color: var(--text);
}

.app-tile-desc {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.app-tile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.app-tile > small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.6;
}


@media (max-width: 760px) {
  .app-tile {
    padding: 20px;
  }

  .app-tile-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   TAREFA A — animação de entrada da tela inicial
   Timeline replicado do vídeo de referência (frames extraídos a 10-12fps
   e comparados pixel a pixel — ver PROMPT 6). Nenhum destes elementos
   recebe opacity/transform fora do @keyframes: assim, se a animação for
   desligada (prefers-reduced-motion, já coberto pelo bloco global no
   topo do arquivo), o elemento cai de volta pro estado normal (visível),
   em vez de ficar invisível.
   O botão (.enter-button) NÃO anima — no vídeo ele já existe, estático,
   desde o primeiro frame.
   ========================= */

/* 0.0s–0.15s: tag + linha dourada "se desenhando" */
@keyframes introTagIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.intro-content .intro-label {
  animation: introTagIn .2s ease-out both;
}

@keyframes introLineDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.intro-label-line {
  animation: introLineDraw .2s ease-out .02s both;
}

/* ~0.15s–0.35s: título "assenta" rápido (aproximação de motion blur:
   slide curto + fade, ease-out agressivo) */
@keyframes introSnapIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.intro-content h1 .intro-name-a {
  display: inline-block;
  animation: introSnapIn .22s cubic-bezier(.16, .9, .2, 1) .14s both;
}

.intro-content h1 .intro-name-b {
  display: inline-block;
  animation: introSnapIn .22s cubic-bezier(.16, .9, .2, 1) .20s both;
}

/* 0.1s–0.6s: subtítulo e texto ganham opacidade aos poucos (mais lento
   que o título, sem slide) */
@keyframes introGradualFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.intro-subtitle {
  animation: introGradualFade .5s ease .10s both;
}

.intro-text {
  animation: introGradualFade .5s ease .18s both;
}

/* Ícones em cascata da esquerda pra direita, ~70ms entre cada um */
.intro-tool {
  animation: introSnapIn .22s cubic-bezier(.16, .9, .2, 1) both;
}

.intro-tool:nth-child(1) { animation-delay: .12s; }
.intro-tool:nth-child(2) { animation-delay: .19s; }
.intro-tool:nth-child(3) { animation-delay: .26s; }
.intro-tool:nth-child(4) { animation-delay: .33s; }
.intro-tool:nth-child(5) { animation-delay: .40s; }
.intro-tool:nth-child(6) { animation-delay: .47s; }

/* =========================
   TAREFA B — borboleta seguindo o mouse
   Frames reais em assets/borboleta/frame1..6.png (200x200, transparente).
   Posicionada via JS (translate3d + rotate), nunca via CSS transition,
   pra não brigar com o lerp do rAF.
   ========================= */

.butterfly {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(32px, 3vw, 44px);
  height: clamp(32px, 3vw, 44px);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  will-change: transform;
}

.butterfly.is-active {
  opacity: 1;
}

.butterfly-img {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: 50% 50%;
}

/* Em touch (sem mouse) ela fica em modo autopiloto, voando aleatoriamente
   (ver script.js) — só é desligada de verdade com prefers-reduced-motion. */

@media (prefers-reduced-motion: reduce) {
  .butterfly {
    display: none !important;
  }
}

/* SMARTCAPITAL WEB — visualizador client-side (ver smartcapital-online.js) */

.sc-online {
  margin-top: 18px;
}

.sc-online-toggle {
  display: inline-flex;
}

.sc-online-panel {
  margin-top: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--panel-2);
}

.sc-online-note {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
  font-size: .94rem;
}

.sc-online-note strong {
  color: var(--gold);
}

.sc-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 18px;
  border: 1.5px dashed rgba(255, 216, 77, .35);
  border-radius: 18px;
  background: rgba(255, 216, 77, .035);
  text-align: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}

.sc-dropzone:hover,
.sc-dropzone:focus-visible,
.sc-dropzone.sc-dropzone-active {
  border-color: rgba(255, 216, 77, .7);
  background: rgba(255, 216, 77, .08);
  outline: none;
}

.sc-dropzone-main {
  margin: 0;
  font-weight: 800;
  color: var(--text);
}

.sc-dropzone-hint {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.sc-link-btn {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 800;
  cursor: pointer;
}

.sc-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .92rem;
}

.sc-status.sc-status-loading {
  color: var(--muted);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--stroke-soft);
}

.sc-status.sc-status-error {
  color: var(--red);
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .3);
}

.sc-results {
  margin-top: 20px;
}

.sc-results-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.sc-file-meta {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}

.sc-file-meta strong {
  color: var(--text);
}

.sc-results-head .button {
  padding: 10px 18px;
  width: auto;
}

.sc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.sc-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke-soft);
  background: var(--panel);
}

.sc-card-label {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.sc-card-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
}

.sc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.sc-tab {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke-soft);
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  font-size: .88rem;
  cursor: pointer;
  transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.sc-tab:hover {
  color: var(--text);
}

.sc-tab.active {
  color: #07101e;
  background: linear-gradient(180deg, #ffdf64, #d9b437);
  border-color: rgba(255, 228, 126, .42);
}

.sc-tab-panel {
  display: none;
}

.sc-tab-panel.active {
  display: block;
}

.sc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.sc-input {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--stroke-soft);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font: inherit;
  font-size: .9rem;
}

.sc-input:focus {
  outline: none;
  border-color: rgba(255, 216, 77, .5);
}

.sc-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--stroke-soft);
}

.sc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  white-space: nowrap;
}

.sc-table th,
.sc-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--stroke-soft);
}

.sc-table th {
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgba(255, 255, 255, .03);
  position: sticky;
  top: 0;
}

.sc-table tr:last-child td {
  border-bottom: none;
}

.sc-table tr:hover td {
  background: rgba(255, 255, 255, .025);
}

.sc-empty {
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.sc-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.sc-tag-quitada {
  color: var(--green);
  background: rgba(34, 197, 94, .12);
}

.sc-tag-atrasada {
  color: var(--red);
  background: rgba(239, 68, 68, .12);
}

.sc-tag-proxima {
  color: #facc15;
  background: rgba(250, 204, 21, .12);
}

.sc-tag-media {
  color: #38bdf8;
  background: rgba(56, 189, 248, .12);
}

.sc-tag-normal {
  color: var(--muted);
  background: rgba(255, 255, 255, .05);
}

@media (max-width: 760px) {
  .sc-dropzone {
    padding: 24px 14px;
  }

  .sc-results-head {
    flex-direction: column;
    align-items: stretch;
  }

  .sc-results-head .button {
    width: 100%;
  }
}
