:root{
    --bg:#05060a;
    --bg2:#0b0d13;
    --card:#10121a;
    --purple:#7957ff;
    --purple2:#a17cff;
    --blue:#00d9ff;
    --text:#ffffff;
    --muted:#858895;
    --border:rgba(255,255,255,.09);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    width:600px;
    height:600px;
    top:-300px;
    left:-200px;
    background:var(--purple);
    filter:blur(180px);
    opacity:.13;
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    right:-250px;
    bottom:-250px;
    background:var(--blue);
    filter:blur(180px);
    opacity:.08;
    z-index:-2;
}


/* NAVBAR */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    backdrop-filter:blur(20px);
    background:rgba(5,6,10,.65);
    border-bottom:1px solid var(--border);
}

.navbar{
    max-width:1200px;
    height:76px;
    padding:0 25px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    color:#fff;
    font-size:21px;
    font-weight:800;
    text-decoration:none;
    letter-spacing:-1px;
}

.logo span,
.footer-logo span{
    color:var(--purple2);
}

.nav-links{
    display:flex;
    gap:32px;
}

.nav-links a{
    color:#999ba5;
    text-decoration:none;
    font-size:13px;
    transition:.3s;
}

.nav-links a:hover{
    color:#fff;
}

.nav-button{
    color:#050505;
    background:#fff;
    padding:11px 18px;
    border-radius:10px;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    transition:.3s;
}

.nav-button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 30px rgba(255,255,255,.15);
}


/* HERO */

.hero{
    max-width:1200px;
    min-height:100vh;
    margin:auto;
    padding:150px 25px 100px;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:9px;

    padding:8px 13px;

    border:1px solid rgba(121,87,255,.35);
    background:rgba(121,87,255,.08);

    border-radius:50px;

    color:#bcaeff;
    font-size:11px;
    font-weight:600;

    margin-bottom:25px;
}

.badge span{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#8b6cff;
    box-shadow:0 0 15px #7957ff;
}

.hero h1{
    max-width:650px;

    font-size:clamp(48px,6vw,76px);
    line-height:.98;
    letter-spacing:-4px;

    margin-bottom:25px;
}

.hero h1 strong{
    display:block;

    background:linear-gradient(
        90deg,
        #fff,
        #a37eff,
        #00d9ff
    );

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent;
}

.hero p{
    max-width:560px;

    color:var(--muted);
    font-size:16px;
    line-height:1.75;
}

.hero-buttons{
    display:flex;
    gap:13px;
    margin-top:32px;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:15px 23px;

    color:#fff;
    background:linear-gradient(
        135deg,
        var(--purple),
        #5434d8
    );

    text-decoration:none;
    font-size:13px;
    font-weight:700;

    border-radius:12px;

    box-shadow:
        0 15px 40px rgba(121,87,255,.25);

    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);

    box-shadow:
        0 20px 50px rgba(121,87,255,.45);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;

    padding:15px 23px;

    color:#fff;
    border:1px solid var(--border);
    border-radius:12px;

    text-decoration:none;
    font-size:13px;
    font-weight:600;

    transition:.3s;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.05);
}


/* HERO STATS */

.hero-stats{
    display:flex;
    gap:35px;
    margin-top:45px;
}

.hero-stats div{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.hero-stats strong{
    font-size:16px;
}

.hero-stats span{
    color:#666a76;
    font-size:11px;
}


/* MOCKUP */

.hero-visual{
    position:relative;
    perspective:1200px;
}

.glow{
    position:absolute;
    width:300px;
    height:300px;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    background:var(--purple);

    filter:blur(130px);

    opacity:.25;
}

.browser-card{
    position:relative;
    z-index:2;

    transform:
        rotateY(-12deg)
        rotateX(7deg)
        rotateZ(1deg);

    transform-style:preserve-3d;

    transition:transform .15s ease;

    border-radius:20px;

    box-shadow:
        0 50px 100px rgba(0,0,0,.6),
        0 0 80px rgba(121,87,255,.12);
}

.browser-card::after{
    content:"";

    position:absolute;
    width:90%;
    height:20px;

    left:5%;
    bottom:-25px;

    background:#000;

    filter:blur(15px);

    opacity:.7;
}

.browser-top{
    height:44px;

    display:flex;
    align-items:center;

    padding:0 15px;

    background:#171923;

    border:1px solid rgba(255,255,255,.12);

    border-bottom:none;

    border-radius:20px 20px 0 0;
}

.browser-dots{
    display:flex;
    gap:6px;
}

.browser-dots i{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#555;
}

.browser-url{
    width:55%;
    height:22px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#0c0d12;

    border-radius:6px;

    color:#575b68;
    font-size:9px;
}

.website-preview{
    min-height:420px;
    padding:25px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.12);
    border-top:none;

    border-radius:0 0 20px 20px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(121,87,255,.4),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #11131d,
            #07080c
        );
}

.preview-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    color:#fff;

    font-size:12px;
}

.preview-nav b{
    letter-spacing:2px;
}

.preview-nav div{
    width:60px;
    height:6px;

    border-radius:20px;

    background:#333743;
}

.preview-content{
    margin-top:70px;
}

.preview-content small{
    color:#9178ff;
    font-size:8px;
    letter-spacing:2px;
}

.preview-content h2{
    max-width:400px;

    font-size:32px;
    line-height:1.05;

    margin:12px 0;
}

.preview-content p{
    color:#777b88;
    font-size:11px;

    margin-bottom:20px;
}

.preview-content button{
    border:none;

    padding:10px 17px;

    background:var(--purple);
    color:white;

    border-radius:7px;

    font-size:10px;
}

.preview-cards{
    display:flex;
    gap:10px;

    margin-top:65px;
}

.preview-cards div{
    flex:1;
    height:65px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:10px;
}


/* SECTIONS */

.section{
    max-width:1200px;
    margin:auto;
    padding:110px 25px;
}

.section-heading{
    max-width:650px;
    margin:0 auto 60px;
    text-align:center;
}

.section-heading span{
    color:#927bff;
    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
}

.section-heading h2{
    margin-top:12px;

    font-size:43px;
    line-height:1.1;
    letter-spacing:-2px;
}

.section-heading h2 strong{
    color:#927bff;
}

.section-heading p{
    color:#777b87;
    line-height:1.7;
    font-size:14px;
    margin-top:15px;
}


/* SERVICE CARDS */

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service-card{
    position:relative;

    padding:30px;

    min-height:280px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.025)
        );

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    transform-style:preserve-3d;

    transition:border-color .3s;
}

.service-card::before{
    content:"";

    position:absolute;

    width:150px;
    height:150px;

    right:-70px;
    top:-70px;

    background:var(--purple);

    filter:blur(80px);

    opacity:.15;
}

.service-card:hover{
    border-color:rgba(121,87,255,.4);
}

.service-icon{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(121,87,255,.12);

    border:1px solid rgba(121,87,255,.25);

    border-radius:14px;

    color:#a992ff;

    font-size:21px;

    margin-bottom:25px;
}

.service-card h3{
    font-size:19px;
    margin-bottom:12px;
}

.service-card p{
    color:#777b87;

    font-size:13px;
    line-height:1.7;

    margin-bottom:25px;
}

.service-card a{
    color:#a48eff;

    text-decoration:none;

    font-size:12px;
    font-weight:700;
}


/* PROJECTS */

.project-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.project-card{
    position:relative;

    height:330px;

    border-radius:22px;

    overflow:hidden;

    border:1px solid var(--border);

    transition:.5s;
}

.project-card:hover{
    transform:translateY(-6px);
}

.project-one{
    background:
        radial-gradient(
            circle at 70% 30%,
            #754eff,
            transparent 30%
        ),
        linear-gradient(135deg,#16121f,#07080b);
}

.project-two{
    background:
        radial-gradient(
            circle at 70% 30%,
            #0e9ec7,
            transparent 30%
        ),
        linear-gradient(135deg,#111b20,#07080b);
}

.project-three{
    background:
        radial-gradient(
            circle at 70% 30%,
            #ff7138,
            transparent 30%
        ),
        linear-gradient(135deg,#211613,#07080b);
}

.project-four{
    background:
        radial-gradient(
            circle at 70% 30%,
            #7c4dff,
            transparent 30%
        ),
        linear-gradient(135deg,#171521,#07080b);
}

.project-overlay{
    position:absolute;

    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:30px;

    background:
        linear-gradient(
            transparent 20%,
            rgba(0,0,0,.9)
        );
}

.project-overlay span{
    color:#a893ff;
    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
}

.project-overlay h3{
    margin-top:8px;
    font-size:25px;
}

.project-overlay p{
    color:#9699a4;
    font-size:12px;
    margin-top:8px;
}

.project-btn{
    width:max-content;

    margin-top:18px;

    padding:9px 15px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;
}

.project-btn:hover{
    background:#fff;
    color:#000;
}


/* PRICING */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.price-card{
    position:relative;

    padding:32px;

    background:#0d0f15;

    border:1px solid var(--border);

    border-radius:20px;
}

.price-card.featured{
    border-color:#7957ff;

    box-shadow:
        0 0 60px rgba(121,87,255,.12);

    transform:scale(1.03);
}

.popular{
    position:absolute;

    top:18px;
    right:18px;

    padding:6px 10px;

    background:var(--purple);

    border-radius:20px;

    font-size:8px;
    font-weight:800;
}

.price-card h3{
    font-size:20px;
}

.price-card > p{
    color:#777b87;
    font-size:12px;
    margin-top:8px;
}

.price{
    font-size:42px;
    font-weight:800;
    margin:25px 0;
}

.price-card ul{
    list-style:none;
    margin-bottom:30px;
}

.price-card li{
    color:#989ba5;
    padding:9px 0;
    font-size:12px;
}

.price-card li::first-letter{
    color:#7957ff;
}

.price-button{
    display:block;

    padding:13px;

    text-align:center;

    color:#fff;

    background:rgba(255,255,255,.06);

    border:1px solid var(--border);

    border-radius:10px;

    text-decoration:none;

    font-size:12px;
    font-weight:700;

    transition:.3s;
}

.price-button:hover{
    background:var(--purple);
    border-color:var(--purple);
}


/* CONTACT */

.contact-section{
    max-width:1200px;
    margin:auto;
    padding:80px 25px 120px;
}

.contact-box{
    position:relative;

    overflow:hidden;

    padding:90px 30px;

    text-align:center;

    border:1px solid var(--border);

    border-radius:30px;

    background:
        radial-gradient(
            circle at center,
            rgba(121,87,255,.2),
            transparent 55%
        ),
        #0c0e14;
}

.contact-box span{
    color:#9580ff;

    font-size:10px;
    font-weight:800;

    letter-spacing:2px;
}

.contact-box h2{
    font-size:48px;
    letter-spacing:-2px;

    margin:15px 0;
}

.contact-box h2 strong{
    background:linear-gradient(
        90deg,
        #a17cff,
        #00d9ff
    );

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent;
}

.contact-box p{
    color:#7c808b;
    font-size:14px;

    margin-bottom:30px;
}


/* WHATSAPP */

.whatsapp{
    position:fixed;

    right:25px;
    bottom:25px;

    width:62px;
    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25d366;

    color:#fff;

    border-radius:50%;

    text-decoration:none;

    font-size:30px;

    z-index:999;

    box-shadow:
        0 10px 35px rgba(37,211,102,.35);

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%,100%{
        box-shadow:
            0 10px 35px rgba(37,211,102,.35);
    }

    50%{
        box-shadow:
            0 10px 55px rgba(37,211,102,.65);
    }

}


/* FOOTER */

footer{
    padding:50px 25px;

    text-align:center;

    border-top:1px solid var(--border);

    color:#666a75;
}

.footer-logo{
    color:#fff;

    font-size:20px;
    font-weight:800;

    margin-bottom:12px;
}

footer p{
    font-size:12px;
    margin-bottom:15px;
}

footer small{
    font-size:10px;
}


/* RESPONSIVO */

@media(max-width:850px){

    .nav-links{
        display:none;
    }

    .hero{
        grid-template-columns:1fr;
        padding-top:130px;
    }

    .hero h1{
        font-size:50px;
    }

    .hero-visual{
        margin-top:30px;
    }

    .browser-card{
        transform:none;
    }

    .service-grid,
    .pricing-grid{
        grid-template-columns:1fr;
    }

    .project-grid{
        grid-template-columns:1fr;
    }

    .price-card.featured{
        transform:none;
    }

}


@media(max-width:500px){

    .navbar{
        padding:0 18px;
    }

    .nav-button{
        padding:9px 12px;
        font-size:11px;
    }

    .hero{
        padding-left:18px;
        padding-right:18px;
    }

    .hero h1{
        font-size:43px;
        letter-spacing:-2.5px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .hero-stats{
        gap:20px;
    }

    .section{
        padding:80px 18px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .website-preview{
        min-height:330px;
    }

    .preview-content{
        margin-top:45px;
    }

    .preview-content h2{
        font-size:24px;
    }

    .contact-box{
        padding:70px 20px;
    }

    .contact-box h2{
        font-size:35px;
    }

}