/* =====================================================
   FLOWFISIO — Apresentação Comercial Premium (pitch.css)
   ===================================================== */

/* --- Design Tokens --- */
:root {
  --bg-deep: #dce8e5;
  --bg-slide: #eef5f2;
  --card-bg: rgba(255, 255, 255, 0.88);
  --card-border: rgba(21, 95, 91, 0.15);
  --card-border-hover: rgba(21, 95, 91, 0.34);
  --text-white: #102a36;
  --text-muted: #5f7280;
  --accent-cyan: #0a9f8d;
  --accent-blue: #2459a6;
  --accent-green: #17895f;
  --accent-orange: #b97813;
  --accent-red: #b54f4a;
  --accent-purple: #6d5aa6;
  --gradient-main: linear-gradient(135deg, #0f5d77 0%, #0a9f8d 58%, #58a663 100%);
  --gradient-text: linear-gradient(90deg, #0f5d77, #0a9f8d 56%, #2d7c55);
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
  --shadow-glow-cyan: 0 22px 60px rgba(28, 85, 92, 0.12);
  --shadow-glow-blue: 0 22px 60px rgba(36, 89, 166, 0.12);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

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

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background:
    linear-gradient(140deg, rgba(15, 93, 119, 0.14), transparent 34%),
    linear-gradient(320deg, rgba(10, 159, 141, 0.14), transparent 32%),
    var(--bg-deep);
  color: var(--text-white);
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* --- Decorative Background Particles --- */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 28px;
  filter: none;
  opacity: 0.22;
  animation: floatParticle 18s ease-in-out infinite alternate;
  transform: rotate(-12deg);
}
.p-1 { width: 360px; height: 110px; background: rgba(15, 93, 119, 0.12); top: 92px; left: -90px; }
.p-2 { width: 440px; height: 140px; background: rgba(10, 159, 141, 0.16); bottom: 76px; right: -110px; animation-delay: 4s; }
.p-3 { width: 260px; height: 92px; background: rgba(185, 120, 19, 0.1); top: 46%; left: 45%; opacity: 0.16; animation-delay: 8s; }

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

/* --- Header --- */
.presentation-header {
  position: relative;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  background: rgba(247, 250, 248, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21, 95, 91, 0.12);
  box-shadow: 0 14px 40px rgba(28, 85, 92, 0.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 36px;
  width: auto;
  transition: transform 0.25s ease;
}

.logo:hover img {
  transform: scale(1.08) rotate(3deg);
}

.logo span {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  background: #ffffff;
  color: var(--text-white);
  border: 1px solid rgba(21, 95, 91, 0.14);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-btn:hover:not(:disabled) {
  background: var(--accent-cyan);
  color: #ffffff;
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 24px rgba(10, 159, 141, 0.24);
}
.nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.slide-indicator {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  min-width: 55px;
  text-align: center;
}

.exit-btn {
  background: #ffffff;
  border: 1px solid rgba(21, 95, 91, 0.14);
  color: var(--text-white);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.exit-btn:hover {
  background: rgba(10, 159, 141, 0.08);
  border-color: rgba(10, 159, 141, 0.28);
}

/* --- Progress Bar --- */
.progress-bar-container {
  position: relative;
  z-index: 100;
  height: 3px;
  background: rgba(21, 95, 91, 0.08);
}
.progress-bar-fill {
  height: 100%;
  background: var(--gradient-main);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(10, 159, 141, 0.28);
}

/* --- Slide Container --- */
.slides-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* --- Individual Slides --- */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(60px) scale(0.98);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.55s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 72px;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}
.slide.prev {
  transform: translateX(-60px) scale(0.98);
}

.slide-bg-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 95, 91, 0.075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 95, 91, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(10, 159, 141, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(36, 89, 166, 0.14) 0%, transparent 35%);
  background-size: 42px 42px, 42px 42px, auto, auto;
  pointer-events: none;
  z-index: 0;
}

/* --- Content Layouts --- */
.slide-content {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.slide-content.centered { text-align: center; max-width: 860px; }
.opening-hero {
  display: flex;
  justify-content: center;
  text-align: center;
}
.opening-copy {
  max-width: 900px;
}
.opening-title {
  max-width: 900px;
  font-size: clamp(3.1rem, 6vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--text-white);
  text-wrap: balance;
}
.opening-title::after {
  content: "";
  display: block;
  width: 112px;
  height: 3px;
  margin: 26px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0b35a, var(--accent-cyan));
}
.opening-subtitle {
  max-width: 760px;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  color: #aeb9c7;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}
.opening-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-soft {
  background: #ffffff;
  border: 1px solid rgba(21, 95, 91, 0.14);
  color: var(--text-white);
  box-shadow: none;
}
.btn-soft:hover {
  background: rgba(10, 159, 141, 0.08);
  border-color: rgba(10, 159, 141, 0.24);
  color: var(--text-white);
}
.opening-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin: 30px auto 0;
}
.opening-proof div {
  padding: 14px 15px;
  border: 1px solid rgba(21, 95, 91, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(28, 85, 92, 0.08);
}
.opening-proof strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f5d77;
  margin-bottom: 4px;
}
.opening-proof span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}
.slide-content.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- Sequential Animation on Slide Enter --- */
.slide.active .anim-item-1 { animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; }
.slide.active .anim-item-2 { animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.slide.active .anim-item-3 { animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both; }
.slide.active .anim-item-4 { animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(10, 159, 141, 0.08);
  border: 1px solid rgba(10, 159, 141, 0.2);
  color: var(--accent-cyan);
  margin-bottom: 20px;
}
.badge-warning { background: rgba(181, 79, 74, 0.08); border-color: rgba(181, 79, 74, 0.2); color: var(--accent-red); }
.badge-accent  { background: rgba(185, 120, 19, 0.08); border-color: rgba(185, 120, 19, 0.2); color: var(--accent-orange); }
.badge-safe    { background: rgba(36, 89, 166, 0.08);  border-color: rgba(36, 89, 166, 0.2);  color: var(--accent-blue); }
.junina-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px 7px 9px;
  border-color: rgba(245, 158, 11, 0.42);
  background:
    linear-gradient(90deg, rgba(245, 158, 11, 0.18), rgba(0, 212, 180, 0.08)),
    rgba(255, 255, 255, 0.88);
  color: var(--accent-orange);
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.08) inset,
    0 10px 28px rgba(185, 120, 19, 0.12);
  overflow: hidden;
  position: relative;
}
.junina-premium-badge::after {
  content: "";
  width: 42px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -55px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  animation: juninaBadgeShine 3.4s ease-in-out infinite;
}
.junina-badge-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.16);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.24);
  font-size: 0.78rem;
}
@keyframes juninaBadgeShine {
  0%, 45% { left: -55px; }
  70%, 100% { left: calc(100% + 20px); }
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 800; margin-bottom: 20px; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -0.02em; }

.shimmer-text {
  background: linear-gradient(90deg, #0f5d77 0%, #0a9f8d 30%, #102a36 60%, #0f5d77 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: -300% center; } }

.subtitle { font-size: 1.15rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 36px; }

p { font-size: 1rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 20px; }
strong { color: var(--text-white); }

/* --- Bullet List --- */
.bullet-list { list-style: none; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(21, 95, 91, 0.08);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li svg { color: var(--accent-cyan); flex-shrink: 0; margin-top: 3px; }
.bullet-list li strong { color: var(--text-white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 14px 30px rgba(10, 159, 141, 0.24);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 38px rgba(10, 159, 141, 0.28);
  filter: brightness(1.1);
}
.cta-row { display: flex; gap: 16px; justify-content: center; margin-top: 16px; }

/* =====================================================
   SLIDE-SPECIFIC COMPONENTS
   ===================================================== */

/* --- Slide 1: Hero --- */
.slide-content.centered.animate-fade-in { }

/* --- Slide 2: Caos --- */
.caos-box { display: flex; flex-direction: column; gap: 20px; }
.caos-item {
  background: var(--card-bg);
  border: 1px solid rgba(181, 79, 74, 0.16);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.caos-item.shadow-red { box-shadow: 0 18px 44px rgba(181, 79, 74, 0.08); }
.caos-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-red);
  margin-bottom: 8px;
}
.caos-item p { margin-bottom: 0; font-size: 0.9rem; }

/* --- Slide 3: Mockup --- */
.features-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-mini-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 95, 91, 0.12);
  padding: 18px;
  border-radius: var(--radius-md);
  transition: border-color 0.3s;
}
.feature-mini-item:hover { border-color: var(--card-border-hover); }
.item-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.item-header svg { color: var(--accent-cyan); }
.item-header h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0; }
.feature-mini-item p { font-size: 0.82rem; margin-bottom: 0; }

.mockup-frame {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 95, 91, 0.13);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(28, 85, 92, 0.16), var(--shadow-glow-cyan);
}
.mockup-topbar {
  background: #eef4f2;
  padding: 12px 16px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.mockup-topbar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.mockup-body {
  padding: 20px;
  background:
    linear-gradient(160deg, rgba(10, 159, 141, 0.08), transparent 36%),
    #0c1929;
  color: #f0f6ff;
}
.mockup-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(21, 95, 91, 0.08);
  font-size: 0.9rem;
}
.status-live { color: var(--accent-green); font-size: 0.78rem; font-weight: 700; }
.mockup-dashboard-mini { }
.mini-card-row { display: flex; gap: 12px; margin-bottom: 14px; }
.mini-stat {
  flex: 1;
  background: rgba(10, 159, 141, 0.06);
  border: 1px solid rgba(10, 159, 141, 0.13);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 0.8rem;
}
.mini-stat span { display: block; color: var(--text-muted); margin-bottom: 4px; }
.mini-stat strong { font-size: 1.4rem; font-family: var(--font-display); }
.mockup-lines-holder { display: flex; flex-direction: column; gap: 8px; }
.mockup-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(15, 93, 119, 0.04);
  border-left: 2px solid transparent;
}
.mockup-line.active { border-left-color: var(--accent-cyan); }
.status-label {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.status-label.green { background: rgba(16, 185, 129, 0.12); color: var(--accent-green); }
.status-label.orange { background: rgba(245, 158, 11, 0.12); color: var(--accent-orange); }

.dashboard-light-mockup .mockup-line {
  box-shadow: 0 8px 18px rgba(15, 93, 119, 0.04);
}

.dashboard-light-mockup .mockup-line.active {
  border-left-color: #0f766e;
}

.dashboard-light-mockup .status-label.green {
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, 0.16);
}

.dashboard-light-mockup .status-label.orange {
  background: rgba(185, 129, 41, 0.1);
  color: #9a6a14;
  border: 1px solid rgba(185, 129, 41, 0.18);
}

/* --- Slide 4: SOAP Simulator --- */
.case-selector-pitch {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(15, 93, 119, 0.055);
  border: 1px solid rgba(21, 95, 91, 0.1);
}
.pitch-case-btn {
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pitch-case-btn:hover {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(21, 95, 91, 0.12);
  color: var(--text-primary);
}
.pitch-case-btn.active {
  background: #ffffff;
  border-color: rgba(0, 212, 180, 0.42);
  color: var(--accent-cyan);
  box-shadow: 0 8px 22px rgba(15, 93, 119, 0.12);
}

.soap-showcase-pitch {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glow-cyan);
}
.soap-showcase-header {
  padding: 18px 24px;
  background: rgba(15, 93, 119, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(21, 95, 91, 0.08);
}
.patient-profile { display: flex; align-items: center; gap: 14px; }
.patient-avatar-p {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 212, 180, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 212, 180, 0.2);
  flex-shrink: 0;
}
.patient-profile h4 { font-size: 0.9rem; margin-bottom: 2px; }
.patient-profile p { font-size: 0.75rem; margin-bottom: 0; }
.status-tag-active {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.soap-fields-pitch { padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.soap-field-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.field-letter {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.letter-s { background: rgba(0, 212, 180, 0.1); color: var(--accent-cyan); border: 1px solid rgba(0, 212, 180, 0.2); }
.letter-o { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.field-txt strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 4px; display: block; }
.typed-text { font-size: 0.85rem; line-height: 1.5; color: var(--text-muted); margin-bottom: 0; min-height: 40px; }
.soap-typing-indicator {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-top: 1px solid rgba(21, 95, 91, 0.08);
  background: rgba(15, 93, 119, 0.04);
}
.soap-typing-indicator.active { display: flex; }
.soap-typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: typingDot 1.2s ease-in-out infinite;
}
.soap-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.soap-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.2; transform: scale(1); }
  30% { opacity: 1; transform: scale(1.3); }
}
.soap-typing-indicator p { font-size: 0.78rem; margin-bottom: 0; color: var(--accent-cyan); }

/* --- Slide 5: Phone Mockup (WhatsApp) --- */
.phone-mockup {
  width: min(312px, 100%);
  height: 626px;
  margin: 0 auto;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 16%),
    linear-gradient(160deg, #3a3d43 0%, #0b0d12 38%, #1b2028 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 56px;
  padding: 13px;
  box-shadow:
    0 42px 90px rgba(16, 42, 54, 0.28),
    0 0 0 3px rgba(9, 15, 20, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    var(--shadow-glow-blue);
  position: relative;
  overflow: visible;
}
.phone-mockup::before,
.phone-mockup::after {
  content: "";
  position: absolute;
  background: #17191f;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.phone-mockup::before {
  width: 4px;
  height: 72px;
  left: -5px;
  top: 132px;
}
.phone-mockup::after {
  width: 4px;
  height: 96px;
  right: -5px;
  top: 178px;
}
.phone-camera {
  width: 88px;
  height: 25px;
  background: #050506;
  border-radius: 999px;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 18px 0 16px rgba(255, 255, 255, 0.04),
    inset -18px 0 16px rgba(255, 255, 255, 0.025),
    0 2px 10px rgba(0, 0, 0, 0.45);
}
.phone-screen {
  background:
    linear-gradient(180deg, rgba(10, 159, 141, 0.08), transparent 34%),
    #081017;
  border-radius: 44px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.7),
    inset 0 18px 44px rgba(255, 255, 255, 0.035);
  position: relative;
}
.phone-screen::after {
  content: "";
  width: 112px;
  height: 4px;
  border-radius: 999px;
  background: rgba(233, 237, 239, 0.78);
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
  z-index: 8;
}
.wa-header-pitch {
  background:
    linear-gradient(135deg, rgba(13, 35, 45, 0.98), rgba(8, 22, 31, 0.96));
  padding: 58px 16px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ecfffb;
}
.wa-avatar-p {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(10, 159, 141, 0.24);
}
.wa-info-p span { display: block; font-size: 0.86rem; font-weight: 800; color: #f0fffb; }
.wa-info-p small { color: #54e3aa; font-size: 0.72rem; font-weight: 700; }
.wa-chat-pitch {
  flex: 1;
  min-height: 0;
  padding: 16px 12px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 18% 12%, rgba(10, 159, 141, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0 0 / 18px 18px,
    #081017;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 180, 0.35) transparent;
}
.wa-chat-pitch::-webkit-scrollbar {
  width: 4px;
}
.wa-chat-pitch::-webkit-scrollbar-thumb {
  background: rgba(10, 159, 141, 0.65);
  border-radius: 999px;
}
.wa-bubble-p {
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 0.8rem;
  line-height: 1.55;
  position: relative;
  max-width: 92%;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}
.wa-bubble-p.received {
  background: #13232e;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-top-left-radius: 5px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.wa-bubble-p.sent {
  background: linear-gradient(135deg, #064b34, #023821);
  border: 1px solid rgba(84, 227, 170, 0.12);
  border-top-right-radius: 5px;
  margin-left: auto;
  box-shadow: 0 10px 24px rgba(2, 56, 33, 0.25);
}
.wa-bubble-p p { color: #e9f4f2; font-size: 0.8rem; margin-bottom: 6px; }
.wa-bubble-p strong { color: #ffffff; }
.wa-time-p { font-size: 0.64rem; color: #7fa0a6; display: block; text-align: right; margin-top: 4px; }
.wa-options-holder { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.07); padding-top: 10px; }
.wa-opt-btn {
  background: rgba(84, 227, 170, 0.09);
  border: 1px solid rgba(84, 227, 170, 0.22);
  color: #8ff5da;
  border-radius: 10px;
  padding: 9px 11px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}
.wa-opt-btn:hover { background: rgba(84, 227, 170, 0.16); border-color: rgba(84, 227, 170, 0.5); transform: translateX(2px); }
.wa-opt-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.wa-status-update {
  font-size: 0.7rem;
  text-align: center;
  color: #54e3aa;
  background: rgba(84, 227, 170, 0.07);
  border: 1px solid rgba(84, 227, 170, 0.16);
  padding: 8px;
  border-radius: 10px;
}

/* --- Slide 6: Finance --- */
.finance-interactive-deck { }
.repasse-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 30px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glow-cyan);
}
.repasse-box h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 20px; }
.repasse-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 95, 91, 0.08);
  font-size: 0.9rem;
}
.repasse-item:last-of-type { border-bottom: none; }
.green-text { color: var(--accent-green) !important; font-family: var(--font-display); font-size: 1.2rem; }
.repasse-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin: 16px 0;
  overflow: hidden;
}
.repasse-fill {
  height: 100%;
  background: var(--gradient-main);
  width: 0%;
  border-radius: 2px;
  transition: width 1.5s ease;
  box-shadow: 0 0 8px rgba(0, 212, 180, 0.4);
}
.repasse-desc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  color: #425866;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
}

.repasse-desc::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(23, 137, 95, 0.12);
  color: var(--accent-green);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 900;
  flex: 0 0 auto;
}

/* --- Slide 7: Shield --- */
.shield-showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 252, 0.88)),
    var(--card-bg);
  border: 1px solid rgba(36, 89, 166, 0.2);
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 24px 70px rgba(15, 93, 119, 0.16);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.shield-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36, 89, 166, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 89, 166, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 66%);
}

.shield-showcase > * {
  position: relative;
  z-index: 1;
}

.shield-topline {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(36, 89, 166, 0.12);
}

.shield-icon-holder {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(36, 89, 166, 0.14), rgba(0, 212, 180, 0.1));
  border: 1px solid rgba(36, 89, 166, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.shield-icon-holder svg { color: var(--accent-blue); }

.shield-copy span {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--accent-cyan);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shield-showcase h3 {
  color: #102a43;
  font-size: 1.42rem;
  line-height: 1.12;
  margin-bottom: 8px;
}

.shield-showcase p {
  color: #52677a;
}

.security-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.security-flow div {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 89, 166, 0.12);
}

.security-flow strong,
.security-flow span {
  display: block;
}

.security-flow strong {
  color: #12324a;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 3px;
}

.security-flow span {
  color: #647789;
  font-size: 0.68rem;
  font-weight: 700;
}

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

.shield-metric {
  min-height: 118px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 89, 166, 0.13);
  box-shadow: 0 12px 28px rgba(36, 89, 166, 0.07);
}

.shield-metric strong {
  display: block;
  color: var(--accent-blue);
  font-family: var(--font-body);
  font-size: 1.28rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.shield-metric p {
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 720px) {
  .shield-topline,
  .security-flow,
  .shield-metrics {
    grid-template-columns: 1fr;
  }
}

/* --- Slide 8: ROI Sliders --- */
.roi-sliders-pitch { display: flex; flex-direction: column; gap: 24px; }
.roi-slider-item { }
.roi-slider-header-p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.roi-slider-header-p label { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.pitch-roi-val {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent-cyan);
  font-size: 1.1rem;
  background: rgba(10, 159, 141, 0.07);
  padding: 3px 12px;
  border-radius: 6px;
  border: 1px solid rgba(10, 159, 141, 0.16);
}
.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(21, 95, 91, 0.12);
  outline: none;
  cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(10, 159, 141, 0.22);
  transition: transform 0.2s;
}
.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.25); }

.roi-results-box-pitch {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.roi-res-card-p {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s;
}
.roi-res-card-p:hover { border-color: var(--card-border-hover); }
.roi-res-card-p > span { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px; }
.roi-res-card-p > strong { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; display: block; margin-bottom: 8px; color: var(--text-white); }
.roi-res-card-p > p { font-size: 0.82rem; margin-bottom: 0; }

/* --- Slide 9: Pricing --- */
.pricing-cards-pitch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.price-card-pitch {
  background:
    linear-gradient(160deg, rgba(10, 159, 141, 0.055), transparent 34%),
    var(--card-bg);
  border: 1px solid rgba(21, 95, 91, 0.13);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  backdrop-filter: blur(12px);
  overflow: hidden;
  transform: translateY(0);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.price-card-pitch::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 22% 0%, rgba(0, 212, 180, 0.18), transparent 34%);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.price-card-pitch::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -45%;
  width: 46%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  z-index: 0;
  pointer-events: none;
  transform: rotate(18deg) translateX(-140%);
  transition: transform 0.7s ease;
}
.price-card-pitch:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(0, 212, 180, 0.25);
  box-shadow: 0 26px 62px rgba(28, 85, 92, 0.15), 0 0 32px rgba(10, 159, 141, 0.1);
}
.price-card-pitch:hover::before { opacity: 1; }
.price-card-pitch:hover::after { transform: rotate(18deg) translateX(420%); }
.price-card-pitch.featured {
  border-color: rgba(10, 159, 141, 0.32);
  background:
    linear-gradient(160deg, rgba(0, 212, 180, 0.08), transparent 42%),
    var(--card-bg);
  box-shadow: 0 0 0 1px rgba(0, 212, 180, 0.08) inset, var(--shadow-glow-cyan);
  animation: featuredCardBreath 4s ease-in-out infinite;
}
.price-card-pitch.featured::before {
  opacity: 0.75;
  background:
    radial-gradient(circle at 85% 8%, rgba(245, 158, 11, 0.14), transparent 28%),
    radial-gradient(circle at 18% 22%, rgba(0, 212, 180, 0.2), transparent 38%);
}
.price-tag-junino {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.22);
  animation: tagFloat 2.8s ease-in-out infinite;
}
.price-card-pitch h4,
.price-card-pitch > p,
.price-original,
.price-val,
.card-features {
  position: relative;
  z-index: 1;
}
.price-card-pitch h4 { font-size: 1.2rem; margin-bottom: 8px; }
.price-card-pitch > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.price-original {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 6px;
  background: rgba(245, 158, 11, 0.08);
  color: rgba(16, 42, 54, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-original strong {
  color: var(--accent-orange);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(248, 113, 113, 0.85);
}
.price-val {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  line-height: 1;
  transform-origin: left center;
  animation: pricePulse 3.2s ease-in-out infinite;
}
.price-card-pitch.featured .price-val {
  color: var(--accent-cyan);
  text-shadow: none;
}
.price-val span { font-size: 1rem; color: var(--text-muted); }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.card-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  opacity: 0;
  transform: translateX(-8px);
  animation: featureReveal 0.52s ease forwards;
}
.card-features li:nth-child(1) { animation-delay: 0.1s; }
.card-features li:nth-child(2) { animation-delay: 0.16s; }
.card-features li:nth-child(3) { animation-delay: 0.22s; }
.card-features li:nth-child(4) { animation-delay: 0.28s; }
.card-features li:nth-child(5) { animation-delay: 0.34s; }
.card-features li:nth-child(6) { animation-delay: 0.4s; }
.card-features li:nth-child(7) { animation-delay: 0.46s; }
.card-features li:nth-child(8) { animation-delay: 0.52s; }
.card-features li:nth-child(9) { animation-delay: 0.58s; }
.card-features li:nth-child(10) { animation-delay: 0.64s; }
.card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 900;
  filter: none;
}

@keyframes featuredCardBreath {
  0%, 100% { box-shadow: 0 0 0 1px rgba(10, 159, 141, 0.08) inset, 0 24px 60px rgba(28, 85, 92, 0.12); }
  50% { box-shadow: 0 0 0 1px rgba(10, 159, 141, 0.2) inset, 0 28px 66px rgba(28, 85, 92, 0.16); }
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

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

@keyframes featureReveal {
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .price-card-pitch,
  .price-card-pitch.featured,
  .price-tag-junino,
  .price-val,
  .card-features li {
    animation: none;
  }

  .card-features li {
    opacity: 1;
    transform: none;
  }
}

/* --- Slide 10: CTA Final --- */
.cta-row-pitch { margin: 32px auto; }
.pitch-footer { font-size: 0.88rem; color: var(--text-muted); }
.pitch-contact-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.pitch-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(10, 159, 141, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-muted);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.pitch-contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 159, 141, 0.34);
  background: rgba(10, 159, 141, 0.08);
}
.contact-icon {
  filter: saturate(1.2);
}
.contact-word {
  position: relative;
  color: transparent;
  background: linear-gradient(90deg, var(--text-muted), var(--accent-cyan), var(--text-white), var(--text-muted));
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: contactWordGlow 3.8s ease-in-out infinite;
}
.pitch-contact-link:nth-child(2) .contact-word {
  animation-delay: 0.5s;
}
@keyframes contactWordGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Responsive Fixes --- */
@media (max-width: 1024px) {
  .opening-copy { max-width: 100%; }
  .opening-title { font-size: clamp(2.7rem, 10vw, 4.7rem); max-width: 850px; }
  .slide-content.split { grid-template-columns: 1fr; gap: 32px; }
  .slide { padding: 24px 32px; overflow-y: auto; height: auto; position: static; opacity: 1; visibility: visible; transform: none; display: none; }
  .slide.active { display: flex; }
  body { overflow-y: auto; height: auto; }
  .presentation-header { position: sticky; top: 0; }
  .pricing-cards-pitch { grid-template-columns: 1fr; }
  .phone-mockup { width: 260px; height: 540px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
}
@media (max-width: 640px) {
  .presentation-header { padding: 0 20px; }
  .slide { padding: 20px; }
  .opening-title { font-size: 2.55rem; line-height: 1; }
  .opening-subtitle { font-size: 0.98rem; }
  .opening-actions .btn { width: 100%; justify-content: center; }
  .opening-proof { grid-template-columns: 1fr; }
  .features-mini-grid { grid-template-columns: 1fr; }
  .phone-mockup { width: min(250px, 92vw); height: 520px; }
}
