/* Storecast — site de vendas (estático). Marca: gradiente violeta→magenta→rosa. */
:root {
  --bg: #ffffff;
  --fg: #14111c;
  --muted: #6b6577;
  --card: #ffffff;
  --border: #ece9f1;
  --primary: hsl(262 83% 58%);
  --primary-ink: #ffffff;
  --accent-bg: hsl(262 70% 97%);
  --grad: linear-gradient(135deg, hsl(262 83% 60%), hsl(292 82% 60%) 55%, hsl(330 85% 62%));
  --radius: 16px;
  --shadow: 0 10px 30px -12px hsl(262 60% 40% / 0.25);
  --maxw: 1120px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d0b14;
    --fg: #f3f0f9;
    --muted: #a39db3;
    --card: #15121f;
    --border: #241f33;
    --primary: hsl(263 90% 68%);
    --accent-bg: hsl(263 40% 14%);
    --shadow: 0 10px 30px -12px #000a;
  }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg); color: var(--fg); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Botões */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { border-color: var(--border); background: var(--card); color: var(--fg); }
.btn-ghost:hover { background: var(--accent-bg); }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(180%) blur(10px);
  background: color-mix(in srgb, var(--bg) 82%, transparent); border-bottom: 1px solid var(--border);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.brand .logo { width: 34px; height: 34px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; box-shadow: var(--shadow); }
.brand .logo svg { width: 20px; height: 20px; }
nav.top { display: flex; align-items: center; gap: 22px; }
nav.top a.link { color: var(--muted); font-weight: 600; font-size: 14px; }
nav.top a.link:hover { color: var(--fg); }
.nav-links { display: flex; gap: 22px; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* Seções */
section { padding: 84px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; color: var(--primary); }
h1 { font-size: clamp(34px, 6vw, 60px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 850; }
h2 { font-size: clamp(26px, 4vw, 40px); line-height: 1.12; letter-spacing: -0.02em; font-weight: 820; }
h3 { font-size: 19px; font-weight: 750; letter-spacing: -0.01em; }
.lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--muted); max-width: 620px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Hero */
.hero { padding-top: 64px; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; gap: 36px; } }
.hero .cta-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero .note { margin-top: 14px; font-size: 13px; color: var(--muted); }
.mock {
  border-radius: 22px; background: var(--grad); padding: 26px; box-shadow: var(--shadow); color: #fff;
  aspect-ratio: 4 / 3; display: flex; flex-direction: column; justify-content: space-between;
}
.mock .row { display: flex; align-items: center; gap: 10px; }
.mock .eq { display: flex; align-items: flex-end; gap: 3px; height: 28px; }
.mock .eq span { width: 5px; background: #fff; border-radius: 3px; animation: eq 1s ease-in-out infinite; }
.mock .eq span:nth-child(2){ animation-delay:.15s } .mock .eq span:nth-child(3){ animation-delay:.3s } .mock .eq span:nth-child(4){ animation-delay:.45s }
@keyframes eq { 0%,100%{ height:30% } 50%{ height:100% } }
.mock .big { font-size: 26px; font-weight: 800; }
.mock .pill { background: #ffffff2b; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.mock .card2 { background: #ffffff1f; border: 1px solid #ffffff33; border-radius: 14px; padding: 14px; }

/* Grids genéricos */
.grid { display: grid; gap: 22px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cols-3, .cols-4 { grid-template-columns: 1fr; } }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.card .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-bg); color: var(--primary); display: grid; place-items: center; margin-bottom: 14px; }
.card .ico svg { width: 22px; height: 22px; }
.card p { color: var(--muted); margin-top: 6px; font-size: 15px; }
.step-n { font-size: 13px; font-weight: 800; color: var(--primary); }

/* Preços */
.price-card { display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--primary); box-shadow: var(--shadow); position: relative; }
.price-card .tag { position: absolute; top: -11px; right: 18px; background: var(--grad); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.price { font-size: 38px; font-weight: 850; letter-spacing: -0.02em; margin: 6px 0 2px; }
.price small { font-size: 15px; font-weight: 600; color: var(--muted); }
.feat-list { list-style: none; margin: 16px 0 22px; display: grid; gap: 9px; }
.feat-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 15px; }
.feat-list li svg { width: 18px; height: 18px; color: var(--primary); flex: none; margin-top: 3px; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-weight: 800; font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); margin-top: 10px; }

/* CTA band */
.cta-band { background: var(--grad); border-radius: 26px; padding: 56px 32px; text-align: center; color: #fff; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #ffffffd9; }
.cta-band .btn-ghost { background: #fff; color: hsl(262 83% 40%); border: none; }

/* Footer */
footer.site { border-top: 1px solid var(--border); padding: 44px 0; color: var(--muted); font-size: 14px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
footer.site a:hover { color: var(--fg); }
.langswitch a { font-weight: 700; }
.langswitch a[aria-current="true"] { color: var(--primary); }
.mt-2 { margin-top: 10px; } .mt-4 { margin-top: 22px; } .mt-6 { margin-top: 40px; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.reduce { padding-top: 0; }
