/* ==========================================================================
   VEXA COMMERCIAL PRESENTATION — DESIGN SYSTEM & ENGINE
   Aesthetic: DARK LUXURY + STRATEGY + TECHNOLOGY
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

:root {
  --bg-primary: #050505;
  --bg-secondary: #0D0F0E;
  --bg-card: rgba(13, 15, 14, 0.72);
  --bg-card-hover: rgba(22, 199, 132, 0.04);
  --bg-glass: rgba(18, 22, 20, 0.65);
  
  --emerald-primary: #16C784;
  --emerald-deep: #0B8F61;
  --emerald-glow: rgba(22, 199, 132, 0.35);
  --emerald-subtle: rgba(22, 199, 132, 0.12);
  --emerald-border: rgba(22, 199, 132, 0.22);
  --border-light: rgba(244, 247, 245, 0.08);

  --text-primary: #F4F7F5;
  --text-secondary: rgba(244, 247, 245, 0.68);
  --text-muted: rgba(244, 247, 245, 0.42);
  --text-dim: rgba(244, 247, 245, 0.25);

  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  user-select: none;
  touch-action: none;
}

.ambient-lighting {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ambient-glow-top {
  position: absolute;
  top: -25vw;
  right: -10vw;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.08) 0%, rgba(11, 143, 97, 0.02) 50%, transparent 75%);
  filter: blur(80px);
}

.ambient-glow-bottom {
  position: absolute;
  bottom: -30vw;
  left: -15vw;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.05) 0%, rgba(5, 5, 5, 0) 70%);
  filter: blur(100px);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
}

.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(22, 199, 132, 0.06) 0%, rgba(22, 199, 132, 0.01) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: transform;
}

#presentation-viewport {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.deck-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 5;
}

.stage-inner {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deck-topbar {
  position: fixed;
  top: clamp(1.2rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 4vw, 4rem);
  right: clamp(1.5rem, 4vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}

.deck-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: all;
}

.brand-mini-mark {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--emerald-primary);
  text-transform: uppercase;
  border-left: 1px solid rgba(22, 199, 132, 0.4);
  padding-left: 12px;
}

.deck-controls-top {
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: all;
}

.top-pill {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(13, 15, 14, 0.7);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
}

.top-pill .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-primary);
  box-shadow: 0 0 8px var(--emerald-primary);
}

.btn-icon-subtle {
  background: rgba(13, 15, 14, 0.6);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.btn-icon-subtle:hover {
  color: var(--emerald-primary);
  border-color: var(--emerald-border);
  background: rgba(22, 199, 132, 0.08);
}

.deck-bottombar {
  position: fixed;
  bottom: clamp(1.2rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 4vw, 4rem);
  right: clamp(1.5rem, 4vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}

.deck-progress-indicator {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  pointer-events: all;
}

.deck-progress-indicator .current-slide {
  color: var(--emerald-primary);
  font-size: 1.15rem;
}

.deck-progress-indicator .separator {
  color: var(--text-dim);
  font-weight: 300;
}

.deck-progress-indicator .total-slides {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.slide-dots-rail {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: all;
}

.slide-dot {
  width: 24px;
  height: 3px;
  background: rgba(244, 247, 245, 0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-dot.active {
  background: var(--emerald-primary);
  width: 44px;
  box-shadow: 0 0 10px rgba(22, 199, 132, 0.5);
}

.slide-dot:hover:not(.active) {
  background: rgba(244, 247, 245, 0.4);
}

.deck-nav-chevrons {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: all;
}

.nav-arrow-btn {
  background: rgba(13, 15, 14, 0.7);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(12px);
}

.nav-arrow-btn:hover {
  border-color: var(--emerald-primary);
  background: rgba(22, 199, 132, 0.12);
  color: var(--emerald-primary);
  transform: translateY(-2px);
}

.nav-arrow-btn:active {
  transform: translateY(0);
}

.keyboard-hint {
  position: fixed;
  bottom: clamp(1.2rem, 3vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  pointer-events: none;
  z-index: 100;
}

.kbd-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--emerald-primary);
  margin-bottom: clamp(1rem, 1.8vh, 1.8rem);
}

.section-tagline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--emerald-primary);
  box-shadow: 0 0 8px var(--emerald-primary);
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: clamp(1.2rem, 2vh, 1.8rem);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ffffff 10%, var(--emerald-primary) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.body-lead {
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 820px;
}

.body-lead strong {
  color: var(--text-primary);
  font-weight: 600;
}

.sub-note {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* SLIDE 01 — HERO */
#slide-01 {
  background: radial-gradient(circle at 50% 60%, rgba(22, 199, 132, 0.05) 0%, rgba(5, 5, 5, 0.98) 70%);
  padding: 0;
}

.hero-cinematic-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-ground-plane {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 38%;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0) 0%, rgba(22, 199, 132, 0.035) 40%, rgba(5, 5, 5, 0.9) 100%);
  border-top: 1px solid rgba(22, 199, 132, 0.15);
  box-shadow: 0 -20px 60px rgba(22, 199, 132, 0.06);
  pointer-events: none;
}

.hero-curve-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-ambient-spot {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(22, 199, 132, 0.14) 0%, rgba(11, 143, 97, 0.03) 50%, transparent 80%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

.hero-logo-box {
  position: relative;
  margin-bottom: clamp(1.6rem, 3vh, 2.8rem);
  perspective: 800px;
}

.hero-logo-img {
  width: clamp(280px, 40vw, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 40px rgba(22, 199, 132, 0.35));
}

.hero-headline {
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--text-primary);
  max-width: 900px;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.hero-corner-tags {
  display: flex;
  gap: clamp(1.2rem, 3vw, 3.5rem);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.corner-tag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.68rem, 0.85vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.corner-tag-item .tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--emerald-primary);
}

/* SLIDE 02 — PILLARS FLOW */
.pillars-flow-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2vw, 2.4rem);
  position: relative;
  margin-top: clamp(2rem, 3.5vh, 3.2rem);
}

.pillars-flow-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--emerald-primary), var(--emerald-deep), transparent);
  opacity: 0.4;
  z-index: 1;
}

.pillar-card {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: clamp(1.8rem, 2.5vw, 2.5rem);
  backdrop-filter: blur(16px);
  transition: all 0.4s var(--ease-smooth);
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--emerald-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--emerald-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(22, 199, 132, 0.12);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-number {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--emerald-primary);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar-name {
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.pillar-desc {
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  line-height: 1.6;
  color: var(--text-secondary);
}

/* SLIDE 03 — PARTNERS */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  margin: clamp(1.8rem, 3vh, 2.8rem) 0;
}

.partner-sys-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: clamp(2rem, 2.8vw, 2.8rem);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.4s ease;
}

.partner-sys-card:hover {
  border-color: var(--emerald-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(22, 199, 132, 0.1);
}

.partner-badge {
  display: inline-flex;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--emerald-primary);
  background: var(--emerald-subtle);
  border: 1px solid var(--emerald-border);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 1.2rem;
}

.partner-name-big {
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.4rem;
}

.partner-focus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-focus-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: var(--text-secondary);
}

.partner-focus-list li svg {
  color: var(--emerald-primary);
  flex-shrink: 0;
}

.partners-connector-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #050505;
  border: 1px solid var(--emerald-primary);
  box-shadow: 0 0 20px var(--emerald-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--emerald-primary);
}

.banner-quote-box {
  text-align: center;
  padding: 1.1rem 2rem;
  background: rgba(22, 199, 132, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(22, 199, 132, 0.18);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 600;
  color: var(--text-primary);
}

.banner-quote-box span {
  color: var(--emerald-primary);
}

/* SLIDE 04 — COUNTER & EXPERIENCE */
.experience-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.counter-stage-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-svg-orbit {
  position: absolute;
  width: 120%;
  height: 120%;
  pointer-events: none;
  animation: slowOrbit 35s linear infinite;
}

@keyframes slowOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.big-stat-display {
  position: relative;
  font-size: clamp(6.5rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #ffffff 40%, var(--emerald-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 20px 80px rgba(22, 199, 132, 0.25);
  z-index: 2;
}

.experience-info-panel {
  display: flex;
  flex-direction: column;
}

.stat-label-large {
  font-size: clamp(1.4rem, 2.1vw, 2.1rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.experience-nodes-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.8rem;
}

.exp-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.exp-pill .check-icon {
  color: var(--emerald-primary);
}

/* SLIDE 05 — ECOSYSTEM (CONEXÕES PRECISAS E PILAR 3 REBAIXADO) */
.ecosystem-diagram-wrap {
  position: relative;
  width: 100%;
  height: clamp(400px, 50vh, 530px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(0.8rem, 1.5vh, 1.8rem) 0;
}

.ecosystem-svg-net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.ecosystem-core-node {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: clamp(170px, 15vw, 210px);
  height: clamp(170px, 15vw, 210px);
  border-radius: 50%;
  background: radial-gradient(circle, #0e1411 0%, #050505 100%);
  border: 2px solid var(--emerald-primary);
  box-shadow: 0 0 50px rgba(22, 199, 132, 0.25), inset 0 0 30px rgba(22, 199, 132, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.eco-core-title {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--emerald-primary);
  margin-bottom: 6px;
}

.eco-core-brand {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.eco-satellite-node {
  position: absolute;
  z-index: 8;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  width: clamp(210px, 18vw, 270px);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.eco-satellite-node:hover {
  border-color: var(--emerald-primary);
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(22, 199, 132, 0.18);
}

/* Pilar 01: Site conectado à ponta da linha SVG (x=280, y=120) */
.eco-sat-site {
  top: 14%;
  left: 6%;
}

/* Pilar 02: Social Media conectado à ponta da linha SVG (x=720, y=120) */
.eco-sat-social {
  top: 14%;
  right: 6%;
}

/* Pilar 03: Geração de Demanda rebaixado para baixo da linha SVG (x=500, y=390) */
.eco-sat-demand {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.sat-node-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--emerald-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sat-node-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.sat-node-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SLIDE 06 — SITE MOCKUP & LIVE EMBED */
.site-pillar-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2rem, 3.5vw, 4rem);
  align-items: center;
}

.mockup-browser-shell {
  position: relative;
  background: #0D0F0E;
  border: 1px solid rgba(244, 247, 245, 0.12);
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(22, 199, 132, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mockup-browser-shell:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 50px rgba(22, 199, 132, 0.16);
}

.mockup-top-bar {
  background: #141715;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-address-bar {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-view-toggle {
  display: flex;
  gap: 4px;
}

.btn-toggle-site {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-toggle-site.active {
  background: var(--emerald-primary);
  color: #050505;
  border-color: var(--emerald-primary);
  box-shadow: 0 0 10px rgba(22, 199, 132, 0.4);
}

.browser-viewport-box {
  position: relative;
  width: 100%;
  height: clamp(380px, 46vh, 480px);
  background: #060807;
  overflow: hidden;
}

.site-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #090b0a;
}

.mockup-web-content {
  padding: 24px;
  background: linear-gradient(180deg, #090B0A 0%, #050505 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.web-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.web-mock-logo {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #fff;
}

.web-mock-nav {
  display: flex;
  gap: 14px;
}

.web-mock-nav span {
  width: 40px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.web-mock-hero-box {
  background: radial-gradient(circle at 70% 30%, rgba(22, 199, 132, 0.12) 0%, transparent 60%);
  border: 1px solid rgba(22, 199, 132, 0.18);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-line-title {
  width: 70%;
  height: 18px;
  background: linear-gradient(to right, #ffffff, rgba(244, 247, 245, 0.4));
  border-radius: 4px;
}

.mock-line-sub {
  width: 50%;
  height: 10px;
  background: rgba(244, 247, 245, 0.25);
  border-radius: 3px;
}

.mock-line-btn {
  width: 110px;
  height: 28px;
  background: var(--emerald-primary);
  border-radius: 6px;
  margin-top: 8px;
  box-shadow: 0 0 15px rgba(22, 199, 132, 0.4);
}

.web-mock-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mock-metric-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.mock-metric-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--emerald-primary);
}

.mock-metric-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.site-pillars-specs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 1.8rem;
}

.spec-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
}

.spec-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--emerald-primary);
  background: var(--emerald-subtle);
  padding: 4px 10px;
  border-radius: 4px;
}

.spec-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* SLIDE 07 — COMPARISON */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  margin-top: clamp(1.8rem, 3vh, 3rem);
}

.comparison-card {
  border-radius: 20px;
  padding: clamp(2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-common-site {
  background: rgba(18, 18, 18, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.card-digital-foundation {
  background: linear-gradient(145deg, rgba(22, 199, 132, 0.06) 0%, rgba(13, 15, 14, 0.85) 100%);
  border: 1px solid var(--emerald-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(22, 199, 132, 0.08);
}

.comp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.comp-title {
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 800;
}

.comp-status-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.tag-legacy {
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.tag-vexa-pro {
  color: var(--emerald-primary);
  background: rgba(22, 199, 132, 0.15);
  border: 1px solid var(--emerald-border);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
}

.comp-item.dimmed {
  color: var(--text-dim);
}

.comp-item.active {
  color: var(--text-primary);
  font-weight: 600;
}

.comp-item.active svg {
  color: var(--emerald-primary);
}

/* SLIDE 08 — SOCIAL PHONE */
.social-pillar-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

/* SLIDE 08 — SOCIAL PHONE COMPARISON (ANTES & DEPOIS COM IMAGENS REAIS) */
.social-pillar-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

.phones-comparison-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  perspective: 1400px;
}

.phone-item-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.phone-label-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

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

.tag-after {
  color: #050505;
  background: var(--emerald-primary);
  border: 1px solid var(--emerald-primary);
  box-shadow: 0 0 12px rgba(22, 199, 132, 0.4);
}

.phone-mockup-frame {
  width: clamp(190px, 16vw, 240px);
  height: clamp(380px, 35vw, 470px);
  background: #0a0c0b;
  border: 2.5px solid #232a26;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(22, 199, 132, 0.08);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.phone-before-frame {
  border-color: rgba(255, 255, 255, 0.15);
  transform: rotateY(8deg) scale(0.95);
  opacity: 0.85;
}

.phone-after-frame {
  border-color: var(--emerald-primary);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(22, 199, 132, 0.25);
  transform: rotateY(-4deg) scale(1.02);
}

.phone-before-frame:hover,
.phone-after-frame:hover {
  transform: rotateY(0deg) scale(1.03);
  opacity: 1;
}

.phone-notch {
  width: 60px;
  height: 12px;
  background: #141816;
  border-radius: 8px;
  margin: 0 auto 6px auto;
}

.phone-screen-img {
  background: #050505;
  height: calc(100% - 18px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.phone-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.social-pillars-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.8rem;
}

.social-cloud-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-cloud-tag span {
  color: var(--emerald-primary);
}

/* SLIDE 09 — PIPELINE */
.traffic-pipeline-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: clamp(2.2rem, 4vh, 3.5rem) 0;
  position: relative;
}

.pipeline-step-node {
  position: relative;
  z-index: 5;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: clamp(1.2rem, 1.8vw, 1.8rem) clamp(0.9rem, 1.4vw, 1.6rem);
  min-width: clamp(150px, 13vw, 200px);
  text-align: center;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.pipeline-step-node:hover {
  border-color: var(--emerald-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(22, 199, 132, 0.12);
}

.step-node-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--emerald-subtle);
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  border: 1px solid var(--emerald-border);
}

.step-node-title {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.step-node-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pipeline-arrow-track {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(to right, rgba(22, 199, 132, 0.1), var(--emerald-primary), rgba(22, 199, 132, 0.1));
  position: relative;
  overflow: hidden;
}

.pipeline-pulse-packet {
  position: absolute;
  top: -2px;
  width: 24px;
  height: 6px;
  background: var(--emerald-primary);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--emerald-primary);
  animation: streamFlow 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes streamFlow {
  0% { left: -10%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

.traffic-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.traffic-spec-box {
  background: rgba(13, 15, 14, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.traffic-spec-box .tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--emerald-primary);
  text-transform: uppercase;
}

.traffic-spec-box .val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 4px;
}

/* SLIDE 10 — CONVERGENCE */
.convergence-arena {
  position: relative;
  width: 100%;
  height: clamp(360px, 46vh, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(1.2rem, 2.2vh, 2.2rem) 0;
}

.convergence-svg-lasers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.convergence-emitter {
  position: absolute;
  z-index: 5;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.1rem 1.6rem;
  width: clamp(200px, 17vw, 260px);
  backdrop-filter: blur(16px);
  text-align: center;
}

.emitter-site {
  top: 10%;
  left: 6%;
}

.emitter-social {
  top: 10%;
  right: 6%;
}

.emitter-demand {
  bottom: 8%;
  left: 15%;
}

.emitter-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.emitter-effect {
  font-size: 0.8rem;
  color: var(--emerald-primary);
  font-weight: 600;
  margin-top: 4px;
}

.convergence-epicenter {
  position: relative;
  z-index: 10;
  padding: 2rem 3rem;
  border-radius: 20px;
  background: radial-gradient(circle at center, #111a14 0%, #050505 100%);
  border: 2px solid var(--emerald-primary);
  box-shadow: 0 0 60px rgba(22, 199, 132, 0.35), inset 0 0 35px rgba(22, 199, 132, 0.2);
  text-align: center;
}

.epicenter-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--emerald-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.epicenter-title {
  font-size: clamp(1.4rem, 2.1vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 20px rgba(22, 199, 132, 0.6);
}

/* SLIDE 11 — FRAMEWORK */
.complete-framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2vw, 2.5rem);
  margin-top: clamp(1.8rem, 3vh, 3.2rem);
}

.framework-module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: clamp(1.8rem, 2.5vw, 2.6rem);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.framework-module-card:hover {
  border-color: var(--emerald-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(22, 199, 132, 0.1);
}

.module-num-stamp {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--emerald-primary);
  margin-bottom: 1.2rem;
}

.module-card-title {
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.module-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.framework-chain-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(1.8rem, 3vh, 3rem);
  padding: 1rem 2rem;
  background: rgba(13, 15, 14, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.chain-item {
  font-size: clamp(0.75rem, 0.95vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.chain-arrow {
  color: var(--emerald-primary);
  font-size: 0.8rem;
}

/* SLIDE 12 — EXERCÍCIO DE PRIORIZAÇÃO INTERATIVO (RANKING 1º, 2º, 3º) */
.priorities-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2vw, 2.5rem);
  margin: clamp(1.4rem, 2.5vh, 2.6rem) 0;
}

.priority-rank-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: clamp(1.8rem, 2.5vw, 2.6rem);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(20px);
  transition: all 0.35s var(--ease-smooth);
}

.priority-rank-card:hover {
  border-color: var(--emerald-border);
  transform: translateY(-6px);
  background: rgba(22, 199, 132, 0.04);
}

.priority-rank-card.ranked-1 {
  border-color: var(--emerald-primary);
  background: rgba(22, 199, 132, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 35px rgba(22, 199, 132, 0.25);
  transform: translateY(-8px);
}

.priority-rank-card.ranked-2 {
  border-color: rgba(22, 199, 132, 0.6);
  background: rgba(22, 199, 132, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(22, 199, 132, 0.15);
  transform: translateY(-4px);
}

.priority-rank-card.ranked-3 {
  border-color: rgba(244, 247, 245, 0.3);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.prio-rank-indicator {
  position: absolute;
  top: 16px;
  right: 18px;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 800;
  transition: all 0.3s ease;
}

.ranked-1 .rank-badge {
  background: var(--emerald-primary);
  color: #050505;
  border-color: var(--emerald-primary);
  box-shadow: 0 0 16px rgba(22, 199, 132, 0.6);
}

.ranked-2 .rank-badge {
  background: rgba(22, 199, 132, 0.2);
  color: var(--emerald-primary);
  border-color: var(--emerald-primary);
}

.ranked-3 .rank-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

.prio-card-status {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ranked-1 .prio-card-status,
.ranked-2 .prio-card-status,
.ranked-3 .prio-card-status {
  color: var(--emerald-primary);
}

/* Faixa de Resumo do Exercício */
.priority-summary-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 20px;
  background: rgba(13, 15, 14, 0.8);
  border: 1px solid var(--emerald-border);
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto;
  backdrop-filter: blur(14px);
}

.summary-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.summary-sequence {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--emerald-primary);
  letter-spacing: 0.05em;
}

.btn-reset-prio {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reset-prio:hover {
  background: rgba(22, 199, 132, 0.15);
  color: var(--emerald-primary);
  border-color: var(--emerald-primary);
}

.prio-step-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--emerald-primary);
  margin-bottom: 0.8rem;
}

.prio-card-title {
  font-size: clamp(1.4rem, 1.9vw, 1.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.prio-card-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.priorities-callout-center {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.callout-question {
  font-size: clamp(1.2rem, 1.75vw, 1.6rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.final-signature-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 1.8rem;
}

.final-sig-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.final-sig-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--emerald-primary);
  font-weight: 600;
  text-transform: uppercase;
  border-left: 1px solid rgba(22, 199, 132, 0.35);
  padding-left: 16px;
}

/* SPEAKER NOTES */
.speaker-notes-drawer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: min(520px, 92vw);
  background: rgba(10, 12, 11, 0.95);
  border-top: 1px solid var(--emerald-border);
  border-left: 1px solid var(--emerald-border);
  border-radius: 16px 0 0 0;
  padding: 1.8rem;
  backdrop-filter: blur(25px);
  z-index: 200;
  transform: translateY(105%);
  transition: transform 0.4s var(--ease-smooth);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
}

.speaker-notes-drawer.open {
  transform: translateY(0);
}

.notes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.8rem;
}

.notes-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.notes-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
}

.notes-content-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
}

/* ==========================================================================
   SLIDE 13 — ANCORAGEM DE MERCADO & FRAGMENTAÇÃO EDITORIAL
   ========================================================================== */
#slide-13 .stage-inner {
  max-width: 1280px;
  width: 92%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.ref-badge-live {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-primary);
  background: rgba(22, 199, 132, 0.08);
  border: 1px solid rgba(22, 199, 132, 0.25);
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 0 15px rgba(22, 199, 132, 0.1);
}

.fragmented-structure-stage {
  position: relative;
  width: 100%;
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
}

.fragmentation-lines-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.market-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.8rem);
  position: relative;
  z-index: 2;
  margin-bottom: 1.2rem;
}

.market-pillar-block {
  background: linear-gradient(180deg, rgba(18, 22, 20, 0.75) 0%, rgba(10, 12, 11, 0.9) 100%);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: clamp(1.2rem, 1.8vw, 1.8rem);
  backdrop-filter: blur(20px);
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.market-pillar-block:hover {
  border-color: rgba(22, 199, 132, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(22, 199, 132, 0.08);
}

.market-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.market-idx {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--emerald-primary);
  letter-spacing: 0.1em;
}

.market-scope-tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.market-service-title {
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.market-price-range-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.9rem;
}

.range-prefix {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-primary);
  margin-bottom: 0.4rem;
}

.range-numbers-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.range-start {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 700;
  color: var(--text-secondary);
}

.range-arrow {
  color: var(--emerald-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.range-end {
  font-size: clamp(1.45rem, 1.9vw, 1.9rem);
  font-weight: 900;
  color: var(--text-primary);
}

.range-end .plus {
  color: var(--emerald-primary);
  font-weight: 800;
  font-size: 1.1rem;
  margin-left: 2px;
}

.range-end .per-unit {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.market-block-detail {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-top: auto;
}

/* Fita de Fragmentação */
.fragmentation-impact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  background: rgba(13, 15, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 24px;
  margin: 0.6rem auto 1rem auto;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 3;
}

.frag-pill-item {
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.frag-pill-item .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-primary);
  box-shadow: 0 0 8px var(--emerald-primary);
}

.frag-pill-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

/* Frase de Fragmentação */
.fragmentation-statement-box {
  text-align: center;
  margin: 0.4rem auto 0.8rem auto;
  max-width: 820px;
  position: relative;
  z-index: 3;
}

.frag-statement-text {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  font-style: italic;
}

/* Pergunta Pivô para o Slide 14 */
.ecosystem-pivot-question-wrap {
  text-align: center;
  margin: 0.8rem auto 0 auto;
  max-width: 900px;
  padding: 1rem 1.6rem;
  background: radial-gradient(circle at center, rgba(22, 199, 132, 0.12) 0%, rgba(13, 15, 14, 0.95) 100%);
  border: 1px solid var(--emerald-border);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(22, 199, 132, 0.15);
  position: relative;
  z-index: 3;
}

.pivot-lead-question {
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-shadow: 0 0 20px rgba(22, 199, 132, 0.4);
}

/* Rodapé de Mercado */
.market-footnote-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.8rem;
  margin-top: 0.4rem;
}

.footnote-left {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footnote-right {
  font-size: 0.65rem;
  color: rgba(244, 247, 245, 0.35);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ==========================================================================
   SLIDE 14 — INVESTIMENTO VEXA (HIGH-END PRICING ARCHITECTURE)
   ========================================================================== */
#slide-14 .stage-inner {
  max-width: 1280px;
  width: 92%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.8rem);
  margin-bottom: clamp(1rem, 1.8vh, 1.6rem);
}

.pricing-card {
  background: linear-gradient(180deg, rgba(18, 22, 20, 0.7) 0%, rgba(10, 12, 11, 0.85) 100%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: clamp(1.1rem, 1.5vw, 1.5rem);
  backdrop-filter: blur(18px);
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--emerald-border);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(22, 199, 132, 0.1);
}

.pricing-card-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--emerald-primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.1em;
}

.pricing-card-name {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.pricing-tier-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.pricing-tier-row.recur {
  border-bottom: none;
  margin-top: 3px;
}

.tier-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.tier-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.tier-value.highlight-green {
  color: var(--emerald-primary);
  font-size: 1.2rem;
  text-shadow: 0 0 12px rgba(22, 199, 132, 0.3);
}

.pricing-single-val {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0.4rem 0 0.6rem 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--emerald-primary);
}

.per-month {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: auto;
  padding-top: 0.6rem;
}

.pricing-subtag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 247, 245, 0.45);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 6px;
  width: fit-content;
}

/* REVELAÇÃO DO INVESTIMENTO TOTAL */
.investment-summary-dock {
  background: linear-gradient(180deg, rgba(13, 15, 14, 0.85) 0%, rgba(5, 5, 5, 0.98) 100%);
  border: 1px solid var(--emerald-border);
  border-radius: 20px;
  padding: clamp(1.2rem, 1.8vw, 1.8rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(22, 199, 132, 0.12);
  backdrop-filter: blur(25px);
}

.investment-flow-box {
  display: grid;
  grid-template-columns: 1fr auto 1.35fr 1fr;
  gap: clamp(0.8rem, 1.4vw, 1.6rem);
  align-items: center;
}

.invest-tier-box {
  background: rgba(18, 22, 20, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.2rem 1.6rem;
  position: relative;
}

.invest-tier-box.active-highlight {
  background: radial-gradient(circle at center, rgba(22, 199, 132, 0.12) 0%, rgba(13, 15, 14, 0.95) 100%);
  border: 2px solid var(--emerald-primary);
  box-shadow: 0 0 35px rgba(22, 199, 132, 0.25), inset 0 0 20px rgba(22, 199, 132, 0.08);
  transform: scale(1.03);
}

.invest-pill-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.badge-emerald {
  color: #050505;
  background: var(--emerald-primary);
  box-shadow: 0 0 10px rgba(22, 199, 132, 0.5);
}

.badge-media {
  color: var(--emerald-primary);
  background: rgba(22, 199, 132, 0.12);
  border: 1px solid var(--emerald-border);
}

.invest-amount-display {
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.invest-amount-display.main-highlight {
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  color: #ffffff;
  text-shadow: 0 0 20px rgba(22, 199, 132, 0.4);
}

.currency-prefix {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--emerald-primary);
}

.cents {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.unit-badge {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--emerald-primary);
  margin-left: 6px;
}

.invest-caption {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.invest-breakdown-sub {
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.5;
}

.invest-breakdown-sub strong {
  color: var(--text-primary);
}

.invest-transition-arrow {
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.media-rate-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.media-rate-val strong {
  color: var(--emerald-primary);
  font-size: 1.4rem;
}

.media-note-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Fechamento Consultivo */
.pricing-closing-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.2rem;
  padding-top: 1rem;
}

.closing-quote-main {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 700;
  color: var(--text-primary);
}

.closing-quote-sub {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--emerald-primary);
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .hero-title { font-size: 2.8rem; }
  .big-stat-display { font-size: 9rem; }
  .partners-grid { gap: 2rem; }
}

@media (max-height: 760px) {
  .stage-inner { max-height: 95vh; }
  .hero-title { margin-bottom: 0.8rem; }
  .pillars-flow-container { margin-top: 1.2rem; }
  .ecosystem-diagram-wrap, .convergence-arena { height: 320px; }
  .phone-mockup-frame { height: 420px; width: 230px; }
  .pipeline-step-node { padding: 0.8rem; min-width: 140px; }
}
