/* ============================================================
   OMEO.FITNESS × SKILL BUSINESS - PROPOSTA
   ============================================================ */

/* ----- TOKENS ----- */
:root {
  --primary: #8B00F5;
  --primary-soft: #A93BFF;
  --secondary: #4E64BA;
  --accent: #00E58F;
  --accent-warm: #FF7A1A;
  --gold: #E8B923;
  --gold-soft: #FBDB74;
  --grad-gold: linear-gradient(135deg, #E8B923 0%, #FBDB74 100%);

  --bg: #07090A;
  --bg-card: #0E1316;
  --bg-card-2: #131A1F;
  --bg-elev: #182026;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #F4F6F7;
  --text-muted: #98A1A8;
  --text-dim: #6B747C;

  --grad-primary: linear-gradient(135deg, #8B00F5 0%, #4E64BA 100%);
  --grad-accent: linear-gradient(135deg, #00E58F 0%, #4E64BA 100%);
  --grad-warm: linear-gradient(135deg, #FF7A1A 0%, #8B00F5 100%);

  --shadow-card: 0 18px 60px -20px rgba(139, 0, 245, 0.25), 0 6px 20px -8px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 80px -10px rgba(139, 0, 245, 0.4);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----- RESET ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

/* ----- AMBIENT BACKGROUND ----- */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: orbFloat 18s ease-in-out infinite;
}

.ambient-orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -200px;
  right: -150px;
}

.ambient-orb--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  animation-delay: -9s;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

/* ----- DECK & SLIDES ----- */
.deck {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 72px 110px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease), visibility 0.5s;
  overflow-y: auto;
  overflow-x: hidden;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.slide.is-prev {
  transform: translateX(-40px);
}

.slide-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-width: 0;
}

.slide { overflow-x: hidden; }

/* scrollbar */
.slide::-webkit-scrollbar { width: 6px; }
.slide::-webkit-scrollbar-track { background: transparent; }
.slide::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }

/* ----- TIPOGRAFIA & UTILITÁRIOS ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-soft);
  padding: 6px 12px;
  background: rgba(139, 0, 245, 0.12);
  border: 1px solid rgba(139, 0, 245, 0.3);
  border-radius: 100px;
  margin-bottom: 18px;
}

.eyebrow--main {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px -8px rgba(139, 0, 245, 0.6);
}

.eyebrow--side {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border-color: var(--border-strong);
}

.slide-head {
  margin-bottom: 36px;
}

.slide-head--center {
  text-align: center;
}

.slide-title {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.slide-title--big {
  font-size: clamp(40px, 5.2vw, 72px);
}

.slide-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.6;
}

.slide-head--center .slide-lead {
  margin-left: auto;
  margin-right: auto;
}

.hl {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hl-grad {
  background: linear-gradient(135deg, #00E58F 0%, #8B00F5 60%, #FF7A1A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dot {
  color: var(--accent);
}

/* ============================================================
   SLIDE 1 - CAPA
   ============================================================ */
.slide--cover {
  align-items: center;
}

.cover-stage {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.cover-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand--skill .brand-logo { color: var(--accent); }

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-x {
  font-size: 28px;
  color: var(--text-dim);
  font-weight: 300;
}

.cover-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.cover-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: titleIn 0.8s var(--ease) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line--accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cover-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.5;
}

.cover-meta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 18px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 40px;
}

.meta-item {
  text-align: left;
}

.meta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.meta-value {
  font-size: 14px;
  font-weight: 600;
}

.meta-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: hintPulse 2s ease-in-out infinite;
}

.scroll-hint i {
  color: var(--accent);
  animation: hintArrow 1.5s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes hintArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ============================================================
   SLIDE 2 - CUSTO DO SILÊNCIO
   ============================================================ */
.silence-stage {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
}

.silence-hero {
  background: linear-gradient(150deg, rgba(139, 0, 245, 0.18), rgba(255, 122, 26, 0.08));
  border: 1px solid rgba(139, 0, 245, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px 34px;
  position: relative;
  overflow: hidden;
}

.silence-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.25), transparent 65%);
  filter: blur(40px);
}

.silence-big-num {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.sbn-prefix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sbn-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(96px, 12vw, 168px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #FF7A1A 0%, #8B00F5 60%, #4E64BA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.sbn-value small {
  font-size: 0.55em;
  font-weight: 800;
}

.sbn-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-top: -4px;
  letter-spacing: -0.01em;
}

.silence-explain {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.silence-explain strong {
  color: var(--text);
  font-weight: 700;
}

.silence-zero {
  color: var(--accent-warm) !important;
  letter-spacing: 0.05em;
}

.silence-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.silence-tag i {
  color: var(--accent-warm);
  font-size: 16px;
}

.silence-pains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pain-card--mini {
  padding: 18px 18px;
}

.pain-card--mini .pain-icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
  margin-bottom: 12px;
}

.pain-card--mini h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.pain-card--mini p {
  font-size: 12px;
  line-height: 1.5;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 0, 245, 0.4);
  box-shadow: var(--shadow-card);
}

.pain-card:hover::before {
  opacity: 0.15;
}

.pain-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(139, 0, 245, 0.12);
  border: 1px solid rgba(139, 0, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-soft);
  margin-bottom: 18px;
}

.pain-rep {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.pain-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pain-card h3 em {
  font-style: normal;
  color: var(--primary-soft);
}

.pain-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.pain-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(139, 0, 245, 0.12), rgba(78, 100, 186, 0.12));
  border: 1px solid rgba(139, 0, 245, 0.2);
  border-radius: var(--radius);
  font-size: 16px;
}

.pain-cta i {
  font-size: 22px;
  color: var(--accent-warm);
}

/* ============================================================
   SLIDE 3 - APRESENTANDO
   ============================================================ */
.intro-stage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.intro-orb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 420px;
}

.intro-orb {
  width: 320px;
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-orb-core {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: white;
  box-shadow: var(--shadow-glow);
  z-index: 4;
  animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}

.orb-ring--1 {
  width: 200px;
  height: 200px;
  border-color: rgba(139, 0, 245, 0.4);
  animation: ringSpin 12s linear infinite;
}

.orb-ring--2 {
  width: 260px;
  height: 260px;
  border-color: rgba(78, 100, 186, 0.3);
  border-style: dashed;
  animation: ringSpin 18s linear infinite reverse;
}

.orb-ring--3 {
  width: 320px;
  height: 320px;
  border-color: rgba(0, 229, 143, 0.18);
  animation: ringSpin 24s linear infinite;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.orb-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  top: 50%;
  left: 50%;
  margin: -5px;
  animation: particleOrbit 8s linear infinite;
  animation-delay: calc(var(--i) * -1.3s);
}

@keyframes particleOrbit {
  from {
    transform: rotate(0deg) translateX(140px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(140px) rotate(-360deg);
  }
}

@keyframes particleOrbitMobile {
  from {
    transform: rotate(0deg) translateX(95px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(95px) rotate(-360deg);
  }
}

.intro-copy {
  max-width: 580px;
}

.intro-lead {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  margin-bottom: 28px;
}

.intro-lead strong {
  color: var(--text);
  font-weight: 700;
}

.intro-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.intro-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}

.intro-bullets i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 229, 143, 0.15);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.intro-tag {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent-warm);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.intro-tag i {
  color: var(--accent-warm);
  font-size: 18px;
  margin-top: 2px;
}

/* ============================================================
   SLIDE 4 - PERFIS
   ============================================================ */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.profile-grid--5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.profile-grid--5 .profile-card {
  padding: 24px 18px;
}

.profile-grid--5 .profile-icon {
  width: 56px;
  height: 56px;
  font-size: 22px;
  margin-bottom: 18px;
}

.profile-grid--5 .profile-name {
  font-size: 24px;
}

.profile-grid--5 .profile-skills span {
  font-size: 10.5px;
  padding: 4px 8px;
}

.profile-card--hero {
  border-color: rgba(139, 0, 245, 0.5) !important;
  background: linear-gradient(160deg, rgba(139, 0, 245, 0.10), var(--bg-card)) !important;
  box-shadow: 0 12px 40px -12px rgba(139, 0, 245, 0.4);
}

.profile-card--hero::before {
  transform: scaleX(1) !important;
}

.profile-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(0, 229, 143, 0.08), transparent);
  border: 1px solid rgba(0, 229, 143, 0.25);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--text-muted);
}

.profile-foot i {
  color: var(--accent);
  font-size: 18px;
}

.profile-foot strong {
  color: var(--text);
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.profile-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 0, 245, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.profile-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 0, 245, 0.5);
  box-shadow: var(--shadow-card);
}

.profile-card:hover::before {
  transform: scaleX(1);
}

.profile-card:hover::after {
  opacity: 1;
}

.profile-card:hover .profile-icon {
  transform: scale(1.1) rotate(-5deg);
}

.profile-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.profile-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease-snap);
  box-shadow: 0 12px 32px -10px rgba(139, 0, 245, 0.5);
}

.profile-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.profile-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.profile-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.profile-skills span {
  font-size: 11px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  font-weight: 500;
}

.profile-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-soft);
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.profile-cta i {
  transition: transform 0.3s;
}

.profile-card:hover .profile-cta i {
  transform: translateX(6px);
}

/* ============================================================
   SLIDE 5 - FUNIL
   ============================================================ */
.funnel-stage {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 32px;
  margin-bottom: 28px;
  overflow: hidden;
}

.funnel-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.funnel-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 8px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  min-width: 120px;
}

.funnel-step:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px -10px rgba(139, 0, 245, 0.4);
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  margin-bottom: 12px;
}

.step-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.step-meta {
  font-size: 11px;
  color: var(--text-dim);
}

.funnel-arrow {
  color: var(--text-dim);
  font-size: 14px;
  flex-shrink: 0;
}

.funnel-leads {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.funnel-lead-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: leadFlow 4s linear infinite;
}

@keyframes leadFlow {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.funnel-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ff-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
}

.ff-item i {
  color: var(--accent);
  font-size: 16px;
}

/* ============================================================
   SLIDE 6 - QUALIFICAÇÃO
   ============================================================ */
.gates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
}

.gate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-primary);
}

.gate-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary-soft);
  background: rgba(139, 0, 245, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.gate-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.gate-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.gate-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gate-flow i {
  color: var(--text-dim);
  font-size: 11px;
}

.flow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid;
}

.flow-pill.ok {
  background: rgba(0, 229, 143, 0.1);
  border-color: rgba(0, 229, 143, 0.3);
  color: var(--accent);
}

.flow-pill.warn {
  background: rgba(255, 122, 26, 0.1);
  border-color: rgba(255, 122, 26, 0.3);
  color: var(--accent-warm);
}

.qualify-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(90deg, rgba(0, 229, 143, 0.08), transparent);
  border: 1px solid rgba(0, 229, 143, 0.2);
  border-radius: var(--radius);
  font-size: 14px;
}

.qualify-foot i {
  color: var(--accent);
  font-size: 18px;
}

/* ============================================================
   SLIDE 7 - ENGINE
   ============================================================ */
.engine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.engine-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: all 0.3s var(--ease);
}

.engine-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 0, 245, 0.4);
  box-shadow: var(--shadow-card);
}

.engine-card:hover .ec-icon {
  background: var(--grad-primary);
  color: white;
}

.ec-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(139, 0, 245, 0.1);
  border: 1px solid rgba(139, 0, 245, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-soft);
  margin-bottom: 16px;
  transition: all 0.3s;
}

.engine-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.engine-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   SLIDE 8 - CONVERSACIONAL
   ============================================================ */
.conv-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.conv-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.conv-feat {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: flex-start;
}

.cf-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
}

.conv-feat h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.conv-feat p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.chat-mock {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.chat-mock-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card-2);
  border-bottom: 1px solid var(--border);
}

.cm-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
}

.cm-name {
  font-size: 14px;
  font-weight: 700;
}

.cm-status {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot-online {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.chat-mock-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.005) 20px, rgba(255, 255, 255, 0.005) 40px),
    var(--bg-card);
}

.bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.4s var(--ease) forwards;
}

.bubble--in {
  align-self: flex-start;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.bubble--out {
  align-self: flex-end;
  background: var(--grad-primary);
  border-bottom-right-radius: 4px;
  color: white;
}

.bubble--typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
}

.bubble--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  opacity: 0.6;
  animation: typingDot 1.2s infinite;
}

.bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

@keyframes bubbleIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SLIDE 9 - SOPHIA
   ============================================================ */
.sophia-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 32px;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.sp-step {
  flex: 0 0 auto;
  width: 130px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  padding: 8px 4px;
  border-radius: 14px;
  transition: background 0.2s;
}

.sp-step:hover {
  background: rgba(139, 0, 245, 0.08);
}

.sp-step:hover .sp-name {
  color: var(--primary-soft);
}

.sp-step::after {
  content: '\f05a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 11px;
  color: var(--text-dim);
  opacity: 0;
  transition: opacity 0.2s;
}

.sp-step:hover::after { opacity: 1; }

.sp-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--bg-card-2);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-soft);
  margin: 0 auto 14px;
  transition: all 0.4s var(--ease-snap);
  position: relative;
}

.sp-step--final .sp-icon {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 12px 32px -10px rgba(139, 0, 245, 0.5);
}

.sp-step:hover .sp-icon {
  transform: scale(1.1);
  background: var(--grad-primary);
  color: white;
}

.sp-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.sp-desc {
  font-size: 11.5px;
  color: var(--text-muted);
}

.sp-line {
  flex: 1;
  height: 2px;
  background: var(--border-strong);
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

.sp-pulse {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: sophiaPulse 2.5s linear infinite;
}

@keyframes sophiaPulse {
  to { left: 100%; }
}

.sp-line:nth-of-type(2) .sp-pulse { animation-delay: 0.3s; }
.sp-line:nth-of-type(4) .sp-pulse { animation-delay: 0.6s; }
.sp-line:nth-of-type(6) .sp-pulse { animation-delay: 0.9s; }
.sp-line:nth-of-type(8) .sp-pulse { animation-delay: 1.2s; }
.sp-line:nth-of-type(10) .sp-pulse { animation-delay: 1.5s; }

.sophia-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.sf-item {
  padding: 18px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-muted);
}

.sf-item--accent {
  background: linear-gradient(90deg, rgba(0, 229, 143, 0.12), rgba(139, 0, 245, 0.08));
  border-color: rgba(0, 229, 143, 0.3);
  color: var(--text);
}

.sf-item strong {
  color: var(--text);
  margin-right: 4px;
}

.sf-item--accent strong {
  color: var(--accent);
}

.sf-arrow {
  color: var(--accent);
  font-size: 22px;
}

/* ============================================================
   SLIDE 10 - MÓDULOS INTERNOS
   ============================================================ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.mod-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
  mix-blend-mode: overlay;
}

.mod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 0, 245, 0.4);
}

.mod-card:hover::before {
  opacity: 0.12;
}

.mod-card:hover .mod-icon {
  background: var(--grad-primary);
  color: white;
}

.mod-card > * {
  position: relative;
  z-index: 1;
}

.mod-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(139, 0, 245, 0.1);
  border: 1px solid rgba(139, 0, 245, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-soft);
  margin-bottom: 14px;
  transition: all 0.3s;
}

.mod-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.mod-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   SLIDE 11 - DASHBOARD MOCK
   ============================================================ */
.dashboard-mock {
  display: grid;
  grid-template-columns: 210px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 500px;
}

.dm-sidebar {
  background: var(--bg-card-2);
  border-right: 1px solid var(--border);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dm-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dm-logo i { color: var(--accent); }

.dm-nav-item {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.dm-nav-item i { width: 16px; }

.dm-nav-item.active {
  background: rgba(139, 0, 245, 0.18);
  color: white;
}

.dm-nav-item.active::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--grad-primary);
  border-radius: 0 3px 3px 0;
}

.dm-nav-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.dm-hint {
  margin-top: auto;
  padding: 10px 12px;
  font-size: 10.5px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
}

.dm-hint i { color: var(--accent); }

.dm-badge {
  margin-left: auto;
  font-size: 10px;
  background: var(--primary);
  color: white;
  padding: 2px 6px;
  border-radius: 100px;
  font-weight: 700;
}

.dm-main {
  padding: 22px 26px;
}

.dm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dm-title {
  font-size: 18px;
  font-weight: 700;
}

.dm-actions {
  display: flex;
  gap: 8px;
}

.dm-chip {
  padding: 6px 12px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dm-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.dm-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.dm-card-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.dm-card-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.dm-card-trend {
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dm-card-trend.up { color: var(--accent); }

.dm-chart {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.dm-chart-head {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.dm-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 130px;
}

.dm-bar {
  flex: 1;
  height: var(--h);
  background: var(--grad-primary);
  border-radius: 6px 6px 0 0;
  position: relative;
  opacity: 0.85;
  transition: opacity 0.3s;
  min-height: 12px;
}

.dm-bar:hover { opacity: 1; }

.dm-bar span {
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
}

/* ----- SLIDE 11 - VIEWS NAVEGÁVEIS ----- */
.dm-view {
  display: none;
  animation: dmViewIn 0.35s var(--ease);
}

.dm-view.is-active {
  display: block;
}

@keyframes dmViewIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mensagens (3-col) */
.dm-msgs {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.9fr;
  gap: 12px;
  height: 380px;
}

.dm-msgs-list,
.dm-msgs-chat,
.dm-msgs-detail {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dm-msgs-list { padding: 6px; gap: 4px; }

.dm-conv {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.dm-conv:hover { background: rgba(255, 255, 255, 0.04); }
.dm-conv.active { background: rgba(139, 0, 245, 0.15); }

.dm-conv-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: white;
}

.dm-conv-info { min-width: 0; }

.dm-conv-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 2px;
}

.dm-conv-top span {
  color: var(--text-dim);
  font-size: 10px;
}

.dm-conv-preview {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dm-conv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.dm-msgs-chat { padding: 0; }

.dm-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.dm-chat-body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.dm-bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.45;
}

.dm-bubble.in {
  align-self: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom-left-radius: 3px;
}

.dm-bubble.out {
  align-self: flex-end;
  background: var(--grad-primary);
  color: white;
  border-bottom-right-radius: 3px;
}

.dm-msgs-detail { padding: 14px; gap: 14px; }

.dm-detail-section + .dm-detail-section {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.dm-detail-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.dm-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  padding: 4px 0;
}

.dm-detail-row span { color: var(--text-muted); }
.dm-detail-row strong { font-weight: 600; }

/* Kanban */
.dm-kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  height: 380px;
}

.dm-col {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dm-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border);
}

.dm-col-count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 7px;
  border-radius: 100px;
}

.dm-kcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.dm-kcard:hover {
  border-color: rgba(139, 0, 245, 0.4);
  transform: translateX(2px);
}

.dm-kcard-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.dm-kcard-meta {
  font-size: 10.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dm-kcard-warn { color: var(--accent-warm); }
.dm-kcard-ok { border-color: rgba(0, 229, 143, 0.3); }
.dm-kcard-ok .dm-kcard-meta { color: var(--accent); }

/* Calendário */
.dm-cal-day {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.dm-cal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dm-cal-event {
  display: grid;
  grid-template-columns: 56px 4px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s;
}

.dm-cal-event:hover {
  border-color: rgba(139, 0, 245, 0.3);
  transform: translateX(2px);
}

.dm-cal-time {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.dm-cal-bar {
  width: 4px;
  height: 32px;
  background: var(--c, var(--primary));
  border-radius: 4px;
}

.dm-cal-info { display: flex; flex-direction: column; gap: 2px; }

.dm-cal-info strong {
  font-size: 12.5px;
  font-weight: 600;
}

.dm-cal-info span {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dm-cal-tag {
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
}

.dm-cal-tag.ok {
  background: rgba(0, 229, 143, 0.12);
  border-color: rgba(0, 229, 143, 0.3);
  color: var(--accent);
}

.dm-cal-tag.warn {
  background: rgba(255, 122, 26, 0.12);
  border-color: rgba(255, 122, 26, 0.3);
  color: var(--accent-warm);
}

/* Toggle agenda/calls */
.dm-chip--toggle {
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.dm-chip--toggle.is-on {
  opacity: 1;
  background: rgba(139, 0, 245, 0.18);
  border-color: rgba(139, 0, 245, 0.35);
  color: white;
}

/* Ajustes */
.dm-settings {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dm-set-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.dm-set-card:hover {
  border-color: rgba(139, 0, 245, 0.4);
  transform: translateX(3px);
}

.dm-set-card > i:last-child {
  color: var(--text-dim);
  font-size: 12px;
}

.dm-set-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139, 0, 245, 0.12);
  border: 1px solid rgba(139, 0, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-soft);
}

.dm-set-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.dm-set-card span {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
}

.dm-card-trend.down { color: var(--accent-warm); }

/* ============================================================
   SLIDE 12 - INTEGRAÇÕES
   ============================================================ */
.int-section { margin-bottom: 22px; }

.int-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.int-section-title i { font-size: 13px; }

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 0;
}

.int-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: all 0.3s var(--ease);
  min-height: 130px;
}

.int-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 0, 245, 0.4);
  box-shadow: 0 10px 24px -10px rgba(139, 0, 245, 0.3);
}

.int-card--more {
  border-style: dashed;
  background: transparent;
}

.int-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  flex-shrink: 0;
}

.int-logo.whatsapp   { background: #25D366; color: white; }
.int-logo.instagram  { background: linear-gradient(45deg, #FFC700 0%, #FF5722 25%, #E91E63 50%, #9C27B0 75%, #3F51B5 100%); color: white; }
.int-logo.messenger  { background: linear-gradient(135deg, #0099FF, #A033FF, #FF6680); color: white; }
.int-logo.tiktok     { background: #000; color: white; box-shadow: -2px -2px 0 #FF004F, 2px 2px 0 #00F2EA; }
.int-logo.telegram   { background: #0088CC; color: white; }
.int-logo.email      { background: var(--bg-card-2); border: 1px solid var(--border-strong); color: var(--accent); }
.int-logo.chatwoot   { background: #1F93FF; color: white; }
.int-logo.asaas      { background: #00C4A7; color: white; }
.int-logo.autentique { background: #6F42C1; color: white; }
.int-logo.hotmart    { background: #F04E23; color: white; }
.int-logo.stripe     { background: #635BFF; color: white; }
.int-logo.pix        { background: #00B8A9; color: white; }
.int-logo.google     { background: white; color: #4285F4; }
.int-logo.openai     { background: var(--grad-primary); color: white; }
.int-logo.webhook    { background: var(--bg-card-2); border: 1px solid var(--border-strong); color: var(--accent); }
.int-logo.more       { background: transparent; border: 1px dashed var(--border-strong); color: var(--text-muted); }

.int-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.int-card p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

.int-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12.5px;
  color: var(--text-muted);
}

.int-foot i {
  color: var(--primary-soft);
}

.int-foot strong {
  color: var(--text);
}

/* ============================================================
   SLIDE 13 - COMPLIANCE
   ============================================================ */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.comp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: all 0.3s;
}

.comp-card:hover {
  border-color: rgba(0, 229, 143, 0.3);
  transform: translateY(-3px);
}

.comp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 229, 143, 0.1);
  border: 1px solid rgba(0, 229, 143, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 18px;
}

.comp-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.comp-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   SLIDE 14 - PLANO FULL STACK
   ============================================================ */
.slide--fullstack .slide-head { margin-bottom: 28px; }

.fs-price-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px 36px;
  margin-bottom: 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 229, 143, 0.15), transparent 60%),
    linear-gradient(140deg, rgba(139, 0, 245, 0.25) 0%, rgba(78, 100, 186, 0.10) 60%, rgba(0, 229, 143, 0.10) 100%);
  border: 1px solid rgba(139, 0, 245, 0.45);
  box-shadow: 0 28px 70px -20px rgba(139, 0, 245, 0.55);
  position: relative;
  overflow: hidden;
}

.fs-price-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.fs-price-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.fs-price-original {
  display: flex;
  align-items: baseline;
  gap: 8px;
  opacity: 0.6;
}

.fs-price-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fs-price-label--accent { color: var(--accent); }

.fs-price-num-strike {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--accent-warm);
  text-decoration-thickness: 2px;
  letter-spacing: -0.02em;
}

.fs-price-period {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.fs-price-now {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 4px;
}

.fs-price-final {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
}

.fs-price-currency {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #00E58F 0%, #FFC700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fs-price-value {
  font-size: clamp(72px, 9vw, 110px);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(135deg, #00E58F 0%, #8B00F5 60%, #FFC700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fs-price-cents {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 0.9;
  background: linear-gradient(135deg, #00E58F 0%, #8B00F5 60%, #FFC700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: -4px;
  align-self: flex-start;
  letter-spacing: -0.02em;
}

.fs-price-final .fs-price-period {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.fs-price-setup {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text);
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(0, 229, 143, 0.10);
  border: 1px solid rgba(0, 229, 143, 0.3);
  border-radius: var(--radius-sm);
}

.fs-price-setup i {
  color: var(--accent);
  font-size: 14px;
}

.fs-price-setup strong {
  color: var(--accent);
  font-weight: 700;
}

.fs-price-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.fs-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  padding: 14px 20px;
  background: linear-gradient(135deg, #FFC700 0%, #FF7A1A 100%);
  border-radius: var(--radius);
  color: var(--bg);
  box-shadow: 0 16px 40px -10px rgba(255, 122, 26, 0.6);
  animation: discountPulse 2.5s ease-in-out infinite;
}

@keyframes discountPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 16px 40px -10px rgba(255, 122, 26, 0.6); }
  50% { transform: scale(1.03); box-shadow: 0 20px 50px -10px rgba(255, 122, 26, 0.8); }
}

.fs-discount-badge i { font-size: 28px; }

.fs-discount-badge strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.fs-discount-badge span {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}

.fs-discount-explain {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
}

.fs-discount-explain strong { color: var(--accent); font-weight: 700; }

.fs-discount-tag {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

.fs-discount-tag i {
  color: var(--accent-warm);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.fs-price-now--solo {
  margin-top: 0;
}

.fs-included-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  padding: 14px 20px;
  background: linear-gradient(135deg, #00E58F 0%, #4E64BA 100%);
  border-radius: var(--radius);
  color: white;
  box-shadow: 0 12px 32px -10px rgba(0, 229, 143, 0.5);
}

.fs-included-badge i { font-size: 28px; }

.fs-included-badge strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}

.fs-included-badge span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 4px;
  opacity: 0.85;
}

.fs-included-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fs-included-list li {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}

.fs-included-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 229, 143, 0.15);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.fs-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.fs-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.fs-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
}

.fs-pillar--external::before { background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.fs-pillar--internal::before { background: linear-gradient(90deg, var(--accent), var(--secondary)); }

.fs-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 0, 245, 0.4);
  box-shadow: var(--shadow-card);
}

.fs-pillar-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}

.fs-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
}

.fs-pillar--external .fs-pillar-icon {
  background: var(--grad-primary);
  box-shadow: 0 12px 30px -8px rgba(139, 0, 245, 0.5);
}

.fs-pillar--internal .fs-pillar-icon {
  background: linear-gradient(135deg, #00E58F 0%, #4E64BA 100%);
  box-shadow: 0 12px 30px -8px rgba(0, 229, 143, 0.4);
}

.fs-pillar-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.fs-pillar--internal .fs-pillar-tag { color: var(--accent); }

.fs-pillar-head h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.fs-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fs-list li {
  position: relative;
  padding-left: 28px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

.fs-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fs-pillar--external .fs-list li i {
  color: var(--primary-soft);
  background: rgba(139, 0, 245, 0.12);
}

.fs-pillar--internal .fs-list li i {
  color: var(--accent);
  background: rgba(0, 229, 143, 0.12);
}

.fs-list li strong {
  color: var(--text);
  font-weight: 700;
}

.fs-tech {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 18px;
}

.fs-tech-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.fs-tech-head i { font-size: 14px; }

.fs-tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fs-tech-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.2s;
}

.fs-tech-chips span:hover {
  border-color: rgba(139, 0, 245, 0.4);
  color: var(--text);
  background: rgba(139, 0, 245, 0.08);
}

.fs-tech-chips i {
  font-size: 11px;
  color: var(--primary-soft);
}

.fs-conditions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fs-cond-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.fs-cond-item i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 229, 143, 0.12);
  border: 1px solid rgba(0, 229, 143, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
}

.fs-cond-item strong {
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  margin-right: 4px;
}

.fs-cond-item span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   SLIDE 15 - PROJEÇÃO REPASSE PARTNERSHIP
   ============================================================ */
.slide--partnership .slide-head { margin-bottom: 24px; }

/* Hero number */
.ptn-hero {
  text-align: center;
  padding: 36px 28px;
  margin-bottom: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse at center, rgba(0, 229, 143, 0.18) 0%, transparent 60%),
    linear-gradient(140deg, rgba(139, 0, 245, 0.20) 0%, rgba(0, 229, 143, 0.10) 100%);
  border: 1px solid rgba(0, 229, 143, 0.4);
  box-shadow: 0 32px 80px -20px rgba(0, 229, 143, 0.4);
  position: relative;
  overflow: hidden;
}

.ptn-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.15), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.ptn-hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.ptn-hero-value {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.ptn-hero-currency {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  background: linear-gradient(135deg, #00E58F 0%, #FFC700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ptn-hero-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(80px, 11vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #00E58F 0%, #8B00F5 50%, #FFC700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 80px rgba(0, 229, 143, 0.4);
}

.ptn-hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

.ptn-hero-sub i {
  color: var(--accent-warm);
  font-size: 14px;
}

.ptn-hero-sub strong {
  color: var(--accent);
  font-weight: 700;
}

.ptn-sep {
  color: var(--text-dim);
}

/* Tabela */
.ptn-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 22px;
}

.ptn-table-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.ptn-table-head i { color: var(--primary-soft); font-size: 13px; }

.ptn-row {
  display: grid;
  grid-template-columns: 60px 1.1fr 1.2fr 1.2fr 1.4fr;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 6px;
  align-items: center;
  font-size: 13px;
  transition: all 0.2s;
}

.ptn-row:not(.ptn-row--head):hover {
  border-color: rgba(0, 229, 143, 0.3);
}

.ptn-row > div {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ptn-row--head {
  background: transparent;
  border-color: transparent;
  padding: 4px 14px 8px;
}

.ptn-row--head > div {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ptn-month {
  font-size: 18px;
  color: var(--primary-soft);
  text-align: center;
}

.ptn-skill {
  color: var(--accent) !important;
  font-size: 14px;
}

.ptn-cumul {
  color: var(--text);
  font-size: 14px;
  font-weight: 800 !important;
}

/* Linha final - destacada */
.ptn-row--final {
  background: linear-gradient(90deg, rgba(0, 229, 143, 0.12), rgba(139, 0, 245, 0.10));
  border-color: rgba(0, 229, 143, 0.4);
  padding: 16px 14px;
}

.ptn-row--final .ptn-month {
  color: var(--accent);
  font-size: 22px;
}

.ptn-cumul--final {
  background: linear-gradient(135deg, #00E58F 0%, #FFC700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px !important;
  font-weight: 900 !important;
}

/* Callouts */
.ptn-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.ptn-call {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
}

.ptn-call-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 229, 143, 0.12);
  border: 1px solid rgba(0, 229, 143, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
}

.ptn-call strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.ptn-call span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.ptn-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 11.5px;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.5;
}

.ptn-foot i { color: var(--text-muted); font-size: 13px; flex-shrink: 0; }

/* ============================================================
   SLIDE 16 - PROPOSTA A (REFORÇADA)
   ============================================================ */
.prop-a-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
}

.prop-a-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pa-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.pa-item:hover {
  border-color: rgba(139, 0, 245, 0.3);
  transform: translateX(4px);
}

.pa-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pa-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.pa-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.prop-a-card {
  background: linear-gradient(150deg, rgba(139, 0, 245, 0.15), rgba(78, 100, 186, 0.08));
  border: 1px solid rgba(139, 0, 245, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: sticky;
  top: 0;
  height: fit-content;
}

.pac-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 18px;
}

.pac-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pac-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.pac-list i {
  color: var(--accent);
  font-size: 13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 229, 143, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pac-foot {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.pac-foot i {
  color: var(--accent-warm);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ============================================================
   SLIDE 15 - PROPOSTA B (SCP)
   ============================================================ */
.scp-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.scp-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: all 0.3s;
}

.scp-pillar:hover {
  border-color: rgba(139, 0, 245, 0.4);
  transform: translateY(-4px);
}

.scp-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 12px 32px -10px rgba(139, 0, 245, 0.5);
}

.scp-pillar--right .scp-icon {
  background: var(--grad-accent);
  box-shadow: 0 12px 32px -10px rgba(0, 229, 143, 0.5);
}

.scp-pillar h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.scp-pillar ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scp-pillar li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.scp-pillar li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-soft);
}

.scp-pillar--right li::before { background: var(--accent); }

.scp-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.scp-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  min-height: 60px;
}

.scp-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  background: var(--bg);
  border: 2px solid var(--primary);
  padding: 10px 16px;
  border-radius: 100px;
  color: white;
  box-shadow: 0 0 30px rgba(139, 0, 245, 0.4);
  animation: scpPulse 2.5s ease-in-out infinite;
}

@keyframes scpPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(139, 0, 245, 0.4); }
  50% { box-shadow: 0 0 50px rgba(139, 0, 245, 0.7); }
}

.scp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.scp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  transition: all 0.3s;
}

.scp-card:hover {
  border-color: rgba(139, 0, 245, 0.4);
  transform: translateY(-3px);
}

.scp-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scp-card h5 i {
  color: var(--accent);
  font-size: 14px;
}

.scp-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   SLIDE 16 - POR QUE AGORA
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.why-card::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 80px;
  height: 80px;
  background: var(--grad-primary);
  filter: blur(40px);
  opacity: 0.4;
  transition: opacity 0.3s;
}

.why-card:hover {
  border-color: rgba(139, 0, 245, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.why-card:hover::before {
  opacity: 0.7;
}

.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.why-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.why-card p strong {
  color: var(--text);
}

.why-card p em {
  font-style: italic;
  color: var(--accent);
}

/* ============================================================
   SLIDE 17 - CTA
   ============================================================ */
.cta-roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
  position: relative;
}

.cs-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.cta-tracks {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.cta-track {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  position: relative;
}

.cta-track:first-child {
  border-color: rgba(139, 0, 245, 0.4);
  background: linear-gradient(135deg, rgba(139, 0, 245, 0.12), rgba(78, 100, 186, 0.05));
  box-shadow: 0 12px 32px -12px rgba(139, 0, 245, 0.4);
}

.ct-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.ct-tag--primary {
  background: var(--grad-primary);
  color: white;
}

.ct-tag--side {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}

.cta-track h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.cta-track p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.cta-roadmap::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.cta-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.cta-step:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 0, 245, 0.4);
}

.cs-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 4px var(--bg-card), 0 8px 22px -6px rgba(139, 0, 245, 0.5);
}

.cs-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.cs-content p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cta-demo {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 100% 50%, rgba(0, 229, 143, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(139, 0, 245, 0.20) 0%, rgba(78, 100, 186, 0.12) 100%);
  border: 1px solid rgba(0, 229, 143, 0.4);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 60px -20px rgba(0, 229, 143, 0.4);
}

.cta-demo::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-demo:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 143, 0.7);
  box-shadow: 0 28px 70px -16px rgba(0, 229, 143, 0.6);
}

.cta-demo:hover .cta-demo-arrow i {
  transform: translateX(8px);
}

.cta-demo-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, #00E58F 0%, #8B00F5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  box-shadow: 0 16px 40px -10px rgba(0, 229, 143, 0.6);
  position: relative;
  z-index: 1;
  animation: demoPulse 2.5s ease-in-out infinite;
}

@keyframes demoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.cta-demo-text {
  position: relative;
  z-index: 1;
}

.cta-demo-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 6px;
}

.cta-demo-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.cta-demo-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cta-demo-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.cta-demo-arrow i {
  transition: transform 0.3s var(--ease);
}

.cta-final {
  background: linear-gradient(135deg, rgba(139, 0, 245, 0.15), rgba(0, 229, 143, 0.08));
  border: 1px solid rgba(139, 0, 245, 0.3);
  border-radius: var(--radius-xl);
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta-final-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.cta-final-text p {
  font-size: 15px;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.btn--primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 12px 32px -10px rgba(139, 0, 245, 0.6);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(139, 0, 245, 0.8);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--primary);
  background: rgba(139, 0, 245, 0.08);
}

.cta-signature {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   NAVEGAÇÃO INFERIOR
   ============================================================ */
.deck-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  background: rgba(14, 19, 22, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  z-index: 100;
  box-shadow: 0 18px 50px -10px rgba(0, 0, 0, 0.6);
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
}

.nav-btn:hover:not(:disabled) {
  background: var(--grad-primary);
  border-color: transparent;
  transform: scale(1.05);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nav-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}

.np-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.np-fill {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 100px;
  transition: width 0.5s var(--ease);
  width: 5.88%;
}

.np-counter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
}

.np-counter span:first-child {
  color: var(--text);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s var(--ease-snap);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

.modal.is-open .modal-panel {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
  z-index: 1;
}

.modal-close:hover {
  background: var(--primary);
  color: white;
  border-color: transparent;
}

.modal-content {
  /* preenchido via JS */
}

.mc-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.mc-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 12px 30px -8px rgba(139, 0, 245, 0.5);
}

.mc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mc-role {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.mc-section {
  margin-bottom: 24px;
}

.mc-section h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.mc-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.mc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mc-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text);
}

.mc-list li i {
  color: var(--accent);
  font-size: 13px;
  margin-top: 4px;
}

.mc-list li strong {
  color: var(--text);
  font-weight: 600;
}

.mc-list li span {
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1100px) {
  .slide { padding: 40px 36px 110px; align-items: flex-start; }
  .pain-grid, .modules-grid, .engine-grid { grid-template-columns: repeat(2, 1fr); }
  .silence-stage { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .fs-price-hero { grid-template-columns: 1fr; gap: 22px; padding: 26px 26px; }
  .fs-pillars { grid-template-columns: 1fr; }
  .fs-conditions { grid-template-columns: repeat(2, 1fr); }
  .cta-tracks { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .scp-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-roadmap { grid-template-columns: repeat(2, 1fr); }
  .cta-roadmap::before { display: none; }
  .conv-layout, .intro-stage, .prop-a-layout { grid-template-columns: 1fr; gap: 32px; }
  .scp-layout { grid-template-columns: 1fr; }
  .scp-connector { flex-direction: row; }
  .scp-line { width: 100%; height: 2px; min-height: auto; }
  .funnel-track { flex-wrap: wrap; }
  .sophia-pipeline { flex-wrap: wrap; gap: 20px; }
  .sp-line { display: none; }
  .dashboard-mock { grid-template-columns: 160px 1fr; min-height: auto; }
  .dm-msgs { grid-template-columns: 1fr; height: auto; }
  .dm-msgs-detail { display: none; }
  .dm-kanban { grid-template-columns: repeat(2, 1fr); height: auto; }
  .dm-cards { grid-template-columns: repeat(2, 1fr); }
  .ptn-callouts { grid-template-columns: 1fr; }
  .ptn-row { grid-template-columns: 50px 1fr 1fr 1fr 1.2fr; gap: 8px; font-size: 12px; padding: 10px 12px; }
}

/* iPad portrait (~820px) - ajustes para o profile-grid--5 ficar simetrico */
@media (max-width: 920px) {
  .profile-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .profile-grid--5 .profile-card { padding: 22px 18px; }
  .conv-features { gap: 14px; }
  .fs-price-hero { grid-template-columns: 1fr; gap: 22px; padding: 26px 26px; }
  .fs-pillars { grid-template-columns: 1fr; }
  .fs-conditions { grid-template-columns: repeat(2, 1fr); }
  .ptn-callouts { grid-template-columns: 1fr; }
  .ptn-hero { padding: 28px 22px; }
}

/* Mobile (iPhone) */
@media (max-width: 720px) {
  .slide { padding: max(24px, env(safe-area-inset-top, 0px)) 18px 100px; }
  .slide-title { font-size: clamp(26px, 7vw, 40px); }
  .slide-lead { font-size: 14px; }

  .cover-brands { flex-direction: column; gap: 18px; }
  .cover-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 22px;
    border-radius: var(--radius-lg);
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .meta-divider { display: none; }
  .cover-title { font-size: clamp(34px, 9vw, 56px); }
  .scroll-hint { display: flex; justify-content: center; margin-top: 6px; }

  .pain-grid, .modules-grid, .engine-grid, .profile-grid, .profile-grid--5,
  .integrations-grid, .comp-grid, .scp-grid, .cta-roadmap,
  .gates-grid, .why-grid, .funnel-features,
  .silence-pains, .cta-tracks, .fs-pillars, .fs-conditions,
  .fs-price-hero { grid-template-columns: 1fr; }
  .fs-price-hero { padding: 22px 22px; gap: 18px; }
  .fs-discount-badge { padding: 12px 16px; }
  .fs-discount-badge i { font-size: 24px; }
  .fs-discount-badge strong { font-size: 24px; }
  .fs-tech-chips { gap: 6px; }
  .fs-tech-chips span { font-size: 11px; padding: 5px 10px; }

  .silence-stage { grid-template-columns: 1fr; gap: 18px; }
  .silence-hero { padding: 24px 22px; }
  .sbn-value { font-size: clamp(72px, 22vw, 110px); }
  .sbn-label { font-size: 17px; }

  .profile-card--hero { transform: none; }

  .funnel-step { min-width: 100%; }
  .funnel-arrow { transform: rotate(90deg); }

  .sophia-pipeline { flex-direction: column; }
  .sophia-foot { flex-direction: column; gap: 12px; }
  .sf-arrow { transform: rotate(90deg); }

  .deck-nav { width: calc(100% - 16px); padding: 8px 10px; gap: 10px; bottom: 14px; }
  .nav-progress { min-width: 0; flex: 1; }
  .nav-btn { width: 36px; height: 36px; }
  .modal-panel { padding: 28px 24px; }
  .cta-final { flex-direction: column; text-align: center; padding: 28px 24px; }
  .cta-final-text h3 { font-size: 22px; }
  .cta-demo { grid-template-columns: 60px 1fr; gap: 16px; padding: 22px 22px; }
  .cta-demo-icon { width: 60px; height: 60px; font-size: 28px; border-radius: 16px; }
  .cta-demo-text h3 { font-size: 18px; }
  .cta-demo-text p { font-size: 12px; }
  .cta-demo-arrow { display: none; }

  /* Slide 1 - cover stage */
  .cover-stage { padding: 0 4px; }

  /* Slide 2 - silence */
  .silence-hero { overflow: hidden; }
  .sbn-value { max-width: 100%; word-break: break-all; }

  /* Slide 3 - intro orb reduzido */
  .intro-orb-wrap { min-height: 280px; padding: 20px 0; }
  .intro-orb { width: 220px; height: 220px; }
  .intro-orb-core { width: 100px; height: 100px; font-size: 40px; }
  .orb-ring--1 { width: 150px; height: 150px; }
  .orb-ring--2 { width: 190px; height: 190px; }
  .orb-ring--3 { width: 220px; height: 220px; }
  .orb-particle { animation-name: particleOrbitMobile; }

  /* Slide 4 - profile cards mobile */
  .profile-card { padding: 22px 18px; overflow: hidden; }
  .profile-card::after { display: none; }

  /* Slide 11 - dashboard mock vira coluna unica */
  .dashboard-mock { grid-template-columns: 1fr; min-height: auto; }
  .dm-sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 10px;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .dm-logo { display: none; }
  .dm-nav-item {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 12px;
  }
  .dm-nav-item.active::before { display: none; }
  .dm-hint { display: none; }
  .dm-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
  .dm-card-value { font-size: 22px; }
  .dm-kanban { grid-template-columns: 1fr; }
  .dm-cal-event { grid-template-columns: 50px 4px 1fr; }
  .dm-cal-tag { display: none; }
  .dm-bars { gap: 6px; }

  /* Slide 14 - preço do Full Stack mobile */
  .fs-price-value { font-size: 56px; }
  .fs-price-cents { font-size: 22px; }
  .fs-price-hero { padding: 22px 18px; }
  .fs-discount-badge { padding: 10px 14px; }
  .fs-discount-badge i { font-size: 22px; }
  .fs-discount-badge strong { font-size: 22px; }

  /* Slide 15 - tabela compacta em mobile */
  .ptn-row, .ptn-row--head { grid-template-columns: 1fr 1fr; gap: 6px; font-size: 12px; padding: 10px 12px; }
  .ptn-row--head > div:nth-child(n+3) { display: none; }
  .ptn-row--head > div:nth-child(2)::after { content: ' / Repasse'; color: var(--accent); }
  .ptn-row > div:nth-child(2) { grid-column: 2; text-align: right; font-size: 11px; color: var(--text-muted) !important; }
  .ptn-row > div:nth-child(3) { grid-column: 1 / -1; padding-top: 4px; border-top: 1px dashed var(--border); font-size: 11px; }
  .ptn-row > div:nth-child(4) { grid-column: 1; font-size: 13px; }
  .ptn-row > div:nth-child(5) { grid-column: 2; text-align: right; font-size: 13px; }
  .ptn-hero { padding: 26px 16px; }
  .ptn-hero-num { font-size: 56px; }
  .ptn-hero-currency { font-size: 22px; }
  .ptn-hero-sub { font-size: 12px; }
  .fs-price-currency { font-size: 22px; }

  .modules-grid, .engine-grid { gap: 10px; }
  .integrations-grid { gap: 10px; }
}

/* iPhone pequeno (SE, mini) */
@media (max-width: 400px) {
  .slide { padding: max(20px, env(safe-area-inset-top, 0px)) 14px 90px; }
  .deck-nav { padding: 6px 8px; gap: 8px; }
  .nav-btn { width: 32px; height: 32px; font-size: 12px; }
  .np-counter { font-size: 11px; }
  .silence-hero { padding: 22px 18px; }
  .sbn-value { font-size: 80px; }
  .fs-price-value { font-size: 56px; }
  .fs-conditions { grid-template-columns: 1fr; }
  .dm-cards { grid-template-columns: 1fr; }
}

/* Landscape orientation em smartphones - reduzir alturas */
@media (max-height: 500px) and (orientation: landscape) {
  .slide { padding: 20px 24px 80px; align-items: flex-start; }
  .slide-head { margin-bottom: 18px; }
  .slide-title { font-size: clamp(22px, 4vw, 32px); margin-bottom: 8px; }
  .deck-nav { bottom: 12px; }
  .cover-title { font-size: clamp(32px, 5vw, 48px); }
  .cover-meta { margin-bottom: 16px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
