:root{
    --green: #00ff88;
    --green-dark: #00c96c;
    --bg: #050505;
    --bg-2: #0b0f0d;
    --card: #101412;
    --border: rgba(0,255,136,0.12);
    --text: #ffffff;
    --muted: #98a29b;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:
    radial-gradient(circle at top right, rgba(0,255,136,0.08), transparent 25%),
    #050505;

    color:var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

/* NAVBAR */

.neo-navbar{
    background: rgba(5,5,5,0.9);
    backdrop-filter: blur(10px);
    border-bottom:1px solid var(--border);
    padding:14px 0;
}

.neo-logo{
    font-size:26px;
    font-weight:900;
    color:var(--green)!important;
    text-decoration:none;
}

.neo-logo span{
    color:#fff;
}

/* BOTÕES */

.btn-neo{
    background:linear-gradient(135deg,var(--green),var(--green-dark));
    color:#001b0e;
    border:none;
    font-weight:700;
    border-radius:12px;
    padding:10px 20px;
    font-size:14px;
}

.btn-neo:hover{
    transform:translateY(-2px);
    color:#001b0e;
}

.btn-neo-outline{
    border:1px solid var(--border);
    color:var(--green);
    border-radius:12px;
    padding:10px 20px;
    font-size:14px;
    font-weight:700;
}

.btn-neo-outline:hover{
    background:rgba(0,255,136,0.08);
    color:var(--green);
}

/* HERO */

.hero-section{
    padding:120px 0 80px;
}

.hero-badge{
    display:inline-block;
    background:rgba(0,255,136,0.08);
    color:var(--green);
    border:1px solid var(--border);
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
}

.hero-title{
    font-size:52px;
    line-height:1.1;
    font-weight:900;
    max-width:560px;
    margin-bottom:22px;
}

.hero-text{
    color:var(--muted);
    font-size:17px;
    line-height:1.7;
    max-width:520px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-stats{
    display:flex;
    gap:30px;
    margin-top:40px;
    flex-wrap:wrap;
}

.hero-stats strong{
    display:block;
    color:var(--green);
    font-size:22px;
}

.hero-stats span{
    color:var(--muted);
    font-size:13px;
}

/* MOCKUP */

.mockup-card{
    background:linear-gradient(180deg,#101412,#0b0f0d);
    border:1px solid var(--border);
    border-radius:24px;
    padding:24px;
    box-shadow:
    0 0 40px rgba(0,255,136,0.06);
}

.mockup-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.mockup-header h5{
    font-size:17px;
    font-weight:800;
    margin:0;
}

.mockup-header span{
    color:var(--muted);
    font-size:13px;
}

.status-pill{
    background:rgba(0,255,136,0.1);
    color:var(--green);
    padding:7px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
}

.balance-card{
    background:linear-gradient(135deg,var(--green),var(--green-dark));
    color:#001b0e;
    border-radius:20px;
    padding:22px;
    margin-bottom:16px;
}

.balance-card span{
    font-size:13px;
    font-weight:700;
}

.balance-card h2{
    font-size:34px;
    font-weight:900;
    margin:8px 0;
}

.balance-card small{
    font-size:12px;
    font-weight:700;
}

.mini-card,
.progress-box,
.transaction-list{
    background:#141917;
    border:1px solid rgba(255,255,255,0.04);
    border-radius:18px;
    padding:18px;
}

.mini-card span{
    color:var(--muted);
    font-size:13px;
}

.mini-card h4{
    margin-top:8px;
    font-size:22px;
    font-weight:900;
    color:var(--green);
}

.mini-card.danger h4{
    color:#ff5c7a;
}

.progress-box{
    margin-top:16px;
}

.progress-box span{
    color:var(--muted);
    font-size:13px;
}

.progress-box strong{
    color:var(--green);
}

.neo-progress{
    width:100%;
    height:10px;
    background:#202622;
    border-radius:999px;
    overflow:hidden;
    margin-top:12px;
}

.neo-progress div{
    width:72%;
    height:100%;
    background:linear-gradient(90deg,var(--green),var(--green-dark));
}

.transaction-list{
    margin-top:16px;
}

.transaction{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,0.05);
    font-size:14px;
}

.transaction:last-child{
    border:none;
}

.income{
    color:var(--green);
}

.expense{
    color:#ff5c7a;
}

/* RECURSOS */

.resources-section{
    padding:80px 0;
    background:#070907;
}

.section-title{
    text-align:center;
    max-width:620px;
    margin:0 auto 50px;
}

.section-title span{
    color:var(--green);
    font-size:14px;
    font-weight:700;
}

.section-title h2{
    font-size:38px;
    font-weight:900;
    margin:14px 0;
}

.section-title p{
    color:var(--muted);
    font-size:16px;
}

.resource-card{
    background:linear-gradient(180deg,#101412,#0b0f0d);
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    height:100%;
    transition:0.3s;
}

.resource-card:hover{
    transform:translateY(-6px);
    border-color:rgba(0,255,136,0.25);
}

.icon-box{
    width:52px;
    height:52px;
    background:rgba(0,255,136,0.08);
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:18px;
}

.resource-card h4{
    color:var(--green);
    font-size:20px;
    font-weight:800;
    margin-bottom:10px;
}

.resource-card p{
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
}

/* FOOTER */

.footer{
    border-top:1px solid var(--border);
    padding:26px 0;
    background:#050505;
}

.footer strong{
    color:var(--green);
    font-size:20px;
}

.footer p{
    color:var(--muted);
    font-size:14px;
    margin-top:6px;
}

/* RESPONSIVO */

@media(max-width:991px){

    .hero-section{
        padding-top:110px;
    }

    .hero-title{
        font-size:42px;
    }

    .mockup-card{
        margin-top:40px;
    }

}

@media(max-width:768px){

    .hero-title{
        font-size:34px;
    }

    .hero-text{
        font-size:15px;
    }

    .hero-stats{
        gap:20px;
    }

    .balance-card h2{
        font-size:28px;
    }

    .section-title h2{
        font-size:30px;
    }

}

/* LOGIN */

.login-section{
    min-height:100vh;
    background:
    radial-gradient(circle at top right, rgba(0,255,136,0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0,255,136,0.08), transparent 25%),
    #050505;
}

.login-card{
    background:linear-gradient(180deg,#101412,#0b0f0d);
    border:1px solid var(--border);
    border-radius:24px;
    padding:34px;
    box-shadow:0 0 45px rgba(0,255,136,0.07);
}

.login-logo{
    display:inline-block;
    font-size:30px;
    font-weight:900;
    color:var(--green);
    text-decoration:none;
    margin-bottom:20px;
}

.login-logo span{
    color:#fff;
}

.login-card h1{
    font-size:28px;
    font-weight:900;
    margin-bottom:8px;
}

.login-card p{
    color:var(--muted);
    font-size:15px;
}

.neo-input{
    background:#141917;
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    border-radius:14px;
    padding:13px 15px;
    font-size:15px;
}

.neo-input:focus{
    background:#141917;
    color:#fff;
    border-color:var(--green);
    box-shadow:0 0 0 0.2rem rgba(0,255,136,0.12);
}

.neo-input::placeholder{
    color:#6f7872;
}

.form-label{
    color:#d9e0dc;
    font-size:14px;
    font-weight:600;
}

.form-check-label{
    color:var(--muted);
    font-size:14px;
}

.form-check-input{
    background-color:#141917;
    border-color:rgba(255,255,255,0.2);
}

.form-check-input:checked{
    background-color:var(--green);
    border-color:var(--green);
}

.login-link{
    color:var(--green);
    text-decoration:none;
    font-weight:700;
    font-size:14px;
}

.login-link:hover{
    color:#fff;
}

.login-muted{
    color:#c7d1cb;
    font-size:14px;
}

/* ADMIN */

.admin-layout{
    min-height:100vh;
    display:flex;
    background:
    radial-gradient(circle at top right, rgba(0,255,136,0.08), transparent 25%),
    #050505;
}

.admin-sidebar{
    width:260px;
    background:#080b09;
    border-right:1px solid var(--border);
    padding:28px 22px;
    position:fixed;
    top:0;
    bottom:0;
    left:0;
}

.admin-logo{
    display:block;
    color:var(--green);
    font-size:28px;
    font-weight:900;
    text-decoration:none;
    margin-bottom:34px;
}

.admin-logo span{
    color:#fff;
}

.admin-menu{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.admin-menu a{
    color:var(--muted);
    text-decoration:none;
    padding:13px 15px;
    border-radius:14px;
    font-weight:700;
    transition:0.3s;
}

.admin-menu a:hover,
.admin-menu a.active{
    background:rgba(0,255,136,0.08);
    color:var(--green);
}

.admin-main{
    margin-left:260px;
    width:calc(100% - 260px);
    padding:32px;
}

.admin-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.admin-topbar h1{
    font-size:30px;
    font-weight:900;
    margin-bottom:6px;
}

.admin-topbar p{
    color:var(--muted);
    margin:0;
}

.admin-card{
    background:linear-gradient(180deg,#101412,#0b0f0d);
    border:1px solid var(--border);
    border-radius:22px;
    padding:22px;
    height:100%;
}

.admin-card span{
    color:var(--muted);
    font-size:14px;
}

.admin-card h2{
    color:#fff;
    font-size:30px;
    font-weight:900;
    margin:10px 0;
}

.admin-card small{
    color:var(--muted);
}

.admin-panel{
    background:linear-gradient(180deg,#101412,#0b0f0d);
    border:1px solid var(--border);
    border-radius:22px;
    padding:24px;
    height:100%;
}

.admin-panel-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.admin-panel h4{
    font-weight:900;
    margin:0;
}

.admin-table{
    color:#fff;
    margin:0;
}

.admin-table thead th{
    color:var(--muted);
    font-size:13px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:14px;
}

.admin-table tbody td{
    color:#dce5df;
    border-bottom:1px solid rgba(255,255,255,0.05);
    padding:14px;
    vertical-align:middle;
}

.status-active{
    background:rgba(0,255,136,0.1);
    color:var(--green);
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
}

.status-inactive{
    background:rgba(255,92,122,0.1);
    color:#ff5c7a;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
}

.admin-summary{
    margin-top:22px;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.admin-summary div{
    background:#141917;
    border-radius:16px;
    padding:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.admin-summary span{
    color:var(--muted);
}

.admin-summary strong{
    color:var(--green);
}

@media(max-width:991px){

    .admin-layout{
        display:block;
    }

    .admin-sidebar{
        position:relative;
        width:100%;
        height:auto;
        border-right:none;
        border-bottom:1px solid var(--border);
    }

    .admin-main{
        margin-left:0;
        width:100%;
        padding:22px;
    }

    .admin-topbar{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

}