/* =========================================================
   LANDING PAGE MODERNA
========================================================= */

:root {
    --lp-bg: #070711;
    --lp-bg-2: #0d0c1b;
    --lp-card: rgba(255,255,255,.05);

    --lp-purple: #7c3aed;
    --lp-purple-light: #a855f7;
    --lp-blue: #6366f1;

    --lp-text: #ffffff;
    --lp-text-muted: #9b9aad;

    --lp-border: rgba(255,255,255,.10);

    --lp-gradient:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7,
            #6366f1
        );
}


html {
    scroll-behavior: smooth;
}


.landing-page {
    background: var(--lp-bg);
    color: var(--lp-text);
    overflow-x: hidden;
}


.landing-page * {
    box-sizing: border-box;
}


.background-effects {
    position: fixed;

    inset: 0;

    z-index: -2;

    pointer-events: none;

    overflow: hidden;
}


.grid-background {

    position: absolute;

    inset: 0;

    opacity: .04;

    background-image:

        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );

}


.orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .35;

}


.orb-1 {

    width: 500px;
    height: 500px;

    background: #7c3aed;

    top: -200px;
    left: -150px;

    animation: floatOrb 12s ease-in-out infinite;

}


.orb-2 {

    width: 450px;
    height: 450px;

    background: #2563eb;

    right: -150px;
    top: 300px;

    animation: floatOrb 16s ease-in-out infinite reverse;

}


.orb-3 {

    width: 350px;
    height: 350px;

    background: #c026d3;

    left: 30%;
    bottom: -150px;

    animation: floatOrb 14s ease-in-out infinite;

}


@keyframes floatOrb {

    0%,
    100% {

        transform:
            translate(0,0)
            scale(1);

    }


    50% {

        transform:
            translate(50px,30px)
            scale(1.15);

    }

}



/* =========================================================
   HEADER
========================================================= */

.lp-header {

    position: fixed;

    top: 0;

    width: 100%;

    z-index: 999;

    padding: 18px 0;

    transition:
        .3s ease;

}


.lp-header.scrolled {

    background:
        rgba(7,7,17,.82);

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid rgba(255,255,255,.06);

}


.lp-header .container {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.lp-logo img {

    max-height: 109px;

    width: auto;

}


.logo-text {

    font-size: 24px;

    font-weight: 800;

}


.lp-menu {

    display: flex;

    gap: 32px;

}


.lp-menu a {

    color: var(--lp-text-muted);

    font-size: 14px;

    transition: .25s;

}


.lp-menu a:hover {

    color: #fff;

}


.lp-header-actions {

    display: flex;

    align-items: center;

    gap: 22px;

}


.login-link {

    font-size: 14px;

    color: var(--lp-text-muted);

}


.header-cta {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 12px;

    background: #fff;

    color: #0b0a14;

    font-size: 14px;

    font-weight: 700;

    transition: .3s;

}


.header-cta:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 35px
        rgba(255,255,255,.15);

}


.mobile-menu-button {

    display: none;

    background: transparent;

    border: none;

    padding: 5px;

}


.mobile-menu-button span {

    display: block;

    width: 24px;

    height: 2px;

    background: #fff;

    margin: 5px;

}



/* =========================================================
   HERO
========================================================= */

.hero-modern {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding:

        150px 0
        100px;

}


.hero-container {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 70px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 9px 15px;

    border:

        1px solid
        rgba(168,85,247,.25);

    background:

        rgba(124,58,237,.10);

    border-radius: 100px;

    font-size: 13px;

    color:
        #d8b4fe;

    margin-bottom: 25px;

}


.pulse-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background:
        #a855f7;

    box-shadow:
        0 0 15px #a855f7;

    animation:
        pulse 2s infinite;

}


@keyframes pulse {

    0% {

        transform: scale(1);

        opacity: 1;

    }


    50% {

        transform: scale(1.5);

        opacity: .5;

    }


    100% {

        transform: scale(1);

        opacity: 1;

    }

}


.hero-content h1 {

    font-size:

        clamp(
            46px,
            6vw,
            78px
        );

    line-height: 1.05;

    letter-spacing:
        -3px;

    margin:
        0 0 25px;

    font-weight: 800;

}


.hero-content h1 span {

    display: block;

    background:
        var(--lp-gradient);

    -webkit-background-clip:
        text;

    -webkit-text-fill-color:
        transparent;

}


.hero-description {

    max-width: 600px;

    color:
        var(--lp-text-muted);

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 32px;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

}


.btn-main {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding:
        17px 25px;

    border-radius: 14px;

    background:
        var(--lp-gradient);

    color: #fff;

    font-weight: 700;

    transition: .3s;

    box-shadow:

        0 15px 45px
        rgba(124,58,237,.25);

}


.btn-main:hover {

    transform:
        translateY(-3px);

    box-shadow:

        0 20px 55px
        rgba(124,58,237,.45);

}


.btn-secondary-modern {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    padding:
        17px 20px;

    font-weight: 600;

}


.play-icon {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:

        1px solid
        rgba(255,255,255,.2);

    border-radius: 50%;

    font-size: 9px;

}


.hero-trust {

    display: flex;

    gap: 20px;

    margin-top: 30px;

    flex-wrap: wrap;

}


.trust-item {

    font-size: 12px;

    color:
        var(--lp-text-muted);

}


.trust-item span {

    color:
        #a855f7;

    margin-right: 5px;

}



/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

}


.dashboard-mockup {

    display: flex;

    min-height: 500px;

    background:
        #ffffff;

    border-radius: 20px;

    overflow: hidden;

    transform:

        perspective(1200px)
        rotateY(-7deg)
        rotateX(2deg);

    box-shadow:

        0 50px 100px
        rgba(0,0,0,.55);

    border:

        1px solid
        rgba(255,255,255,.15);

}


.mock-sidebar {

    width: 70px;

    background:
        #161424;

    padding: 20px 15px;

}


.mock-logo {

    margin-bottom: 40px;

}


.mock-logo div {

    width: 30px;

    height: 4px;

    background:
        #8b5cf6;

    margin-bottom: 5px;

    border-radius: 10px;

}


.mock-menu {

    height: 38px;

    margin-bottom: 12px;

    border-radius: 8px;

    background:
        rgba(255,255,255,.07);

}


.mock-menu.active {

    background:
        #7c3aed;

}


.mock-main {

    flex: 1;

    padding: 25px;

    color: #1e1b2e;

    background:
        #f7f7fb;

}


.mock-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;

}


.mock-top small {

    color: #777;

}


.mock-top h3 {

    margin: 5px 0 0;

}


.mock-avatar {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #ec4899
        );

}


.mock-stats {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;

}


.stat-card {

    padding: 14px;

    background: #fff;

    border-radius: 10px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.04);

}


.stat-card span {

    display: block;

    color: #888;

    font-size: 10px;

}


.stat-card strong {

    display: block;

    font-size: 20px;

    margin: 8px 0;

}


.stat-card small {

    color: #10b981;

    font-size: 9px;

}


.mock-chart {

    background: #fff;

    border-radius: 12px;

    padding: 20px;

    margin-top: 18px;

}


.chart-header {

    display: flex;

    justify-content: space-between;

    font-size: 11px;

}


.chart-header small {

    color: #999;

}


.chart-bars {

    height: 130px;

    display: flex;

    align-items: flex-end;

    gap: 10px;

    padding-top: 20px;

}


.chart-bars span {

    flex: 1;

    border-radius:
        6px 6px 0 0;

    background:
        linear-gradient(
            to top,
            #7c3aed,
            #c084fc
        );

}


.chart-bars span:nth-child(1) {
    height: 40%;
}

.chart-bars span:nth-child(2) {
    height: 70%;
}

.chart-bars span:nth-child(3) {
    height: 55%;
}

.chart-bars span:nth-child(4) {
    height: 90%;
}

.chart-bars span:nth-child(5) {
    height: 65%;
}

.chart-bars span:nth-child(6) {
    height: 80%;
}

.chart-bars span:nth-child(7) {
    height: 100%;
}


.mock-products {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 15px;

}


.mock-product {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px;

    background: #fff;

    border-radius: 10px;

}


.product-image {

    width: 40px;

    height: 40px;

    border-radius: 8px;

}


.gradient-1 {

    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #ef4444
        );

}


.gradient-2 {

    background:
        linear-gradient(
            135deg,
            #3b82f6,
            #8b5cf6
        );

}


.mock-product strong {

    display: block;

    font-size: 10px;

}


.mock-product small {

    font-size: 9px;

    color: #888;

}



/* FLOATING CARDS */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    background:
        rgba(20,18,35,.85);

    backdrop-filter:
        blur(20px);

    border:

        1px solid
        rgba(255,255,255,.12);

    border-radius: 14px;

    padding: 14px;

    box-shadow:
        0 20px 40px
        rgba(0,0,0,.3);

    z-index: 2;

}


.card-order {

    left: -40px;

    top: 70px;

}


.card-sale {

    right: -30px;

    bottom: 40px;

    display: block;

}


.floating-icon {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        #10b981;

}


.floating-card strong {

    display: block;

    font-size: 12px;

}


.floating-card span {

    display: block;

    font-size: 10px;

    color: #aaa;

}


.sale-label {

    font-size: 9px;

    color: #aaa;

}


.card-sale strong {

    font-size: 20px;

    margin: 5px 0;

}


.card-sale small {

    color: #10b981;

    font-size: 10px;

}



/* =========================================================
   BENEFITS
========================================================= */

.benefits-bar {

    padding: 30px 0;

    border-top:
        1px solid
        var(--lp-border);

    border-bottom:
        1px solid
        var(--lp-border);

    background:
        rgba(255,255,255,.02);

}


.benefits-container {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 30px;

}


.benefit-mini {

    display: flex;

    align-items: center;

    gap: 12px;

}


.benefit-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        rgba(124,58,237,.12);

    font-size: 17px;

}


.benefit-mini strong {

    display: block;

    font-size: 13px;

}


.benefit-mini span {

    font-size: 11px;

    color:
        var(--lp-text-muted);

}



/* =========================================================
   SECTIONS GENERAL
========================================================= */

.problem-section,
.solution-section,
.features-section,
.testimonials-section,
.comparison-section,
.faq-section {

    padding:
        120px 0;

}


.section-header {

    max-width: 750px;

    margin:
        0 auto 70px;

    text-align: center;

}


.section-label {

    display: inline-block;

    color:
        #a855f7;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


.section-header h2,
.solution-content h2,
.dashboard-section-top h2,
.faq-intro h2 {

    font-size:

        clamp(
            34px,
            5vw,
            58px
        );

    line-height: 1.1;

    letter-spacing:
        -2px;

    margin:
        0 0 20px;

}


.section-header h2 span,
.solution-content h2 span,
.dashboard-section-top h2 span,
.faq-intro h2 span {

    color:
        #a855f7;

}


.section-header p {

    color:
        var(--lp-text-muted);

    font-size: 16px;

    line-height: 1.7;

}


.section-header.light {

    color: #fff;

}



/* =========================================================
   PROBLEMS
========================================================= */

.problem-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;

}


.problem-card {

    position: relative;

    padding: 30px;

    min-height: 260px;

    border-radius: 18px;

    border:

        1px solid
        var(--lp-border);

    background:
        rgba(255,255,255,.025);

    overflow: hidden;

    transition: .3s;

}


.problem-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(168,85,247,.4);

    background:
        rgba(124,58,237,.06);

}


.problem-number {

    position: absolute;

    right: 20px;

    top: 15px;

    font-size: 50px;

    font-weight: 800;

    color:
        rgba(255,255,255,.03);

}


.problem-icon {

    font-size: 30px;

    margin-bottom: 25px;

}


.problem-card h3 {

    font-size: 17px;

    margin-bottom: 12px;

}


.problem-card p {

    color:
        var(--lp-text-muted);

    font-size: 13px;

    line-height: 1.7;

}



/* =========================================================
   SOLUTION
========================================================= */

.solution-section {

    background:
        linear-gradient(
            180deg,
            #0b0a16,
            #100d20
        );

}


.solution-container {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 100px;

}


.solution-content > p {

    color:
        var(--lp-text-muted);

    line-height: 1.8;

    margin-bottom: 35px;

}


.phone-mockup {

    width: 310px;

    margin: auto;

    padding: 10px;

    border-radius: 38px;

    background:
        #1c1a2c;

    box-shadow:

        0 40px 80px
        rgba(0,0,0,.5);

    border:

        5px solid
        #2a273a;

}


.phone-top {

    width: 100px;

    height: 20px;

    margin: 0 auto 8px;

    background: #090812;

    border-radius: 20px;

}


.phone-screen {

    background: #fff;

    color: #222;

    min-height: 520px;

    border-radius: 25px;

    padding: 18px;

}


.phone-store-header {

    display: flex;

    align-items: center;

    gap: 10px;

}


.phone-store-logo {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #ec4899
        );

    color: #fff;

}


.phone-store-header strong {

    display: block;

    font-size: 13px;

}


.phone-store-header small {

    color: #888;

    font-size: 10px;

}


.phone-search {

    margin: 18px 0;

    padding: 10px;

    background: #f2f2f5;

    border-radius: 8px;

    color: #888;

    font-size: 10px;

}


.phone-categories {

    display: flex;

    gap: 8px;

    overflow: hidden;

    margin-bottom: 15px;

}


.phone-categories span {

    padding: 6px 10px;

    background: #f2f2f5;

    border-radius: 20px;

    font-size: 9px;

    white-space: nowrap;

}


.phone-categories .active {

    background: #7c3aed;

    color: #fff;

}


.phone-product-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

}


.phone-product-image {

    height: 100px;

    border-radius: 10px;

    margin-bottom: 8px;

}


.product-bg-1 {
    background: linear-gradient(135deg,#fb7185,#f97316);
}

.product-bg-2 {
    background: linear-gradient(135deg,#60a5fa,#6366f1);
}

.product-bg-3 {
    background: linear-gradient(135deg,#34d399,#10b981);
}

.product-bg-4 {
    background: linear-gradient(135deg,#c084fc,#ec4899);
}


.phone-product strong {

    display: block;

    font-size: 10px;

}


.phone-product span {

    font-size: 10px;

    color: #7c3aed;

    font-weight: 700;

}


.solution-list {

    margin-bottom: 30px;

}


.solution-item {

    display: flex;

    gap: 15px;

    margin-bottom: 25px;

}


.solution-check {

    width: 30px;

    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(124,58,237,.15);

    color:
        #c084fc;

}


.solution-item h4 {

    margin:
        0 0 6px;

}


.solution-item p {

    margin: 0;

    font-size: 13px;

    color:
        var(--lp-text-muted);

}


.text-link {

    color:
        #c084fc;

    font-weight: 700;

}


.solution-visual {

    position: relative;

}


.phone-floating {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    background:
        rgba(18,17,30,.9);

    backdrop-filter:
        blur(20px);

    border:

        1px solid
        rgba(255,255,255,.1);

    border-radius: 15px;

    box-shadow:
        0 20px 40px rgba(0,0,0,.3);

}


.whatsapp-card {

    right: 0;

    bottom: 60px;

}


.whatsapp-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        #25d366;

    border-radius: 50%;

}


.phone-floating small {

    display: block;

    color: #aaa;

    font-size: 10px;

}


.phone-floating strong {

    font-size: 12px;

}



/* =========================================================
   HOW
========================================================= */

.how-section {

    padding: 120px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(124,58,237,.15),
            transparent 55%
        ),

        #080712;

}


.steps-grid {

    display: grid;

    grid-template-columns:

        1fr
        80px
        1fr
        80px
        1fr;

    align-items: center;

}


.step-card {

    position: relative;

    padding: 40px 30px;

    border-radius: 20px;

    text-align: center;

    background:
        rgba(255,255,255,.04);

    border:

        1px solid
        rgba(255,255,255,.08);

}


.step-number {

    position: absolute;

    top: 15px;

    left: 20px;

    color:
        rgba(255,255,255,.15);

    font-size: 12px;

    font-weight: 800;

}


.step-icon {

    font-size: 35px;

    margin-bottom: 20px;

}


.step-card h3 {

    margin-bottom: 10px;

}


.step-card p {

    color:
        var(--lp-text-muted);

    font-size: 13px;

    line-height: 1.7;

}


.step-line {

    height: 1px;

    background:

        linear-gradient(
            to right,
            #7c3aed,
            transparent
        );

}



/* =========================================================
   FEATURES
========================================================= */

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.feature-card {

    padding: 30px;

    min-height: 240px;

    border-radius: 20px;

    border:

        1px solid
        var(--lp-border);

    background:
        rgba(255,255,255,.03);

    transition: .3s;

}


.feature-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(124,58,237,.4);

}


.feature-large {

    grid-column:
        span 2;

    display: flex;

    justify-content: space-between;

    overflow: hidden;

}


.feature-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        rgba(124,58,237,.12);

    font-size: 22px;

    margin-bottom: 20px;

}


.feature-card h3 {

    font-size: 18px;

    margin-bottom: 12px;

}


.feature-card p {

    color:
        var(--lp-text-muted);

    font-size: 13px;

    line-height: 1.7;

}


.catalog-visual {

    display: flex;

    align-items: flex-end;

    gap: 8px;

}


.mini-product {

    width: 70px;

}


.mini-product div {

    height: 90px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #ec4899
        );

}


.mini-product:nth-child(2) div {

    height: 120px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #7c3aed
        );

}


.mini-product:nth-child(3) div {

    background:
        linear-gradient(
            135deg,
            #f97316,
            #ec4899
        );

}


.mini-product span {

    display: block;

    height: 8px;

    margin-top: 8px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.1);

}



/* =========================================================
   DASHBOARD
========================================================= */

.dashboard-section {

    padding: 120px 0;

    background:
        #0b0a15;

}


.dashboard-section-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 50px;

}


.dashboard-section-top p {

    max-width: 400px;

    color:
        var(--lp-text-muted);

    line-height: 1.8;

}


.big-dashboard {

    display: flex;

    min-height: 550px;

    border-radius: 22px;

    overflow: hidden;

    background: #f7f7fb;

    color: #1d1b2a;

    box-shadow:
        0 40px 100px rgba(0,0,0,.5);

}


.big-dashboard-sidebar {

    width: 220px;

    padding: 25px;

    background: #171524;

    color: #999;

}


.sidebar-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    font-weight: 700;

    margin-bottom: 50px;

}


.logo-square {

    width: 30px;

    height: 30px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        );

}


.sidebar-item {

    padding: 12px;

    margin-bottom: 8px;

    border-radius: 8px;

    font-size: 12px;

}


.sidebar-item.active {

    background:
        #7c3aed;

    color: #fff;

}


.sidebar-item span {

    margin-right: 8px;

}


.big-dashboard-content {

    flex: 1;

    padding: 40px;

}


.dashboard-title-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

}


.dashboard-title-row small {

    color: #888;

}


.dashboard-title-row h3 {

    margin: 5px 0;

    font-size: 22px;

}


.dashboard-title-row button {

    border: none;

    background: #7c3aed;

    color: #fff;

    padding: 12px 16px;

    border-radius: 8px;

    font-size: 12px;

}


.dashboard-metrics {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;

}


.dashboard-metrics > div {

    background: #fff;

    padding: 20px;

    border-radius: 12px;

}


.dashboard-metrics span {

    display: block;

    color: #888;

    font-size: 11px;

}


.dashboard-metrics strong {

    display: block;

    font-size: 28px;

    margin: 10px 0;

}


.dashboard-metrics small {

    color: #10b981;

}


.dashboard-chart-big {

    background: #fff;

    border-radius: 15px;

    padding: 25px;

    margin-top: 20px;

}


.chart-title {

    display: flex;

    justify-content: space-between;

}


.chart-title span {

    color: #888;

    font-size: 11px;

}


.chart-area {

    position: relative;

    height: 270px;

    margin-top: 25px;

    overflow: hidden;

}


.chart-grid-line {

    height: 1px;

    margin-bottom: 65px;

    background: #eee;

}


.chart-area svg {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

}



/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {

    background:
        #090812;

}


.testimonials-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.testimonial-card {

    position: relative;

    padding: 30px;

    border-radius: 20px;

    border:

        1px solid
        var(--lp-border);

    background:
        rgba(255,255,255,.035);

}


.featured-testimonial {

    transform:
        translateY(-15px);

    border-color:
        rgba(168,85,247,.35);

}


.stars {

    color: #fbbf24;

    letter-spacing: 3px;

    font-size: 14px;

    margin-bottom: 20px;

}


.testimonial-card > p {

    color: #d0cfda;

    font-size: 14px;

    line-height: 1.8;

    min-height: 130px;

}


.testimonial-user {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 20px;

}


.testimonial-avatar {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-weight: 700;

}


.avatar-purple {

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        );

}


.avatar-blue {

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #06b6d4
        );

}


.avatar-pink {

    background:
        linear-gradient(
            135deg,
            #ec4899,
            #f97316
        );

}


.testimonial-user strong {

    display: block;

    font-size: 13px;

}


.testimonial-user span {

    font-size: 11px;

    color:
        var(--lp-text-muted);

}


.quote-symbol {

    position: absolute;

    right: 25px;

    top: 10px;

    font-size: 80px;

    color:
        rgba(168,85,247,.12);

}



/* =========================================================
   COMPARISON
========================================================= */

.comparison-section {

    background:
        #0e0c1b;

}


.comparison-table {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    max-width: 900px;

    margin: auto;

    border-radius: 20px;

    overflow: hidden;

    border:

        1px solid
        var(--lp-border);

}


.comparison-side {

    padding: 45px;

    position: relative;

}


.comparison-old {

    background:
        rgba(255,255,255,.025);

}


.comparison-new {

    background:

        linear-gradient(
            135deg,
            rgba(124,58,237,.18),
            rgba(99,102,241,.10)
        );

}


.comparison-title {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

}


.comparison-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

}


.comparison-old .comparison-icon {

    background:
        rgba(239,68,68,.15);

    color:
        #ef4444;

}


.comparison-new .comparison-icon {

    background:
        rgba(16,185,129,.15);

    color:
        #10b981;

}


.comparison-side ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.comparison-side li {

    padding: 15px 0;

    border-bottom:

        1px solid
        rgba(255,255,255,.06);

    color:
        var(--lp-text-muted);

    font-size: 14px;

}


.comparison-side li:last-child {

    border: none;

}


.comparison-badge {

    position: absolute;

    top: 15px;

    right: 15px;

    padding: 6px 10px;

    border-radius: 20px;

    background:
        #7c3aed;

    font-size: 9px;

    font-weight: 800;

}



/* =========================================================
   PRICING
========================================================= */

.pricing-section {

    padding: 120px 0;

    background:

        radial-gradient(
            circle at center,
            rgba(124,58,237,.18),
            transparent 45%
        ),

        #080712;

}


.pricing-card {

    max-width: 900px;

    margin: auto;

    padding: 45px;

    border-radius: 25px;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );

    border:

        1px solid
        rgba(168,85,247,.35);

    box-shadow:

        0 30px 80px
        rgba(0,0,0,.35);

    position: relative;

}


.pricing-top-badge {

    position: absolute;

    top: -13px;

    left: 50%;

    transform:
        translateX(-50%);

    padding: 7px 15px;

    border-radius: 20px;

    background:
        var(--lp-gradient);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.pricing-card-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 35px;

    border-bottom:

        1px solid
        rgba(255,255,255,.1);

}


.plan-name {

    color:
        #c084fc;

    font-size: 13px;

    font-weight: 700;

}


.pricing-card-header h3 {

    font-size: 26px;

    margin: 8px 0;

}


.pricing-value {

    display: flex;

    align-items: baseline;

}


.pricing-value .currency {

    font-size: 18px;

}


.pricing-value strong {

    font-size: 55px;

    letter-spacing: -3px;

}


.period {

    color:
        var(--lp-text-muted);

}


.pricing-content {

    display: grid;

    grid-template-columns:
        1fr
        300px;

    gap: 60px;

    padding-top: 35px;

}


.pricing-feature {

    margin-bottom: 15px;

    font-size: 14px;

}


.pricing-feature span {

    display: inline-flex;

    width: 22px;

    height: 22px;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(16,185,129,.15);

    color:
        #34d399;

    margin-right: 10px;

}


.trial-info {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

}


.trial-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(124,58,237,.15);

    border-radius: 12px;

}


.trial-info strong {

    display: block;

}


.trial-info span {

    display: block;

    color:
        var(--lp-text-muted);

    font-size: 11px;

    margin-top: 4px;

}


.pricing-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    width: 100%;

    padding: 18px;

    border-radius: 13px;

    background:
        var(--lp-gradient);

    color: #fff;

    font-weight: 700;

    transition: .3s;

}


.pricing-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px rgba(124,58,237,.4);

}


.pricing-action > small {

    display: block;

    text-align: center;

    margin-top: 12px;

    color:
        var(--lp-text-muted);

    font-size: 10px;

}



/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background:
        #0b0a15;

}


.faq-container {

    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap: 100px;

}


.faq-intro p {

    color:
        var(--lp-text-muted);

    line-height: 1.8;

    margin-bottom: 30px;

}


.faq-item {

    border-bottom:

        1px solid
        rgba(255,255,255,.1);

}


.faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 22px 0;

    background: none;

    border: none;

    color: #fff;

    font-size: 15px;

    text-align: left;

    font-family: inherit;

    cursor: pointer;

}


.faq-plus {

    font-size: 25px;

    color:
        #a855f7;

    transition: .3s;

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease;

}


.faq-answer p {

    padding:
        0 0 20px;

    margin: 0;

    color:
        var(--lp-text-muted);

    font-size: 14px;

    line-height: 1.8;

}


.faq-item.active .faq-answer {

    max-height: 300px;

}


.faq-item.active .faq-plus {

    transform:
        rotate(45deg);

}



/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    position: relative;

    overflow: hidden;

    padding: 140px 0;

    background:

        linear-gradient(
            135deg,
            #4c1d95,
            #7c3aed,
            #312e81
        );

}


.final-cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;

}


.final-small-text {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    color:
        #ddd6fe;

}


.final-cta h2 {

    font-size:

        clamp(
            40px,
            6vw,
            70px
        );

    line-height: 1.05;

    letter-spacing: -3px;

    margin: 20px 0;

}


.final-cta h2 span {

    display: block;

    color:
        #ddd6fe;

}


.final-cta p {

    max-width: 650px;

    margin:
        0 auto 30px;

    color:
        rgba(255,255,255,.75);

    font-size: 17px;

    line-height: 1.7;

}


.final-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding:
        19px 30px;

    border-radius: 14px;

    background: #fff;

    color: #4c1d95;

    font-weight: 800;

    transition: .3s;

}


.final-cta-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.2);

}


.final-benefits {

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 25px;

    flex-wrap: wrap;

    font-size: 12px;

    color:
        rgba(255,255,255,.8);

}


.cta-orb {

    position: absolute;

    border-radius: 50%;

    background:
        rgba(255,255,255,.15);

    filter:
        blur(80px);

}


.cta-orb-1 {

    width: 300px;

    height: 300px;

    left: -100px;

    top: -100px;

}


.cta-orb-2 {

    width: 400px;

    height: 400px;

    right: -150px;

    bottom: -150px;

}



/* =========================================================
   FOOTER
========================================================= */

.modern-footer {

    padding: 80px 0 30px;

    background:
        #06050d;

    border-top:

        1px solid
        rgba(255,255,255,.06);

}


.footer-top {

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 60px;

}


.footer-logo {

    display: block;

    font-size: 25px;

    font-weight: 800;

    margin-bottom: 15px;

}


.footer-brand p {

    max-width: 280px;

    color:
        var(--lp-text-muted);

    font-size: 13px;

    line-height: 1.8;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-column h4 {

    margin: 0 0 10px;

    font-size: 13px;

}


.footer-column a {

    color:
        var(--lp-text-muted);

    font-size: 13px;

    transition: .2s;

}


.footer-column a:hover {

    color: #fff;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    border-top:

        1px solid
        rgba(255,255,255,.06);

    color:
        #666475;

    font-size: 11px;

}



/* =========================================================
   ANIMAÇÕES SCROLL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:

        opacity .7s ease,
        transform .7s ease;

}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);

}



/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1000px) {


    .hero-container,
    .solution-container {

        grid-template-columns:
            1fr;

    }


    .hero-content {

        text-align: center;

    }


    .hero-description {

        margin-left: auto;
        margin-right: auto;

    }


    .hero-buttons,
    .hero-trust {

        justify-content: center;

    }


    .hero-visual {

        max-width: 600px;

        width: 100%;

        margin: auto;

    }


    .problem-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .features-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .benefits-container {

        grid-template-columns:
            1fr 1fr;

    }


    .steps-grid {

        grid-template-columns:
            1fr;

        gap: 20px;

    }


    .step-line {

        display: none;

    }


    .faq-container {

        grid-template-columns:
            1fr;

        gap: 50px;

    }


    .footer-top {

        grid-template-columns:
            1fr 1fr;

    }

}



@media (max-width: 760px) {


    .lp-menu,
    .lp-header-actions {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .hero-modern {

        padding:
            130px 0
            70px;

    }


    .hero-content h1 {

        letter-spacing:
            -2px;

    }


    .dashboard-mockup {

        min-height: 400px;

        transform: none;

    }


    .floating-card {

        transform:
            scale(.85);

    }


    .card-order {

        left: -30px;

    }


    .problem-grid,
    .features-grid,
    .testimonials-grid {

        grid-template-columns:
            1fr;

    }


    .feature-large {

        grid-column:
            auto;

        flex-direction:
            column;

    }


    .featured-testimonial {

        transform: none;

    }


    .comparison-table {

        grid-template-columns:
            1fr;

    }


    .comparison-side {

        padding: 30px;

    }


    .pricing-card {

        padding: 30px 20px;

    }


    .pricing-card-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

    }


    .pricing-content {

        grid-template-columns:
            1fr;

        gap: 30px;

    }


    .dashboard-section-top {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }


    .big-dashboard-sidebar {

        display: none;

    }


    .big-dashboard-content {

        padding: 20px;

    }


    .dashboard-metrics {

        grid-template-columns:
            1fr;

    }


    .footer-top {

        grid-template-columns:
            1fr;

        gap: 35px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 10px;

    }

}



@media (max-width: 480px) {


    .hero-buttons {

        flex-direction: column;

        width: 100%;

    }


    .btn-main,
    .btn-secondary-modern {

        width: 100%;

        justify-content: center;

    }


    .hero-trust {

        gap: 10px;

    }


    .benefits-container {

        grid-template-columns:
            1fr;

    }


    .dashboard-mockup {

        transform:
            scale(.85);

        width: 118%;

        margin-left: -9%;

    }


    .card-sale {

        right: -20px;

    }


    .phone-floating {

        transform:
            scale(.8);

        right: -30px;

    }


    .pricing-value strong {

        font-size: 45px;

    }


    .final-cta {

        padding:
            100px 0;

    }

}
/* =========================================================
   PAINEL REAL DO SISTEMA
========================================================= */

.dashboard-real-frame {
    display: block;
    min-height: 0;
    background: #fff;
    padding: 0;
    position: relative;
}

.dashboard-real-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
}

.real-dashboard-section {
    display: block;
    min-height: 0;
    background: #fff;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

.real-dashboard-header {
    padding: 38px 42px 28px;
    background: #fff;
    color: #141225;
}

.real-dashboard-header span {
    display: inline-block;
    margin-bottom: 10px;
    color: #7c3aed;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.real-dashboard-header strong {
    display: block;
    font-size: 24px;
    line-height: 1.25;
}

.real-dashboard-header p {
    max-width: 620px;
    margin: 9px 0 0;
    color: #77748a;
    font-size: 14px;
    line-height: 1.7;
}

.real-dashboard-image-wrap {
    background: #f5f5f9;
    padding: 0 18px 18px;
}

.real-dashboard-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

@media (max-width: 760px) {
    .dashboard-real-frame {
        transform: none;
    }

    .dashboard-real-image {
        border-radius: 14px;
    }

    .real-dashboard-header {
        padding: 26px 22px 22px;
    }

    .real-dashboard-header strong {
        font-size: 20px;
    }

    .real-dashboard-image-wrap {
        padding: 0 10px 10px;
        overflow: hidden;
    }

    .real-dashboard-image {
        min-width: 760px;
        max-width: none;
    }
}
