.navbar{
    width:100%;

    position:fixed;

    top:0;
    left:0;

    z-index:1000;

    background:
    rgba(8,10,14,0.72);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid rgba(255,255,255,0.04);
}

.navbar::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(0,255,174,0.25),
        transparent
    );
}

.navbar .container{
    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:0.3s;
}

.logo{
    font-size:28px;
    font-weight:800;
    letter-spacing:-1px;
}

.menu{
    display:flex;
    align-items:center;
    gap:40px;
}

.menu a{
    color:#bfc3cf;
    font-size:15px;
    transition:0.3s;
}

.menu a:hover{
    color:#ffffff;
}

.tag{
    display:inline-flex;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(0,255,170,0.08);

    border:1px solid rgba(0,255,170,0.15);

    color:#63ffca;

    font-size:14px;
    font-weight:600;

    margin-bottom:30px;
}

.hero-text,
.hero-image{
    min-width:0;
}

.hero-text h1{
    font-size:58px;

    line-height:0.95;

    letter-spacing:-4px;

    margin-bottom:24px;

    max-width:720px;

    position:relative;

    z-index:2;

    text-shadow:
    0 10px 40px rgba(0,0,0,0.35);
}

.hero-text p{
    font-size:19px;

    line-height:1.8;

    color:#97a3b7;

    max-width:620px;

    margin-bottom:34px;
}

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

.hero-grid{
    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size:80px 80px;

    mask-image:radial-gradient(circle at center, black 30%, transparent 80%);

    pointer-events:none;
}

.btn-primary{
    background:
    linear-gradient(
        180deg,
        #00ffae,
        #00d692
    );    

    color:#03140f;

    padding:18px 36px;

    border-radius:18px;

    font-weight:700;

    transition:0.35s;

    box-shadow:
    0 10px 35px rgba(0,255,174,0.25);

    position:relative;

    overflow:hidden;

    isolation:isolate;
}

.btn-primary::before{
    content:"";

    position:absolute;

    width:140%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    top:0;
    left:-140%;

    transition:0.7s;
}

.btn-primary:hover{
    transform:translateY(-4px);

    box-shadow:
    0 18px 45px rgba(0,255,174,0.35);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.03);
    padding:18px 34px;
    border-radius:18px;
    color:#fff;
    transition:0.35s;
    position:relative;
    overflow:hidden;
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.08);
    transform:translateY(-3px);
}

.hero-image{
    position:relative;
}

.hero-image::before{
    content:"";

    position:absolute;

    width:520px;
    height:520px;

    background:
    radial-gradient(
        circle,
        rgba(0,255,174,0.22),
        transparent 70%
    );

    border-radius:50%;

    filter:blur(90px);

    opacity:0.7;

    top:50%;
    left:50%;

    transform:translate(-50%, -50%);

    z-index:-1;
}

.mockup-card{
    position:relative;

    background:
    linear-gradient(
        145deg,
        #1a1f29,
        #11151d
    );

    border:1px solid rgba(255,255,255,0.07);

    border-radius:32px;

    max-width:520px;

    margin-left:auto;

    overflow:hidden;   

    box-shadow:
    0 45px 130px rgba(0,0,0,0.58),
    inset 0 1px 0 rgba(255,255,255,0.04);

    transition:0.4s;

    backdrop-filter:blur(20px);
}

.mockup-card:hover{
    transform:
    translateY(-6px)
    scale(1.01);
}

.mockup-header{
    height:70px;

    display:flex;
    align-items:center;

    padding:0 30px;

    border-bottom:1px solid rgba(255,255,255,0.06);

    color:#c7d0e2;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );

    position:relative;

    backdrop-filter:blur(12px);
}

.mockup-body{
    display:grid;
    
    grid-template-columns:190px minmax(0, 1fr);

    min-height:470px;
}

.mockup-sidebar{
    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.01)
    );

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

    position:relative;
}

.mockup-content{
    padding:40px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.015),
        transparent
    );
}

.mockup-line{
    height:16px;

    border-radius:999px;

    margin-bottom:18px;

    position:relative;

    overflow:hidden;

    background:
    rgba(255,255,255,0.04);
}

.mockup-line::before{
    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,255,174,0.05),
        rgba(0,140,255,0.18),
        rgba(0,255,174,0.05)
    );

    background-size:200% 100%;

    animation:
    lineFlow 5s linear infinite;
}

.mockup-line.short{
    width:58%;

    min-width:240px;
}

.mockup-line span{
    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    height:100%;

    padding:0 18px;

    font-size:12px;

    letter-spacing:0.3px;

    color:#c4cede;

    font-weight:500;
}

@keyframes lineFlow{

    0%{
        background-position:0% 0%;
    }

    100%{
        background-position:200% 0%;
    }

}

.sidebar-logo{
    padding:30px;

    font-size:22px;
    font-weight:800;

    letter-spacing:-1px;

    border-bottom:1px solid rgba(255,255,255,0.05);
}
.sidebar-menu{
    padding:20px;

    display:flex;

    flex-direction:column;

    gap:8px;
}

.sidebar-item{
    padding:16px 18px;

    border-radius:16px;

    color:#aeb8cb;

    transition:0.35s;

    cursor:pointer;

    font-size:15px;

    font-weight:500;

    position:relative;

    overflow:hidden;
}

.sidebar-item::before{
    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,255,174,0.08),
        transparent
    );

    opacity:0;

    transition:0.35s;
}

.sidebar-item:hover{
    background:
    rgba(255,255,255,0.04);

    color:#ffffff;

    transform:translateX(4px);
}

.sidebar-item:hover::before{
    opacity:1;
}

.sidebar-item.active{
    background:
    linear-gradient(
        90deg,
        rgba(0,255,174,0.16),
        rgba(0,255,174,0.05)
    );

    border:
    1px solid rgba(0,255,174,0.16);

    color:#ffffff;

    box-shadow:
    0 10px 25px rgba(0,255,174,0.10);
}

.window-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.window-actions span{
    width:12px;
    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,0.18);
}

.window-title{
    position:absolute;

    left:50%;

    transform:translateX(-50%);

    color:#d6deef;

    font-size:14px;

    letter-spacing:0.3px;

    font-weight:500;
}

.services{
    padding:60px 0 150px;
    position:relative;
}

.section-header{
    margin-bottom:45px;
}

.section-tag{
    display:inline-flex;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.06);

    color:#d0d7e6;

    font-size:14px;

    margin-bottom:24px;
}

.section-header h2{
    font-size:58px;

    line-height:1.05;

    letter-spacing:-3px;

    max-width:780px;

    font-weight:800;
}

.services-grid{
    display:grid;

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

    gap:28px;
}

.service-card{
    padding:38px;

    cursor:pointer;

    border-radius:32px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border:
    1px solid rgba(255,255,255,0.05);

    position:relative;

    overflow:hidden;

    transition:0.35s;

    backdrop-filter:blur(14px);

    box-shadow:
    0 10px 40px rgba(0,0,0,0.22);

    isolation:isolate;
}

.service-card::after{
    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.05),
        transparent 40%
    );

    opacity:0;

    transition:0.4s;

    pointer-events:none;
}

.service-card::before{
    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(0,255,174,0.10),
        transparent 35%
    );

    z-index:-1;
}

.service-card:hover{
    transform:
    translateY(-10px);

    border-color:
    rgba(0,255,174,0.18);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.35);
}

.service-card:hover::after{
    opacity:1;
}

.service-number{
    font-size:14px;

    color:#00ffae;

    margin-bottom:24px;

    font-weight:700;
}

.service-card h3{
    font-size:28px;

    margin-bottom:18px;

    letter-spacing:-1px;
}

.service-card p{
    color:#97a3b7;

    line-height:1.8;

    font-size:17px;
}

.hero-trust{
    display:flex;

    gap:12px;

    margin-top:30px;

    flex-wrap:nowrap;
}

.trust-item{
    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 16px;

    border-radius:13px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.05);

    color:#b7c1d4;

    font-size:15px;

    backdrop-filter:blur(10px);
}

.trust-item span{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#00ffae;

    box-shadow:
    0 0 12px rgba(0,255,174,0.7);
}

.hero-shape{
    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity:0.18;

    pointer-events:none;
}

.hero-shape-1{
    width:420px;
    height:420px;

    background:#00ffae;

    top:-120px;
    right:-120px;
}

.hero-shape-2{
    width:320px;
    height:320px;

    background:#008cff;

    bottom:-120px;
    left:-120px;
}

.hero-line{
    width:120px;
    height:2px;

    background:
    linear-gradient(
        90deg,
        #00ffae,
        transparent
    );

    margin-bottom:30px;

    border-radius:999px;

    box-shadow:
    0 0 18px rgba(0,255,174,0.45);
}

.projects{
    padding:0 0 120px;
    position:relative;
}

.projects-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
}

.projects .section-header h2{
    font-size:48px;

    line-height:1.08;

    letter-spacing:-2.5px;

    max-width:820px;
}

.projects-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:28px;
}

.project-card{
    min-height:320px;
    padding:38px;
    border-radius:32px;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );
    border:1px solid rgba(255,255,255,0.05);
    box-shadow:0 10px 40px rgba(0,0,0,0.22);
    position:relative;
    overflow:hidden;
    transition:0.35s;
    cursor:pointer;
}

.project-card::before{
    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        140deg,
        rgba(255,255,255,0.04),
        transparent 40%
    );

    opacity:0;

    transition:0.4s;

    pointer-events:none;
}

.project-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,255,174,0.18);
    box-shadow:
    0 20px 60px rgba(0,0,0,0.35);
}

.project-card:hover::before{
    opacity:1;
}

.project-card.featured{
    grid-row:span 2;
    display:grid;
    grid-template-columns:1fr;
    align-content:space-between;
    min-height:670px;
}

.project-card.featured h3{
    font-size:52px;
}

.project-label{
    display:inline-flex;
    margin-bottom:22px;
    color:#00ffae;
    font-size:14px;
    font-weight:700;
}

.project-preview-label{
    display:inline-flex;

    margin-top:25px;
    margin-bottom:12px;

    padding:8px 14px;

    border-radius:999px;

    font-size:12px;
    font-weight:600;

    color:#00ffae;

    background:rgba(0,255,174,0.08);

    border:1px solid rgba(0,255,174,0.12);
}

.project-card h3{
    font-size:30px;
    letter-spacing:-1px;
    margin-bottom:18px;
    transition:0.3s;
}

.project-card:hover h3{
    color:#00ffae;
}

.project-card p{
    color:#97a3b7;
    line-height:1.8;
    font-size:17px;
    max-width:560px;
}

.project-link{
    display:inline-flex;
    margin-top:30px;
    color:#ffffff;
    font-weight:700;
    border-bottom:1px solid rgba(0,255,174,0.5);
    padding-bottom:6px;
}

.project-preview{
    margin-top:20px;
    padding:0px;
    overflow:hidden;
    border-radius:28px;
    background:#11151d;
    border:1px solid rgba(255,255,255,0.06);
}

.project-preview img{
    width:100%;

    display:block;

    border-radius:24px;

    transition:0.4s;
}

.project-card:hover .project-preview img{
    transform:scale(1.02);
}

.project-badge{
    display:inline-flex;
    align-items:center;

    padding:8px 14px;

    border-radius:999px;

    background:rgba(0,255,174,0.12);

    border:1px solid rgba(0,255,174,0.25);

    color:#00ffae;

    font-size:12px;

    font-weight:700;

    margin-bottom:18px;
}

.project-badge.secondary{
    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.10);

    color:#c7d0e2;
}

.project-stats{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:14px;
    margin:28px 0 26px;
}

.project-stat{
    padding:16px 18px;

    border-radius:18px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.06);

    transition:0.3s;

    min-height:140px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-width:0;
}

.project-stat strong{
    display:block;

    color:#00ffae;

    font-size:28px;

    line-height:1.05;

    font-weight:800;

    margin-bottom:12px;
}

.project-stat span{
    color:#9aa5bb;

    font-size:13px;

    line-height:1.4;
}

.project-stat:hover{
    border-color:rgba(0,255,174,0.18);

    transform:translateY(-3px);
}

.project-card:not(.featured) .project-stats{
    gap:10px;

    margin:24px 0 24px;
}

.project-card:not(.featured) .project-stat{
    min-height:96px;

    padding:13px 14px;

    border-radius:16px;
}

.project-card:not(.featured) .project-stat strong{
    font-size:20px;

    line-height:1.05;

    margin-bottom:8px;

    white-space:nowrap;
}

.project-card:not(.featured) .project-stat span{
    font-size:12px;

    line-height:1.35;
}

.project-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:28px 0;
}

.project-tags span{
    padding:8px 14px;

    border-radius:999px;

    background:rgba(0,255,174,0.08);

    border:1px solid rgba(0,255,174,0.15);

    color:#00ffae;

    font-size:13px;

    font-weight:600;
}

.project-features{
    display:flex;

    flex-direction:column;

    gap:10px;

    margin:24px 0 4px;
}

.project-features span{
    color:#c7d2e4;

    font-size:15px;

    line-height:1.5;
}

.project-footer{
    display:flex;

    align-items:center;

    gap:14px;

    margin-top:28px;

    flex-wrap:wrap;
}

.project-footer .project-link{
    margin:0;

    padding-bottom:6px;

    border-bottom:1px solid rgba(0,255,174,0.5);
}

.preview-badge{
    display:inline-flex;

    padding:8px 16px;

    margin:22px 0 0px;

    border-radius:999px;

    background:rgba(0,255,174,0.08);

    border:1px solid rgba(0,255,174,0.12);

    color:#00ffae;

    font-size:12px;

    font-weight:600;
}

.preview-label{
    margin-top:40px;

    margin-bottom:18px;

    display:inline-flex;

    align-items:center;

    padding:10px 16px;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

    color:#00ffae;

    background:
    rgba(0,255,174,0.08);

    border:
    1px solid rgba(0,255,174,0.15);
}

.preview-bar{
    height:46px;
    border-radius:18px;
    background:rgba(0,255,174,0.10);
    margin-bottom:24px;
}

.preview-line{
    height:16px;
    width:80%;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    margin-bottom:14px;
}

.preview-line.small{
    width:50%;
}

.preview-blocks{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:34px;
}

.preview-blocks span{
    height:110px;
    border-radius:22px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.04);
}

.experience{
    padding:20px 0 130px;
}

.experience-content{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:50px;
    align-items:center;
}

.experience-text h2{
    font-size:56px;
    line-height:1.05;
    letter-spacing:-3px;
    max-width:760px;
    margin-bottom:28px;
}

.experience-text p{
    color:#9aa5bb;
    font-size:19px;
    line-height:1.9;
    max-width:680px;
}

.experience-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.experience-item{
    padding:28px;
    border-radius:26px;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );
    border:1px solid rgba(255,255,255,0.05);
}

.experience-item strong{
    display:block;
    color:#00ffae;
    font-size:24px;
    margin-bottom:10px;
}

.experience-item span{
    color:#a5afc2;
    line-height:1.6;
}

.contact{
    padding:0 0 60px;
}

.contact-card{
    position:relative;

    padding:55px 70px;

    border-radius:40px;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.02)
    );

    border:
    1px solid rgba(255,255,255,0.05);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.25);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;
}

.contact-card::before{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    background:
    radial-gradient(
        circle,
        rgba(0,255,174,0.14),
        transparent 70%
    );

    top:-120px;
    right:-120px;

    filter:blur(40px);
}

.contact-text{
    position:relative;
    z-index:1;
}

.contact-text h2{
    font-size:50px;
    line-height:1.05;
    letter-spacing:-3px;
    max-width:720px;
    margin-bottom:20px;
}

.contact-text p{
    font-size:19px;

    line-height:1.9;

    color:#9aa5bb;

    max-width:720px;
}

.contact-actions{
    display:flex;

    flex-direction:column;

    gap:18px;

    position:relative;

    z-index:1;
}

.contact-button{
    display:flex;

    align-items:center;
    justify-content:center;

    min-width:220px;

    padding:20px 30px;

    border-radius:18px;

    font-weight:700;

    transition:0.35s;
}

.contact-button.primary{
    background:
    linear-gradient(
        180deg,
        #00ffae,
        #00d692
    );

    color:#03140f;

    box-shadow:
    0 10px 35px rgba(0,255,174,0.25);
}

.contact-button.primary:hover{
    transform:
    translateY(-4px);
}

.contact-button.secondary{
    border:
    1px solid rgba(255,255,255,0.08);

    background:
    rgba(255,255,255,0.03);

    color:#fff;
}

.contact-button.secondary:hover{
    background:
    rgba(255,255,255,0.07);
}

.footer{
    position:relative;

    padding:34px 0;

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

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.01),
        rgba(255,255,255,0.02)
    );
}

.footer::before{
    content:"";

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:320px;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(0,255,174,0.45),
        transparent
    );
}

.footer-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.footer-logo{
    font-size:28px;

    font-weight:800;

    letter-spacing:-1px;

    margin-bottom:14px;

    color:#ffffff;
}

.footer p{
    max-width:420px;

    line-height:1.7;
}

.footer-links{
    display:flex;
    gap:28px;
}

.footer-links a{
    color:#9aa5bb;
    transition:0.3s;
}

.footer-links a:hover{
    color:#00ffae;
}

.mobile-menu-button{
    display:none;
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.03);
    border-radius:14px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.mobile-menu-button span{
    width:18px;
    height:2px;
    background:#ffffff;
    border-radius:999px;
}

.mobile-menu-button.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2){
    opacity:0;
}

.mobile-menu-button.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

.mobile-menu-button span{
    transition:0.3s;
}

.navbar.scrolled{
    background:rgba(8,10,14,0.98);
    box-shadow:0 14px 50px rgba(0,0,0,0.55);
    border-bottom:1px solid rgba(0,255,174,0.22);
}

.navbar.scrolled .container{
    height:56px;
}

.menu a.active{
    color:#00ffae;
}

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;

    display:flex;
    align-items:center;
    justify-content:center;

    width:58px;
    height:58px;

    border-radius:50%;

    background:#25D366;
    color:#ffffff;

    box-shadow:
    0 10px 35px rgba(37,211,102,0.35);

    transition:0.35s;
}

.floating-whatsapp svg{
    width:31px;
    height:31px;
    fill:currentColor;
}

.floating-whatsapp:hover{
    transform:translateY(-4px);
    box-shadow:
    0 18px 45px rgba(37,211,102,0.45);
}

.hero-light{
    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    pointer-events:none;

    opacity:0.16;

    animation:
    floatingGlow 12s ease-in-out infinite;
}

.hero-light-1{
    width:420px;
    height:420px;

    background:#00ffae;

    top:-140px;
    left:-120px;
}

.hero-light-2{
    width:360px;
    height:360px;

    background:#008cff;

    right:-120px;
    bottom:-140px;

    animation-delay:2s;
}

@keyframes floatingGlow{

    0%{
        transform:
        translateY(0px)
        translateX(0px);
    }

    50%{
        transform:
        translateY(18px)
        translateX(12px);
    }

    100%{
        transform:
        translateY(0px)
        translateX(0px);
    }

}

.mockup-stats{
    display:grid;

    grid-template-columns:
    repeat(2, minmax(0, 1fr));

    gap:16px;

    margin-top:26px;
}

.stat-card:nth-child(3){
    grid-column:1 / -1;
}

.stat-card{
    padding:20px;

    border-radius:20px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.02)
    );

    border:
    1px solid rgba(255,255,255,0.05);

    min-width:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:8px;
}

.stat-card span{
    display:block;

    color:#9aa5bb;

    font-size:12px;

    margin-bottom:10px;
}

.stat-card strong{
    font-size:14px;

    color:#ffffff;
}

.mockup-chart{
    height:180px;

    display:flex;

    align-items:flex-end;

    gap:16px;

    margin-top:38px;
}

.chart-bar{
    flex:1;

    border-radius:18px 18px 0 0;

    background:
    linear-gradient(
        180deg,
        rgba(0,255,174,0.45),
        rgba(0,140,255,0.18)
    );

    animation:
    chartAnimation 4s ease-in-out infinite;
}

.chart-bar:nth-child(1){height:45%;}
.chart-bar:nth-child(2){height:70%;}
.chart-bar:nth-child(3){height:90%;}
.chart-bar:nth-child(4){height:60%;}
.chart-bar:nth-child(5){height:82%;}

.mockup-status{
    margin-top:24px;

    display:grid;
    
    gap:14px;
}

.status-item{
    display:flex;

    align-items:center;

    gap:12px;

    color:#b7c1d4;

    font-size:15px;
}

.status-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#00ffae;

    box-shadow:
    0 0 12px rgba(0,255,174,0.6);
}

@keyframes chartAnimation{

    0%,100%{
        opacity:0.8;
    }

    50%{
        opacity:1;
    }

}
