


:root {
  color-scheme: dark;
  --bg-base: #07070b;
  --bg-surface: #0e0e17;
  --bg-surface-glass: rgba(14, 14, 23, 0.8);
  --bg-elevated: #151522;
  --bg-elevated-glass: rgba(21, 21, 34, 0.9);
  --bg-input: #1a1a2b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-glow: rgba(139, 77, 255, 0.35);

  --text-primary: #f7f7fb;
  --text-secondary: #c0c0d8;
  --text-muted: #82829e;

  --brand: #8b4dff;
  --brand-hi: #a06bff;
  --brand-soft: rgba(139, 77, 255, 0.14);
  --brand-glow: rgba(139, 77, 255, 0.28);
  --ring: rgba(139, 77, 255, 0.4);

  --live: #10b981;
  --live-soft: rgba(16, 185, 129, 0.15);
  --live-glow: rgba(16, 185, 129, 0.35);

  --cyan: #06b6d4;
  --cyan-soft: rgba(6, 182, 212, 0.14);
  --amber: #f59e0b;
  --amber-soft: rgba(245, 158, 11, 0.14);
  --rose: #f43f5e;
  --rose-soft: rgba(244, 63, 94, 0.14);

  --fs-xs: 11.5px;
  --fs-sm: 13px;
  --fs-md: 15px;
  --fs-lg: 18px;
  --fs-xl: 24px;
  --fs-2xl: 36px;
  --fs-3xl: 48px;
  --fs-eyebrow: 11px;

  --gradient-primary: #6d28d9;
  --gradient-accent: #5b21b6;
  --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --gradient-amber: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: none !important; 
  -ms-overflow-style: none !important; 
}

*::-webkit-scrollbar {
  display: none !important; 
  width: 0 !important;
  height: 0 !important;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font: var(--fs-md)/1.65 "Inter var", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}


body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 40% at 50% -5%, rgba(139, 77, 255, 0.18), transparent 75%),
    radial-gradient(40% 30% at 90% 25%, rgba(6, 182, 212, 0.07), transparent 70%),
    radial-gradient(45% 35% at 10% 65%, rgba(139, 77, 255, 0.07), transparent 70%);
}

main, header, footer {
  position: relative;
  z-index: 1;
}

a {
  color: var(--brand-hi);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--brand-hi);
  outline-offset: 2px;
  border-radius: 4px;
}


.ico {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.ico.xs { width: 14px; height: 14px; }
.ico.sm { width: 16px; height: 16px; }
.ico.md { width: 20px; height: 20px; }
.ico.lg { width: 24px; height: 24px; }


.topo {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 18, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color 0.2s ease;
}

.topo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.marca-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.marca {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 2px;
}

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

.marca-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--brand-soft);
  color: var(--brand-hi);
  border: 1px solid rgba(139, 77, 255, 0.3);
}

.topo nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: var(--fs-sm);
  font-weight: 500;
}

.topo nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.15s ease;
  font-size: 13.5px;
}

.topo nav a:hover {
  color: #ffffff;
}

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


.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-btn:hover, .lang-btn:focus-visible {
  border-color: var(--border-medium);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn svg, .lang-btn .ico {
  fill: none !important;
  stroke: #f7f7fb !important;
  stroke-width: 1.8px !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  color: #f7f7fb !important;
  flex-shrink: 0;
  transition: color 0.15s ease, stroke 0.15s ease, transform 0.2s ease;
}

.lang-btn:hover svg, .lang-btn:hover .ico, .lang-btn:focus-visible svg, .lang-btn:focus-visible .ico {
  stroke: #ffffff !important;
  color: #ffffff !important;
}

.lang-btn[aria-expanded="true"] svg:last-child {
  transform: rotate(180deg);
}

.lang-tag-text {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #0d0d18;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  padding: 4px;
  min-width: 160px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
}

.lang-menu.aberto {
  display: flex;
  animation: surgimento 0.15s ease-out;
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 4px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: all 0.12s ease;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.lang-item.ativo {
  color: var(--brand-hi);
  font-weight: 700;
  background: rgba(139, 77, 255, 0.1);
}

.lang-code-text {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  font-family: monospace;
}
.lang-item.ativo .lang-code-text {
  color: var(--brand-hi);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  background: var(--bg-elevated);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}

.btn:hover {
  background: #202030;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

.btn.primary {
  background: #6d28d9 !important;
  background-image: none !important;
  border: 1px solid #7c3aed !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(109, 40, 217, 0.35) !important;
}

.btn.primary:hover {
  background: #5b21b6 !important;
  background-image: none !important;
  border-color: #8b5cf6 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(109, 40, 217, 0.55) !important;
}

.btn.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text-secondary);
}

.btn.ghost:hover {
  background: var(--brand-soft);
  color: var(--text-primary);
}

.btn.lg {
  padding: 12px 26px;
  font-size: var(--fs-md);
  border-radius: var(--radius-md);
}

.btn.sm {
  padding: 5px 12px;
  font-size: var(--fs-xs);
  border-radius: 6px;
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.badge.active, .badge.live {
  background: var(--live-soft);
  color: var(--live);
  border-color: rgba(16, 185, 129, 0.3);
}

.badge.brand {
  background: var(--brand-soft);
  color: var(--brand-hi);
  border-color: rgba(139, 77, 255, 0.3);
}

.badge.amber {
  background: var(--amber-soft);
  color: var(--amber);
  border-color: rgba(245, 158, 11, 0.3);
}

.ponto-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 3px var(--live-soft);
  animation: pulsar 2s infinite ease-in-out;
  display: inline-block;
}

@keyframes pulsar {
  0%, 100% { box-shadow: 0 0 0 3px var(--live-soft); }
  50% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.35); }
}


main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 100px;
}


.hero {
  padding: 76px 0 54px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
  margin-bottom: 20px;
  max-width: 900px;
}

h1 em {
  font-style: normal;
  display: inline-block;
  padding-right: 0.08em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 740px;
  line-height: 1.6;
  text-wrap: pretty;
  margin-bottom: 30px;
}

.hero-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.fine-text {
  color: var(--text-muted);
  font-size: var(--fs-xs);
  display: flex;
  align-items: center;
  gap: 6px;
}


.hero-mockup-wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 42px auto 0;
  position: relative;
}

.studio-window {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 50px rgba(139, 77, 255, 0.1);
  position: relative;
}

.window-header {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.window-dot.red { background: #ff5f56; }
.window-dot.yellow { background: #ffbd2e; }
.window-dot.green { background: #27c93f; }

.window-status-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.window-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-base);
  padding: 3px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.sim-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.sim-tab-btn:hover {
  color: var(--text-primary);
}

.sim-tab-btn.ativo {
  background: var(--bg-elevated);
  color: var(--brand-hi);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}


.studio-body {
  padding: 20px;
  min-height: 420px;
  background: radial-gradient(circle at 50% 30%, rgba(139, 77, 255, 0.04), transparent 70%), var(--bg-surface);
}

.sim-pane {
  display: none;
  animation: surgimento 0.2s ease-out;
}
.sim-pane.ativo {
  display: block;
}

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


.sim-grid-multistream {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.sim-video-preview {
  background: #030306;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}

.video-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.video-overlay-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.sim-canvas-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 12, 32, 0.95), rgba(7, 7, 16, 0.98));
  transition: opacity 0.2s ease;
}

.sim-screen-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sim-scene-graphic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-hi);
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px var(--brand-glow);
}

.sim-wave-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 24px;
  margin-top: 4px;
}

.sim-wave-bar {
  width: 3px;
  background: var(--live);
  border-radius: 2px;
  animation: onda 1.2s infinite ease-in-out;
}
.sim-wave-bar:nth-child(2) { animation-delay: 0.2s; height: 70%; }
.sim-wave-bar:nth-child(3) { animation-delay: 0.4s; height: 100%; }
.sim-wave-bar:nth-child(4) { animation-delay: 0.1s; height: 45%; }
.sim-wave-bar:nth-child(5) { animation-delay: 0.5s; height: 85%; }
.sim-wave-bar:nth-child(6) { animation-delay: 0.3s; height: 60%; }

@keyframes onda {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.sim-destinos-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-panel-titulo {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sim-dest-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sim-dest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}
.sim-dest-item.ativo {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.03);
}

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

.dest-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}
.dest-icon-box.yt { color: #ff4444; background: rgba(255, 68, 68, 0.12); }
.dest-icon-box.tw { color: #a970ff; background: rgba(169, 112, 255, 0.12); }
.dest-icon-box.kc { color: #53fc18; background: rgba(83, 252, 24, 0.12); }
.dest-icon-box.rt { color: #38bdf8; background: rgba(56, 189, 248, 0.12); }

.dest-texto {
  display: flex;
  flex-direction: column;
}
.dest-nome { font-size: var(--fs-xs); font-weight: 700; color: var(--text-primary); }
.dest-stat { font-size: 10.5px; color: var(--text-muted); }


.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 18px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #2b2b3d;
  transition: 0.2s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.2s;
  border-radius: 50%;
}
input:checked + .slider { background-color: var(--live); }
input:checked + .slider:before { transform: translateX(18px); }


.obs-sim-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.obs-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(18, 18, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.obs-scene-btns-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.obs-actions-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.obs-main-grid {
  display: grid;
  grid-template-columns: 210px 1fr 200px;
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .obs-main-grid {
    grid-template-columns: 1fr;
  }
}


.obs-features-banner, .convidados-features-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 14, 25, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  gap: 16px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.obs-features-banner:hover, .convidados-features-banner:hover {
  border-color: rgba(160, 107, 255, 0.3);
  box-shadow: 0 12px 36px -10px rgba(0, 0, 0, 0.75), 0 0 20px rgba(139, 77, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.obs-feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.obs-feature-pill .pill-ico {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand-hi);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(139, 77, 255, 0.2);
}

.obs-feature-pill .pill-txt {
  display: flex;
  flex-direction: column;
}

.obs-feature-pill .pill-txt strong {
  font-size: var(--fs-xs);
  color: var(--text-primary);
  font-weight: 700;
}

.obs-feature-pill .pill-txt span {
  font-size: 11px;
  color: var(--text-muted);
}

.obs-feature-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .obs-features-banner, .convidados-features-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .obs-feature-divider {
    display: none;
  }
}

.obs-sim-card {
  background: rgba(18, 18, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.obs-scene-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(10, 10, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: var(--fs-xs);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.obs-scene-btn:hover {
  background: #1e1e2f;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-primary);
}

.obs-scene-btn.ativo {
  background: var(--brand-soft);
  color: var(--brand-hi);
  border-color: var(--brand);
  box-shadow: 0 0 12px var(--brand-soft);
}


.obs-canvas-wrapper {
  background: rgba(14, 14, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.obs-canvas-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.obs-interactive-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 400px;
  background-color: #030308;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  user-select: none;
  touch-action: none;
}

.obs-canvas-item {
  position: absolute;
  cursor: move;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: visible;
  transition: box-shadow 0.1s ease;
}

.obs-canvas-item.selecionado {
  outline: 1.5px solid #ff3b30;
  box-shadow: 0 0 0 1px rgba(255, 59, 48, 0.3), 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 50;
}

.obs-item-inner {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  background: rgba(14, 14, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.obs-item-inner.camera-feed {
  background: linear-gradient(135deg, rgba(30, 20, 50, 0.95), rgba(10, 10, 20, 0.95));
}

.obs-item-inner.screen-feed {
  background: linear-gradient(135deg, rgba(10, 25, 45, 0.95), rgba(5, 12, 22, 0.95));
}

.obs-item-inner.overlay-feed {
  background: rgba(20, 20, 35, 0.85);
  backdrop-filter: blur(8px);
  border-color: rgba(139, 77, 255, 0.3);
}

.obs-source-tag {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  align-self: flex-start;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.obs-item-coords {
  position: absolute;
  top: -22px;
  left: 0;
  background: #ff3b30;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  pointer-events: none;
  white-space: nowrap;
  display: none;
}
.obs-canvas-item.selecionado .obs-item-coords {
  display: block;
}


.obs-handle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 1.5px solid #ff3b30;
  border-radius: 1px;
  display: none;
  z-index: 60;
}
.obs-canvas-item.selecionado .obs-handle {
  display: block;
}

.obs-handle.h-nw { top: -4px; left: -4px; cursor: nwse-resize; }
.obs-handle.h-n  { top: -4px; left: calc(50% - 4px); cursor: ns-resize; }
.obs-handle.h-ne { top: -4px; right: -4px; cursor: nesw-resize; }
.obs-handle.h-e  { top: calc(50% - 4px); right: -4px; cursor: ew-resize; }
.obs-handle.h-se { bottom: -4px; right: -4px; cursor: nwse-resize; }
.obs-handle.h-s  { bottom: -4px; left: calc(50% - 4px); cursor: ns-resize; }
.obs-handle.h-sw { bottom: -4px; left: -4px; cursor: nesw-resize; }
.obs-handle.h-w  { top: calc(50% - 4px); left: -4px; cursor: ew-resize; }


.obs-mixer-horizontal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding-top: 4px;
}

.fader-strip-h {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

.fader-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fader-strip-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.fader-strip-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fader-db-badge-h {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--cyan);
  min-width: 48px;
  text-align: right;
}

.fader-track-h {
  position: relative;
  height: 12px;
  background: #090910;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.vu-meter-bar-h {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, #10b981 0%, #10b981 65%, #f59e0b 85%, #ef4444 100%);
  transition: width 0.1s ease;
}

.fader-cap-h {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  background: #cbd5e1;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  cursor: pointer;
  transform: translateX(-50%);
}

.fader-mute-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  cursor: pointer;
  transition: all 0.15s;
}

.fader-mute-btn.mutado {
  background: rgba(244, 63, 94, 0.15);
  color: var(--rose);
  border-color: var(--rose);
}


.widgets-sim-container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
}

.widget-menu-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.w-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: var(--fs-xs);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
}

.w-tab-btn:hover {
  background: #1e1e2f;
  color: var(--text-primary);
}

.w-tab-btn.ativo {
  background: var(--brand-soft);
  color: var(--brand-hi);
  border-color: var(--brand);
}

.widget-stage-display {
  background: #050508;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.widgets-unified-console {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  background: rgba(14, 14, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .widgets-unified-console {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }
}

.widgets-unified-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(20, 20, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.widget-nav-item:hover {
  background: rgba(30, 30, 48, 0.9);
  border-color: rgba(160, 107, 255, 0.3);
  color: #fff;
  transform: translateX(3px);
}

.widget-nav-item.ativo {
  background: radial-gradient(120% 140% at 0% 0%, rgba(124, 58, 237, 0.25), transparent 60%), rgba(26, 22, 42, 0.95);
  border-color: var(--brand-hi);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.widget-nav-info-box {
  margin-top: 10px;
  padding: 14px;
  background: rgba(10, 10, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-nav-info-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
}

.widget-nav-info-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.widgets-unified-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(8, 8, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  min-height: 380px;
  justify-content: center;
  box-sizing: border-box;
}

.widget-stage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.widget-stage-pane {
  display: none;
  animation: surgimento 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.widget-stage-pane.ativo {
  display: block;
}



.real-chat-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 4px;
  overflow: hidden;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.real-chat-container {
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow-y: auto;
  padding: 2px;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.real-chat-container::-webkit-scrollbar,
.real-chat-stage::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.real-chat-msg {
  margin: 1px 0;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(10, 10, 15, 0.78);
  color: #f4f4f8;
  width: fit-content;
  max-width: 90%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: chatIn 0.22s ease-out;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.4;
}

@keyframes chatIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.real-chat-msg .p {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  flex-shrink: 0;
}

.real-chat-msg .p.plat-twitch {
  background: #9146ff;
  color: #ffffff;
}

.real-chat-msg .p.plat-kick {
  background: #53fc18;
  color: #000000;
}

.real-chat-msg .u {
  font-weight: 700;
  flex-shrink: 0;
}

.real-chat-msg .t {
  color: #e8e8f0;
  word-break: break-word;
}


.real-alert-widget-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 180px;
}

.real-alert-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 16px;
  color: #ffffff;
  width: 100%;
  max-width: 540px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: alertPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.real-alert-banner.sub {
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.45);
}

.real-alert-banner.follow {
  background: linear-gradient(135deg, #8b4dff 0%, #6366f1 100%);
  box-shadow: 0 12px 36px rgba(139, 77, 255, 0.45);
}

.real-alert-banner.raid {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  box-shadow: 0 12px 36px rgba(6, 182, 212, 0.45);
}

.real-alert-banner.tip {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  box-shadow: 0 12px 36px rgba(245, 158, 11, 0.45);
}

.real-alert-banner .plat-badge {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  font-weight: 800;
  flex-shrink: 0;
}

.real-alert-banner .alert-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-alert-banner .alert-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.real-alert-banner .who {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.real-alert-banner .sub-t {
  font-size: 12.5px;
  font-weight: 600;
  opacity: 0.92;
}

.alert-triggers-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}


.real-social-card {
  width: 100%;
  max-width: 540px;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 18px;
  padding: 18px 20px;
  background: radial-gradient(120% 140% at 0% 0%, rgba(124, 108, 255, 0.16), transparent 55%),
              radial-gradient(120% 140% at 100% 100%, rgba(16, 185, 129, 0.1), transparent 55%),
              rgba(11, 11, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.social-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.social-who {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-nm {
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-nm .vf {
  width: 15px;
  height: 15px;
  fill: #1d9bf0;
}

.social-afl {
  font-size: 9.5px;
  font-weight: 700;
  color: #b9b9cc;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 1px 5px;
}

.social-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #9a9ab4;
}

.social-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #5a5a70;
}

.social-bd {
  font-size: 13.5px;
  line-height: 1.5;
  color: #f7f7fb;
  word-break: break-word;
}

.social-md {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.vinyl-wrapper {
  position: relative;
  width: 66px;
  height: 66px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.65));
}

.vinyl-disc {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #1c1c28 0%, #0e0e16 36%, #161622 38%, #08080e 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 2px #09090f, inset 0 0 0 5px rgba(255, 255, 255, 0.07), inset 0 0 0 9px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vinyl-spin 4.5s linear infinite;
  overflow: hidden;
}

.vinyl-grooves {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, transparent 0px, transparent 2px, rgba(255, 255, 255, 0.06) 3px, transparent 4px);
  pointer-events: none;
}

.vinyl-disc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.03) 42%, transparent 52%, rgba(255, 255, 255, 0.16) 100%);
  pointer-events: none;
}

.vinyl-label-box {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at center, #1db954 0%, #0f766e 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.85);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-label-box.sponsor {
  background: radial-gradient(circle at center, #f59e0b 0%, #b45309 100%);
  border-color: rgba(251, 191, 36, 0.7);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.vinyl-default-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.95);
  flex: none;
}

.vinyl-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #08080d;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  z-index: 4;
}

@keyframes vinyl-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


.wave-track {
  position: relative;
  height: 22px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 4px;
}

.wave-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  height: 100%;
}

.wave-bars i {
  flex: 1;
  min-width: 2px;
  max-width: 3px;
  height: var(--h, 50%);
  border-radius: 999px;
  transform-origin: center;
  animation: wave-k1 1.4s ease-in-out infinite alternate;
}

.wave-bars.bg i {
  background: rgba(255, 255, 255, 0.16);
}

.wave-bars.active.spotify i {
  background: linear-gradient(180deg, #1ed760 0%, #1db954 100%);
  box-shadow: 0 0 6px rgba(29, 185, 84, 0.55);
}

.wave-bars.active.youtube i {
  background: linear-gradient(180deg, #f87171 0%, #ef4444 100%);
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.55);
}

.wave-bars.active.soundcloud i {
  background: linear-gradient(180deg, #fb923c 0%, #f97316 100%);
  box-shadow: 0 0 6px rgba(249, 115, 22, 0.55);
}

.wave-bars.active.sponsor i {
  background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 0 6px rgba(251, 191, 36, 0.55);
}

.badge.youtube {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.badge.soundcloud {
  background: rgba(249, 115, 22, 0.18);
  color: #fdba74;
  border: 1px solid rgba(249, 115, 22, 0.35);
}
  box-shadow: 0 0 6px rgba(251, 191, 36, 0.65);
}

.wave-bars i:nth-child(4n+1) { animation-name: wave-k1; animation-duration: 1.3s; animation-delay: 0.1s; }
.wave-bars i:nth-child(4n+2) { animation-name: wave-k2; animation-duration: 1.7s; animation-delay: 0.4s; }
.wave-bars i:nth-child(4n+3) { animation-name: wave-k3; animation-duration: 1.5s; animation-delay: 0.2s; }
.wave-bars i:nth-child(4n+0) { animation-name: wave-k4; animation-duration: 1.8s; animation-delay: 0.6s; }

@keyframes wave-k1 {
  0% { transform: scaleY(0.3); opacity: 0.5; }
  40% { transform: scaleY(1.15); opacity: 1; }
  75% { transform: scaleY(0.5); opacity: 0.7; }
  100% { transform: scaleY(0.95); opacity: 0.95; }
}
@keyframes wave-k2 {
  0% { transform: scaleY(1.05); opacity: 0.95; }
  35% { transform: scaleY(0.35); opacity: 0.55; }
  70% { transform: scaleY(1.2); opacity: 1; }
  100% { transform: scaleY(0.45); opacity: 0.65; }
}
@keyframes wave-k3 {
  0% { transform: scaleY(0.55); opacity: 0.7; }
  50% { transform: scaleY(0.25); opacity: 0.4; }
  80% { transform: scaleY(1.25); opacity: 1; }
  100% { transform: scaleY(0.65); opacity: 0.8; }
}
@keyframes wave-k4 {
  0% { transform: scaleY(0.85); opacity: 0.85; }
  30% { transform: scaleY(0.3); opacity: 0.5; }
  75% { transform: scaleY(1.1); opacity: 1; }
  100% { transform: scaleY(0.4); opacity: 0.6; }
}

.wave-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  overflow: hidden;
  z-index: 2;
  transition: width 0.35s linear;
}


.sponsor-stage-flipper {
  position: relative;
  width: 100%;
  min-height: 145px;
  display: flex;
  align-items: center;
}

.sponsor-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  width: 100%;
}

.sponsor-slide.ativo {
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}


.real-sponsor-card {
  width: 100%;
  background: radial-gradient(120% 140% at 0% 0%, rgba(245, 158, 11, 0.15), transparent 58%), rgba(12, 11, 16, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 16px 44px -8px rgba(0, 0, 0, 0.65), 0 0 20px rgba(245, 158, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.real-sponsor-selo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
  font-weight: 800;
}

.real-sponsor-selo i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  display: block;
  box-shadow: 0 0 8px #fbbf24;
}

.real-sponsor-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(20, 16, 10, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}


.real-music-sponsor-card {
  width: 100%;
  background: radial-gradient(120% 140% at 0% 0%, rgba(245, 158, 11, 0.18), transparent 58%), rgba(14, 12, 8, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 16px 44px -8px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.real-music-sponsor-card .badge.sponsor {
  background: #18181b;
  color: #fbbf24 !important;
  border: 1.5px solid rgba(251, 191, 36, 0.7);
  box-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}


.real-music-player-card {
  width: 100%;
  background: radial-gradient(120% 140% at 0% 0%, rgba(124, 108, 255, 0.16), transparent 58%),
              radial-gradient(120% 140% at 100% 100%, rgba(16, 185, 129, 0.1), transparent 56%),
              rgba(12, 11, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: 0 16px 44px -8px rgba(0, 0, 0, 0.7), 0 0 25px rgba(139, 77, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.real-music-player-card .badge.spotify {
  background: #1db954;
  color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(29, 185, 84, 0.45);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}

.music-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.music-kicker .kicker-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #a1a1aa;
  text-transform: uppercase;
}

.music-card-title {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-card-artist {
  font-size: 12px;
  font-weight: 500;
  color: #a1a1aa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.dual-ingest-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}

@media (max-width: 768px) {
  .dual-ingest-container {
    grid-template-columns: 1fr;
  }
}

.ingest-feed-card {
  background: rgba(10, 10, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px;
  min-height: 155px;
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 20px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ingest-feed-card:hover {
  transform: translateY(-2px);
  border-color: rgba(160, 107, 255, 0.35);
  box-shadow: 0 14px 36px -8px rgba(0, 0, 0, 0.75), 0 0 20px rgba(139, 77, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ingest-feed-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  gap: 8px;
  flex-wrap: wrap;
}

.ingest-proto-badge {
  font-size: 9.5px;
  font-weight: 800;
  font-family: ui-monospace, monospace;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
}

.ingest-feed-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 6px;
  padding: 10px 0;
}

.ingest-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ingest-feed-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  font-size: 10.5px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}


.team-role-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  background: rgba(10, 10, 18, 0.7);
  padding: 3px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-role-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.team-role-tab-btn.ativo {
  background: var(--bg-elevated);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.team-member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: rgba(18, 18, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  gap: 10px;
  transition: all 0.15s ease;
}

.team-member-row:hover {
  background: rgba(26, 26, 42, 0.95);
  border-color: rgba(160, 107, 255, 0.3);
}

.team-member-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.team-member-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.team-member-name {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-member-perm {
  font-size: 9.5px;
  color: var(--text-muted);
}

.badge-role {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.badge-role.owner { background: rgba(139, 77, 255, 0.2); color: var(--brand-hi); border: 1px solid var(--brand-hi); }
.badge-role.manager { background: rgba(59, 130, 246, 0.2); color: #38bdf8; border: 1px solid #38bdf8; }
.badge-role.operator { background: rgba(16, 185, 129, 0.2); color: var(--live); border: 1px solid var(--live); }
.badge-role.editor { background: rgba(245, 158, 11, 0.2); color: var(--amber); border: 1px solid var(--amber); }
.badge-role.custom { background: rgba(6, 182, 212, 0.2); color: var(--cyan); border: 1px solid var(--cyan); }


.guest-stage-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.guest-invite-compact-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 18, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.guest-invite-compact-pill .invite-url {
  color: var(--brand-hi);
  font-weight: 700;
  font-family: ui-monospace, monospace;
}

.guest-stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  transition: all 0.25s ease;
}

.guest-stage-grid.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.guest-stage-grid.grid-pres {
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 900px) {
  .guest-stage-grid, .guest-stage-grid.grid-3, .guest-stage-grid.grid-pres {
    grid-template-columns: 1fr;
  }
}

.guest-card {
  background: rgba(10, 10, 20, 0.88);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.09);
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.guest-card:hover {
  transform: translateY(-2px);
  border-color: rgba(160, 107, 255, 0.35);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.guest-voice-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.guest-voice-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
}

.guest-voice-bar {
  width: 3px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: voiceWave 0.6s infinite ease-in-out alternate;
}
.guest-voice-bar:nth-child(2) { animation-delay: 0.1s; height: 18px; }
.guest-voice-bar:nth-child(3) { animation-delay: 0.25s; height: 24px; }
.guest-voice-bar:nth-child(4) { animation-delay: 0.15s; height: 14px; }
.guest-voice-bar:nth-child(5) { animation-delay: 0.3s; height: 20px; }
.guest-voice-bar:nth-child(6) { animation-delay: 0.05s; height: 10px; }

@keyframes voiceWave {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1.2); }
}

.guest-screen-app-preview {
  width: 94%;
  height: 82%;
  background: #060913;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.guest-screen-app-header {
  background: #0c1120;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9.5px;
  color: var(--text-muted);
}

.guest-screen-app-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.09) 0%, transparent 80%);
}

.guest-card-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  z-index: 10;
}

.guest-ctl-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.15s;
}

.guest-ctl-btn.desligado {
  background: rgba(244, 63, 94, 0.4);
  color: #fff;
  border-color: var(--rose);
}

.noise-suppression-box {
  background: rgba(14, 14, 25, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


.ops-center-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

@media (max-width: 992px) {
  .ops-center-grid {
    grid-template-columns: 1fr;
  }
}

.ops-card {
  background: rgba(15, 15, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ops-card:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 107, 255, 0.35);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(139, 77, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ops-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ops-unified-console {
  display: grid;
  grid-template-columns: 1fr 1px 1.25fr 1px 1fr;
  gap: 0;
  background: rgba(12, 11, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .ops-unified-console {
    grid-template-columns: 1fr;
  }
  .ops-console-divider {
    height: 1px !important;
    width: 100% !important;
  }
}

.ops-console-column {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.ops-console-divider {
  background: rgba(255, 255, 255, 0.08);
  width: 1px;
  align-self: stretch;
}

.ops-console-column-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ops-status-badge {
  font-size: 10.5px;
  font-weight: 700;
  display: inline-block;
  margin-top: 2px;
}
.ops-status-badge.live { color: var(--live); }
.ops-status-badge.cyan { color: var(--cyan); }

.ops-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--brand-soft);
  color: var(--brand-hi);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(139, 77, 255, 0.25);
}

.ops-card-title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: #fff;
}

.ops-card-desc {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 44px;
}

.ops-interactive-hub {
  background: rgba(10, 10, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 276px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

.sc-mini-cal-hub {
  padding: 10px 12px;
  gap: 8px;
}

.sc-mini-cal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  padding: 0 2px;
}

.sc-mini-cal-nav {
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 4px;
  font-size: 14px;
  user-select: none;
  transition: color 0.15s ease;
}
.sc-mini-cal-nav:hover {
  color: var(--brand-hi);
}

.sc-mini-cal-dows {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 2px;
}

.sc-mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2.5px;
  text-align: center;
}

.sc-c-day {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
  position: relative;
  transition: all 0.15s ease;
}

.sc-c-day.out {
  color: var(--text-muted);
  opacity: 0.25;
}

.sc-c-day.today {
  border: 1px solid var(--brand);
  background: rgba(139, 77, 255, 0.2);
  color: #ffffff;
  font-weight: 800;
}

.sc-c-day.has-event {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid var(--live);
  color: #ffffff;
}

.sc-c-day .day-ev-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
}
.sc-c-day .day-ev-dot.live {
  background: var(--live);
  box-shadow: 0 0 5px var(--live);
}
.sc-c-day .day-ev-dot.cyan {
  background: var(--cyan);
  box-shadow: 0 0 5px var(--cyan);
}

.sc-mini-cal-event-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.ops-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ops-team-row:last-child {
  border-bottom: none;
}


.team-role-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 2px;
  gap: 2px;
  margin-bottom: 4px;
}

.team-role-tab-btn {
  flex: 1;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.team-role-tab-btn.ativo {
  background: var(--brand-soft);
  color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.team-member-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 5px;
  transition: all 0.15s ease;
}

.team-member-row:last-child {
  margin-bottom: 0;
}

.team-member-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.team-member-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9.5px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.team-member-meta {
  flex: 1;
  min-width: 0;
}

.team-member-name {
  font-size: 10.5px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.team-member-perm {
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  margin-top: 1px;
}

.badge-role {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.badge-role.owner {
  background: rgba(139, 77, 255, 0.2);
  color: var(--brand-hi);
  border: 1px solid rgba(139, 77, 255, 0.4);
}

.badge-role.manager {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(2, 132, 199, 0.4);
}

.badge-role.operator {
  background: rgba(16, 185, 129, 0.2);
  color: var(--live);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.badge-role.editor {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-role.custom {
  background: rgba(99, 102, 241, 0.2);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.4);
}


.ops-support-hub {
  padding: 10px 12px;
  gap: 8px;
}

.ops-support-net-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  padding: 0 2px 2px;
}

.ops-support-net-title {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 11px;
}
.ops-support-net-title svg {
  color: var(--cyan);
}

.ops-net-status-badge {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--live);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ops-nodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.ops-node-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 4px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.15s ease;
}
.ops-node-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}
.ops-node-card.failover {
  background: rgba(139, 77, 255, 0.08);
  border-color: rgba(139, 77, 255, 0.25);
}

.ops-node-info {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.ops-node-flag {
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

.ops-node-city {
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ops-node-code {
  font-size: 8px;
  color: var(--text-muted);
  font-family: ui-monospace, monospace;
  line-height: 1;
  margin-top: 1px;
}

.ops-node-ping {
  font-size: 9px;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  padding: 1px 4px;
  border-radius: 3px;
  flex-shrink: 0;
}
.ops-node-ping.ultra {
  color: var(--live);
  background: rgba(16, 185, 129, 0.15);
}
.ops-node-ping.good {
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.15);
}
.ops-node-ping.cyan {
  color: var(--brand-hi);
  background: rgba(139, 77, 255, 0.2);
}

.ops-support-desk-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 6px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ops-support-desk-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ops-support-desk-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-hi);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(139, 77, 255, 0.3);
}

.ops-support-desk-title {
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.ops-support-desk-sub {
  font-size: 8.5px;
  color: var(--text-muted);
  line-height: 1.1;
  margin-top: 1px;
}

.ops-support-online-badge {
  font-size: 9px;
  font-weight: 800;
  color: var(--live);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}


.secao {
  padding: 64px 0;
  border-top: 1px solid var(--border-subtle);
}

.secao-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.secao-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-hi);
  background: var(--brand-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: -0.025em;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #ffffff;
  text-wrap: balance;
}

.secao-lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto;
}


.grade-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.cartao-produto {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.cartao-produto:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.cartao-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--brand-soft);
  color: var(--brand-hi);
}

.cartao-produto h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cartao-produto p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin-bottom: 18px;
}

.cartao-mini-mockup {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: auto;
  font-size: var(--fs-xs);
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 50px;
}
.showcase-row.reverso {
  grid-template-columns: 1.15fr 1fr;
  direction: rtl;
}
.showcase-row.reverso > * {
  direction: ltr;
}

.showcase-conteudo h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.showcase-conteudo p {
  color: var(--text-secondary);
  font-size: var(--fs-md);
  line-height: 1.65;
  margin-bottom: 18px;
}

.showcase-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.showcase-lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--live-soft);
  color: var(--live);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.showcase-visual {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}


.widgets-master-showcase {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  margin-top: 24px;
}

.widgets-nav-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-elevated);
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.widget-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.widget-nav-item:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.widget-nav-item.ativo {
  background: var(--brand-soft);
  color: var(--brand-hi);
  border-color: var(--border-glow);
}

.widget-pane-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  padding: 30px;
  align-items: center;
}

.widget-pane-desc h3 {
  font-size: var(--fs-xl);
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.widget-pane-desc p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.widget-pane-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: 16px;
}
.widget-pane-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-pane-preview {
  background: #040407;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}



.fader-track {
  width: 14px;
  height: 100%;
  background: #020205;
  border-radius: 8px;
  position: relative;
  overflow: visible;
  border: 1px solid var(--border-subtle);
  cursor: ns-resize;
  touch-action: none;
  user-select: none;
}

.fader-track:hover {
  border-color: var(--border-glow);
}

.fader-cap {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 26px;
  height: 14px;
  background: #2a2a3c;
  border: 1px solid #6b7280;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: ns-resize;
  z-index: 5;
  transition: border-color 0.1s ease;
}

.fader-cap:active, .fader-cap.arrastando {
  border-color: var(--brand-hi);
  background: #3b3b55;
  box-shadow: 0 0 10px rgba(139, 77, 255, 0.6);
}

.fader-cap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  background: #ffffff;
  transform: translateY(-50%);
  border-radius: 1px;
}

.fader-db-badge {
  font-size: 9px;
  color: var(--text-muted);
  font-family: monospace;
  text-align: center;
  margin-top: 2px;
}

.obs-source-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.15s ease;
}
.obs-source-row:hover {
  background: var(--bg-elevated);
  border-color: var(--border-medium);
}
.obs-source-row.selecionado {
  background: rgba(139, 77, 255, 0.12);
  border-color: var(--brand-hi);
}
.obs-source-row .source-tools {
  display: flex;
  align-items: center;
  gap: 4px;
}
.obs-source-row .source-tool-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 2px;
  cursor: pointer;
  border-radius: 3px;
  display: grid;
  place-items: center;
}
.obs-source-row .source-tool-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.obs-source-row .source-tool-btn.oculto {
  color: var(--red);
  opacity: 0.6;
}


.clip-studio-container {
  background: rgba(14, 14, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.clip-studio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.clip-aspect-switcher {
  display: flex;
  background: #0e0e1a;
  padding: 3px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  gap: 3px;
}

.clip-aspect-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}

.clip-aspect-btn.ativo {
  background: var(--bg-elevated);
  color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.clip-preview-viewport {
  background: #020204;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clip-video-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(139, 77, 255, 0.15), rgba(5, 5, 12, 0.95));
  position: relative;
  transition: all 0.25s ease;
}

.clip-video-screen.vertical-crop {
  width: 102px;
  border-left: 2px dashed var(--cyan);
  border-right: 2px dashed var(--cyan);
}

.clip-center-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.15s ease;
  z-index: 10;
}

.clip-center-play-btn:hover {
  transform: scale(1.08);
  background: var(--brand-solid);
  border-color: var(--brand-hi);
}

.clip-timecode-badge {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  z-index: 5;
}

.clip-controls-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  background: #090912;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.clip-btn-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.clip-tool-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.15s ease;
}

.clip-tool-btn:hover {
  color: #fff;
  border-color: var(--border-medium);
  background: var(--bg-elevated);
}

.clip-tool-btn.primary {
  background: var(--brand-solid);
  color: #fff;
  border-color: var(--brand-hi);
}

.clip-segment-badge {
  font-size: 11px;
  font-family: monospace;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--live);
  color: var(--live);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}


.clip-timeline-grid {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 10px;
  background: #06060c;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px;
  user-select: none;
}

.clip-tracks-labels {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clip-label-header {
  height: 18px;
  margin-bottom: 8px;
}

.clip-track-label {
  height: 24px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.clip-tracks-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.clip-timeline-ruler {
  height: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: var(--text-muted);
  font-family: monospace;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}

.clip-tracks-canvases {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.clip-track-canvas {
  height: 24px;
  background: linear-gradient(90deg, rgba(139, 77, 255, 0.2) 0%, rgba(139, 77, 255, 0.45) 50%, rgba(139, 77, 255, 0.2) 100%);
  border-radius: 3px;
}

.clip-track-canvas.audio-wave {
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.5) 50%, rgba(6, 182, 212, 0.2) 100%);
}


.clip-selection-overlay {
  position: absolute;
  top: 26px;
  bottom: 0;
  background: rgba(16, 185, 129, 0.18);
  border-left: 2px solid var(--live);
  border-right: 2px solid var(--live);
  border-top: 1px dashed var(--live);
  border-bottom: 1px dashed var(--live);
  pointer-events: none;
  z-index: 8;
  transition: width 0.05s linear, left 0.05s linear;
}

.clip-selection-overlay .handle-in-label,
.clip-selection-overlay .handle-out-label {
  position: absolute;
  top: 2px;
  font-size: 8.5px;
  font-weight: 800;
  padding: 1px 4px;
  background: var(--live);
  color: #000;
  border-radius: 2px;
}
.clip-selection-overlay .handle-in-label { left: 2px; }
.clip-selection-overlay .handle-out-label { right: 2px; }


.clip-playhead-needle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  z-index: 15;
  cursor: ew-resize;
  pointer-events: auto;
  transform: translateX(-50%);
}

.clip-playhead-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #000;
  font-size: 8.5px;
  font-weight: 800;
  font-family: monospace;
  padding: 1px 5px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  cursor: ew-resize;
}


.guest-screen-graphic {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #090e17 0%, #03060a 100%);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.guest-slide-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4px;
}

.guest-slide-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 6px 0;
}

.slide-node {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.slide-node.edge {
  background: rgba(139, 77, 255, 0.18);
  border-color: var(--brand-hi);
  color: var(--brand-hi);
}

.slide-arrow {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
}

.guest-pip-cam {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--live);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 8.5px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}


.clip-export-progress-box {
  background: #090914;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clip-progress-bar-bg {
  height: 6px;
  background: #181828;
  border-radius: 3px;
  overflow: hidden;
}

.clip-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-solid), var(--cyan));
  transition: width 0.15s ease-out;
}


.guest-stage-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guest-stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.guest-stage-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.guest-stage-grid.grid-pres {
  grid-template-columns: 1.6fr 1fr;
}

.guest-card {
  background: #080812;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
}

.guest-card.no-ar {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.guest-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.guest-identity {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.65);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(4px);
}

.guest-card-actions {
  display: flex;
  gap: 4px;
  z-index: 5;
}

.guest-ctl-btn {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.guest-ctl-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--border-glow);
}

.guest-ctl-btn.desligado {
  background: rgba(239, 68, 68, 0.25);
  border-color: var(--red);
  color: var(--red);
}

.guest-feed-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  margin: 6px 0;
}

.guest-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border-glow);
  display: grid;
  place-items: center;
  color: var(--brand-hi);
  margin-bottom: 4px;
}

.guest-screen-preview {
  width: 100%;
  height: 90px;
  background: #020205;
  border-radius: 4px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.guest-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  margin-top: 4px;
}

.btn-add-scene {
  background: rgba(139, 77, 255, 0.15);
  border: 1px solid var(--brand-hi);
  color: var(--brand-hi);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s ease;
}

.btn-add-scene:hover {
  background: var(--brand-solid);
  color: #fff;
}

.btn-add-scene.adicionado {
  background: rgba(16, 185, 129, 0.18);
  border-color: var(--live);
  color: var(--live);
}


.noise-suppression-box {
  background: #0a0a14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.noise-wave-visual {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.noise-wave-bar {
  width: 3px;
  background: var(--live);
  border-radius: 2px;
  animation: waveBounce 0.8s ease-in-out infinite alternate;
}
.noise-wave-bar:nth-child(2) { animation-delay: 0.15s; height: 16px; }
.noise-wave-bar:nth-child(3) { animation-delay: 0.3s; height: 22px; }
.noise-wave-bar:nth-child(4) { animation-delay: 0.45s; height: 12px; }
.noise-wave-bar:nth-child(5) { animation-delay: 0.2s; height: 18px; }


.vault-explorer-container {
  background: rgba(14, 14, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vault-header-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vault-file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 280px;
  overflow-y: auto;
}

.vault-file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 18, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.15s ease;
}

.vault-file-row:hover {
  background: rgba(24, 24, 40, 0.95);
  border-color: rgba(160, 107, 255, 0.3);
}

.vault-file-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.vault-type-badge {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 9.5px;
  font-weight: 800;
  font-family: monospace;
  flex-shrink: 0;
}
.vault-type-badge.mp4 { background: rgba(139, 77, 255, 0.2); color: var(--brand-hi); border: 1px solid var(--brand-hi); }
.vault-type-badge.wav { background: rgba(6, 182, 212, 0.2); color: var(--cyan); border: 1px solid var(--cyan); }
.vault-type-badge.iso { background: rgba(16, 185, 129, 0.2); color: var(--live); border: 1px solid var(--live); }

.vault-file-title {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vault-file-sub {
  font-size: 10px;
  color: var(--text-muted);
}

.vault-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.vault-action-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s ease;
}
.vault-action-btn:hover {
  background: var(--bg-elevated);
  color: #fff;
  border-color: var(--border-glow);
}


.grade-planos {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 960px;
  margin: 0 auto;
}

.plano {
  background: rgba(15, 15, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.plano:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 107, 255, 0.35);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.8), 0 0 24px rgba(139, 77, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.plano.destaque {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 20px 50px var(--brand-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(139, 77, 255, 0.14) 0%, rgba(15, 15, 26, 0.92) 100%);
}

.selo {
  position: absolute;
  top: -11px;
  left: 26px;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 12px var(--brand-glow);
}

.plano-topo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plano h3 {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--text-primary);
}

.preco {
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
}

.preco small {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.plano ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin: 8px 0 14px;
}

.plano li {
  display: flex;
  gap: 9px;
  align-items: center;
}

.plano li::before {
  content: '';
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--live-soft);
  background-image: linear-gradient(45deg, transparent 46%, var(--live) 46% 54%, transparent 54%),
                    linear-gradient(-45deg, transparent 60%, var(--live) 60% 68%, transparent 68%);
  background-size: 8px 8px, 8px 8px;
  background-position: center, center;
  background-repeat: no-repeat;
}

.plano li.nao {
  color: var(--text-muted);
}

.plano li.nao::before {
  background: rgba(255, 255, 255, 0.05);
  background-image: none;
}


.doc {
  max-width: 780px;
  padding-top: 50px;
}

.doc h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}

.doc h2 {
  font-size: var(--fs-xl);
  margin: 40px 0 14px;
  letter-spacing: -0.02em;
}

.doc p, .doc li {
  color: var(--text-secondary);
  font-size: var(--fs-md);
  line-height: 1.7;
}

.doc p {
  margin: 12px 0;
}

.doc ul, .doc ol {
  margin: 12px 0 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.doc code {
  font: var(--fs-sm)/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  padding: 2px 6px;
}

.doc .data {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.rolar {
  overflow-x: auto;
  margin: 18px 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 520px;
  font-size: var(--fs-sm);
}

th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}

th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg-surface);
}

td {
  color: var(--text-secondary);
}

tr:last-child td {
  border-bottom: 0;
}

.minuta {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 24px 0 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: var(--fs-sm);
  color: #fcd34d;
}

.minuta strong {
  color: #fde68a;
}


.planos-grade {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 1120px) {
  .planos-grade {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .planos-grade {
    grid-template-columns: 1fr;
  }
}

.plano {
  position: relative;
  background: rgba(13, 12, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 640px;
  box-shadow: 0 16px 44px -10px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.plano:hover {
  transform: translateY(-4px);
  border-color: rgba(160, 107, 255, 0.4);
  box-shadow: 0 24px 56px -10px rgba(0, 0, 0, 0.8), 0 0 28px rgba(139, 77, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.plano.destaque {
  background: radial-gradient(120% 140% at 50% 0%, rgba(139, 77, 255, 0.22), transparent 60%), rgba(16, 14, 28, 0.95);
  border: 1.5px solid var(--brand);
  box-shadow: 0 24px 60px -10px rgba(139, 77, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.plano .selo {
  position: absolute;
  top: -12px;
  right: 18px;
  background: #6d28d9;
  border: 1px solid #7c3aed;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.4);
}

.plano-topo {
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.plano-topo h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.plano-topo .preco {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  display: block;
  margin-top: 4px;
}

.plano-topo .preco small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.plano-feat-list {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plano-feat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 8px;
  padding: 8px 12px;
  min-height: 40px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.plano-feat-item:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.09);
}

.plano-feat-item.nao {
  opacity: 0.45;
  background: transparent;
  border-color: transparent;
}

.plano-feat-item .feat-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.plano-feat-item .feat-val {
  color: #ffffff;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.plano-feat-item .feat-val.highlight {
  color: #f1f5f9;
  font-weight: 800;
}

.plano-feat-item .feat-val.live-glow {
  color: var(--live) !important;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.plano-feat-item .feat-val-nao {
  color: var(--text-muted);
  font-size: 11px;
}

.plano .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
}


.planos-comparativo-wrap {
  margin-top: 56px;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(11, 10, 20, 0.95);
  border: 1px solid rgba(139, 77, 255, 0.25);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(139, 77, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow-x: auto;
}

.planos-comparativo-header {
  text-align: center;
  margin-bottom: 32px;
}

.planos-comparativo-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.planos-comparativo-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

.tabela-comparativa {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

.tabela-comparativa thead th {
  background: rgba(18, 17, 30, 0.98);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  padding: 16px 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.tabela-comparativa thead th.col-feature {
  width: 32%;
  border-top-left-radius: 12px;
}

.tabela-comparativa thead th.col-plan {
  width: 17%;
  text-align: center;
}

.tabela-comparativa thead th.col-plan:last-child {
  border-top-right-radius: 12px;
}

.tabela-comparativa thead th.col-plan.destaque-col {
  color: var(--brand-hi);
  background: rgba(139, 77, 255, 0.18);
  border-top: 2px solid var(--brand-hi);
  border-left: 1px solid rgba(139, 77, 255, 0.3);
  border-right: 1px solid rgba(139, 77, 255, 0.3);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -4px 16px rgba(139, 77, 255, 0.2);
}

.tabela-comparativa .categoria-row th {
  background: linear-gradient(90deg, rgba(139, 77, 255, 0.16) 0%, rgba(139, 77, 255, 0.02) 80%);
  color: #c084fc;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  border-top: 1px solid rgba(139, 77, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--brand-hi);
}

.tabela-comparativa tbody tr {
  transition: background 0.15s ease;
}

.tabela-comparativa tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.tabela-comparativa td {
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-secondary);
  vertical-align: middle;
}

.tabela-comparativa td.col-val {
  text-align: center;
}

.tabela-comparativa td.col-val.destaque-col {
  background: rgba(139, 77, 255, 0.07);
  font-weight: 700;
  color: #ffffff;
  border-left: 1px solid rgba(139, 77, 255, 0.15);
  border-right: 1px solid rgba(139, 77, 255, 0.15);
}

.tabela-comparativa .check-yes {
  color: var(--live);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.tabela-comparativa .check-no {
  color: var(--text-muted);
  opacity: 0.4;
}


footer {
  border-top: 1px solid var(--border-subtle);
  background: rgba(7, 7, 11, 0.95);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.footer-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.footer-col a {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.editor-vault-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  width: 100%;
}

@media (max-width: 1024px) {
  .editor-vault-split-grid {
    grid-template-columns: 1fr;
  }
}


.clip-studio-container {
  background: rgba(14, 14, 25, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 460px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.clip-studio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.clip-aspect-switcher {
  display: flex;
  gap: 6px;
  background: var(--bg-elevated);
  padding: 3px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.clip-aspect-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.clip-aspect-btn:hover {
  color: var(--text-primary);
}

.clip-aspect-btn.ativo {
  background: var(--brand);
  color: #fff;
}


.clip-preview-viewport {
  position: relative;
  background: #020205;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
}

.clip-video-screen {
  width: 100%;
  height: 100%;
  position: relative;
  background: radial-gradient(circle at center, #1a103c 0%, #06060c 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
}

.clip-video-screen.vertical-crop {
  width: 112px;
  border-left: 2px dashed var(--brand);
  border-right: 2px dashed var(--brand);
  box-shadow: 0 0 20px rgba(139, 77, 255, 0.3);
}

.clip-center-play-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(139, 77, 255, 0.9);
  border: none;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(139, 77, 255, 0.5);
  transition: transform 0.15s, background 0.15s;
}

.clip-center-play-btn:hover {
  transform: scale(1.1);
  background: var(--brand-hi);
}

.clip-timecode-badge {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  border: 1px solid var(--border-subtle);
}

.clip-controls-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.clip-btn-group {
  display: flex;
  gap: 4px;
}

.clip-tool-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.15s;
}

.clip-tool-btn:hover {
  background: #1e1e2f;
  color: var(--text-primary);
}

.clip-tool-btn.primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.clip-segment-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(6, 182, 212, 0.25);
}


.vault-explorer-container {
  background: rgba(14, 14, 25, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 460px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vault-header-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.vault-file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 2px;
}

.vault-file-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}

.vault-file-row:hover {
  background: #141420;
}

.vault-file-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vault-type-badge {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.vault-type-badge.mp4 {
  background: rgba(59, 130, 246, 0.2);
  color: var(--blue, #3b82f6);
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.vault-type-badge.iso {
  background: rgba(139, 77, 255, 0.2);
  color: var(--brand-hi);
  border: 1px solid rgba(139, 77, 255, 0.4);
}

.vault-type-badge.wav {
  background: rgba(16, 185, 129, 0.2);
  color: var(--live);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.vault-file-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.vault-file-sub {
  font-size: 10px;
  color: var(--text-muted);
}

.vault-actions {
  display: flex;
  gap: 6px;
}

.vault-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.vault-action-btn:hover {
  background: #1e1e2f;
  color: var(--text-primary);
}


.alert-triggers-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  width: 100%;
}

.alert-trigger-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(20, 20, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.alert-trigger-pill .p-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.2s ease;
}

.alert-trigger-pill.twitch .p-dot {
  background: #a970ff;
  box-shadow: 0 0 8px rgba(169, 112, 255, 0.8);
}

.alert-trigger-pill.kick .p-dot {
  background: #53fc18;
  box-shadow: 0 0 8px rgba(83, 252, 24, 0.8);
}

.alert-trigger-pill.hype .p-dot {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.8);
}

.alert-trigger-pill:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(30, 30, 48, 0.95);
}

.alert-trigger-pill.twitch:hover {
  border-color: rgba(169, 112, 255, 0.5);
  box-shadow: 0 4px 16px rgba(169, 112, 255, 0.25);
}

.alert-trigger-pill.kick:hover {
  border-color: rgba(83, 252, 24, 0.5);
  box-shadow: 0 4px 16px rgba(83, 252, 24, 0.25);
}

.alert-trigger-pill.hype:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}

.vault-action-btn:hover {
  background: #1e1e2f;
  color: var(--text-primary);
}


.widgets-separated-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 20px;
}

.widget-separated-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  background: rgba(15, 15, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.widget-separated-card:hover {
  transform: translateY(-2px);
  border-color: rgba(160, 107, 255, 0.35);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.8), 0 0 24px rgba(139, 77, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.widget-separated-card.reverso {
  grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 900px) {
  .widget-separated-card,
  .widget-separated-card.reverso {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
}

.widget-card-desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-card-desc h3 {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.widget-card-desc p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.widget-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

.widget-card-features li svg {
  flex-shrink: 0;
}

.widget-card-preview {
  width: 100%;
}


@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation: none !important;
    transition: none !important;
  }
  .btn.primary:hover, .cartao-produto:hover, .plano:hover {
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .sim-grid-multistream, .showcase-row, .showcase-row.reverso, .widgets-sim-container, .obs-sim-container {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .obs-mixer-cols {
    height: 170px;
  }
}

@media (max-width: 720px) {
  .topo nav {
    display: none;
  }
  .hero {
    padding: 44px 0 32px;
  }
  main {
    padding: 0 16px 50px;
  }
  .secao {
    padding: 50px 0;
  }
  .grade-produtos {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
}
