:root {
    --roxo: #7137d8;
    --roxo-escuro: #25104d;
    --roxo-medio: #5420a9;
    --roxo-claro: #934df2;
    --lilas: #f5efff;
    --texto: #211936;
    --cinza: #74717d;

    --branco: #ffffff;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--texto);
    background: #ffffff;
}


/* =====================================================
    NAVBAR
===================================================== */
.navbar-custom {
    background: rgba(30, 10, 65, .96);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-titulo {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.1;
}

.logo-titulo span {
    color: #a967ff;
}

.subTitulologo {
    font-size: 10px;
    color: rgba(255,255,255,.65);
    margin-top: 4px;
    line-height: 1;
}    


.logo i {
    color: #c18aff;
    margin-right: 7px;
}


.logo span {
    color: #a967ff;
}

.navbar-custom .nav-link {
    color: rgba(255,255,255,.85);
    font-size: 13px;
    font-weight: 600;
    margin: 0 7px;
    transition: .25s;
}

.navbar-custom .nav-link:hover {
    color: #fff;
}

.btn-login {
    border: 1px solid rgba(255,255,255,.65);
    color: #fff;
    padding: 9px 22px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
}

.btn-login:hover {
    background: #fff;
    color: var(--roxo-escuro);
}

.btn-primary-custom {
    background: linear-gradient(
        135deg,
        #a14cff,
        #7030d9
    );
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 25px rgba(130,55,220,.35);
    transition: .3s;
}

.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(130,55,220,.45);
}

/* =====================================================
    HERO
===================================================== */

.hero {
    min-height: 590px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(153,70,255,.55),
            transparent 32%
        ),

        linear-gradient(
            120deg,
            #1f0b48,
            #4b1c9c 65%,
            #7027d6
        );

    color: #fff;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border: 80px solid rgba(255,255,255,.035);
    border-radius: 50%;
    right: -200px;
    top: -180px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 800;
    max-width: 620px;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #b96fff;
}

.hero p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.82);
    max-width: 580px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-outline-light-custom {
    color: #fff;
    border: 1px solid rgba(255,255,255,.7);
    background: transparent;
    padding: 12px 24px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.btn-outline-light-custom:hover {
    background: #fff;
    color: var(--roxo-escuro);
}

/* =====================================================
    DASHBOARD HERO
===================================================== */

.dashboard-wrapper {

    position: relative;

    z-index: 2;

    padding-left: 30px;

}


.dashboard {

    background: #fff;

    border-radius: 15px;

    padding: 15px;

    box-shadow:

        0 30px 80px rgba(0,0,0,.3),

        0 0 50px rgba(169,90,255,.25);

    transform: rotate(-1deg);

}


.dashboard-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;

}


.dashboard-title {

    font-size: 13px;

    font-weight: 700;

    color: #33204f;

}


.dashboard-user {

    width: 27px;

    height: 27px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #7b39dc,
        #bc78ff
    );

}


.dashboard-cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    margin-bottom: 10px;

}


.dash-card {

    background: #faf8fd;

    border-radius: 8px;

    padding: 10px;

}


.dash-card small {

    color: #999;

    font-size: 8px;

    display: block;

}


.dash-card strong {

    display: block;

    font-size: 14px;

    margin-top: 3px;

    color: #34204d;

}


.dash-up {

    color: #25a86a;

    font-size: 8px;

}


.dashboard-body {

    display: grid;

    grid-template-columns: 1.6fr 1fr;

    gap: 10px;

}


.chart {

    background: #faf8fd;

    border-radius: 8px;

    padding: 12px;

    height: 180px;

}


.chart-title {

    font-size: 9px;

    font-weight: 700;

    margin-bottom: 10px;

}


.chart-lines {

    height: 120px;

    position: relative;

    overflow: hidden;

}


.chart-svg {

    width: 100%;

    height: 100%;

}


.chart-svg polyline {

    fill: none;

    stroke: #813be2;

    stroke-width: 3;

}


.chart-svg polygon {

    fill: rgba(129,59,226,.12);

}


.donut {

    background: #faf8fd;

    border-radius: 8px;

    padding: 12px;

    height: 180px;

}


.donut-circle {

    width: 95px;

    height: 95px;

    border-radius: 50%;

    margin: 15px auto;

    background:

        conic-gradient(

            #7c39dc 0deg 180deg,

            #bd79ff 180deg 270deg,

            #e7d5ff 270deg 360deg

        );

    position: relative;

}


.donut-circle::after {

    content: "";

    position: absolute;

    width: 55px;

    height: 55px;

    background: #faf8fd;

    border-radius: 50%;

    left: 20px;

    top: 20px;

}


/* =====================================================
    CLIENTES
===================================================== */

.clients {

    padding: 18px 0;

    text-align: center;

    border-bottom: 1px solid #eee;

}


.clients-title {

    font-size: 9px;

    color: #8a8790;

    text-transform: uppercase;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 15px;

}


.client-list {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 55px;

    flex-wrap: wrap;

    color: #8b8892;

    font-size: 18px;

    font-weight: 700;

}


/* =====================================================
    ESTATÍSTICAS
===================================================== */

.stats {

    background:

        linear-gradient(
            100deg,
            #6022c5,
            #8837e8
        );

    color: #fff;

    padding: 23px 0;

}


.stat {

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.2);

}


.stat:last-child {

    border-right: none;

}


.stat-number {

    font-size: 25px;

    font-weight: 800;

}


.stat-label {

    font-size: 11px;

    opacity: .8;

}


/* =====================================================
    GERAL
===================================================== */

.section {

    padding: 90px 0;

}


.section-title {

    text-align: center;

    max-width: 680px;

    margin: 0 auto 50px;

}


.section-title span {

    color: var(--roxo);

    text-transform: uppercase;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.section-title h2 {

    font-size: 32px;

    font-weight: 800;

    margin: 8px 0 12px;

}


.section-title p {

    color: var(--cinza);

    font-size: 14px;

    line-height: 1.7;

}


/* =====================================================
    RECURSOS
===================================================== */

.feature-card {

    height: 100%;

    padding: 28px 22px;

    border: 1px solid #eee;

    border-radius: 12px;

    background: #fff;

    transition: .3s;

}


.feature-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(78,35,130,.1);

}


.feature-icon {

    width: 45px;

    height: 45px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--lilas);

    color: var(--roxo);

    font-size: 20px;

    margin-bottom: 17px;

}


.feature-card h4 {

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 8px;

}


.feature-card p {

    color: var(--cinza);

    font-size: 12px;

    line-height: 1.7;

    margin: 0;

}


/* =====================================================
    COMO FUNCIONA
===================================================== */

.how {

    background: #f8f4ff;

}


.step {

    text-align: center;

    position: relative;

}


.step-number {

    width: 45px;

    height: 45px;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #7031d5,
        #a65bff
    );

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 800;

}


.step h4 {

    font-size: 14px;

    font-weight: 800;

}


.step p {

    color: var(--cinza);

    font-size: 11px;

    line-height: 1.6;

    max-width: 200px;

    margin: auto;

}


/* =====================================================
    PLANOS
===================================================== */

.plans {

    background: #fff;

}


.plan {

    border: 1px solid #e8e4ed;

    border-radius: 13px;

    padding: 30px;

    height: 100%;

    position: relative;

    transition: .3s;

}


.plan:hover {

    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(70,35,120,.12);

}


.plan.featured {

    border: 2px solid var(--roxo);

    box-shadow: 0 18px 45px rgba(112,55,216,.15);

}


.popular {

    position: absolute;

    top: -13px;

    left: 50%;

    transform: translateX(-50%);

    background: var(--roxo);

    color: #fff;

    border-radius: 20px;

    padding: 6px 18px;

    font-size: 9px;

    font-weight: 800;

}


.plan h3 {

    font-size: 19px;

    font-weight: 800;

}


.plan-description {

    color: #999;

    font-size: 11px;

    margin-bottom: 20px;

}


.price {

    font-size: 32px;

    font-weight: 800;

}


.price small {

    color: #888;

    font-size: 11px;

    font-weight: 400;

}


.plan ul {

    list-style: none;

    padding: 0;

    margin: 25px 0;

}


.plan li {

    font-size: 11px;

    color: #666;

    padding: 7px 0;

}


.plan li i {

    color: var(--roxo);

    margin-right: 7px;

}


.btn-plan {

    width: 100%;

    border-radius: 7px;

    padding: 10px;

    font-size: 12px;

    font-weight: 700;

    border: 1px solid var(--roxo);

    background: #fff;

    color: var(--roxo);

}


.plan.featured .btn-plan {

    background: var(--roxo);

    color: #fff;

}


/* =====================================================
    DEPOIMENTOS
===================================================== */

.testimonials {

    background: #f8f4ff;

}


.testimonial {

    background: #fff;

    border: 1px solid #eee;

    border-radius: 12px;

    padding: 25px;

    height: 100%;

}


.stars {

    color: #ffad00;

    font-size: 12px;

    margin-bottom: 12px;

}


.testimonial p {

    color: #666;

    font-size: 12px;

    line-height: 1.7;

    min-height: 65px;

}


.author {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

}


.avatar {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    background:

        linear-gradient(
            135deg,
            #7135d6,
            #bb75ff
        );

}


.author strong {

    font-size: 11px;

    display: block;

}


.author small {

    color: #999;

    font-size: 9px;

}


/* =====================================================
    FAQ
===================================================== */

.faq-item {

    border: 1px solid #e8e4ed;

    border-radius: 8px;

    margin-bottom: 10px;

    overflow: hidden;

}


.faq-button {

    width: 100%;

    border: none;

    background: #fff;

    padding: 17px;

    text-align: left;

    font-size: 12px;

    font-weight: 700;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.faq-button i {

    color: var(--roxo);

}


.faq-answer {

    color: #777;

    font-size: 11px;

    line-height: 1.7;

    padding: 0 17px 17px;

}


/* =====================================================
    CTA
===================================================== */

.cta {

    padding: 55px 0;

    background:

        linear-gradient(
            110deg,
            #6826ce,
            #8d3de8
        );

    color: #fff;

}


.cta h2 {

    font-size: 29px;

    font-weight: 800;

    margin-bottom: 7px;

}


.cta p {

    font-size: 12px;

    opacity: .8;

    margin: 0;

}


.cta-buttons {

    display: flex;

    gap: 10px;

    justify-content: flex-end;

}


.btn-white {

    background: #fff;

    color: var(--roxo);

    border: none;

    border-radius: 7px;

    padding: 12px 22px;

    font-size: 12px;

    font-weight: 700;

}


.btn-white:hover {

    color: var(--roxo);

}


/* =====================================================
    FOOTER
===================================================== */

footer {

    background: #1d0b3b;

    color: #fff;

    padding: 55px 0 20px;

}


footer h5 {

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 18px;

}


footer p {

    color: rgba(255,255,255,.55);

    font-size: 11px;

    line-height: 1.7;

}


footer a {

    display: block;

    color: rgba(255,255,255,.55);

    text-decoration: none;

    font-size: 10px;

    margin-bottom: 10px;

}


footer a:hover {

    color: #fff;

}


.footer-social {

    display: flex;

    gap: 8px;

}


.footer-social a {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    display: flex;

    align-items: center;

    justify-content: center;

}


.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.08);

    margin-top: 35px;

    padding-top: 20px;

    text-align: center;

    color: rgba(255,255,255,.4);

    font-size: 10px;

}


/* =====================================================
    RESPONSIVO
===================================================== */

@media (max-width: 991px) {

    .hero {

        padding: 80px 0;

    }

    .hero h1 {

        font-size: 38px;

    }

    .dashboard-wrapper {

        padding-left: 0;

        margin-top: 50px;

    }

    .navbar-custom .nav-link {

        margin: 7px 0;

    }

    .stat {

        border: none;

        margin-bottom: 20px;

    }

}


@media (max-width: 576px) {

    .hero h1 {

        font-size: 32px;

    }

    .hero p {

        font-size: 14px;

    }

    .hero {

        min-height: auto;

    }

    .dashboard {

        transform: none;

    }

    .dashboard-cards {

        grid-template-columns: 1fr;

    }

    .dashboard-body {

        grid-template-columns: 1fr;

    }

    .client-list {

        gap: 25px;

    }

    .section {

        padding: 65px 0;

    }

    .section-title h2 {

        font-size: 27px;

    }

    .cta-buttons {

        justify-content: flex-start;

        margin-top: 25px;

    }

}