/* Tritão — apresentação comercial
   Linha visual herdada do site (website/src/app/globals.css) */

:root {
  --bg: #fcfcfb;
  --surface: #ffffff;
  --fg: #1e1f24;
  --s2: #f9f8f8;
  --s3: #f1efef;
  --s4: #e8e7e7;
  --s6: #d8d8d8;
  --s9: #8d8d8d;
  --s11: #646464;
  --s12: #202020;
  --blue: #0081f2;
  --blue-10: #006fd4;
  --blue-soft: #e8f3fe;
  --green: #15803d;
  --green-soft: #e7f6ec;
  --amber: #b45309;
  --amber-soft: #fcf2e2;
  --red: #c62828;
  --red-soft: #fbecec;
  --purple: #6d3beb;
  --purple-soft: #f0ebfe;
  --r6: 6px;
  --r8: 8px;
  --r12: 12px;
  --ease: cubic-bezier(0.22, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: #f4f2f1;
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

body { display: grid; place-items: center; }

/* ---------- palco 1280x720 escalado ---------- */
#viewport { width: 100vw; height: 100vh; display: grid; place-items: center; }

#stage {
  width: 1280px;
  height: 720px;
  flex: none;
  position: relative;
  background: var(--bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.06);
  transform: scale(var(--s, 1));
  transform-origin: center center;
}

/* ---------- slides ---------- */
.slide {
  position: absolute;
  inset: 0;
  padding: 56px 64px 76px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease);
}

.slide.is-active { opacity: 1; visibility: visible; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--s9);
}

.eyebrow .num {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--s3);
  color: var(--s11);
  font-size: 11px;
  letter-spacing: 0;
}

h1 { margin: 0; font-size: 56px; line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; }
h2 { margin: 0; font-size: 35px; line-height: 1.1; letter-spacing: -0.03em; font-weight: 600; }
h3 { margin: 0; font-size: 18px; line-height: 1.3; letter-spacing: -0.01em; font-weight: 600; }
p  { margin: 0; font-size: 15px; line-height: 1.6; color: var(--s11); }
.lead { font-size: 18px; line-height: 1.55; color: var(--s11); }
.small { font-size: 13px; line-height: 1.5; color: var(--s9); }
strong { font-weight: 600; color: var(--fg); }

.slide-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.slide-head .txt { display: flex; flex-direction: column; gap: 10px; max-width: 660px; }
.slide-head p { max-width: 620px; }

/* animação de entrada em cascata */
.slide.is-active .rise { animation: rise 0.62s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- marca ---------- */
.mark { display: grid; place-items: center; background: var(--s12); border-radius: 8px; }
.mark svg { display: block; }
.mark.lg { width: 68px; height: 68px; border-radius: 20px; }
.mark.md { width: 34px; height: 34px; border-radius: 10px; }
.mark.sm { width: 22px; height: 22px; border-radius: 7px; }
.wordmark { display: flex; align-items: center; gap: 12px; }
.wordmark b { font-size: 20px; letter-spacing: -0.02em; font-weight: 600; }

/* ---------- capa ---------- */
.cover { justify-content: center; gap: 30px; padding: 64px 76px; }
.cover .kicker { display: flex; align-items: center; gap: 14px; }
.cover h1 { max-width: 900px; }
.cover h1 em { font-style: normal; color: var(--blue); }
.cover .meta { display: flex; gap: 28px; align-items: center; margin-top: 8px; }
.cover .meta span { font-size: 13px; color: var(--s9); }
.cover .rule { height: 1px; background: var(--s4); margin: 6px 0 2px; }
.cover-grid { position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
  background-image: linear-gradient(var(--s3) 1px, transparent 1px), linear-gradient(90deg, var(--s3) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(120% 90% at 85% 15%, #000 10%, transparent 70%); }

/* ---------- canvas de mockup / componente ---------- */
.canvas { position: relative; flex: 1; margin-top: 26px; }

.beat {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), filter 0.55s var(--ease);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.slide[data-beat="1"] .beat[data-b="1"],
.slide[data-beat="2"] .beat[data-b="2"],
.slide[data-beat="3"] .beat[data-b="3"] { opacity: 1; transform: none; pointer-events: auto; }
.slide[data-beat="2"] .beat[data-b="1"],
.slide[data-beat="3"] .beat[data-b="1"],
.slide[data-beat="3"] .beat[data-b="2"] { opacity: 0; transform: translateY(-18px) scale(0.955); filter: blur(3px); }

.beat-hint {
  position: absolute; right: 0; bottom: -30px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--s9);
}
.beat-hint kbd {
  font: inherit; font-size: 11px; padding: 2px 6px; border-radius: 5px;
  background: var(--s3); color: var(--s11); border: 1px solid var(--s4);
}

/* mockups */
.shot { margin: 0; width: 100%; position: relative; display: flex; align-items: center; justify-content: center; gap: 18px; }
.shot img {
  display: block; width: 100%; height: auto;
  border-radius: 10px; border: 1px solid var(--s4);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.shot.one { width: auto; margin-inline: auto; }
.shot.one img { max-height: 452px; width: auto; }
.shot.three { align-items: flex-start; }
.shot.three figure { margin: 0; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.shot.three figcaption { font-size: 12px; color: var(--s9); display: flex; align-items: center; gap: 7px; }
.shot.three figcaption i {
  width: 17px; height: 17px; border-radius: 50%; background: var(--s12); color: #fff;
  display: grid; place-items: center; font-size: 10px; font-style: normal; font-weight: 600;
}
.shot.pair { align-items: stretch; }
.shot.pair img { width: 100%; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-content: start; width: 100%; }
.gallery figure { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.gallery img { border-radius: 8px; border: 1px solid var(--s4); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09); width: 100%; }
.gallery figcaption { font-size: 11.5px; color: var(--s11); font-weight: 500; }
.slide.is-active .gallery figure { animation: rise 0.5s var(--ease) both; }

/* ---------- componentes animados ---------- */
.comp-wrap { width: 100%; display: flex; gap: 26px; align-items: center; justify-content: center; }
.card {
  background: var(--surface); border: 1px solid var(--s4); border-radius: var(--r12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* IA — prompt */
.prompt { width: 640px; padding: 18px; display: flex; flex-direction: column; gap: 18px; }
.prompt .bar { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--s9); }
.prompt .q { font-size: 19px; line-height: 1.4; letter-spacing: -0.015em; color: var(--fg); min-height: 54px; }
.prompt .q .cursor { display: inline-block; width: 2px; height: 20px; background: var(--blue); vertical-align: -3px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.prompt .foot { display: flex; align-items: center; justify-content: space-between; }
.chips { display: flex; gap: 7px; }
.chip {
  font-size: 12px; font-weight: 500; color: var(--s11);
  padding: 6px 10px; border-radius: 999px; background: var(--surface); border: 1px solid var(--s4);
}
.send { width: 32px; height: 32px; border-radius: 50%; background: var(--s12); color: #fff; display: grid; place-items: center; font-size: 14px; }

.answer { width: 380px; display: flex; flex-direction: column; gap: 10px; }
.answer .row {
  display: flex; align-items: center; gap: 11px; padding: 11px 13px;
  background: var(--surface); border: 1px solid var(--s4); border-radius: var(--r8);
  opacity: 0; transform: translateX(14px);
}
.slide.is-active .answer .row { animation: slideIn 0.5s var(--ease) both; }
.answer .cap-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--s9); opacity: 0; }
.slide.is-active .answer .cap-lbl { animation: slideIn 0.5s var(--ease) 1.7s both; }
.answer .row:nth-child(2) { animation-delay: 1.9s; }
.answer .row:nth-child(3) { animation-delay: 2.15s; }
.answer .row:nth-child(4) { animation-delay: 2.4s; }
.answer .row:nth-child(5) { animation-delay: 2.65s; }
@keyframes slideIn { to { opacity: 1; transform: none; } }
.answer .ico { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: 12px; flex: none; }
.answer .t { flex: 1; min-width: 0; }
.answer .t b { display: block; font-size: 12.5px; font-weight: 500; }
.answer .t span { font-size: 11.5px; color: var(--s9); }
.answer .v { font-size: 12.5px; font-weight: 600; }

/* Omie — sincronização */
.sync { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0; }
.node {
  width: 208px; padding: 20px; border-radius: var(--r12); background: var(--surface);
  border: 1px solid var(--s4); text-align: center; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.node .badge { width: 44px; height: 44px; border-radius: 13px; margin: 0 auto 12px; display: grid; place-items: center; font-size: 18px; font-weight: 700; color: #fff; }
.node b { display: block; font-size: 15px; letter-spacing: -0.01em; }
.node span { font-size: 12px; color: var(--s9); }
.lane { flex: 1; max-width: 372px; position: relative; height: 132px; overflow: hidden; }
.lane .track { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--s4); }
.lane .pkt {
  position: absolute; left: 0; font-size: 11.5px; font-weight: 500; padding: 5px 10px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--s4); white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.slide.is-active .lane .pkt { animation: flowR 3.2s var(--ease) infinite; }
.slide.is-active .lane .pkt.back { animation: flowL 3.2s var(--ease) infinite; }
@keyframes flowR {
  0% { opacity: 0; transform: translateX(0); }
  14% { opacity: 1; }
  78% { opacity: 1; }
  100% { opacity: 0; transform: translateX(150px); }
}
@keyframes flowL {
  0% { opacity: 0; transform: translateX(150px); }
  14% { opacity: 1; }
  78% { opacity: 1; }
  100% { opacity: 0; transform: translateX(0); }
}
.sync-meta { display: flex; gap: 12px; justify-content: center; margin-top: 26px; }
.pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 500; padding: 7px 12px; border-radius: 999px; }
.pill.ok { background: var(--green-soft); color: var(--green); }
.pill.mut { background: var(--s3); color: var(--s11); }

/* Pedidos — mini fluxo */
.flow { width: 100%; display: flex; flex-direction: column; gap: 22px; }
.stepper { display: flex; align-items: center; justify-content: center; gap: 0; }
.stepper .st { display: flex; align-items: center; gap: 9px; padding: 0 16px; }
.stepper .st i {
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  font-size: 11.5px; font-style: normal; font-weight: 600;
  border: 1.5px solid var(--s4); color: var(--s9); background: transparent;
  transition: all 0.4s var(--ease);
}
.stepper .st span { font-size: 13px; font-weight: 500; color: var(--s9); transition: color 0.4s var(--ease); }
.stepper .ln { width: 56px; height: 1px; background: var(--s4); }
.stepper .st.done i { background: var(--s12); border-color: var(--s12); color: #fff; }
.stepper .st.done span { color: var(--fg); font-weight: 600; }
.stepper .st.now i { background: var(--blue); border-color: var(--blue); color: #fff; }
.stepper .st.now span { color: var(--fg); font-weight: 600; }

.mini-row { display: flex; gap: 16px; }
.mini {
  flex: 1; padding: 15px; border-radius: var(--r12); background: var(--surface);
  border: 1px solid var(--s4); display: flex; flex-direction: column; gap: 12px;
  opacity: 0; transform: translateY(14px);
}
.slide.is-active .mini { animation: rise 0.55s var(--ease) both; }
.mini:nth-child(1) { animation-delay: 0.25s; }
.mini:nth-child(2) { animation-delay: 1s; }
.mini:nth-child(3) { animation-delay: 1.75s; }
.mini .cap { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--s9); }
.mini .line { display: flex; align-items: center; gap: 9px; }
.mini .av { width: 26px; height: 26px; border-radius: 9px; display: grid; place-items: center; font-size: 10px; font-weight: 600; flex: none; }
.mini .nm { font-size: 12.5px; font-weight: 500; }
.mini .sub { font-size: 11px; color: var(--s9); }
.mini .kv { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.mini .kv span { color: var(--s11); }
.mini .kv b { font-weight: 600; }
.mini .tot { display: flex; align-items: baseline; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--s3); }
.mini .tot span { font-size: 12px; color: var(--s11); }
.mini .tot b { font-size: 19px; letter-spacing: -0.02em; font-weight: 600; }
.mini .btn { text-align: center; font-size: 12.5px; font-weight: 600; color: #fff; background: var(--s12); padding: 9px; border-radius: var(--r6); }
.mini .thumbs { display: flex; gap: 6px; }
.mini .thumbs i { flex: 1; height: 40px; border-radius: 6px; background: var(--s3); display: block; }
.mini .thumbs i:nth-child(1) { background: linear-gradient(145deg, #dfeaf2, #c3d6e4); }
.mini .thumbs i:nth-child(2) { background: linear-gradient(145deg, #eae4de, #d6cabc); }
.mini .thumbs i:nth-child(3) { background: linear-gradient(145deg, #e6e2ee, #cdc6df); }
.mini .thumbs i:nth-child(4) { background: linear-gradient(145deg, #e9e6df, #d3cec1); }

/* Tarefas — checklist animado */
.tasks { width: 620px; padding: 4px 0; overflow: hidden; }
.tasks .th { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-bottom: 1px solid var(--s3); }
.tasks .th b { font-size: 13.5px; }
.tasks .tr { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--s3); }
.tasks .tr:last-child { border-bottom: 0; }
.tasks .ck {
  width: 16px; height: 16px; border-radius: 5px; border: 1.5px solid var(--s6); flex: none;
  display: grid; place-items: center; color: #fff; font-size: 10px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tasks .tr.tick .ck { background: var(--green); border-color: var(--green); }
.tasks .tr.tick .nm { color: var(--s9); text-decoration: line-through; }
.tasks .hr { font-size: 12px; font-weight: 500; color: var(--s9); width: 42px; flex: none; }
.tasks .nm { flex: 1; font-size: 12.5px; font-weight: 500; transition: color 0.3s var(--ease); }
.tasks .tag { font-size: 11px; font-weight: 500; padding: 3px 8px; border-radius: var(--r6); }

.legend-side { width: 268px; display: flex; flex-direction: column; gap: 14px; }
.stat-box { padding: 15px; border-radius: var(--r12); background: var(--surface); border: 1px solid var(--s4); }
.stat-box .lb { font-size: 11.5px; color: var(--s9); }
.stat-box .vl { font-size: 30px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.2; }
.stat-box .df { font-size: 11.5px; font-weight: 500; }

/* Carteira */
.wallet { width: 100%; display: flex; gap: 20px; align-items: flex-start; }
.wallet .list { flex: 1; padding: 4px 0; }
.wallet .wr { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-bottom: 1px solid var(--s3); }
.wallet .wr:last-child { border-bottom: 0; }
.wallet .nm { flex: 1; font-size: 12.5px; font-weight: 500; }
.wallet .cty { font-size: 11.5px; color: var(--s9); width: 120px; }
.wallet .val { font-size: 12.5px; font-weight: 600; width: 92px; text-align: right; }
.wallet .own { width: 108px; display: flex; justify-content: flex-end; }
.wallet .own .av { opacity: 0; transform: scale(0.7); }
.slide.is-active .wallet .own .av { animation: pop 0.45s var(--ease) both; }
.wallet .wr:nth-child(1) .own .av { animation-delay: 0.6s; }
.wallet .wr:nth-child(2) .own .av { animation-delay: 0.8s; }
.wallet .wr:nth-child(3) .own .av { animation-delay: 1s; }
.wallet .wr:nth-child(4) .own .av { animation-delay: 1.2s; }
.wallet .wr:nth-child(5) .own .av { animation-delay: 1.4s; }
.wallet .wr:nth-child(6) .own .av { animation-delay: 1.6s; }
@keyframes pop { to { opacity: 1; transform: none; } }
.av { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 10px; font-weight: 600; }
.reps { width: 258px; display: flex; flex-direction: column; gap: 10px; }
.rep { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: var(--r8); background: var(--surface); border: 1px solid var(--s4); }
.rep .t { flex: 1; }
.rep .t b { display: block; font-size: 12.5px; font-weight: 500; }
.rep .t span { font-size: 11px; color: var(--s9); }
.rep .n { font-size: 12.5px; font-weight: 600; }

/* Relatórios — KPIs + barras */
.report { width: 100%; display: flex; flex-direction: column; gap: 16px; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kpi { padding: 15px; border-radius: var(--r12); background: var(--surface); border: 1px solid var(--s4); }
.kpi .lb { font-size: 11.5px; color: var(--s9); }
.kpi .vl { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.25; }
.kpi .df { font-size: 11px; font-weight: 500; display: inline-block; padding: 2px 7px; border-radius: var(--r6); margin-top: 5px; }
.chartbox { padding: 16px; border-radius: var(--r12); background: var(--surface); border: 1px solid var(--s4); }
.chartbox .ch { display: flex; align-items: flex-end; gap: 7px; height: 168px; }
.chartbox .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; justify-content: flex-end; }
.chartbox .bars { display: flex; align-items: flex-end; gap: 3px; }
.chartbox .bars i { display: block; width: 18px; border-radius: 3px 3px 0 0; height: 0; transition: height 0.9s var(--ease); }
.chartbox .bars i.v { background: var(--s12); }
.chartbox .bars i.g { background: var(--s3); }
.chartbox .col.hl .bars i.v { background: var(--blue); }
.slide.is-active .chartbox .bars i { height: var(--h); }
.chartbox .lbl { font-size: 11px; color: var(--s9); }

/* ---------- grades de conteúdo ---------- */
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; align-content: start; }
.two-up { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; width: 100%; }
.block { padding: 22px; border-radius: var(--r12); background: var(--surface); border: 1px solid var(--s4); display: flex; flex-direction: column; gap: 10px; }
.block .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 15px; }
.block h3 { font-size: 16px; }
.block p { font-size: 13.5px; line-height: 1.55; }
.block.dark { background: var(--s12); border-color: var(--s12); }
.block.dark h3, .block.dark .vl { color: #fff; }
.block.dark p { color: rgba(255, 255, 255, 0.62); }

.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; width: 100%; }
.pillar { padding: 16px; border-radius: var(--r12); border: 1px solid var(--s4); background: var(--surface); display: flex; flex-direction: column; gap: 8px; }
.pillar .n { font-size: 11px; font-weight: 600; color: var(--s9); letter-spacing: 0.06em; }
.pillar b { font-size: 14px; letter-spacing: -0.01em; }
.pillar span { font-size: 12px; color: var(--s11); line-height: 1.45; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; width: 100%; }
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric .vl { font-size: 44px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.metric .lb { font-size: 13px; color: var(--s11); }

/* ---------- implantação ---------- */
.steps-flow { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
.step-card { display: flex; flex-direction: column; gap: 13px; padding: 4px 26px 4px 0; }
.step-card + .step-card { padding-left: 26px; border-left: 1px solid var(--s4); }
.step-n {
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--s12); color: #fff;
  display: grid; place-items: center;
  font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em;
}
.step-card h3 { font-size: 17px; }
.step-card p { font-size: 13.5px; line-height: 1.55; }
.step-when {
  margin-top: 4px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--s11);
  padding: 6px 10px; border-radius: 999px; background: var(--s3); align-self: flex-start;
}
.step-when.ok { background: var(--green-soft); color: var(--green); }
.impl-note {
  display: flex; gap: 11px; align-items: flex-start; width: 100%;
  padding: 14px 16px; border-radius: var(--r12); background: var(--amber-soft);
}
.impl-note i {
  width: 20px; height: 20px; border-radius: 50%; flex: none;
  background: #fff; color: var(--amber);
  display: grid; place-items: center; font-size: 11px; font-style: normal; font-weight: 700;
}
.impl-note p { font-size: 13px; color: var(--s12); line-height: 1.5; }
.impl-note p b { color: var(--amber); }

/* ---------- planos ---------- */
.impl-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; padding: 11px 18px; border-radius: var(--r12); background: var(--s12);
}
.impl-banner .l { display: flex; align-items: center; gap: 16px; }
.impl-banner .lbl { color: rgba(255, 255, 255, 0.62); font-size: 13px; }
.impl-banner .old { color: rgba(255, 255, 255, 0.4); text-decoration: line-through; font-size: 15px; }
.impl-banner .new { color: #fff; font-size: 24px; font-weight: 600; letter-spacing: -0.03em; }
.impl-banner .tag {
  background: rgba(255, 255, 255, 0.16); color: #fff;
  padding: 6px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
}

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; }
.plan {
  display: flex; flex-direction: column; gap: 11px; padding: 17px;
  border-radius: var(--r12); background: var(--surface); border: 1px solid var(--s4);
}
.plan.hl { border-color: var(--s12); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09); }
.plan-name { display: flex; align-items: center; gap: 9px; }
.plan-name b { font-size: 15px; letter-spacing: -0.015em; }
.plan-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px; background: var(--s12); color: #fff;
}
.plan-desc { font-size: 12.5px; color: var(--s11); line-height: 1.42; min-height: 36px; }
.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  padding-bottom: 11px; border-bottom: 1px solid var(--s3);
}
.plan-price .v { font-size: 28px; font-weight: 600; letter-spacing: -0.035em; line-height: 1; }
.plan-price .v.sm { font-size: 21px; }
.plan-price .u { font-size: 12.5px; color: var(--s9); }
.feats { display: flex; flex-direction: column; gap: 8px; }
.feat { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; line-height: 1.38; }
.feat i {
  width: 15px; height: 15px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 9px; font-style: normal; font-weight: 700;
  margin-top: 1px;
}
.feat.yes i { background: var(--green-soft); color: var(--green); }
.feat.no i { background: var(--s3); color: var(--s9); }
.feat.no { color: var(--s9); }
.feat b { font-weight: 600; }
.plan-foot { margin-top: auto; padding-top: 10px; font-size: 11px; color: var(--s9); line-height: 1.4; }

.cta { justify-content: center; align-items: center; text-align: center; gap: 26px; }
.cta h2 { font-size: 44px; max-width: 820px; }
.cta .btns { display: flex; gap: 12px; margin-top: 6px; }
.cta .b1 { background: var(--s12); color: #fff; padding: 13px 22px; border-radius: var(--r8); font-size: 14px; font-weight: 600; }
.cta .b2 { background: var(--surface); color: var(--fg); border: 1px solid var(--s4); padding: 13px 22px; border-radius: var(--r8); font-size: 14px; font-weight: 600; }

/* ---------- rodapé / navegação ---------- */
.slide-foot {
  position: absolute; left: 64px; right: 64px; bottom: 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px; color: var(--s9);
}
.slide-foot .brand { display: flex; align-items: center; gap: 8px; }

#nav {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
  border: 1px solid var(--s4); box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
#dots { display: flex; gap: 6px; }
#dots button {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%;
  background: var(--s6); cursor: pointer; transition: all 0.25s var(--ease);
}
#dots button.on { background: var(--s12); width: 20px; border-radius: 4px; }
#nav .arw {
  width: 26px; height: 26px; border: 1px solid var(--s4); background: #fff; border-radius: 8px;
  display: grid; place-items: center; cursor: pointer; color: var(--s11); font-size: 12px;
}
#nav .arw:hover { background: var(--s2); color: var(--fg); }
#counter { font-size: 11.5px; color: var(--s9); font-variant-numeric: tabular-nums; min-width: 44px; text-align: center; }

/* ---------- prints clicáveis ---------- */
.shot-wrap { position: relative; display: block; line-height: 0; }
.shot img, .gallery img {
  cursor: zoom-in;
  user-select: none; -webkit-user-drag: none; -webkit-touch-callout: none;
  transition: box-shadow 0.25s var(--ease);
}
.shot-wrap:hover img {
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18), 0 0 0 1px var(--s6);
}

.zoom-btn {
  position: absolute; top: 8px; right: 8px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  font: inherit; font-size: 10.5px; font-weight: 600; line-height: 1;
  color: var(--s12); cursor: pointer;
  padding: 6px; border-radius: 7px;
  background: rgba(255, 255, 255, 0.94); border: 1px solid var(--s4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  opacity: 0.6;
  transition: opacity 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.zoom-btn svg { width: 11px; height: 11px; display: block; flex: none; }
.zoom-btn span { display: none; padding-right: 3px; }
.shot-wrap:hover .zoom-btn { opacity: 1; }
.shot-wrap:hover .zoom-btn span { display: inline; }
.zoom-btn:hover { background: #fff; box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2); }

/* na galeria de relatórios fica só o ícone, sempre */
.gallery .zoom-btn { top: 6px; right: 6px; padding: 5px; }
.gallery .shot-wrap:hover .zoom-btn span { display: none; }

/* ---------- lightbox ---------- */
#lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: none; grid-template-rows: auto 1fr auto;
  background: rgba(24, 24, 27, 0.94);
  backdrop-filter: blur(14px);
  opacity: 0; transition: opacity 0.24s var(--ease);
}
#lightbox.open { display: grid; }
#lightbox.shown { opacity: 1; }

.lb-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; gap: 24px; color: #fff;
}
.lb-cap { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.lb-cap b { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.lb-cap span { font-size: 12px; color: rgba(255, 255, 255, 0.5); font-variant-numeric: tabular-nums; }
.lb-tools { display: flex; align-items: center; gap: 6px; flex: none; }
.lb-tools button {
  height: 30px; min-width: 30px; padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 8px;
  background: rgba(255, 255, 255, 0.08); color: #fff;
  font: inherit; font-size: 13px; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.18s var(--ease);
}
.lb-tools button:hover { background: rgba(255, 255, 255, 0.18); }
.lb-tools .lb-z {
  font-size: 12px; color: rgba(255, 255, 255, 0.62); min-width: 48px; text-align: center;
  font-variant-numeric: tabular-nums;
}
.lb-tools .lb-x { background: rgba(255, 255, 255, 0.14); }

.lb-body { position: relative; display: grid; place-items: center; overflow: hidden; }
.lb-stage {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  overflow: hidden; padding: 0 76px 36px;
  cursor: zoom-in;
}
.lb-stage.zoomed { cursor: grab; }
.lb-stage.grabbing { cursor: grabbing; }
.lb-stage img {
  max-width: 100%; max-height: 100%;
  border-radius: 8px; display: block;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform-origin: center center;
  will-change: transform;
  user-select: none; -webkit-user-drag: none;
}
.lb-stage img.anim { transition: transform 0.22s var(--ease); }

.lb-arw {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1); color: #fff;
  font-size: 17px; cursor: pointer; z-index: 2;
  display: grid; place-items: center;
  transition: background 0.18s var(--ease);
}
.lb-arw:hover { background: rgba(255, 255, 255, 0.22); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-bottom { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 4px 0 16px; }

.lb-film {
  display: flex; gap: 7px; padding: 0 22px;
  overflow-x: auto; justify-content: center; align-items: center;
  scrollbar-width: none;
}
.lb-film::-webkit-scrollbar { display: none; }
.lb-film button {
  flex: none; width: 62px; height: 44px; padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 5px;
  background: rgba(255, 255, 255, 0.06); cursor: pointer; overflow: hidden;
  opacity: 0.45; transition: all 0.2s var(--ease);
}
.lb-film button { background: #fff; }
.lb-film button img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lb-film button:hover { opacity: 0.8; }
.lb-film button.on { opacity: 1; border-color: rgba(255, 255, 255, 0.7); transform: translateY(-2px); }

.lb-hint {
  font-size: 11.5px; color: rgba(255, 255, 255, 0.42); white-space: nowrap;
  transition: opacity 0.2s var(--ease);
}
#lightbox.zoomed .lb-hint { opacity: 0; }
.lb-hint kbd {
  font: inherit; font-size: 10.5px; padding: 1px 5px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.7);
}

@media print { #nav, #lightbox { display: none; } }
