/* ----------------------------------------------------
   SMARTBR PRESENTATION DESIGN SYSTEM
   Palette: Premium Deep Slate, Tech Blue, Electric Cyan & Emerald Green
   ---------------------------------------------------- */
:root {
    --bg-main: #060913;
    --bg-sidebar: #0b0f19;
    --bg-card: #111726;
    --bg-card-hover: #161f33;
    --bg-input: #1f2937;
    
    --color-text-primary: #f3f4f6;
    --color-text-secondary: #9ca3af;
    --color-text-muted: #6b7280;
    
    --accent-blue: #2563eb;
    --accent-blue-light: #3b82f6;
    --accent-cyan: #00d5ff;
    --accent-cyan-glow: rgba(0, 213, 255, 0.25);
    --accent-cyan-dim: rgba(0, 213, 255, 0.05);
    
    --status-liberado: #10b981;
    --status-liberado-glow: rgba(16, 185, 129, 0.3);
    --status-testes: #3b82f6;
    --status-testes-glow: rgba(59, 130, 246, 0.3);
    --status-desenv: #f59e0b;
    --status-desenv-glow: rgba(245, 158, 11, 0.3);
    --status-desativado: #6b7280;
    --status-desativado-glow: rgba(107, 114, 128, 0.3);
    
    --border-color: #1f293d;
    --border-light: rgba(255, 255, 255, 0.04);
    
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.10);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.30);
    
    --sidebar-width: 280px;
    --footer-height: 60px;
}

/* ----------------------------------------------------
   BASE GLOBAL ESTILOS
   ---------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    background-color: var(--bg-main);
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.5;
    overflow: hidden;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: #fff;
}

/* Custom Scrollbar for side panel lists */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ----------------------------------------------------
   PRESENTATION APP SHELL LAYOUT
   ---------------------------------------------------- */
.app-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Mobile Header and Backdrop default hidden on desktop */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    background-color: var(--bg-sidebar);
    border-bottom: 1px solid var(--border-color);
    padding: 0 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-logo .brand-logo {
    max-height: 24px;
}

.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(3, 5, 12, 0.65);
    backdrop-filter: blur(4px);
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Styling */
.presentation-sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 20;
    transition: transform var(--transition-normal);
}

.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

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

.brand-logo {
    max-height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-bold {
    color: #fff;
}
.logo-light {
    color: var(--color-text-secondary);
    font-weight: 400;
}
.logo-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.sidebar-subtitle {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--color-text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sidebar App List */
.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 8px;
}

.category-group {
    margin-bottom: 20px;
}

.category-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    margin-bottom: 6px;
}

.app-list-items {
    list-style: none;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--color-text-secondary);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
}

.sidebar-btn:hover {
    background-color: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.sidebar-btn.active {
    background-color: rgba(37, 99, 235, 0.15);
    border-left: 3px solid var(--accent-blue-light);
    color: #fff;
    font-weight: 500;
    padding-left: 13px; /* Adjust for border */
}

.app-label-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LED Indicator States */
.status-led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.status-led.liberado {
    background-color: var(--status-liberado);
    box-shadow: 0 0 6px var(--status-liberado);
}

.status-led.testes {
    background-color: var(--status-testes);
    box-shadow: 0 0 6px var(--status-testes);
}

.status-led.desenv {
    background-color: var(--status-desenv);
    box-shadow: 0 0 6px var(--status-desenv);
}

.status-led.desativado {
    background-color: var(--status-desativado);
}

/* Badge for Sidebar buttons (shows category / metadata) */
.sidebar-meta {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* Main Content Area */
.presentation-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background-color: var(--bg-main);
    z-index: 10;
}

/* Presentation Progress Bar */
.progress-container {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
}

.progress-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    transition: width var(--transition-normal);
}

/* Slide Container */
.slides-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
    height: calc(100% - var(--footer-height));
    overflow: hidden;
}

/* Individual Slide Panels */
.slide-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
    z-index: 1;
    overflow-y: auto;
    padding: 40px;
    display: none; /* Block display override on active */
}

.slide-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 5;
    display: grid; /* Becomes grid or flex based on slide type */
}

/* ----------------------------------------------------
   SLIDE 1: INTRO CAPA / COVER
   ---------------------------------------------------- */
.slide-cover {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.08) 0%, rgba(6, 9, 19, 0) 65%);
}

.cover-content {
    max-width: 800px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInScale 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.cover-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-cyan);
    background-color: var(--accent-cyan-dim);
    border: 1px solid rgba(0, 213, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.cover-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cover-title span {
    background: linear-gradient(135deg, #fff 30%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cover-desc {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cover-actions {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 50%, var(--accent-cyan) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 213, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-text-secondary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.cover-shortcuts {
    margin-top: 60px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 20px;
}
.shortcut-tag {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary);
}

/* ----------------------------------------------------
   SLIDE LAYOUT: APP DETALHE / PRODUCTS SHOWCASE
   ---------------------------------------------------- */
.slide-app-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.app-details-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.app-tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.app-main-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.app-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

/* Status Badge inside app view */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-status.liberado {
    background-color: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.badge-status.testes {
    background-color: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.badge-status.desenv {
    background-color: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.badge-status.desativado {
    background-color: rgba(107, 114, 128, 0.08);
    border: 1px solid rgba(107, 114, 128, 0.2);
    color: #9ca3af;
}

.badge-access {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--color-text-secondary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-family: var(--font-mono);
}

.app-description {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
}

/* App Features list styling */
.features-container {
    margin-bottom: 30px;
}

.features-header {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--color-text-secondary);
}

.feature-check-icon {
    color: var(--accent-cyan);
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-bullet-icon {
    color: var(--color-text-muted);
    margin-top: 3px;
    flex-shrink: 0;
}

/* App Links styling */
.app-actions-row {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

/* ----------------------------------------------------
   GALLERY / DEVICE MOCKUP (RIGHT COLUMN)
   ---------------------------------------------------- */
.app-gallery-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Premium Browser / Device Shell Mockup */
.device-browser-mockup {
    width: 100%;
    background-color: #1a1e29;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.browser-header {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
}
.browser-dot.red { background-color: #ef4444; }
.browser-dot.yellow { background-color: #f59e0b; }
.browser-dot.green { background-color: #10b981; }

.browser-url-bar {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 3px 12px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--color-text-secondary);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Screen Image Area */
.mockup-viewport {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background-color: #0b0f19;
    cursor: zoom-in;
}

.viewport-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.viewport-img.loaded {
    opacity: 1;
}

/* Hover Zoom Hint Overlay */
.zoom-overlay-hint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 9, 19, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 5;
    pointer-events: none;
}

.mockup-viewport:hover .zoom-overlay-hint {
    opacity: 1;
}

.zoom-hint-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Loading Spinner inside mockup */
.mockup-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 2.5px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 2;
    pointer-events: none;
    display: none;
}
.mockup-viewport.loading .mockup-spinner {
    display: block;
}

/* Gallery Navigation Tabs */
.gallery-tab-navigation {
    width: 100%;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gallery-tabs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.gallery-tab-btn {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--color-text-secondary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-family: var(--font-display);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.gallery-tab-btn.active {
    background-color: var(--accent-cyan-dim);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.gallery-tab-desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-style: italic;
    min-height: 16px;
}

/* Screen Placeholder layout when image is absent */
.empty-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: var(--color-text-muted);
    background-color: #0b0f19;
}

.placeholder-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--color-text-muted);
    opacity: 0.5;
}

.placeholder-txt {
    font-size: 0.85rem;
    max-width: 250px;
}

/* ----------------------------------------------------
   SLIDE: INFRASTRUCTURE (BENTO INFRA CARD GRID)
   ---------------------------------------------------- */
.slide-infra {
    display: flex !important;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    overflow-y: auto !important;
}

.infra-header {
    margin-bottom: 30px;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.infra-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    transition: border-color var(--transition-fast);
}

.infra-card:hover {
    border-color: rgba(0, 213, 255, 0.2);
}

.infra-card-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.infra-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.infra-card-list {
    list-style: none;
    font-size: 0.88rem;
    color: var(--color-text-secondary);
}

.infra-card-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
}

.infra-card-list li::before {
    content: "•";
    color: var(--accent-blue-light);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Server Nodes Table style */
.server-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.server-table-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.server-table-wrapper {
    overflow-x: auto;
}

.server-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.server-table th {
    font-family: var(--font-display);
    font-weight: 600;
    color: #fff;
    padding: 10px 16px;
    border-bottom: 2px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
}

.server-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--color-text-secondary);
}

.server-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.015);
}

/* ----------------------------------------------------
   HUD FOOTER CONTROLS
   ---------------------------------------------------- */
.presentation-footer {
    height: var(--footer-height);
    background-color: var(--bg-sidebar);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    z-index: 15;
}

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

.nav-btn {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-btn:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-text-secondary);
}

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

.slide-number-indicator {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}
.slide-number-indicator span {
    color: #fff;
    font-weight: 600;
}

.footer-keyboard-tip {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.footer-link-back {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ----------------------------------------------------
   LIGHTBOX OVERLAY (ZOOM SCREEN MODAL)
   ---------------------------------------------------- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(3, 5, 12, 0.93);
    backdrop-filter: blur(12px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1001;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    width: auto;
    height: auto;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    color: var(--color-text-primary);
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}
.lightbox-close-btn:hover {
    opacity: 1;
}

/* Lightbox Navigation Buttons */
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    transition: all var(--transition-fast);
    backdrop-filter: blur(4px);
    opacity: 0.6;
}

.lightbox-nav-btn:hover {
    background-color: rgba(0, 213, 255, 0.15);
    border-color: rgba(0, 213, 255, 0.35);
    color: var(--accent-cyan);
    opacity: 1;
    box-shadow: 0 0 15px rgba(0, 213, 255, 0.2);
}

.lightbox-nav-btn.prev {
    left: 40px;
}

.lightbox-nav-btn.next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-nav-btn {
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }
    .lightbox-nav-btn.prev {
        left: 16px;
    }
    .lightbox-nav-btn.next {
        right: 16px;
    }
}

/* Lightbox Browser Mockup styling */
.device-browser-mockup.lightbox-browser {
    width: 90vw;
    max-width: 90vw;
    background-color: #1a1e29;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.device-browser-mockup.lightbox-browser .mockup-viewport {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b0f19;
}

.device-browser-mockup.lightbox-browser .lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transform: scale(0.98);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .device-browser-mockup.lightbox-browser .lightbox-img {
    transform: scale(1);
}

/* Close Area */
.lightbox-click-close {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

/* ----------------------------------------------------
   ANIMATION KEYFRAMES
   ---------------------------------------------------- */
@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ---------------------------------------------------- */
@media (max-width: 1024px) {
    .slide-app-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        overflow-y: auto;
    }
    
    .app-details-column {
        height: auto;
    }
    
    .app-gallery-column {
        margin-top: 16px;
    }
    
    .infra-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .proposta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html, body {
        font-size: 13.5px;
    }
    
    .app-container {
        flex-direction: column;
    }
    
    /* Show mobile header */
    .mobile-header {
        display: flex;
    }
    
    /* Transform Sidebar into an Off-canvas Drawer */
    .presentation-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        max-height: 100vh;
        z-index: 90;
        transform: translateX(-100%);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
        border-right: 1px solid var(--border-color);
        border-bottom: none;
        transition: transform var(--transition-normal);
    }
    
    /* Class when sidebar drawer is open */
    .presentation-sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-header {
        padding: 20px 16px;
    }
    
    /* Restore vertical layout inside drawer */
    .sidebar-content {
        display: block;
        overflow-y: auto;
        overflow-x: hidden;
        white-space: normal;
        padding: 16px 8px;
    }
    
    .category-group {
        display: block;
        margin-bottom: 20px;
        margin-right: 0;
    }
    
    .category-title {
        padding: 8px 16px;
        margin-bottom: 6px;
        margin-right: 0;
        display: block;
    }
    
    .app-list-items {
        display: block;
    }
    
    .sidebar-btn {
        padding: 10px 16px;
        font-size: 0.88rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .sidebar-btn.active {
        border-left: 3px solid var(--accent-blue-light);
        border-bottom: none;
        padding-left: 13px;
    }
    
    .sidebar-footer {
        display: block;
        padding: 16px 24px;
        border-top: 1px solid var(--border-color);
    }
    
    /* Main Content takes full width & height, push down by mobile header */
    .presentation-main {
        height: 100vh;
        width: 100vw;
        padding-top: 56px; /* Space for fixed mobile header */
    }
    
    .progress-container {
        top: 56px; /* Place progress bar below header */
    }
    
    .slides-wrapper {
        height: calc(100% - var(--footer-height));
    }
    
    .slide-panel {
        padding: 20px;
        overflow-y: auto !important; /* Force content vertical scrolling on mobile */
    }
    
    .cover-title {
        font-size: 2.2rem;
    }
    
    .cover-desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .app-main-title {
        font-size: 1.8rem;
    }
    
    .app-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .infra-grid {
        grid-template-columns: 1fr;
    }
    
    .infra-client-cards-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .proposta-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-keyboard-tip {
        display: none;
    }
}

@media (max-width: 480px) {
    html, body {
        font-size: 12.5px;
    }
    
    .slide-panel {
        padding: 14px;
    }
    
    .cover-title {
        font-size: 1.8rem;
    }
    
    .app-main-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .app-actions-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
}

/* ----------------------------------------------------
   SIDEBAR FILTERS
   ---------------------------------------------------- */
.sidebar-filters {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.filter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-input-wrapper .search-icon {
    position: absolute;
    left: 10px;
    color: var(--color-text-muted);
}

.filter-input-wrapper input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 6px 12px 6px 28px;
    color: #fff;
    font-size: 0.82rem;
    font-family: var(--font-sans);
    outline: none;
    transition: all var(--transition-fast);
}

.filter-input-wrapper input:focus {
    border-color: var(--accent-cyan);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 6px 10px;
    color: var(--color-text-secondary);
    font-size: 0.82rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
}

.custom-select-trigger:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.custom-select-trigger:focus,
.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--accent-cyan);
    color: #fff;
}

.select-chevron {
    transition: transform var(--transition-fast);
    opacity: 0.5;
    flex-shrink: 0;
}

.custom-select-wrapper.open .select-chevron {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--accent-cyan);
}

.custom-select-options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 4px;
    z-index: 100;
    box-shadow: var(--shadow-lg);
    animation: dropdownFadeIn 0.15s ease-out;
}

.custom-select-wrapper.open .custom-select-options {
    display: block;
}

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

.custom-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--color-text-secondary);
    font-size: 0.82rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}

.custom-option:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.custom-option.active {
    background-color: rgba(37, 99, 235, 0.15);
    color: #fff;
    font-weight: 500;
}

.option-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.option-dot.liberado {
    background-color: var(--status-liberado);
    box-shadow: 0 0 6px var(--status-liberado);
}

.option-dot.testes {
    background-color: var(--status-testes);
    box-shadow: 0 0 6px var(--status-testes);
}

.option-dot.desenv {
    background-color: var(--status-desenv);
    box-shadow: 0 0 6px var(--status-desenv);
}

.option-dot.desativado {
    background-color: var(--status-desativado);
}

/* ----------------------------------------------------
   SLIDE LAYOUT: PROPOSTA COMERCIAL
   ---------------------------------------------------- */
.proposta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.proposta-header {
    margin-bottom: 24px;
}

.proposta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.proposta-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-fast);
}

.proposta-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.proposta-card.featured {
    border-color: var(--accent-blue-light);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 9, 19, 0) 100%), var(--bg-card);
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.2);
}

.card-plan-header {
    margin-bottom: 16px;
}

.plan-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-cyan);
    background-color: var(--accent-cyan-dim);
    border: 1px solid rgba(0, 213, 255, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.plan-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.plan-subtitle {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.plan-price {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.price-val {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.price-desc {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-top: 2px;
    display: block;
}

.plan-features-list {
    list-style: none;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-features-list li {
    position: relative;
    padding-left: 20px;
}

.plan-features-list li::before {
    content: "✓";
    color: var(--status-liberado);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.plan-features-list li.premium-item {
    color: #ffffff;
    font-weight: 500;
    padding: 6px 10px 6px 24px;
    background: rgba(0, 213, 255, 0.05);
    border-radius: 6px;
    border: 1px dashed rgba(0, 213, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 213, 255, 0.03);
    margin-top: 4px;
    margin-bottom: 4px;
}

.plan-features-list li.premium-item::before {
    content: "✦" !important;
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 8px var(--accent-cyan);
    font-size: 1rem;
    position: absolute;
    left: 8px !important;
    top: 6px !important;
}


.proposta-notes-box {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
}

.notes-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.notes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* ----------------------------------------------------
   SLIDE LAYOUT: ROADMAP (KANBAN)
   ---------------------------------------------------- */
.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.roadmap-header {
    margin-bottom: 24px;
}

.roadmap-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
    overflow: hidden;
    min-height: 400px;
}

.roadmap-column {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 100%;
}

.roadmap-col-header {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.col-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.col-dot.verde { background-color: var(--status-liberado); box-shadow: 0 0 6px var(--status-liberado); }
.col-dot.azul { background-color: var(--status-testes); box-shadow: 0 0 6px var(--status-testes); }
.col-dot.laranja { background-color: var(--status-desenv); box-shadow: 0 0 6px var(--status-desenv); }

.roadmap-cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    flex: 1;
    padding-right: 4px;
}

.roadmap-item-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 14px;
    transition: all var(--transition-fast);
}

.roadmap-item-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.roadmap-item-card h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.roadmap-item-card p {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* ----------------------------------------------------
   SLIDE LAYOUT: INFRASTRUCTURE SWITCHER
   ---------------------------------------------------- */
.infra-tabs-row {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.infra-tab-btn {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--color-text-secondary);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.infra-tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.infra-tab-btn.active {
    background-color: var(--accent-cyan-dim);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 213, 255, 0.1);
}

.infra-panel-view {
    display: none;
    width: 100%;
}

.infra-panel-view.active {
    display: block;
    animation: fadeInScale 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.infra-client-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

/* BetterStack Live Embedding styles */
.monitor-embed-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transition: border-color var(--transition-fast);
}

.monitor-embed-container:hover {
    border-color: rgba(0, 213, 255, 0.2);
}

.monitor-embed-header {
    background-color: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.monitor-ext-link {
    margin-left: auto;
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.monitor-ext-link:hover {
    color: var(--accent-cyan);
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 213, 255, 0.3);
}

.monitor-iframe {
    width: 100%;
    height: 520px;
    border: none;
    background-color: #ffffff;
}

.bs-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--status-liberado);
    box-shadow: 0 0 8px var(--status-liberado);
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 12px var(--status-liberado); }
}

/* Warning box when running presentation via local file:// protocol */
.local-protocol-warning {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    background-color: rgba(245, 158, 11, 0.03);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    color: var(--color-text-secondary);
    gap: 16px;
}

.local-protocol-warning .warning-icon {
    font-size: 2.2rem;
}

.local-protocol-warning .warning-text {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 600px;
}

.local-protocol-warning code {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--status-desenv);
    font-family: var(--font-mono);
}

/* ----------------------------------------------------
   DATA PIPELINE FLOW (slide-infra)
   ---------------------------------------------------- */
.data-flow-pipeline {
    background: linear-gradient(180deg, rgba(17, 23, 38, 0.6) 0%, rgba(11, 15, 25, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.pipeline-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pipeline-title::before, .pipeline-title::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.pipeline-flow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pipeline-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 540px;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pipeline-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 213, 255, 0.1);
}

.pipeline-step .step-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.pipeline-step:hover .step-icon {
    background: var(--accent-cyan-dim);
    border-color: var(--accent-cyan);
    text-shadow: 0 0 8px var(--accent-cyan);
}

.brand-svg-icon {
    width: 22px;
    height: 22px;
    display: block;
    transition: transform var(--transition-fast);
}

.brand-svg-icon.cl-orange {
    color: #F38020;
}

.brand-svg-icon.sb-green {
    color: #3ECF8E;
}

.brand-svg-icon.bs-teal {
    color: #20E9B9;
}

.brand-svg-icon.api-indigo {
    color: #818CF8;
}

.pipeline-step:hover .brand-svg-icon {
    transform: scale(1.1);
}

.pipeline-step .step-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pipeline-step .step-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.pipeline-step .step-desc {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
    margin-top: 2px;
}

/* Connectors */
.pipeline-connector {
    width: 2px;
    height: 38px;
    background: linear-gradient(180deg, var(--accent-cyan) 0%, rgba(255, 255, 255, 0.05) 100%);
    position: relative;
    margin: 6px 0;
}

.pipeline-connector .connector-label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    white-space: nowrap;
    opacity: 0.8;
    background: rgba(6, 9, 19, 0.6);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(0, 213, 255, 0.1);
}

.pipeline-connector .pulse-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan);
    animation: pulseFlowDown 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulseFlowDown {
    0% {
        top: 0%;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Parallel Branches Wrapper */
.pipeline-branches-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 12px;
}

.pipeline-step.branch {
    max-width: none;
    flex-direction: column;
    text-align: left;
    padding: 22px 20px;
    justify-content: flex-start;
    align-items: stretch;
}

.pipeline-step.branch .step-icon {
    margin-bottom: 16px;
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
    align-self: center;
}

.pipeline-step.branch .step-details {
    align-items: stretch;
}

.pipeline-step.branch .step-name {
    text-align: center;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

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

.branch-list li {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    position: relative;
    padding-left: 16px;
    line-height: 1.4;
}

.branch-list li::before {
    content: "•";
    color: var(--accent-cyan);
    font-weight: bold;
    position: absolute;
    left: 4px;
    top: -1px;
}

/* Responsive adjustments for pipeline */
@media (max-width: 1024px) {
    .pipeline-branches-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pipeline-branches-wrapper {
        grid-template-columns: 1fr;
    }
    .pipeline-step {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    .pipeline-step .step-icon {
        margin-bottom: 8px;
    }
}

/* ----------------------------------------------------
   SOLUTIONS CATALOGUE (slide-lista-apps)
   ---------------------------------------------------- */
.slide-lista-apps {
    padding: 40px;
    overflow-y: auto;
}

.list-apps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.list-apps-header {
    margin-bottom: 12px;
}

.list-apps-categories-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.list-apps-category-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.list-apps-category-title {
    font-size: 1.15rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--accent-cyan);
    border-left: 3px solid var(--accent-cyan);
    padding-left: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.list-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.app-catalog-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.app-catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.app-catalog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 213, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-lg), 0 0 15px rgba(0, 213, 255, 0.05);
}

.app-catalog-card:hover::before {
    opacity: 1;
}

.app-catalog-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.app-catalog-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-catalog-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    transition: color var(--transition-fast);
}

.app-catalog-card:hover .app-catalog-card-title {
    color: var(--accent-cyan);
}

.app-catalog-meta {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text-muted);
    background-color: rgba(255, 255, 255, 0.04);
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.app-catalog-card:hover .app-catalog-meta {
    background-color: rgba(0, 213, 255, 0.1);
    color: var(--accent-cyan);
}

.app-catalog-features-preview {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
    margin: 4px 0 8px 0;
}

.catalog-feature-tag {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.app-catalog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.76rem;
}

.app-catalog-status-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-secondary);
}

.app-catalog-access-wrap {
    color: var(--color-text-muted);
    font-style: italic;
}

/* Collapsible Category Header */
.list-apps-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 6px 0;
    user-select: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 12px;
    transition: opacity var(--transition-fast);
}

.list-apps-category-header:hover {
    opacity: 0.8;
}

.category-toggle-chevron {
    color: var(--color-text-muted);
    transition: transform var(--transition-normal);
}

.list-apps-category-section.collapsed .list-apps-grid {
    display: none;
}

.list-apps-category-section.collapsed .category-toggle-chevron {
    transform: rotate(-90deg);
}

/* Expandable Card Description */
.app-catalog-desc-expandable {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.app-catalog-card.desc-open .app-catalog-desc-expandable {
    max-height: 120px;
    opacity: 1;
    margin-top: 10px;
    margin-bottom: 4px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.app-catalog-desc-text {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Toggle Details Button */
.app-catalog-toggle-desc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    color: var(--color-text-secondary);
    font-size: 0.72rem;
    font-family: var(--font-sans);
    padding: 3px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-fast);
    outline: none;
}

.app-catalog-toggle-desc:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.app-catalog-toggle-desc svg {
    transition: transform var(--transition-fast);
    opacity: 0.6;
}

.app-catalog-card.desc-open .app-catalog-toggle-desc {
    background: rgba(0, 213, 255, 0.1);
    color: var(--accent-cyan);
    border-color: rgba(0, 213, 255, 0.2);
}

.app-catalog-card.desc-open .app-catalog-toggle-desc svg {
    opacity: 1;
}

/* Roadmap Deadline Badge */
.roadmap-card-deadline {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--status-desenv);
    background-color: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 8px;
    font-weight: 500;
}



