:root {
    /* Cores OFICIAIS extraídas da logo MV Food System */
    --primary: #E6392D;          /* Vermelho esquerdo da logo */
    --primary-hover: #C42D22;     /* Vermelho mais escuro hover */
    --secondary: #FFC819;         /* Amarelo do V de confirmação */
    --accent: #FF7A00;            /* Laranja do rodapé da logo (p/ gradientes) */
    --dark: #151A3A;
    --light: #F7F8FC;
    --gray: #8A93B8;
    --white: #ffffff;
    --danger: #E6392D;
    --success: #28a745;
    --font-main: 'Inter', sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.15);

    /* ===== OVERRIDES OBRIGATÓRIOS (theme fundo escuro Lalibertech) =====
       mv-food.css era originalmente TEMA CLARO, mas a página roda em cima do style.css 
       (tema escuro cósmico Lalibertech). Sem esses overrides, textos cinza escuros 
       em fundo cósmico = ilegibilidade total. */
    --text-body: #E6E9F5;         /* corpo de texto em fundo escuro (88%+ contraste) */
    --text-heading: #FFFFFF;      /* titulos em fundo escuro (100% contraste) */
    --text-muted: #B0B7D4;        /* legendas / secundários (contraste ok) */
    --card-bg: #1C2146;           /* fundo de card em tema escuro, quase preto com roxo */
    --card-border: rgba(139,107,255,0.22);
    --surface-light: #22284F;     /* surface intermediária (igual sites.html) */
}

body {
    color: var(--text-body) !important;
    background-color: transparent !important;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, strong {
    color: var(--text-heading) !important;
}

.card, .tech-box, .module-card, .feature-box, .step, .cta-box, .check-list, .hero, .bg-light, .section {
    background-color: var(--card-bg) !important;
    color: var(--text-body) !important;
    border-color: var(--card-border) !important;
}

.bg-light { background-color: var(--surface-light) !important; }

.bg-dark, .modules-container, .cta-section, footer, .proof-section {
    color: var(--text-heading) !important;
}

.card p, .card h3, .section-header p, .lead, .check-list li div,
.hero p, .hero-stats, .step p, .tech-item p, .tech-item h4,
.module-content p, .module-content h3, .module-content ul li {
    color: var(--text-heading) !important;
}

.card p, .section-header p, .lead, .hero p, .step p, .tech-item p, .module-content p {
    color: var(--text-muted) !important;
}

.feature-box h3, .feature-box { color: var(--text-heading) !important; }

.navbar, .product-header {
    background: rgba(21,26,58,0.92) !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(139,107,255,0.22);
    box-shadow: 0 4px 18px rgba(0,0,0,0.35) !important;
}
.navbar .nav-links a, .navbar .logo, .product-back-btn { color: var(--text-heading) !important; }
.navbar .nav-links a:hover, .product-back-btn:hover { color: var(--secondary) !important; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(230,57,45,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #EF6100 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230,57,45,0.45);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #1a1a1a;
}

.btn-secondary:hover {
    background-color: #f0b80b;
    color: #1a1a1a;
}

.btn-outline {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: #1a1a1a;
}

.btn-outline-white {
    border-color: white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo i {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-body);
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.badge {
    background: linear-gradient(135deg, rgba(255,200,25,0.18) 0%, rgba(255,122,0,0.18) 100%);
    border: 1px solid rgba(255,200,25,0.45);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-heading);
}

.highlight {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(139,107,255,0.22);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-heading);
}

.stat-item i {
    color: var(--secondary);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,57,45,0.09);
    border: 1px solid rgba(230,57,45,0.28);
    color: var(--text-heading);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-proof i {
    color: var(--success);
}

.hero-image {
    flex: 1;
    position: relative;
}

/* Mockup HERO PROFISSIONAL - SEM BOLINHAS, SEM APARÊNCIA DE PLAYER DE VÍDEO */
.hero-mockup-frame {
    position: relative;
    background: #0f1330;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.55),
                0 0 0 1px rgba(230, 57, 45, 0.25),
                0 0 0 2px rgba(255, 200, 25, 0.12);
    overflow: hidden;
    transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1), box-shadow 0.6s ease;
}

.hero-mockup-frame:hover {
    transform: perspective(1400px) rotateY(0deg) rotateX(0deg) translateY(-4px);
    box-shadow: 0 35px 85px rgba(0,0,0,0.65),
                0 0 0 1px rgba(230, 57, 45, 0.45),
                0 0 0 2px rgba(255, 200, 25, 0.28);
}

.hero-mockup-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    background: #0a0d22;
}

.hero-mockup-inner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.hero-mockup-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(closest-side, rgba(230,57,45,0.35) 0%, rgba(255,122,0,0.22) 40%, rgba(255,200,25,0.12) 60%, transparent 72%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    animation: heroGlowPulse 5s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
    0%   { transform: scale(0.92) translate(-2%, 1%); opacity: 0.75; }
    50%  { transform: scale(1.05) translate(2%, -1%); opacity: 1; }
    100% { transform: scale(0.98) translate(-1%, 2%); opacity: 0.8; }
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.3);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    z-index: 5;
}

.badge-1 {
    top: -12px;
    right: -12px;
    color: var(--success);
}

.badge-2 {
    bottom: -12px;
    left: -12px;
    color: var(--primary);
}

/* Sections General */
.section {
    padding: 100px 0;
    background: transparent !important;
}

.bg-light {
    background-color: var(--surface-light) !important;
}

.bg-dark {
    background-color: #121738 !important;
    color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: inherit;
}

.bg-dark .section-header h2 {
    color: white;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.bg-dark .section-header p {
    color: rgba(255,255,255,0.75);
}

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.3s;
    border: 1px solid var(--card-border);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,200,25,0.35);
    box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.card p {
    color: var(--text-muted);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.danger {
    background: rgba(230,57,45,0.12);
    color: var(--primary);
}

.problem-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-content, .split-image {
    flex: 1;
}

.tag {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.check-list li strong { color: var(--secondary) !important; }

.check-list i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 5px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid var(--card-border);
}

.feature-box:hover {
    background: var(--surface-light);
    border-color: rgba(255,200,25,0.35);
    box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.1rem;
}

/* Modules */
.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.module-card {
    background: rgba(255,255,255,0.04);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.module-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.module-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.module-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.module-content ul li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.module-content ul li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Steps */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
    background: var(--card-bg) !important;
    padding: 30px 20px !important;
    border-radius: 16px !important;
    border: 1px solid var(--card-border) !important;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(230, 57, 45, 0.4);
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255,200,25,0.3);
    margin-top: 55px;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0 10px;
}

/* Tech Box */
.tech-box {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid var(--card-border);
}

.tech-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.tech-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    opacity: 1;
}

.tech-item h4 {
    margin-bottom: 5px;
}

.tech-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Proof */
.proof-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
    color: white;
    padding: 80px 0;
}

.proof-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.proof-sub {
    font-size: 1.2rem;
    opacity: 0.92;
}

/* CTA */
.cta-section {
    background: #121738 !important;
    color: white;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.cta-note {
    opacity: 0.75;
}

/* Footer */
footer {
    background: #0F1430 !important;
    color: white;
    padding: 30px 0;
    border-top: 1px solid rgba(255,200,25,0.25);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================================
   NOVA SECAO: COMO FUNCIONA (WORKFLOW COM TELAS REAIS)
   Estilo SaaS premium com imagens lado a lado
   ============================================================ */

.workflow-section {
    padding-block: 100px !important;
}

.workflow-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-block: 96px;
}

.workflow-row:first-of-type {
    margin-top: 72px;
}

.workflow-row:last-child {
    margin-bottom: 24px;
}

/* Inverte as colunas nos steps pares (2, 4) */
.workflow-row.reverse .workflow-img {
    order: 2;
}
.workflow-row.reverse .workflow-text {
    order: 1;
}

/* Container da screenshot + moldura profissional */
.workflow-img {
    width: 100%;
    position: relative;
}
.workflow-img::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.18;
    filter: blur(22px);
    z-index: 0;
}
.workflow-img-frame {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #0F1430;
    border: 1px solid rgba(139,107,255,0.22);
    padding: 8px 8px 10px;
    box-shadow:
        0 30px 70px -10px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.06);
    transform: perspective(1200px) rotateY(-2.5deg) rotateX(1deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.workflow-row.reverse .workflow-img-frame {
    transform: perspective(1200px) rotateY(2.5deg) rotateX(1deg);
}
.workflow-img-frame:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
    box-shadow:
        0 40px 85px -10px rgba(230,57,45,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);
}
.workflow-img-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: #fff;
}

/* Lado do texto */
.workflow-text {
    padding-inline: 8px;
}
.workflow-step {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    letter-spacing: 2.5px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px -5px rgba(230,57,45,0.4);
}
.workflow-text h3 {
    color: var(--text-heading) !important;
    font-size: clamp(1.8rem, 2.6vw, 2.35rem) !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    margin-bottom: 22px !important;
}
.workflow-text p {
    color: var(--text-body) !important;
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    margin-bottom: 28px !important;
    opacity: 0.92 !important;
}

/* Lista de benefícios / checks (amarelo da logo) */
.workflow-checks {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.workflow-checks li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0 !important;
    color: var(--text-body) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    border-bottom: 1px solid rgba(255,200,25,0.09);
}
.workflow-checks li:last-child {
    border-bottom: none;
}
.workflow-checks i {
    color: var(--secondary) !important;
    font-size: 1.15rem !important;
    flex-shrink: 0;
}

/* Grid duplo de 2 screenshots (Cozinha + Bar lado a lado no mesmo frame) */
.workflow-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
}
.workflow-dual-item {
    background: #0B1030;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(139,107,255,0.22);
    display: flex;
    flex-direction: column;
}
.workflow-dual-label {
    padding: 9px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #FFFFFF !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.workflow-dual-label i {
    font-size: 0.95rem;
    opacity: 0.95;
}
.workflow-dual-item img {
    border-radius: 0 !important;
    padding: 0 !important;
    background: #fff;
    display: block;
    width: 100%;
    height: auto;
}

/* NOVO: Grid 3 colunas com Telas Reais dos Módulos */
.module-shots {
    width: 100%;
    position: relative;
    margin-top: 0;
}
.module-shots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 12px;
}
.module-shot {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* Halo + efeito de profundidade atrás do frame */
.module-shot::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.16;
    filter: blur(18px);
    z-index: 0;
}
.module-shot-label {
    position: relative;
    z-index: 2;
    padding: 9px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    box-shadow: 0 10px 25px -5px rgba(230,57,45,0.38);
}
.module-shot-label i { font-size: 1rem; }
.module-shot-frame {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    background: #0F1430;
    border: 1px solid rgba(139,107,255,0.22);
    padding: 7px 7px 9px;
    box-shadow: 0 28px 65px -10px rgba(0,0,0,0.6);
    transform: perspective(1100px) rotateY(1.8deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
}
.module-shot:nth-child(2) .module-shot-frame { transform: perspective(1100px) rotateY(0deg); }
.module-shot:nth-child(3) .module-shot-frame { transform: perspective(1100px) rotateY(-1.8deg); }
.module-shot-frame:hover {
    transform: perspective(1100px) rotateY(0deg) translateY(-5px);
    box-shadow: 0 38px 80px -10px rgba(230,57,45,0.28);
}
.module-shot-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 9px;
    background: #fafafa;
}

/* NOVO: Mockup Dashboard Gerente (Hero da secao A Solucao) */
.feature-dashboard-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}
.feature-dashboard-halo {
    position: absolute;
    inset: -18px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    opacity: 0.18;
    filter: blur(30px);
    z-index: 0;
}
.feature-dashboard-badge {
    position: relative;
    z-index: 2;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #FFFFFF !important;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    box-shadow: 0 14px 32px -8px rgba(230,57,45,0.48);
}
.feature-dashboard-badge i { font-size: 1.05rem; }
.feature-dashboard-frame {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    background: #0F1430;
    border: 1px solid rgba(139,107,255,0.28);
    padding: 9px 9px 11px;
    box-shadow: 0 38px 90px -10px rgba(0,0,0,0.65);
    transform: perspective(1300px) rotateY(3deg) rotateX(-1deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
}
.feature-dashboard-frame:hover {
    transform: perspective(1300px) rotateY(0deg) rotateX(0deg) translateY(-6px);
    box-shadow: 0 50px 110px -10px rgba(230,57,45,0.3);
}
.feature-dashboard-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 13px;
    background: #fafafa;
}

/* Mobile Responsive Workflow */
@media (max-width: 960px) {
    .workflow-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-block: 72px;
    }
    .workflow-row.reverse .workflow-img,
    .workflow-row.reverse .workflow-text {
        order: initial;
    }
    .workflow-img-frame,
    .workflow-row.reverse .workflow-img-frame {
        transform: none;
    }
    .workflow-section {
        padding-block: 70px !important;
    }
    .workflow-dual-grid {
        grid-template-columns: 1fr;
    }
    .module-shots-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .module-shot-frame,
    .module-shot:nth-child(2) .module-shot-frame,
    .module-shot:nth-child(3) .module-shot-frame {
        transform: none;
    }
    .feature-dashboard-frame { transform: none; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 30px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }
    
    .split-layout {
        flex-direction: column;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-line {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }

    /* MOCKUP HERO MOBILE - SEM BOLINHAS, MAIS COMPACTO */
    .hero-mockup-frame {
        transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
        border-radius: 14px;
    }

    .badge-1 {
        top: -8px;
        right: -8px;
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .badge-2 {
        bottom: -8px;
        left: -8px;
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}
