:root {
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --accent: #8b5cf6;
    --bg-dark: #020617;
    --bg-card: rgba(15, 23, 42, 0.6);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.08);
    --nav-bg: rgba(2, 6, 23, 0.8);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.glass-hover:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--primary);
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section Enhancements */
.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature Cards */
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px var(--primary-glow);
}

/* Pricing Upgrade */
.pricing-card {
    padding: 3rem;
    border-radius: 32px;
    transition: all 0.4s ease;
}

.pricing-card.vip {
    border: 2px solid var(--primary);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.15);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(2, 6, 23, 1) 100%);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Animations */
@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 5px var(--primary-glow)); }
    50% { filter: drop-shadow(0 0 20px var(--primary-glow)); }
}

.animate-glow {
    animation: glow 3s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   UPGRADE PREMIUM: NOVAS SEÇÕES INTERATIVAS
   ========================================================================== */

/* Seção de Tecnologia */
.tech-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 15, 30, 0.9) 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Abas */
.tech-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 991px) {
    .tech-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .tech-tab-btn {
        scroll-snap-align: start;
        flex: 0 0 auto;
        min-width: 220px;
    }
}

.tech-tab-btn {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 20px;
    color: var(--text-muted);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.tech-tab-btn:hover {
    background: rgba(30, 41, 59, 0.7);
    color: var(--text-main);
    border-color: rgba(59, 130, 246, 0.3);
}

.tech-tab-btn.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.tech-tab-btn i {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.tech-tab-btn.active i {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.tech-tab-btn .btn-info {
    display: flex;
    flex-direction: column;
}

.tech-tab-btn .btn-title {
    font-weight: 700;
    font-size: 1.05rem;
}

.tech-tab-btn .btn-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 2px;
}

/* Painel de Conteúdo */
.tech-content-card {
    min-height: 480px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .tech-content-card {
        padding: 1.5rem;
        min-height: auto;
    }
}

.tab-panel {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.tab-panel.active {
    display: block;
}

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

/* Simulador WhatsApp */
.wa-simulator {
    background: #0b141a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    max-width: 480px;
    margin: 0 auto;
}

.wa-header {
    background: #202c33;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wa-status {
    font-size: 0.75rem;
    color: #8696a0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 8px #25d366;
}

.wa-body {
    height: 320px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    background-color: #0b141a;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wa-msg {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    animation: slideInMsg 0.3s ease forwards;
}

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

.wa-msg.in {
    background: #202c33;
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 4px;
}

.wa-msg.out {
    background: #005c4b;
    color: #e9edef;
    align-self: flex-end;
    border-top-right-radius: 4px;
}

.wa-msg .time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.wa-footer-controls {
    padding: 1rem;
    background: #202c33;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-btn-trigger {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wa-btn-trigger:hover, .wa-btn-trigger.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Simulador IA */
.ia-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .ia-comparison {
        grid-template-columns: 1fr;
    }
}

.ia-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ia-card.premium-glow {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.ia-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 8px;
}

.ia-card-title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ia-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    min-height: 80px;
}

.ia-magic-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ia-magic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.typing-effect {
    border-right: 2px solid var(--accent);
    white-space: pre-wrap;
    animation: blinkCursor 0.75s step-end infinite;
}

@keyframes blinkCursor {
    from, to { border-color: transparent }
    50% { border-color: var(--accent); }
}

/* Simulador Código de Barras */
.barcode-preview {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    text-align: center;
}

.scanner-box {
    width: 260px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.scanner-laser {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    left: 0;
    top: 0;
    animation: laserScan 2.5s infinite ease-in-out;
}

@keyframes laserScan {
    0%, 100% { top: 0%; }
    50% { top: 100%; }
}

.barcode-ean {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.barcode-result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: left;
    display: flex;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.barcode-result-card.active {
    opacity: 1;
    transform: scale(1);
}

.barcode-img-holder {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.barcode-trigger-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

.barcode-trigger-btn:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Simulador Financeiro */
.finance-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .finance-dashboard {
        grid-template-columns: 1fr;
    }
}

.finance-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.finance-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.finance-stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.finance-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.finance-stat-icon.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.finance-stat-icon.orange { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.finance-stat-icon.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }

.finance-stat-info {
    display: flex;
    flex-direction: column;
}

.finance-chart-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Gráfico Simulado SVG */
.mini-chart {
    width: 100%;
    height: 160px;
    margin-top: 1rem;
}

.chart-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3px;
    stroke-linecap: round;
    animation: strokeDraw 3s ease forwards;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}

.chart-line-ap {
    fill: none;
    stroke: #ef4444;
    stroke-width: 3px;
    stroke-linecap: round;
    animation: strokeDraw 3.5s ease forwards;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}

@keyframes strokeDraw {
    to { stroke-dashoffset: 0; }
}

/* Seção PDV Omnichannel */
.pdv-section {
    padding: 80px 0;
    background: rgba(15, 23, 42, 0.15);
    position: relative;
}

.pdv-banner-card {
    padding: 4rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .pdv-banner-card {
        padding: 2rem 1.5rem;
    }
}

.pdv-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pdv-benefit-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdv-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.pdv-benefit-item i {
    color: #10b981;
    font-size: 1.25rem;
}

/* Simulador KDS (Kitchen Display System) */
.kds-simulator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: #111827;
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 575px) {
    .kds-simulator {
        grid-template-columns: 1fr;
    }
}

.kds-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kds-col-header {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kds-col-header span.badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 50px;
}

.kds-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.kds-order-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.85rem;
    transition: all 0.3s ease;
    animation: kdsPop 0.3s ease forwards;
}

@keyframes kdsPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.kds-order-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.kds-order-num {
    font-weight: bold;
    color: var(--primary);
}

.kds-order-time {
    color: var(--text-muted);
}

.kds-order-items {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.kds-order-items ul {
    margin: 0;
    padding-left: 1.2rem;
}

.kds-order-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding: 5px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.kds-order-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.kds-order-btn.success:hover {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   SHOWCASE DE PRINTS REAIS EM HTML/CSS
   ========================================================================== */

.showcase-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(2, 6, 23, 0.9) 100%);
    border-top: 1px solid var(--glass-border);
}

/* Janela Mockup macOS/Windows */
.ui-window {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.ui-window:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.15);
}

.ui-titlebar {
    background: #1e293b;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.ui-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ui-dot.red { background: #ff5f56; }
.ui-dot.yellow { background: #ffbd2e; }
.ui-dot.green { background: #27c93f; }

.ui-win-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
}

.ui-body {
    display: flex;
    background: #090d16;
    min-height: 380px;
}

@media (max-width: 768px) {
    .ui-body {
        flex-direction: column;
    }
}

/* Mockup Lateral */
.ui-sidebar-sim {
    width: 200px;
    background: #0f172a;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .ui-sidebar-sim {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: row;
        overflow-x: auto;
        padding: 0.75rem 1rem;
    }
}

.ui-side-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.ui-side-item.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

/* Painel de Conteúdo Principal */
.ui-content-sim {
    flex-grow: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ui-grid-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 575px) {
    .ui-grid-stats {
        grid-template-columns: 1fr;
    }
}

.ui-mini-card {
    background: #1e293b;
    border-radius: 10px;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.ui-mini-card span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.ui-mini-card strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text-main);
    margin-top: 4px;
}

/* Fila de Pedidos Real */
.ui-table-wrapper {
    background: #0f172a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.ui-table-sim {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    text-align: left;
}

.ui-table-sim th {
    background: #1e293b;
    color: var(--text-muted);
    font-weight: 700;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ui-table-sim td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-main);
}

.ui-table-sim tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.ui-badge-sim {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
}

.ui-badge-sim.green { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.2); }
.ui-badge-sim.orange { background: rgba(245, 158, 11, 0.1); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.2); }
.ui-badge-sim.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.2); }

/* Interface Celular do Cliente */
.phone-mockup-sim {
    width: 250px;
    height: 500px;
    background: #000;
    border: 8px solid #27272a;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    position: relative;
}

.phone-screen-sim {
    width: 100%;
    height: 100%;
    background: #090d16;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.phone-header-sim {
    background: #0f172a;
    padding: 1.5rem 1rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-body-sim {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phone-product-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-prod-img {
    height: 110px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.phone-prod-info {
    padding: 0.75rem;
}

.phone-prod-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.phone-prod-price {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: bold;
    margin-top: 4px;
}

/* ==========================================================================
   INTEGRAÇÃO E MOCKUP 3D DA HERO IMAGE
   ========================================================================== */

/* Container de Perspectiva 3D do Mockup da Hero */
.hero-mockup-container {
    perspective: 1200px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.hero-mockup-wrapper {
    position: relative;
    border-radius: 32px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.8), 
        0 0 60px rgba(59, 130, 246, 0.15);
    transform: rotateX(10deg);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.hero-mockup-wrapper:hover {
    transform: rotateX(4deg) scale(1.02);
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.9), 
        0 0 80px rgba(59, 130, 246, 0.25);
    border-color: var(--primary);
}

/* Brilho Backlight por trás */
.hero-mockup-wrapper::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    filter: blur(100px);
    opacity: 0.35;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hero-mockup-wrapper:hover::before {
    opacity: 0.5;
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    border-radius: 24px;
    display: block;
    object-fit: cover;
}

/* Efeito Glossy de Reflexo */
.hero-mockup-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        45deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.hero-mockup-wrapper:hover .hero-mockup-shine {
    transform: translateX(100%);
}

/* ==========================================================================
   WIDGETS FLUTUANTES (HERO UX/UI UPGRADE)
   ========================================================================== */

/* Ajuste fino na seção Hero */
.hero-section {
    padding: 160px 0 100px;
    overflow: visible;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 60px;
        text-align: center !important;
    }
    .hero-section .text-start {
        text-align: center !important;
    }
    .hero-section .d-flex {
        justify-content: center !important;
    }
}

/* Definições das Caixas Flutuantes */
.floating-widget {
    position: absolute;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.05);
    z-index: 10;
    transition: all 0.3s ease;
    animation: floatWidget 6s ease-in-out infinite;
}

.floating-widget:hover {
    transform: translateY(-5px) scale(1.05) !important;
    border-color: var(--primary);
    box-shadow: 0 30px 50px rgba(59, 130, 246, 0.2);
}

/* Animação Flutuante CSS */
@keyframes floatWidget {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Posições */
.floating-widget.top-left {
    top: 15%;
    left: -8%;
}

.floating-widget.top-right {
    top: -5%;
    right: 5%;
    animation-delay: 1.5s;
}

.floating-widget.bottom-right {
    bottom: 12%;
    right: -8%;
    animation-delay: 3s;
}

@media (max-width: 1200px) {
    .floating-widget.top-left { left: -2%; }
    .floating-widget.bottom-right { right: -2%; }
}

@media (max-width: 991px) {
    .floating-widget {
        display: none !important; /* Esconde em telas de celular para não quebrar a responsividade */
    }
}

/* Detalhes Internos dos Widgets */
.fw-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.fw-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.fw-icon.wa-green {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.fw-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.fw-details {
    display: flex;
    flex-direction: column;
}

.fw-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fw-value {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: bold;
    margin-top: 1px;
}




