/* Deskmotors Landing Page */

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

:root {
    --c-blue:     #0057ff;
    --c-blue-h:   #0040cc;
    --c-dark:     #0a0f1e;
    --c-navy:     #0f172a;
    --c-slate:    #1e293b;
    --c-text:     #0f172a;
    --c-muted:    #64748b;
    --c-border:   #e2e8f0;
    --c-bg:       #f8fafc;
    --c-white:    #ffffff;
    --radius:     12px;
    --shadow:     0 4px 24px rgba(0,0,0,.08);
    --shadow-lg:  0 20px 60px rgba(0,0,0,.14);
    --max-w:      1160px;
    --nav-h:      68px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: var(--c-text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

body { background: var(--c-white); overflow-x: hidden; }

.dm-container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.dm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1.5rem;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, transform .1s, box-shadow .15s, color .15s, border-color .15s;
    border: 2px solid transparent;
    white-space: nowrap;
    background: var(--c-blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,87,255,.3);
}
.dm-btn:hover { background: var(--c-blue-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,87,255,.4); }
.dm-btn--sm { padding: .5rem 1.1rem; font-size: .88rem; }
.dm-btn--hero { padding: .85rem 2rem; font-size: 1rem; border-radius: 10px; }
.dm-btn--ghost { background: rgba(255,255,255,.12); color: #fff; box-shadow: none; border-color: rgba(255,255,255,.3); }
.dm-btn--ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); box-shadow: none; }
.dm-btn--outline { background: transparent; color: var(--c-blue); border-color: var(--c-blue); box-shadow: none; }
.dm-btn--outline:hover { background: var(--c-blue); color: #fff; }
.dm-btn--full { width: 100%; }

/* ── NAV ────────────────────────────────────────────────────────── */
.dm-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 100;
    transition: background .2s, box-shadow .2s;
}
.dm-nav.scrolled {
    background: rgba(10, 15, 30, .95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.dm-nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.dm-nav__logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}
.dm-nav__links {
    display: flex;
    gap: 1.75rem;
    flex: 1;
    justify-content: center;
}
.dm-nav__links a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .15s;
}
.dm-nav__links a:hover { color: #fff; }
.dm-nav__actions { display: flex; gap: .75rem; align-items: center; flex-shrink: 0; }
.dm-nav__login { color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .15s; }
.dm-nav__login:hover { color: #fff; }
.dm-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.dm-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }

/* ── HERO ────────────────────────────────────────────────────────── */
.dm-hero {
    min-height: 100vh;
    background: var(--c-dark);
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 4rem) 0 4rem;
    position: relative;
    overflow: hidden;
}
.dm-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,87,255,.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(0,87,255,.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Two-column grid layout — replaces the broken absolute positioning */
.dm-hero__inner {
    display: grid;
    grid-template-columns: 1fr 44%;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.dm-hero__content { /* no positioning needed — in grid flow */ }

.dm-hero__badge {
    display: inline-block;
    background: rgba(0,87,255,.2);
    border: 1px solid rgba(0,87,255,.4);
    color: #93c5fd;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.dm-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.dm-hero__title span { color: var(--c-blue); }
.dm-hero__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
    margin-bottom: 2rem;
}
.dm-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.dm-hero__stats { display: flex; align-items: center; gap: 1.5rem; }
.dm-hero__stat { display: flex; flex-direction: column; }
.dm-hero__stat strong { font-size: 1rem; font-weight: 800; color: #fff; }
.dm-hero__stat span { font-size: .78rem; color: rgba(255,255,255,.5); }
.dm-hero__stat-div { width: 1px; height: 32px; background: rgba(255,255,255,.12); }

/* Mockup illustration */
.dm-hero__screen { /* natural grid child — no positioning */ }
.dm-mockup {
    background: var(--c-slate);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
    transform-origin: center center;
}
.dm-mockup__bar {
    background: var(--c-navy);
    padding: .65rem 1rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.dm-mockup__bar span {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.12);
}
.dm-mockup__body { display: flex; height: 310px; }
.dm-mockup__sidebar {
    width: 56px;
    background: var(--c-navy);
    padding: .75rem .5rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,.05);
}
.dm-mockup__logo {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--c-blue);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 800; color: #fff;
    margin-bottom: .5rem;
}
.dm-mockup__item {
    width: 32px; height: 8px; border-radius: 4px;
    background: rgba(255,255,255,.1);
}
.dm-mockup__item--active { background: var(--c-blue); opacity: .7; }
.dm-mockup__main { flex: 1; padding: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.dm-mockup__cards { display: flex; gap: .5rem; }
.dm-mockup__card {
    flex: 1; background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 8px; padding: .6rem;
    display: flex; flex-direction: column; gap: .35rem;
}
.dm-mockup__card-label { height: 6px; border-radius: 3px; background: rgba(255,255,255,.12); width: 60%; }
.dm-mockup__card-val { height: 14px; border-radius: 3px; background: rgba(255,255,255,.18); width: 80%; }
.dm-mockup__card-val--blue { background: rgba(0,87,255,.5); }
.dm-mockup__card-val--green { background: rgba(16,185,129,.5); }
.dm-mockup__table { display: flex; flex-direction: column; gap: .4rem; }
.dm-mockup__row { height: 8px; border-radius: 4px; background: rgba(255,255,255,.07); }
.dm-mockup__row--short { width: 65%; }

/* ── SECTIONS ───────────────────────────────────────────────────── */
.dm-section { padding: clamp(4rem, 8vw, 7rem) 0; }

.dm-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}
.dm-section__header--left { text-align: left; margin: 0 0 3rem; }

.dm-section__eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-blue);
    margin-bottom: .75rem;
}
.dm-section__header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--c-navy);
    line-height: 1.2;
    margin-bottom: .75rem;
}
.dm-section__sub { color: var(--c-muted); font-size: 1.05rem; }

/* ── PROBLEMS ───────────────────────────────────────────────────── */
.dm-problems { background: var(--c-bg); }
.dm-problems__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dm-problem-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.dm-problem-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.dm-problem-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--c-navy); margin-bottom: .5rem; }
.dm-problem-card p { color: var(--c-muted); font-size: .92rem; line-height: 1.65; }

/* ── FEATURES ───────────────────────────────────────────────────── */
.dm-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dm-feature {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    background: var(--c-white);
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
    position: relative;
}
.dm-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dm-feature__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.dm-feature__icon svg { width: 22px; height: 22px; }
.dm-feature__icon--blue   { background: #eff6ff; color: #2563eb; }
.dm-feature__icon--indigo { background: #eef2ff; color: #4f46e5; }
.dm-feature__icon--green  { background: #f0fdf4; color: #16a34a; }
.dm-feature__icon--orange { background: #fff7ed; color: #ea580c; }
.dm-feature__icon--purple { background: #faf5ff; color: #9333ea; }
.dm-feature__icon--pink   { background: #fdf2f8; color: #db2777; }
.dm-feature h3 { font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: .5rem; }
.dm-feature p { color: var(--c-muted); font-size: .88rem; line-height: 1.6; }
.dm-feature__badge {
    display: inline-block;
    background: #fff7ed;
    color: #ea580c;
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 100px;
    margin-top: .75rem;
}

/* ── HOW IT WORKS ───────────────────────────────────────────────── */
.dm-how { background: var(--c-dark); }
.dm-how .dm-section__eyebrow { color: #93c5fd; }
.dm-how .dm-section__header h2 { color: #fff; }
.dm-how__steps {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto;
    list-style: none;
}
.dm-step {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
}
.dm-step__num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--c-blue);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 0 8px rgba(0,87,255,.15);
}
.dm-step h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.dm-step p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.dm-step__arrow { font-size: 1.5rem; color: rgba(255,255,255,.25); padding-top: 2.5rem; flex-shrink: 0; }

/* ── COMPARE ────────────────────────────────────────────────────── */
.dm-compare { background: var(--c-bg); }
.dm-compare__table-wrap { overflow-x: auto; }
.dm-compare__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    font-size: .92rem;
}
.dm-compare__table thead tr { background: var(--c-navy); }
.dm-compare__table th {
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}
.dm-compare__table th:first-child { text-align: left; color: rgba(255,255,255,.9); }
.dm-compare__th--dm { color: #93c5fd !important; }
.dm-compare__table td { padding: .9rem 1.5rem; border-bottom: 1px solid var(--c-border); }
.dm-compare__table tr:last-child td { border-bottom: none; }
.dm-compare__table td:first-child { color: var(--c-text); font-weight: 500; }
.dm-compare__table td:not(:first-child) { text-align: center; font-weight: 700; }
.dm-compare__check { color: #16a34a; font-size: 1.1rem; }
.dm-compare__cross { color: #dc2626; font-size: 1.1rem; }
.dm-compare__partial { color: #d97706; font-size: .82rem; }

/* ── PRICING ────────────────────────────────────────────────────── */
.dm-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.dm-plan {
    border: 1.5px solid var(--c-border);
    border-radius: 16px;
    padding: 2rem;
    background: var(--c-white);
    position: relative;
    box-shadow: var(--shadow);
}
.dm-plan--featured {
    border-color: var(--c-blue);
    box-shadow: 0 0 0 4px rgba(0,87,255,.1), var(--shadow-lg);
    transform: scale(1.03);
}
.dm-plan__badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--c-blue);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}
.dm-plan__name { font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .75rem; }
.dm-plan__price { font-size: 3rem; font-weight: 900; letter-spacing: -0.04em; color: var(--c-navy); margin-bottom: .75rem; line-height: 1; }
.dm-plan__price span { font-size: 1.2rem; font-weight: 600; vertical-align: super; }
.dm-plan__price small { font-size: 1rem; font-weight: 500; color: var(--c-muted); }
.dm-plan__desc { color: var(--c-muted); font-size: .88rem; margin-bottom: 1.5rem; line-height: 1.55; }
.dm-plan__features { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.75rem; }
.dm-plan__features li { font-size: .88rem; color: var(--c-text); }
.dm-plan--featured .dm-plan__features li { color: var(--c-navy); }
.dm-pricing__note { text-align: center; margin-top: 2rem; color: var(--c-muted); font-size: .82rem; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.dm-faq { background: var(--c-bg); }
.dm-faq__inner { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.dm-faq__list { display: flex; flex-direction: column; gap: .5rem; }
.dm-faq__item {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.dm-faq__q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 600;
    color: var(--c-navy);
    text-align: left;
    transition: background .15s;
}
.dm-faq__q:hover { background: var(--c-bg); }
.dm-faq__icon { font-size: 1.3rem; font-weight: 300; color: var(--c-blue); flex-shrink: 0; transition: transform .2s; }
.dm-faq__q[aria-expanded="true"] .dm-faq__icon { transform: rotate(45deg); }
.dm-faq__a { padding: 0 1.5rem 1.25rem; }
.dm-faq__a p { color: var(--c-muted); font-size: .9rem; line-height: 1.65; }

/* ── CTA FINAL ──────────────────────────────────────────────────── */
.dm-cta-final {
    background: var(--c-dark);
    padding: clamp(4rem, 8vw, 7rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dm-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,87,255,.2) 0%, transparent 70%);
    pointer-events: none;
}
.dm-cta-final__inner { position: relative; z-index: 1; }
.dm-cta-final h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; color: #fff; letter-spacing: -0.04em; margin-bottom: 1rem; }
.dm-cta-final p { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 2rem; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.dm-footer { background: var(--c-navy); padding: 4rem 0 0; }
.dm-footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.dm-footer__logo { font-size: 1.3rem; font-weight: 900; letter-spacing: -0.05em; color: #fff; margin-bottom: .75rem; }
.dm-footer__brand p { color: rgba(255,255,255,.4); font-size: .85rem; line-height: 1.6; }
.dm-footer__col { display: flex; flex-direction: column; gap: .6rem; }
.dm-footer__col strong { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .25rem; }
.dm-footer__col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem; transition: color .15s; }
.dm-footer__col a:hover { color: #fff; }
.dm-footer__bottom { padding: 1.25rem 0; }
.dm-footer__bottom p { color: rgba(255,255,255,.25); font-size: .8rem; text-align: center; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .dm-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
    .dm-hero__screen { display: none; }
    .dm-features__grid,
    .dm-problems__grid,
    .dm-pricing__grid { grid-template-columns: 1fr 1fr; }
    .dm-plan--featured { transform: none; }
    .dm-faq__inner { grid-template-columns: 1fr; gap: 2rem; }
    .dm-footer__inner { grid-template-columns: 1fr 1fr; }
    .dm-how__steps { flex-direction: column; }
    .dm-step__arrow { display: none; }
}
@media (max-width: 640px) {
    .dm-nav__links { display: none; }
    .dm-nav__actions .dm-btn { display: none; }
    .dm-hamburger { display: flex; }
    .dm-nav.menu-open .dm-nav__links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(10,15,30,.98);
        padding: 1.5rem;
        gap: 1.25rem;
        border-top: 1px solid rgba(255,255,255,.06);
    }
    .dm-nav.menu-open .dm-nav__actions .dm-btn { display: inline-flex; }
    .dm-features__grid,
    .dm-problems__grid,
    .dm-pricing__grid { grid-template-columns: 1fr; }
    .dm-hero__ctas { flex-direction: column; }
    .dm-hero__stats { flex-wrap: wrap; gap: 1rem; }
    .dm-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .dm-compare__table th, .dm-compare__table td { padding: .75rem 1rem; font-size: .82rem; }
}

/* ── MOCKUP REACTIVE ELEMENTS ───────────────────────────────────── */
.dm-mockup__live-row {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: .45rem;
}
.dm-mockup__live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}
.dm-mockup__live-label {
    height: 5px; width: 30px; border-radius: 3px;
    background: rgba(16,185,129,.3);
}

.dm-mockup__notif {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: rgba(0,87,255,.12);
    border: 1px solid rgba(0,87,255,.28);
    border-radius: 6px;
    padding: .35rem .5rem;
    margin-bottom: .45rem;
    transform-origin: top center;
}
.dm-mockup__notif-icon {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #60a5fa;
    flex-shrink: 0;
}
.dm-mockup__notif-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.dm-mockup__notif-line {
    height: 4px; border-radius: 2px;
    background: rgba(147,197,253,.5);
}
.dm-mockup__notif-line--a { width: 70%; }
.dm-mockup__notif-line--b { width: 40%; background: rgba(147,197,253,.22); }

/* Card values: transform-origin para animação de preenchimento */
.dm-mockup__card-val { transform-origin: left center; }

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

    /* Hero — entrada sequencial ao carregar a página */
    .dm-hero__badge  { animation: dm-rise .65s cubic-bezier(.16,1,.3,1) .08s  both; }
    .dm-hero__title  { animation: dm-rise .75s cubic-bezier(.16,1,.3,1) .2s   both; }
    .dm-hero__sub    { animation: dm-rise .7s  cubic-bezier(.16,1,.3,1) .35s  both; }
    .dm-hero__ctas   { animation: dm-rise .65s cubic-bezier(.16,1,.3,1) .48s  both; }
    .dm-hero__stats  { animation: dm-rise .6s  cubic-bezier(.16,1,.3,1) .58s  both; }
    .dm-hero__screen { animation: dm-slide-right .9s cubic-bezier(.16,1,.3,1) .28s both; }

    @keyframes dm-rise {
        from { opacity: 0; transform: translateY(28px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes dm-slide-right {
        from { opacity: 0; transform: translateX(48px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    /* Scroll reveal — aplicado via JS com IntersectionObserver */
    .dm-anim-up {
        opacity: 0;
        transform: translateY(32px);
        transition:
            opacity   .65s cubic-bezier(.16,1,.3,1) var(--anim-delay, 0ms),
            transform .65s cubic-bezier(.16,1,.3,1) var(--anim-delay, 0ms);
    }
    .dm-anim-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── MOCKUP REACTIVE ──────────────────────────────────────────── */

    /* Float contínuo — ativado via JS após entrada */
    .dm-hero__screen.is-floating {
        animation: dm-float 5s ease-in-out infinite;
    }
    @keyframes dm-float {
        0%, 100% { transform: translateY(0); }
        50%       { transform: translateY(-14px); }
    }

    /* Tilt suave ao mouse */
    .dm-mockup {
        transition: transform .12s ease-out;
    }

    /* Pulsação do dot "live" */
    .dm-mockup__live-dot {
        animation: dm-live-pulse 2.2s ease-in-out infinite;
    }
    @keyframes dm-live-pulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.65); }
        55%       { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
    }

    /* Barras dos cards preenchem após a entrada do hero */
    .dm-mockup__card:nth-child(1) .dm-mockup__card-val {
        animation: dm-bar-fill 1s cubic-bezier(.16,1,.3,1) 1.3s both;
    }
    .dm-mockup__card:nth-child(2) .dm-mockup__card-val {
        animation: dm-bar-fill 1s cubic-bezier(.16,1,.3,1) 1.5s both;
    }
    .dm-mockup__card:nth-child(3) .dm-mockup__card-val {
        animation: dm-bar-fill 1s cubic-bezier(.16,1,.3,1) 1.7s both;
    }
    @keyframes dm-bar-fill {
        from { transform: scaleX(0); }
        to   { transform: scaleX(1); }
    }

    /* Notificação: entra e sai suavemente via JS */
    .dm-mockup__notif {
        transition:
            opacity   .35s cubic-bezier(.16,1,.3,1),
            transform .35s cubic-bezier(.16,1,.3,1);
    }
    .dm-mockup__notif:not(.is-active) {
        opacity: 0;
        transform: translateY(-6px) scaleY(.88);
    }
    .dm-mockup__notif.is-active {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}
