/* ===== eSight.AI Presentation — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* eSight.AI brand */
  --ink:         #0a0e1a;
  --ink-2:       #0d1220;
  --ink-soft:    #2a3550;
  --ink-60:      rgba(10,14,26,.62);
  --ink-45:      rgba(10,14,26,.45);
  --blue:        #1a6cf0;
  --blue-2:      #1559cc;
  --blue-soft:   #a8c4f8;
  --cream:       #f0f4ff;
  --cream-2:     #e4eafc;
  --paper:       #ffffff;
  --line:        rgba(10,14,26,.14);
  --line-strong: rgba(10,14,26,.22);
  --green:        #10b981;
  --green-bright: #34d399;
  --green-soft:   rgba(16,185,129,.1);
  --gold:         #c9a84c;
  --gold-bright:  #f5c842;
  --gold-soft:    rgba(201,168,76,.15);
  --gold-glow:    rgba(201,168,76,.28);
  --cyan:         #00d4e8;
  --cyan-soft:    rgba(0,212,232,.12);
  --muted:       #6b7280;
  /* semantic aliases — overridden per client via Alpine (applyAccent) */
  --accent:      #1a6cf0;
  --accent-2:    #1559cc;
  --accent-soft: #a8c4f8;
}

/* === Reset === */
html, body { margin: 0; padding: 0; background: #000; font-family: 'Inter', system-ui, sans-serif; color: var(--ink); }
deck-stage { background: #000; }
*, *::before, *::after { box-sizing: border-box; }

/* === Slide base === */
.slide {
  position: relative;
  width: 1920px; height: 1080px;
  background: var(--cream);
  overflow: hidden;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}
.slide.dark { background: var(--ink); color: var(--cream); }
.slide.paper { background: var(--paper); }

/* === Typography === */
.serif     { font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -.015em; }
.serif-it  { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }
.montserrat  { font-family: 'Montserrat', sans-serif; }
.eyebrow   { font-size: 20px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-2); font-weight: 600; margin: 0; font-family: 'Montserrat', sans-serif; }
.slide.dark .eyebrow { color: var(--accent-soft); }
.h-title   { font-family: 'Fraunces', serif; font-weight: 500; font-size: 92px; line-height: 1.02; letter-spacing: -.022em; color: var(--ink); margin: 0; }
.slide.dark .h-title { color: var(--cream); }
.h-sub     { font-size: 30px; line-height: 1.4; color: var(--ink-soft); max-width: 1400px; }
.slide.dark .h-sub { color: rgba(240,244,255,.78); }
.body-lg   { font-size: 26px; line-height: 1.45; color: var(--ink); }
.body-md   { font-size: 22px; line-height: 1.5; color: var(--ink-60); }
.slide.dark .body-md { color: rgba(240,244,255,.72); }
.accent-rule { width: 72px; height: 3px; background: var(--accent); border-radius: 2px; }

/* === Rail / Footer === */
.rail {
  position: absolute; left: 100px; right: 100px; bottom: 48px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 16px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-45); font-weight: 500; z-index: 10;
}
.slide.dark .rail { color: rgba(240,244,255,.5); }
.rail .stamp { display: flex; align-items: center; gap: 16px; }
.rail .stamp img { height: 24px; }
.rail .stamp .esight-rail-logo { height: 28px; opacity: .85; }
.rail .stamp .client-rail-logo { height: 26px; opacity: .80; max-width: 140px; object-fit: contain; }
.rail .stamp .client-rail-name { font-size: 15px; font-weight: 600; font-family: 'Montserrat', sans-serif; opacity: .80; letter-spacing: .04em; }
.rail .stamp .x { color: var(--ink-45); font-size: 14px; font-weight: 300; }
.slide.dark .rail .stamp .x { color: rgba(240,244,255,.35); }
.slide.dark .rail .stamp .client-rail-name { color: rgba(240,244,255,.85); }

/* === Entry Animations === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseSoft {
  0%, 100% { opacity: 1; }
  50%       { opacity: .55; }
}
@keyframes slideEnter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-enter   { animation: fadeUp 320ms ease both; }
.anim-enter-1 { animation: fadeUp 320ms ease 80ms both; }
.anim-enter-2 { animation: fadeUp 320ms ease 160ms both; }
.anim-enter-3 { animation: fadeUp 320ms ease 240ms both; }
.anim-enter-4 { animation: fadeUp 320ms ease 320ms both; }
.anim-enter-5 { animation: fadeUp 320ms ease 400ms both; }
.slide-entering { animation: slideEnter 380ms cubic-bezier(.22,.68,0,1.2) both; }


/* === Config Panel === */
.config-btn, .fullscreen-btn {
  position: fixed; right: 20px; z-index: 1000;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(10,14,26,.5); color: rgba(240,244,255,.65);
  border: 1px solid rgba(240,244,255,.13); font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: opacity .22s, background .22s, transform .18s, border-color .18s;
  opacity: 0.28;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: none;
}
.config-btn { bottom: 20px; }
.fullscreen-btn { bottom: 58px; }
.config-btn:hover, .fullscreen-btn:hover {
  opacity: 1; background: var(--ink); border-color: var(--accent); transform: scale(1.1);
}
.config-btn.needs-setup { opacity: 0.55; animation: pulseSoft 2.5s infinite; }

#config-panel {
  position: fixed; inset: 0; z-index: 999;
  display: flex; justify-content: flex-end;
  background: rgba(10,14,26,.55);
  backdrop-filter: blur(6px);
}
#config-panel[hidden] { display: none; }

.config-drawer {
  width: 560px; height: 100vh;
  background: #0d1220; color: #e5e7eb;
  border-left: 1px solid #1f2937;
  display: flex; flex-direction: column;
  animation: slideInRight 280ms ease both;
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
.config-drawer header { padding: 28px 32px 0; border-bottom: 1px solid #1f2937; }
.config-drawer header h2 { margin: 0 0 16px; font-size: 20px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.config-tabs { display: flex; gap: 0; overflow-x: auto; }
.config-tab {
  padding: 10px 16px; font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; border: none; background: none;
  color: #6b7280; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s; white-space: nowrap;
}
.config-tab.active, .config-tab:hover { color: #e5e7eb; border-color: var(--accent); }
.config-body { flex: 1; overflow-y: auto; padding: 28px 32px; }
.config-body::-webkit-scrollbar { width: 4px; }
.config-body::-webkit-scrollbar-thumb { background: #1f2937; border-radius: 2px; }
.config-footer { padding: 20px 32px; border-top: 1px solid #1f2937; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cfg-group { margin-bottom: 24px; }
.cfg-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #6b7280; margin-bottom: 8px; display: block; }
.cfg-input {
  width: 100%; padding: 10px 14px;
  background: #111827; border: 1px solid #1f2937; border-radius: 6px;
  color: #e5e7eb; font-size: 14px; font-family: 'Inter', sans-serif;
  transition: border-color .15s;
}
.cfg-input:focus { outline: none; border-color: var(--accent); }
textarea.cfg-input { resize: vertical; }
.cfg-segment-toggle { display: flex; gap: 8px; }
.cfg-segment-btn {
  flex: 1; padding: 10px; border-radius: 6px; font-size: 14px; font-weight: 500;
  border: 1px solid #1f2937; background: #111827; color: #6b7280; cursor: pointer;
  transition: all .15s;
}
.cfg-segment-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.cfg-logo-upload { display: flex; flex-direction: column; gap: 8px; }
.cfg-logo-drop {
  display: flex; align-items: center; justify-content: center;
  min-height: 88px; border-radius: 8px; border: 2px dashed #1f2937;
  background: #0d1117; cursor: pointer; transition: border-color .15s, background .15s;
}
.cfg-logo-drop:hover, .cfg-logo-drop.is-dragging {
  border-color: var(--accent, #6366f1); background: rgba(99,102,241,.07);
}
.cfg-logo-drop.has-logo { border-style: solid; border-color: #1f2937; padding: 10px 16px; }
.cfg-logo-preview { max-width: 180px; max-height: 64px; object-fit: contain; border-radius: 4px; }
.cfg-logo-drop-hint { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #4b5563; user-select: none; }
.cfg-logo-drop-icon { font-size: 24px; line-height: 1; }
.cfg-logo-drop-hint span:last-child { font-size: 12px; }
.cfg-btn-secondary {
  padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 500;
  border: 1px solid #1f2937; background: transparent; color: #e5e7eb; cursor: pointer;
  transition: background .15s;
}
.cfg-btn-secondary:hover { background: #1f2937; }
.cfg-btn-primary {
  padding: 10px 20px; border-radius: 6px; font-size: 13px; font-weight: 600;
  background: var(--accent); border: none; color: #fff; cursor: pointer;
  transition: opacity .15s;
}
.cfg-btn-primary:hover { opacity: .88; }
.cfg-color-row { display: flex; align-items: center; gap: 12px; }
.cfg-color-input { width: 44px; height: 36px; border: none; border-radius: 6px; cursor: pointer; padding: 2px; }

/* === Print === */
@media print {
  #config-panel, .config-btn, .fullscreen-btn { display: none !important; }
  .slide {
    visibility: visible !important;
    opacity: 1 !important;
    page-break-after: always;
    break-after: page;
    transform: none !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ===== Slide 01 — Capa ===== */
.s-capa {
  background:
    radial-gradient(1200px 700px at 85% 20%, rgba(26,108,240,.28), transparent 60%),
    radial-gradient(900px 700px at 10% 90%, rgba(16,185,129,.22), transparent 60%),
    linear-gradient(180deg, rgba(6,10,20,.90) 0%, rgba(10,14,26,.84) 50%, rgba(13,18,32,.92) 100%),
    url('assets/bg-tech-teal.jpg') center/cover no-repeat;
}
.s-capa .logos-top {
  position: absolute; top: 80px; left: 100px; right: 100px;
  display: flex; justify-content: space-between; align-items: center;
}
.s-capa .client-logo {
  height: 64px; max-width: 280px; object-fit: contain;
  background: rgba(240,244,255,.97); padding: 10px 18px; border-radius: 10px;
}
.s-capa .client-capa-name {
  font-size: 28px; font-weight: 700; font-family: 'Montserrat', sans-serif;
  color: rgba(240,244,255,.90); letter-spacing: .05em; text-transform: uppercase;
}
.s-capa .esight-logo { height: 68px; object-fit: contain; }
.s-capa .body { position: absolute; left: 100px; right: 100px; top: 300px; }
.s-capa .kicker {
  font-size: 22px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin: 0 0 32px;
  font-family: 'Montserrat', sans-serif;
}
.s-capa .capa-logo {
  display: block;
  height: 260px;
  width: auto;
  margin-bottom: 8px;
}
.s-capa .tagline {
  margin-top: 44px; font-size: 30px; font-weight: 400;
  color: rgba(229,231,235,.8); max-width: 1200px; line-height: 1.45;
  font-family: 'Montserrat', sans-serif;
}
.s-capa .meta {
  position: absolute; left: 100px; right: 100px; bottom: 110px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.s-capa .presenter-name { font-size: 22px; color: #e5e7eb; font-weight: 600; margin: 0; font-family: 'Montserrat', sans-serif; }
.s-capa .presenter-role { font-size: 16px; color: rgba(229,231,235,.55); margin: 4px 0 0; font-family: 'Montserrat', sans-serif; }
.s-capa .meta-date { font-size: 16px; letter-spacing: .2em; text-transform: uppercase; color: rgba(229,231,235,.45); }

/* ===== Slide 02 — Diagnóstico ===== */
.s-diag .layout {
  position: absolute; inset: 0; display: grid; grid-template-columns: 600px 1fr;
}
.s-diag .left {
  padding: 100px 80px;
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(240,244,255,.08);
  display: flex; flex-direction: column; justify-content: center;
}
.s-diag .right {
  padding: 100px 80px; display: flex; align-items: center;
}
.s-diag .pains-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; width: 100%;
}
.pain-item .pain-num {
  font-family: 'Fraunces', serif; font-size: 56px; font-weight: 400;
  color: var(--gold-bright); line-height: 1; margin-bottom: 12px;
}
.pain-item .pain-title { font-size: 22px; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.pain-item .pain-desc { font-size: 18px; line-height: 1.55; color: rgba(240,244,255,.62); }

/* ===== Slide 03 — Problema ===== */
.s-problema::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(240,244,255,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none; z-index: 0;
}
.s-problema > * { position: relative; z-index: 1; }
.s-problema .inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; padding: 100px;
}
.s-problema .content { max-width: 1400px; text-align: center; }
.s-problema .stat {
  font-family: 'Fraunces', serif; font-size: 200px; line-height: 1;
  color: var(--gold-bright); font-weight: 400; margin: 0;
}
.s-problema .stat-label {
  font-size: 36px; font-weight: 300; color: rgba(240,244,255,.8); margin-top: 16px; line-height: 1.4;
}
.s-problema .quote {
  margin-top: 60px; font-size: 26px; font-style: italic;
  color: rgba(240,244,255,.62); font-family: 'Fraunces', serif;
  max-width: 1100px; margin-inline: auto;
}
.s-problema .stat-source {
  margin-top: 24px; font-size: 14px; letter-spacing: .1em;
  color: rgba(240,244,255,.38); font-family: 'Montserrat', sans-serif;
  text-transform: uppercase; font-weight: 500;
}
.s-problema .stats-pair {
  display: flex; align-items: flex-start; gap: 0; margin-bottom: 0;
}
.s-problema .stat-box {
  flex: 1; text-align: center; padding: 0 60px;
}
.s-problema .stat-box-num {
  font-family: 'Fraunces', serif; font-size: 140px; font-weight: 400;
  color: var(--gold-bright); line-height: 1; margin-bottom: 20px;
}
.s-problema .stat-box-label {
  font-size: 26px; font-weight: 300; color: rgba(240,244,255,.78); line-height: 1.5;
}
.s-problema .stat-divider {
  width: 1px; align-self: stretch; background: rgba(240,244,255,.12); margin: 12px 0;
  flex-shrink: 0;
}
.s-problema .stat-prefix {
  font-size: 52px; font-family: 'Montserrat', sans-serif; font-weight: 300;
  opacity: .60; vertical-align: middle; margin-right: 4px;
}
.s-problema .stat-box-contrast {
  color: rgba(240,244,255,.45); font-size: .85em;
}
.s-problema .stat-box-sub {
  font-size: 18px; color: rgba(240,244,255,.38); margin-top: 22px;
  letter-spacing: .04em; font-family: 'Montserrat', sans-serif;
}

/* ===== Slide 04 — Como Funciona ===== */
.s-como .header-zone {
  position: absolute; left: 100px; right: 100px; top: 80px; text-align: center;
}
.s-como .steps {
  position: absolute; left: 80px; right: 80px;
  top: 200px; bottom: 72px;
  display: grid; grid-template-columns: 1fr 60px 1fr 60px 1fr; align-items: stretch; gap: 0;
}
.s-como .step {
  background: rgba(240,244,255,.05); border: 1px solid rgba(240,244,255,.1);
  border-radius: 20px; padding: 52px 44px; text-align: center;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.s-como .step::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.s-como .step-icon-wrap { margin-bottom: 28px; display: flex; justify-content: center; }
.s-como .step-num {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .22em; color: var(--gold); margin-bottom: 20px;
}
.s-como .step-title { font-size: 28px; font-weight: 700; color: var(--cream); margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.s-como .step-desc { font-size: 18px; color: rgba(240,244,255,.65); line-height: 1.55; font-family: 'Montserrat', sans-serif; font-weight: 400; }
.s-como .step-desc strong { color: var(--green-bright); font-weight: 700; }
.s-como .step-arrow { display: flex; align-items: center; justify-content: center; opacity: .7; }

/* ===== Slide 05 — Planos & Recursos ===== */
.s-recursos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(240,244,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}
.s-recursos > * { position: relative; z-index: 1; }
.s-recursos .feat-header {
  position: absolute; left: 100px; right: 100px; top: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.s-recursos .feat-header .eyebrow { margin: 0; }
.billing-toggle {
  display: flex; gap: 0;
  background: rgba(255,255,255,.06);
  border-radius: 10px; padding: 4px;
  border: 1px solid rgba(240,244,255,.12);
}
.billing-toggle button {
  padding: 8px 28px; border-radius: 7px; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; font-family: 'Montserrat', sans-serif;
  color: rgba(240,244,255,.45); background: transparent; transition: all .18s;
}
.billing-toggle button.active {
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}
.s-recursos .plans-grid {
  position: absolute; left: 72px; right: 72px;
  top: 180px; bottom: 72px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px;
}
.plan-card {
  border: 1px solid rgba(240,244,255,.10);
  border-radius: 20px;
  padding: 48px 40px;
  background: rgba(255,255,255,.03);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column; gap: 0;
}
.plan-card:hover {
  border-color: rgba(240,244,255,.20);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,14,26,.3);
}
.plan-card.recommended {
  background: rgba(201,168,76,.06);
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 1px var(--gold-glow),
    0 0 48px var(--gold-glow),
    0 24px 64px rgba(10,14,26,.55);
  transform: translateY(-8px);
}
.plan-card.recommended:hover { transform: translateY(-14px); }

.plan-card .plan-name {
  font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700;
  color: rgba(240,244,255,.85); margin-bottom: 24px;
}
.plan-card.recommended .plan-name { color: var(--gold-bright); }
.plan-prices { margin-bottom: 24px; }
.plan-price-row {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px;
}
.plan-price-row .price-val {
  font-family: 'Fraunces', serif; font-size: 48px; font-weight: 400;
  color: var(--green-bright); line-height: 1; font-variant-numeric: tabular-nums;
}
.plan-card.recommended .plan-price-row .price-val { color: var(--gold-bright); }
.plan-price-row .price-period {
  font-size: 15px; color: rgba(240,244,255,.45); font-family: 'Montserrat', sans-serif;
}
.plan-price-extra {
  font-size: 14px; color: rgba(240,244,255,.35); font-family: 'Montserrat', sans-serif;
  margin-top: 6px; line-height: 1.5;
}
.plan-card.recommended .plan-price-extra { color: rgba(240,244,255,.45); }
.plan-card .feature-list {
  list-style: none; padding: 0; margin: 0; flex: 1;
  border-top: 1px solid rgba(240,244,255,.08); padding-top: 20px;
}
.plan-card.recommended .feature-list { border-color: rgba(201,168,76,.15); }
.plan-card .feature-list li {
  padding: 7px 0; font-size: 16px; color: rgba(240,244,255,.60);
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 400;
}
.plan-card.recommended .feature-list li { color: rgba(240,244,255,.82); }
.plan-card .feature-list li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-card.recommended .feature-list li::before { color: var(--gold); }
.plan-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; font-family: 'Montserrat', sans-serif;
}

/* ===== Slide 06 — Prova Social ===== */
.s-prova .layout {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr;
}
.s-prova .left {
  background: var(--ink); color: var(--cream);
  padding: 100px 80px; display: flex; flex-direction: column; justify-content: center;
}
.s-prova .left-varejo {
  background:
    linear-gradient(135deg, rgba(10,14,26,.85) 0%, rgba(10,14,26,.7) 100%),
    url('assets/bg-store-interior.jpg') center/cover no-repeat;
}
.s-prova .left-eventos {
  background:
    linear-gradient(135deg, rgba(10,14,26,.85) 0%, rgba(10,14,26,.7) 100%),
    url('assets/bg-event-audience.jpg') center/cover no-repeat;
}
.s-prova .client-logo-mock {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(240,244,255,.1); border: 1px solid rgba(240,244,255,.2);
  border-radius: 10px; padding: 10px 22px; margin-bottom: 32px;
  font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800;
  color: var(--cream); letter-spacing: .12em; text-transform: uppercase;
  align-self: flex-start;
}
.s-prova .case-title {
  font-family: 'Montserrat', sans-serif; font-size: 60px; font-weight: 800;
  line-height: 1.05; color: #e5e7eb; margin: 0 0 28px; letter-spacing: -.02em;
}
.s-prova .case-desc {
  font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 400;
  color: rgba(229,231,235,.75); line-height: 1.6; max-width: 480px;
}
.s-prova .right { padding: 80px; display: flex; flex-direction: column; justify-content: center; gap: 24px; background: rgba(255,255,255,.02); }
.metric-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(240,244,255,.10);
  border-radius: 16px; padding: 24px 36px;
}
.metric-card .metric-value {
  font-family: 'Fraunces', serif; font-size: 72px; font-weight: 400; color: var(--green-bright); line-height: 1;
}
.metric-card .metric-label {
  font-family: 'Montserrat', sans-serif; font-size: 18px; color: rgba(240,244,255,.58); margin-top: 8px; line-height: 1.4; font-weight: 400;
}

/* ===== Slide 07 — Investimento / Calculadora ===== */
.s-invest .layout {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 580px 1fr;
}
.s-invest .left {
  padding: 100px 80px;
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(240,244,255,.08);
  display: flex; flex-direction: column; justify-content: center; gap: 40px;
}
.config-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(240,244,255,.12);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 28px;
}
.config-box-label {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(240,244,255,.3); font-family: 'Montserrat', sans-serif; margin: 0;
}
.s-invest .right {
  padding: 80px 120px;
  display: flex; flex-direction: column; justify-content: center; gap: 32px;
  background: radial-gradient(900px 700px at 75% 50%, rgba(201,168,76,.08) 0%, transparent 65%);
}
.plan-selector { display: flex; gap: 10px; }
.plan-sel-btn {
  flex: 1; padding: 14px; border-radius: 10px;
  border: 1px solid rgba(240,244,255,.12);
  background: rgba(255,255,255,.05);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all .15s; color: rgba(240,244,255,.55);
  font-family: 'Montserrat', sans-serif;
}
.plan-sel-btn.active { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 800; }
.plan-sel-btn:hover:not(.active) { background: rgba(255,255,255,.09); }
.calc-row { display: flex; align-items: center; gap: 20px; }
.calc-btn {
  width: 56px; height: 56px; border-radius: 12px; font-size: 28px; font-weight: 300;
  border: 1px solid rgba(240,244,255,.12);
  background: rgba(255,255,255,.05); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s; font-family: 'Inter', sans-serif;
  color: rgba(240,244,255,.7);
}
.calc-btn:hover { background: rgba(255,255,255,.10); }
.calc-val {
  font-family: 'Fraunces', serif; font-size: 72px; font-weight: 400;
  color: var(--cream); min-width: 120px; text-align: center;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.price-display {
  background: none;
  border: none;
  border-left: 4px solid rgba(201,168,76,.5);
  border-radius: 0;
  padding: 32px 0 32px 56px; color: var(--cream);
}
.price-display .price-main {
  font-family: 'Fraunces', serif; font-size: 136px; font-weight: 400;
  color: var(--gold-bright); line-height: 1; font-variant-numeric: tabular-nums;
}
.price-display .price-sub { font-size: 20px; color: rgba(240,244,255,.55); margin-top: 8px; font-family: 'Montserrat', sans-serif; }
.price-display .price-annual {
  font-size: 24px; color: rgba(240,244,255,.65); margin-top: 16px;
  font-weight: 300; font-variant-numeric: tabular-nums; font-family: 'Montserrat', sans-serif;
}
.price-promo {
  background: linear-gradient(135deg, rgba(16,185,129,.15) 0%, rgba(16,185,129,.06) 100%);
  border: 1.5px solid rgba(16,185,129,.4);
  border-radius: 16px; padding: 32px 36px;
}
.price-promo .promo-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-bright); font-family: 'Montserrat', sans-serif; margin: 0 0 12px;
}
.price-promo .promo-val {
  font-family: 'Fraunces', serif; font-size: 88px; font-weight: 400;
  color: var(--green-bright); line-height: 1; font-variant-numeric: tabular-nums;
}
.price-promo .promo-period {
  font-size: 22px; color: rgba(16,185,129,.8); font-family: 'Montserrat', sans-serif; margin-top: 6px;
}
.price-promo .promo-monthly {
  font-size: 17px; color: rgba(16,185,129,.6); font-family: 'Montserrat', sans-serif;
  margin: 6px 0 0; font-variant-numeric: tabular-nums;
}
.price-promo .promo-context {
  font-size: 15px; color: rgba(240,244,255,.55); margin-top: 12px; line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}
.price-promo .promo-header { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.price-promo .promo-deadline {
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  color: rgba(16,185,129,.85); font-family: 'Montserrat', sans-serif;
  background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.25);
  border-radius: 20px; padding: 4px 12px;
}
.price-promo .promo-row { display: flex; flex-direction: column; gap: 2px; }
.price-promo .promo-row-label {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(16,185,129,.6); font-family: 'Montserrat', sans-serif; margin: 0 0 4px;
}
.price-promo .promo-row-sub { margin-top: 8px; }
.price-promo .promo-divider { height: 1px; background: rgba(16,185,129,.2); margin: 10px 0; }
.price-regular {
  background: rgba(240,244,255,.04); border: 1px solid rgba(240,244,255,.1);
  border-radius: 12px; padding: 20px 28px;
}
.price-regular .price-regular-label {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(240,244,255,.4); font-family: 'Montserrat', sans-serif; margin: 0 0 8px;
}
.price-regular .price-regular-val {
  font-family: 'Fraunces', serif; font-size: 52px; color: rgba(240,244,255,.7);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.price-regular .price-regular-monthly {
  font-size: 16px; color: rgba(240,244,255,.45); margin: 8px 0 0;
  font-family: 'Montserrat', sans-serif; font-variant-numeric: tabular-nums;
}

/* invest features list */
.invest-features {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 48px;
  border-top: 1px solid rgba(240,244,255,.08); padding-top: 24px;
}
.invest-features li {
  font-size: 15px; color: rgba(240,244,255,.62);
  font-family: 'Montserrat', sans-serif; font-weight: 400;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
}
.invest-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* eventos qty control */
.calc-row-eventos { display: flex; align-items: center; gap: 16px; }
.calc-btn-sm {
  width: 64px; height: 52px; border-radius: 10px; font-size: 14px; font-weight: 700;
  border: 1px solid rgba(240,244,255,.12);
  background: rgba(255,255,255,.05); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s; font-family: 'Montserrat', sans-serif;
  color: rgba(240,244,255,.7);
}
.calc-btn-sm:hover { background: rgba(255,255,255,.10); }
.calc-input {
  font-family: 'Fraunces', serif; font-size: 60px; font-weight: 400;
  color: var(--cream); width: 160px; text-align: center;
  font-variant-numeric: tabular-nums; line-height: 1;
  background: transparent; border: none; border-bottom: 2px solid rgba(240,244,255,.18);
  outline: none; padding: 4px 0;
  -moz-appearance: textfield;
}
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-input:focus { border-bottom-color: var(--gold); }

/* ===== Slide 08 — Próximos Passos ===== */
.s-passos {
  background:
    radial-gradient(800px 600px at 80% 20%, rgba(26,108,240,.18), transparent 60%),
    radial-gradient(600px 500px at 10% 80%, rgba(16,185,129,.1), transparent 60%),
    linear-gradient(180deg, #060a14 0%, #0a0e1a 100%);
  color: var(--cream);
}
.s-passos .ps-header {
  position: absolute; left: 100px; right: 100px; top: 80px; text-align: center;
}
.s-passos .timeline-wrap {
  position: absolute; left: 100px; right: 100px; top: 66%; transform: translateY(-50%);
  display: flex; align-items: flex-start; gap: 0;
}
.tl-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.tl-item:not(:last-child)::after {
  content: ''; position: absolute; top: 20px; left: calc(50% + 20px);
  right: calc(-50% + 20px); height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.2) 100%);
}
.tl-dot {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); border: 3px solid #0a0e1a;
  box-shadow: 0 0 0 4px var(--gold-soft), 0 0 20px var(--gold-glow);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; margin-bottom: 28px;
}
.tl-dot-num {
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: #fff;
}
.tl-content { text-align: center; padding: 0 20px; }
.tl-date {
  font-family: 'Montserrat', sans-serif; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan); font-weight: 600; margin-bottom: 10px;
}
.tl-label {
  font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; color: var(--cream); line-height: 1.3;
}

/* ===== Slide 09 — Obrigado ===== */
.s-obrigado {
  background:
    radial-gradient(1200px 800px at 60% 40%, rgba(26,108,240,.18), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(16,185,129,.12), transparent 60%),
    linear-gradient(180deg, #060a14 0%, #0a0e1a 100%);
}
.s-obrigado .ob-left {
  position: absolute; left: 100px; top: 50%; transform: translateY(-55%);
  display: flex; flex-direction: column; gap: 32px;
}
.s-obrigado .ob-logos {
  display: flex; align-items: center; gap: 24px;
}
.s-obrigado .ob-logo-esight { height: 52px; width: auto; }
.s-obrigado .ob-logos-sep { font-size: 28px; color: rgba(240,244,255,.3); font-family: 'Montserrat', sans-serif; }
.s-obrigado .ob-logo-client { height: 44px; width: auto; max-width: 200px; object-fit: contain; }
.s-obrigado .ob-client-name { font-size: 26px; font-weight: 700; font-family: 'Montserrat', sans-serif; color: rgba(240,244,255,.85); letter-spacing: .06em; text-transform: uppercase; }
.s-obrigado .ob-title {
  font-family: 'Fraunces', serif; font-size: 200px; font-weight: 400;
  color: var(--cream); line-height: 0.92; letter-spacing: -.025em; margin: 0;
}
.s-obrigado .ob-title em {
  font-style: italic; color: var(--gold);
}
.s-obrigado .ob-right {
  position: absolute; right: 100px; top: 50%; transform: translateY(-50%);
  width: 580px; display: flex; flex-direction: column; gap: 40px;
}
.s-obrigado .pres-name {
  font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800;
  color: var(--cream); line-height: 1; margin: 0; letter-spacing: -.01em;
}
.s-obrigado .pres-role { font-size: 20px; color: rgba(240,244,255,.5); margin: 8px 0 0; font-family: 'Montserrat', sans-serif; font-weight: 400; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; align-items: center; gap: 16px; font-size: 22px; color: rgba(240,244,255,.82); font-family: 'Montserrat', sans-serif; }
.contact-icon { font-size: 24px; flex-shrink: 0; }
.ob-bottom {
  display: flex; gap: 24px; align-items: center;
}
.qr-block {
  width: 140px; height: 140px; background: #fff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  padding: 12px;
}
