:root {
  --ink: #171411;
  --ink-soft: #211d19;
  --paper: #f4f0e9;
  --paper-2: #fffcf6;
  --muted: #b7afa4;
  --line: rgba(255,255,255,.12);
  --accent: #f2772e;
  --accent-deep: #c94f17;
  --amber: #ffb347;
  --success: #62d59d;
  --danger: #ff8f7e;
  --shadow: 0 28px 80px rgba(0,0,0,.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button, input { font: inherit; }
button { cursor: pointer; }
.shell { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 25%, rgba(242,119,46,.15), transparent 33%),
    linear-gradient(145deg, #171411 0%, #12110f 72%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.ambient { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .22; pointer-events: none; }
.ambient-one { width: 260px; height: 260px; background: var(--accent); top: 20%; right: -100px; }
.ambient-two { width: 190px; height: 190px; background: #7b210d; bottom: 12%; left: -80px; }

.site-header { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; padding-block: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; }
.brand-logo { width: 158px; height: auto; }
.brand-mark { position: relative; display: grid; place-items: center; width: 40px; aspect-ratio: 1; background: var(--accent); color: #171411; clip-path: polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%); font-weight: 950; }
.brand-mark::after { content: ""; position: absolute; inset: 4px; border: 1px solid rgba(23,20,17,.45); clip-path: inherit; }
.brand-mark span { position: relative; z-index: 1; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 1.1rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: #aaa299; font-size: .68rem; letter-spacing: .055em; }
.header-note { display: none; color: #a9a198; font-size: .8rem; }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 32px; padding-top: 38px; padding-bottom: 62px; }
.hero-copy { max-width: 760px; }
.eyebrow, .section-kicker { margin: 0 0 18px; color: #e5c5ad; text-transform: uppercase; font-size: .75rem; font-weight: 800; letter-spacing: .15em; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 2px; background: var(--accent); }
h1 { margin: 0; max-width: 760px; font-size: clamp(2.7rem, 12vw, 6.1rem); line-height: .93; letter-spacing: -.065em; font-weight: 820; text-wrap: balance; }
h1 em { display: block; color: var(--accent); font-style: normal; font-weight: 820; }
.subheadline { max-width: 650px; margin: 25px 0 0; color: #c7c0b8; font-size: clamp(1.05rem, 2.5vw, 1.25rem); line-height: 1.55; }
.proof-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.proof-row span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: #d7d1ca; font-size: .78rem; }
.proof-row span::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(242,119,46,.14); }

.lead-card { background: var(--paper-2); color: var(--ink); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.5); }
.step-label { display: inline-block; margin-bottom: 11px; color: var(--accent-deep); text-transform: uppercase; font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.lead-card h2 { margin: 0; font-size: clamp(1.45rem, 5vw, 2rem); line-height: 1.08; letter-spacing: -.035em; }
.lead-card-head > p { margin: 10px 0 21px; color: #6d665f; font-size: .92rem; }
.field-group { position: relative; margin-bottom: 15px; }
.field-group label { display: block; margin: 0 0 7px; font-size: .82rem; font-weight: 750; }
.field-group input { width: 100%; height: 51px; padding: 0 14px; color: var(--ink); background: #fff; border: 1px solid #d9d1c6; border-radius: 11px; outline: none; transition: border-color .18s, box-shadow .18s; }
.field-group input::placeholder { color: #a39c94; }
.field-group input:hover { border-color: #bdb3a7; }
.field-group input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(242,119,46,.13); }
.field-group input[aria-invalid="true"] { border-color: #d95c49; box-shadow: 0 0 0 3px rgba(217,92,73,.1); }
.field-hint { display: block; margin-top: 6px; color: #847d75; font-size: .72rem; }
.field-error { display: none; margin-top: 6px; color: #b93827; font-size: .74rem; font-weight: 650; }
.field-error:not(:empty) { display: block; }
.cta { width: 100%; min-height: 57px; display: flex; align-items: center; justify-content: center; gap: 11px; padding: 13px 17px; border: 0; border-radius: 12px; background: linear-gradient(135deg, var(--accent), #e75b1e); color: #fff; font-size: .9rem; font-weight: 900; text-transform: uppercase; letter-spacing: .03em; box-shadow: 0 13px 28px rgba(201,79,23,.27); transition: transform .18s, box-shadow .18s; }
.cta svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .18s; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 17px 32px rgba(201,79,23,.34); }
.cta:hover svg { transform: translateX(3px); }
.cta:focus-visible { outline: 3px solid #171411; outline-offset: 3px; }
.privacy-note { display: flex; align-items: flex-start; justify-content: center; gap: 7px; margin: 13px auto 0; max-width: 330px; color: #817a72; font-size: .69rem; line-height: 1.45; text-align: center; }
.privacy-note svg { width: 14px; min-width: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.form-status { display: none; margin-top: 14px; padding: 11px 12px; border-radius: 10px; background: #e8f7ef; color: #17633e; font-size: .8rem; line-height: 1.4; }
.form-status.is-visible { display: block; }

.product-stage { position: relative; min-height: 325px; margin-top: 42px; }
.demo-badge { position: absolute; z-index: 7; top: 0; left: 0; display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(18,17,15,.9); border: 1px solid rgba(255,255,255,.14); color: #eee8e1; font-size: .71rem; backdrop-filter: blur(12px); }
.demo-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(98,213,157,.11); }
.laptop { position: absolute; width: 86%; right: 2%; bottom: 16px; filter: drop-shadow(0 25px 32px rgba(0,0,0,.45)); }
.laptop-screen { position: relative; display: block; width: 100%; padding: 5px; overflow: hidden; border-radius: 13px 13px 7px 7px; background: #282421; border: 1px solid #59514a; color: inherit; text-align: left; cursor: zoom-in; appearance: none; }
.laptop-screen:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
.laptop-screen::after { content: ""; position: absolute; inset: 0; background: rgba(242,119,46,0); transition: background .18s ease; pointer-events: none; }
.laptop-screen:hover::after { background: rgba(242,119,46,.05); }
.browser-bar { height: 20px; display: flex; align-items: center; gap: 4px; padding: 0 7px; background: #272321; color: #877f77; font-size: 5px; }
.browser-bar i { width: 4px; height: 4px; border-radius: 50%; background: #665d55; }
.browser-bar span { margin-left: 7px; }
.desktop-demo { position: relative; overflow: hidden; aspect-ratio: 16/9; background: #0c0b0a; }
.desktop-demo > img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .92; }
.desktop-demo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #0c0b0a 0%, rgba(12,11,10,.86) 38%, transparent 75%); }
.desktop-nav { position: absolute; z-index: 2; inset: 0 0 auto; height: 17%; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; background: rgba(12,11,10,.82); color: #aea49b; font-size: 5px; }
.desktop-nav img { width: 23%; height: auto; }
.desktop-nav b { padding: 5px 7px; border-radius: 3px; background: var(--accent); color: #fff; font-size: 5px; }
.desktop-copy { position: absolute; z-index: 3; top: 28%; left: 6%; }
.desktop-copy small { display: block; color: var(--accent); font-size: 4px; font-weight: 900; letter-spacing: .09em; }
.desktop-copy > strong { display: block; margin-top: 5px; color: #fff7ed; font-size: clamp(15px, 4.7vw, 39px); line-height: .85; letter-spacing: -.06em; }
.desktop-copy > strong span { color: var(--accent); }
.desktop-copy p { margin: 6px 0 8px; color: #c1b9b2; font-size: clamp(4px, 1.2vw, 9px); }
.desktop-copy > b { display: inline-block; padding: 5px 7px; border-radius: 3px; background: var(--accent); color: white; font-size: 5px; }
.laptop-base { width: 106%; height: 10px; margin-left: -3%; border-radius: 1px 1px 12px 12px; background: linear-gradient(#9a928c, #45403c); clip-path: polygon(3% 0,97% 0,100% 70%,97% 100%,3% 100%,0 70%); }
.zoom-hint { position: absolute; z-index: 3; right: 14px; bottom: 14px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(15,13,11,.84); color: #fff; font-size: .68rem; font-weight: 800; backdrop-filter: blur(10px); }

.phone { position: absolute; z-index: 5; width: 26%; max-width: 170px; left: 0; bottom: 0; padding: 5px; border-radius: 22px; background: #171513; border: 1px solid #5a534d; box-shadow: 0 22px 45px rgba(0,0,0,.5); }
.phone-speaker { position: absolute; z-index: 3; top: 9px; left: 50%; width: 34%; height: 7px; transform: translateX(-50%); background: #111; border-radius: 0 0 7px 7px; }
.phone-screen { overflow: hidden; aspect-ratio: 591/1280; background: #090807; border-radius: 17px; }
.mobile-hero { height: 31%; overflow: hidden; background: #111; }
.mobile-hero img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
.mobile-demo-copy { padding: 10px 7px; color: #171411; }
.mobile-demo-copy > small { display: block; color: var(--accent-deep); font-size: 4px; font-weight: 900; letter-spacing: .12em; }
.mobile-demo-copy > strong { display: block; margin-top: 2px; font-size: clamp(7px, 2.2vw, 13px); }
.mobile-tabs { display: flex; gap: 4px; margin: 7px 0; font-size: 4px; }
.mobile-tabs > * { padding: 3px 4px; border-radius: 7px; background: #eae3da; }
.mobile-tabs b { background: var(--accent); color: white; }
.menu-card { display: flex; gap: 5px; margin-top: 5px; padding: 5px; border-radius: 6px; background: white; box-shadow: 0 3px 10px rgba(45,35,29,.1); }
.menu-card i { display: block; width: 31%; aspect-ratio: 1; border-radius: 4px; background: linear-gradient(145deg,#412116,#f2772e); }
.menu-card div { display: flex; flex: 1; flex-direction: column; gap: 2px; min-width: 0; }
.menu-card b { font-size: clamp(4px, 1.2vw, 7px); }
.menu-card small { color: #7b736b; font-size: clamp(3px, .8vw, 5px); }
.menu-card strong { margin-top: auto; color: var(--accent-deep); font-size: clamp(4px, 1vw, 6px); }
.floating-card { position: absolute; z-index: 8; display: none; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 13px; background: rgba(255,252,246,.96); color: var(--ink); box-shadow: 0 14px 38px rgba(0,0,0,.28); }
.floating-card .mini-icon { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; background: #fbe4d4; color: var(--accent-deep); font-size: .73rem; font-weight: 900; }
.floating-card div { display: flex; flex-direction: column; }
.floating-card small { color: #7c756f; font-size: .56rem; }
.floating-card strong { margin-top: 2px; font-size: .68rem; }

/* Captura real da loja: recorte o chrome do navegador e preserva a área útil do sistema. */
.storefront-shot {
  width: 100%;
  aspect-ratio: 1366 / 607;
  object-fit: contain;
  object-position: center;
  border-radius: 0 0 4px 4px;
}
.phone-crop {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.management {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 45%, rgba(242,119,46,.12), transparent 30%),
    #100f0d;
  border-top: 1px solid rgba(255,255,255,.08);
}
.management::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 54px 54px;
}
.management-grid { position: relative; z-index: 1; display: grid; gap: 40px; padding-block: 72px; }
.management-copy { max-width: 620px; }
.management h2 { margin: 0; font-size: clamp(2.3rem, 10vw, 4.7rem); line-height: .96; letter-spacing: -.06em; }
.management h2 span { color: var(--accent); }
.management-copy > p:not(.section-kicker) { margin: 22px 0 0; max-width: 540px; color: #bcb4ac; font-size: 1rem; line-height: 1.65; }
.management-features { display: grid; gap: 10px; margin-top: 31px; }
.management-features article { display: flex; gap: 14px; align-items: flex-start; padding: 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.035); }
.management-features article > span { display: grid; place-items: center; min-width: 31px; height: 31px; border-radius: 9px; background: rgba(242,119,46,.13); color: #ff9b5f; font-size: .66rem; font-weight: 900; letter-spacing: .06em; }
.management-features article div { display: flex; flex-direction: column; gap: 4px; }
.management-features strong { color: #f9f4ed; font-size: .91rem; }
.management-features small { color: #9f978f; font-size: .76rem; line-height: 1.45; }
.admin-visual { margin: 0; align-self: center; }
.admin-window { overflow: hidden; width: 100%; padding: 5px; border: 1px solid #4d4640; border-radius: 15px; background: #292521; box-shadow: 0 34px 80px rgba(0,0,0,.5); }
.admin-window .browser-bar { border-radius: 9px 9px 0 0; }
.admin-image-button { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; border-radius: 0 0 8px 8px; background: transparent; color: inherit; text-align: left; cursor: zoom-in; appearance: none; }
.admin-image-button:focus-visible { outline: 3px solid var(--accent); outline-offset: -4px; }
.admin-image-button::after { content: ""; position: absolute; inset: 0; background: rgba(242,119,46,0); transition: background .18s ease; pointer-events: none; }
.admin-image-button:hover::after { background: rgba(242,119,46,.05); }
.admin-window img { display: block; width: 100%; height: auto; aspect-ratio: 1366 / 607; object-fit: contain; object-position: center; border-radius: 0 0 8px 8px; }
.admin-visual figcaption { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 18px; color: #aaa199; font-size: .77rem; }
.admin-visual figcaption span { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(98,213,157,.1); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.lightbox[hidden] { display: none; }
.lightbox { position: fixed; z-index: 1000; inset: 0; display: flex; align-items: center; justify-content: center; padding: 22px; background: rgba(8,7,6,.9); backdrop-filter: blur(12px); }
.lightbox-panel { width: min(1180px, 100%); max-height: calc(100svh - 44px); display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lightbox-panel img { display: block; width: 100%; height: auto; max-height: calc(100svh - 118px); aspect-ratio: 1366 / 607; object-fit: contain; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: #0b0a09; box-shadow: 0 34px 90px rgba(0,0,0,.58); }
.lightbox-close { min-width: 190px; min-height: 48px; padding: 12px 22px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; background: var(--accent); color: white; font-weight: 850; box-shadow: 0 12px 28px rgba(201,79,23,.28); }
.lightbox-close:hover { background: #e66522; }
.lightbox-close:focus-visible { outline: 3px solid white; outline-offset: 3px; }
body.lightbox-open { overflow: hidden; }

.clarity { background: var(--paper); color: var(--ink); }
.clarity-grid { padding-block: 67px; }
.section-kicker { color: var(--accent-deep); }
.clarity h2 { margin: 0; font-size: clamp(2rem, 8vw, 4rem); line-height: .98; letter-spacing: -.055em; }
.clarity-grid > p { max-width: 620px; margin: 22px 0 0; color: #6c655e; font-size: 1.02rem; line-height: 1.6; }
.clarity-points { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 38px; }
.clarity-points article { padding: 24px; border: 1px solid #dcd4ca; border-radius: 18px; background: rgba(255,255,255,.45); }
.clarity-points article > span { color: var(--accent-deep); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.clarity-points h3 { margin: 22px 0 7px; font-size: 1.1rem; }
.clarity-points p { margin: 0; color: #6f6860; font-size: .9rem; line-height: 1.5; }

footer { background: #100f0d; }
.footer-inner { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; padding-block: 28px; }
.brand-footer .brand-logo { width: 142px; }
.footer-inner > p { margin: 0; color: #7f7770; font-size: .72rem; }

@media (min-width: 560px) {
  .shell { width: min(1180px, calc(100% - 64px)); }
  .header-note { display: block; }
  .brand-logo { width: 178px; }
  .lead-card { padding: 30px; }
  .product-stage { min-height: 430px; margin-top: 52px; }
  .laptop { width: 82%; right: 4%; }
  .phone { width: 23%; }
  .floating-card { display: flex; }
  .card-orders { right: 1%; bottom: 17%; }
  .card-brand { left: 13%; bottom: 2%; }
  .management-features { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .clarity-points { grid-template-columns: repeat(3,1fr); }
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 960px) {
  .site-header { padding-block: 30px; }
  .hero-grid { grid-template-columns: minmax(0, 1.28fr) minmax(330px, .72fr); column-gap: 58px; padding-top: 60px; padding-bottom: 82px; }
  .hero-copy { padding-top: 22px; }
  h1 { font-size: clamp(4.3rem, 6.25vw, 6rem); }
  .lead-card { align-self: start; }
  .product-stage { grid-column: 1/-1; min-height: 490px; margin-top: 120px; }
  .laptop { width: 66%; right: 12%; bottom: 13px; }
  .phone { width: 14%; max-width: 174px; left: 10%; }
  .desktop-copy > strong { font-size: clamp(34px, 4.7vw, 55px); }
  .desktop-copy small { font-size: 7px; }
  .desktop-copy p { font-size: 11px; }
  .desktop-copy > b, .desktop-nav b, .desktop-nav { font-size: 8px; }
  .browser-bar { height: 25px; font-size: 7px; }
  .browser-bar i { width: 6px; height: 6px; }
  .card-orders { right: 0; bottom: 23%; }
  .card-brand { left: 17%; bottom: 0; }
  .management-grid { grid-template-columns: minmax(340px,.74fr) minmax(0,1.26fr); align-items: center; gap: 60px; padding-block: 105px; }
  .management-features { grid-template-columns: 1fr; }
  .clarity-grid { display: grid; grid-template-columns: 1fr .68fr; gap: 30px 80px; padding-block: 94px; }
  .clarity-grid > p { margin: 28px 0 0; }
  .clarity-points { grid-column: 1/-1; margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
