/* ===========================================================
   LANDING PAGE MODERNA - MEI360
   Estilo SaaS contemporâneo (glassmorphism + gradientes + mockups)
   =========================================================== */

:root {
    --lp-bg: #0b1020;
    --lp-bg-2: #111936;
    --lp-surface: #ffffff;
    --lp-text: #0f172a;
    --lp-muted: #64748b;
    --lp-primary: #47c154;
    --lp-primary-2: #2f9e3f;
    --lp-accent: #ff6b35;
    --lp-accent-2: #f7931e;
    --lp-success: #10b981;
    --lp-ring: 0 0 0 1px rgba(255,255,255,.06);
    --lp-shadow-lg: 0 30px 80px -20px rgba(15, 23, 42, 0.35);
    --lp-shadow-glow: 0 0 80px rgba(71, 193, 84, 0.35);
    --lp-radius: 20px;
}

/* Reset suave pra não brigar com o resto do sistema */
.lp * { box-sizing: border-box; }
.lp img { max-width: 100%; display: block; }

.lp {
    color: var(--lp-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", sans-serif;
    overflow-x: hidden;
}

/* Âncoras do rodapé / menu não ficam cobertas pelo header sticky */
.lp [id],
#features,
#feature-cashflow,
#feature-sales,
#feature-das,
#feature-reports,
#more-features,
#plans,
#faq,
#contact {
    scroll-margin-top: 88px;
}

.lp .lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- BOTÕES ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.35);
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255, 107, 53, 0.45); }

.lp-btn-ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
}
.lp-btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

.lp-btn-light {
    background: #fff;
    color: var(--lp-text);
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.lp-btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }

.lp-btn-outline-dark {
    background: transparent;
    color: var(--lp-text);
    border: 2px solid #e2e8f0;
}
.lp-btn-outline-dark:hover { border-color: var(--lp-primary); color: var(--lp-primary); }

/* ---------- SECTION HEADER REUTILIZÁVEL ---------- */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(71, 193, 84, 0.1);
    color: var(--lp-primary);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 16px;
}
.lp-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--lp-text);
    margin: 0 0 16px;
}
.lp-section-subtitle {
    font-size: 1.15rem;
    color: var(--lp-muted);
    max-width: 640px;
    line-height: 1.6;
    margin: 0;
}
.lp-section-head {
    text-align: center;
    margin-bottom: 64px;
}
.lp-section-head .lp-section-subtitle { margin: 0 auto; }

/* ===========================================================
   HERO
   =========================================================== */
.lp-hero {
    position: relative;
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(47, 158, 63, 0.35), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(71, 193, 84, 0.35), transparent 60%),
        linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-bg-2) 100%);
    padding: 140px 0 80px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.lp-hero .lp-container { position: relative; z-index: 1; }

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: .85rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.lp-hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--lp-success);
    box-shadow: 0 0 10px var(--lp-success);
}
.lp-hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}
.lp-hero h1 .grad {
    background: linear-gradient(135deg, #86efac, #47c154);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-hero p.lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 520px;
}
.lp-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}
.lp-hero-trust .avatars { display: flex; }
.lp-hero-trust .avatars span {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid var(--lp-bg-2);
    background: linear-gradient(135deg, #86efac, #47c154);
    margin-left: -10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 700; color: #0f2a14;
}
.lp-hero-trust .avatars span:first-child { margin-left: 0; }

/* ---------- MOCKUP BROWSER ---------- */
.lp-mockup-wrap {
    position: relative;
    transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
    transition: transform .6s ease;
}
.lp-mockup-wrap:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }

.lp-mockup {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--lp-shadow-lg), var(--lp-shadow-glow);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
}
.lp-mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}
.lp-mockup-bar .d {
    width: 12px; height: 12px; border-radius: 50%;
    background: #cbd5e1;
}
.lp-mockup-bar .d.r { background: #ef4444; }
.lp-mockup-bar .d.y { background: #f59e0b; }
.lp-mockup-bar .d.g { background: #10b981; }
.lp-mockup-bar .url {
    margin-left: 12px;
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: .75rem;
    color: #94a3b8;
    font-family: ui-monospace, Menlo, monospace;
    max-width: 320px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.lp-mockup-body {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #fff;
    overflow: hidden;
}
.lp-mockup-body img,
.lp-mockup-body svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decoração flutuante em volta do mockup */
.lp-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: lpFloat 6s ease-in-out infinite;
    z-index: 3;
}
.lp-floating-card.card-a {
    top: 20px;
    left: -40px;
    animation-delay: 0s;
}
.lp-floating-card.card-b {
    bottom: 30px;
    right: -30px;
    animation-delay: 2s;
}
.lp-floating-card .ic {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
}
.lp-floating-card .ic.green { background: linear-gradient(135deg, #10b981, #059669); }
.lp-floating-card .ic.orange { background: linear-gradient(135deg, #ff6b35, #f7931e); }
.lp-floating-card .t1 { font-size: .75rem; color: var(--lp-muted); margin: 0; }
.lp-floating-card .t2 { font-size: 1rem; font-weight: 700; color: var(--lp-text); margin: 0; }

@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===========================================================
   LOGOS / SOCIAL PROOF STRIP
   =========================================================== */
.lp-logos {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #f1f5f9;
}
.lp-logos-label {
    text-align: center;
    color: var(--lp-muted);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.lp-logos-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    opacity: .55;
    filter: grayscale(1);
}
.lp-logos-row .logo-item {
    font-weight: 800;
    font-size: 1.3rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-logos-row .logo-item i { opacity: .85; }

/* ===========================================================
   SEÇÃO COM MOCKUP ALTERNADO
   =========================================================== */
.lp-feature-row {
    padding: 100px 0;
}
.lp-feature-row:nth-child(even) { background: #f8fafc; }

.lp-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.lp-feature-row.reverse .lp-feature-grid {
    direction: rtl;
}
.lp-feature-row.reverse .lp-feature-grid > * {
    direction: ltr;
}

.lp-feature-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0;
    color: var(--lp-text);
    letter-spacing: -0.02em;
}
.lp-feature-text p {
    font-size: 1.1rem;
    color: var(--lp-muted);
    line-height: 1.7;
    margin: 0 0 24px;
}
.lp-feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 12px;
}
.lp-feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--lp-text);
    font-size: 1rem;
}
.lp-feature-bullets li i {
    color: var(--lp-success);
    background: rgba(16, 185, 129, 0.12);
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-feature-mockup {
    position: relative;
}

/* ===========================================================
   BENTO GRID (cards com prints variados)
   =========================================================== */
.lp-bento {
    padding: 100px 0;
    background: #fff;
}
.lp-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 20px;
}
.lp-bento-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--lp-radius);
    overflow: hidden;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}
.lp-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.lp-bento-card .lp-bento-info {
    padding: 24px 28px 20px;
}
.lp-bento-card .lp-bento-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--lp-text);
}
.lp-bento-card .lp-bento-info p {
    font-size: .95rem;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.5;
}
.lp-bento-card .lp-bento-preview {
    flex: 1;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 20px 0;
}
.lp-bento-card .lp-bento-preview > * {
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -10px 30px rgba(71, 193, 84, 0.25);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.lp-bento-card.span-2 { grid-column: span 2; }
.lp-bento-card.accent {
    background: linear-gradient(135deg, #1a5c28, #47c154);
    color: #fff;
    border-color: transparent;
}
.lp-bento-card.accent .lp-bento-info h3 { color: #fff; }
.lp-bento-card.accent .lp-bento-info p { color: rgba(255,255,255,.8); }
.lp-bento-card.accent .lp-bento-preview {
    background: rgba(255,255,255,.06);
}

/* Card "100% mobile": celular maior, preenchendo a altura do card */
.lp-bento-card--mobile {
    min-height: 520px;
}
.lp-bento-card--mobile .lp-bento-info {
    padding-bottom: 8px;
    flex-shrink: 0;
}
.lp-bento-preview--mobile {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: transparent !important;
    padding: 0 8px 0 !important;
    min-height: 360px;
    overflow: hidden;
}
.lp-bento-preview--mobile img {
    width: auto;
    max-width: 96%;
    height: auto;
    min-height: 360px;
    max-height: 460px;
    object-fit: contain;
    object-position: bottom center;
    box-shadow: none !important;
    border-radius: 24px 24px 0 0 !important;
    display: block;
}

@media (max-width: 900px) {
    .lp-bento-card--mobile { min-height: 440px; }
    .lp-bento-preview--mobile { min-height: 300px; }
    .lp-bento-preview--mobile img {
        min-height: 300px;
        max-height: 380px;
    }
}

/* ===========================================================
   STATS BAND
   =========================================================== */
.lp-stats-band {
    padding: 80px 0;
    background:
        radial-gradient(800px 400px at 50% 0%, rgba(71, 193, 84, 0.15), transparent),
        linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lp-stat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}
.lp-stat-card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08); }
.lp-stat-card .num {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.lp-stat-card .lbl {
    color: var(--lp-muted);
    font-size: .95rem;
    font-weight: 500;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.lp-testimonials {
    padding: 100px 0;
    background: #f8fafc;
}
.lp-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-test-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.lp-test-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1); }
.lp-test-card .stars { color: #fbbf24; font-size: 1rem; }
.lp-test-card .quote {
    font-size: 1.05rem;
    color: var(--lp-text);
    line-height: 1.6;
    font-style: normal;
    margin: 0;
    flex: 1;
}
.lp-test-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-test-card .author .av {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff;
}
.lp-test-card .author strong { display: block; color: var(--lp-text); font-size: .95rem; }
.lp-test-card .author span { color: var(--lp-muted); font-size: .85rem; }

/* ===========================================================
   PRICING
   =========================================================== */
.lp-pricing {
    padding: 100px 0;
    background: #fff;
}
.lp-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}
.lp-price-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    width: 100%;
    gap: 28px;
}
.lp-price-grid--two .lp-price-card {
    width: 100%;
    min-width: 0;
}
.lp-price-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
}
.lp-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}
.lp-price-card.featured {
    background: linear-gradient(180deg, #0f2a14 0%, #1a5c28 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(47, 158, 63, 0.4);
}
.lp-price-card.featured:hover { transform: translateY(-16px); }

.lp-price-card .badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: .05em;
}
.lp-price-card .p-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-muted);
    margin: 0 0 8px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.lp-price-card.featured .p-name { color: rgba(255,255,255,.7); }
.lp-price-card .p-price {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.lp-price-card .p-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--lp-muted);
}
.lp-price-card.featured .p-price small { color: rgba(255,255,255,.7); }
.lp-price-card .p-desc {
    color: var(--lp-muted);
    font-size: .95rem;
    margin: 0 0 28px;
    min-height: 48px;
}
.lp-price-card.featured .p-desc { color: rgba(255,255,255,.75); }
.lp-price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 12px;
    flex: 1;
}
.lp-price-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .95rem;
}
.lp-price-card ul li i {
    color: var(--lp-success);
    margin-top: 4px;
    flex-shrink: 0;
}
.lp-price-card.featured ul li i { color: #86efac; }
.lp-price-card ul li.off { opacity: .5; }
.lp-price-card ul li.off i { color: #94a3b8; }
.lp-price-card .p-cta {
    display: flex;
    justify-content: center;
}

/* ===========================================================
   FAQ
   =========================================================== */
.lp-faq {
    padding: 100px 0;
    background: #f8fafc;
}
.lp-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.lp-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .3s ease;
}
.lp-faq-item:hover { box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05); }
.lp-faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    color: var(--lp-text);
    font-size: 1.05rem;
}
.lp-faq-q i { color: var(--lp-primary); transition: transform .3s ease; }
.lp-faq-item.active .lp-faq-q i { transform: rotate(180deg); }
.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.lp-faq-item.active .lp-faq-a { max-height: 520px; }
.lp-faq-a p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--lp-muted);
    line-height: 1.7;
}
.lp-faq-more {
    text-align: center;
    margin: 28px 0 0;
    color: #64748b;
    font-size: 0.95rem;
}
.lp-faq-more a {
    color: var(--lp-primary);
    font-weight: 650;
    text-decoration: none;
}
.lp-faq-more a:hover { text-decoration: underline; }

/* ===========================================================
   CONTATO (landing)
   =========================================================== */
.lp-contact {
    padding: 80px 0 100px;
    background: #fff;
}
.lp-contact-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 28px 24px;
}
.lp-contact-form .lp-btn {
    margin-top: 4px;
}
.lp-contact-form .lp-btn:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

/* ===========================================================
   CTA FINAL
   =========================================================== */
.lp-cta {
    padding: 100px 0;
    background:
        radial-gradient(600px 300px at 20% 50%, rgba(47, 158, 63, 0.4), transparent 60%),
        radial-gradient(600px 300px at 80% 50%, rgba(71, 193, 84, 0.4), transparent 60%),
        linear-gradient(180deg, #0b1020 0%, #0f2a14 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
    pointer-events: none;
}
.lp-cta .lp-container { position: relative; }
.lp-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.lp-cta p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.8);
    max-width: 600px;
    margin: 0 auto 32px;
}
.lp-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.lp-cta-trust {
    margin-top: 28px;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.lp-cta-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ===========================================================
   RESPONSIVO
   =========================================================== */
@media (max-width: 960px) {
    .lp-hero { padding: 120px 0 60px; }
    .lp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .lp-feature-grid { grid-template-columns: 1fr; gap: 48px; }
    .lp-feature-row.reverse .lp-feature-grid { direction: ltr; }
    .lp-bento-grid { grid-template-columns: 1fr 1fr; }
    .lp-bento-card.span-2 { grid-column: span 2; }
    .lp-stats-grid { grid-template-columns: 1fr 1fr; }
    .lp-test-grid { grid-template-columns: 1fr; }
    .lp-price-grid { grid-template-columns: 1fr; max-width: 480px; }
    .lp-price-grid--two { grid-template-columns: 1fr; max-width: 480px; }
    .lp-price-card.featured { transform: none; }
    .lp-mockup-wrap { transform: none; }
    .lp-floating-card.card-a { left: 10px; top: 10px; }
    .lp-floating-card.card-b { right: 10px; bottom: 10px; }
}
@media (max-width: 560px) {
    .lp-bento-grid { grid-template-columns: 1fr; }
    .lp-bento-card.span-2 { grid-column: span 1; }
    .lp-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .lp-stat-card { padding: 20px 14px; }
    .lp-stat-card .num { font-size: 2rem; }
    .lp-floating-card { display: none; }
    .lp-hero-ctas .lp-btn { width: 100%; justify-content: center; }
}
