/*=========================================
RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Inter",sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;

}

/*=========================================
CONTAINER
=========================================*/

.container{

    width:min(1200px,90%);
    margin:auto;

}

/*=========================================
FUNDO
=========================================*/

#webgl{

    position: fixed;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: -2;

    pointer-events: none;

}

.noise{

    position: fixed;

    inset: 0;

    background-image: url("https://grainy-gradients.vercel.app/noise.svg");

    opacity: .08;

    pointer-events: none;

    z-index: -1;

}

/*=========================================
HEADER
=========================================*/

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(0,0,0,.15);

}

header .container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    text-decoration:none;

    color:#fff;

    font-size:32px;

    font-weight:900;

    letter-spacing:3px;

}

.logo span{

    color:#00aaff;

}

nav{

    display:flex;

    gap:45px;

}

nav a{

    color:white;

    text-decoration:none;

    opacity:.7;

    transition:.35s;

    font-size:15px;

}

nav a:hover{

    color:#00aaff;

    opacity:1;

}

.menu-mobile{

    display:none;

    font-size:35px;

    cursor:pointer;

}

/*=========================================
HERO
=========================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.hero-text{

    z-index:5;

}

.mini{

    display:inline-block;

    color:#00aaff;

    font-size:12px;

    letter-spacing:8px;

    margin-bottom:25px;

}

.hero h1{

    font-size: clamp(48px, 6vw, 100px);

    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -3px;

    max-width: 700px;

}

.hero h1 span{

    background:linear-gradient(90deg,#fff,#00aaff);

    background-clip: text;
-webkit-background-clip: text;

    color:transparent;

}

.hero p{

    margin-top:35px;

    color:#9b9b9b;

    font-size:20px;

    line-height:1.8;

    max-width:480px;

}

.hero button{

    margin-top:55px;

    padding:22px 70px;

    border:none;

    border-radius:60px;

    background:#fff;

    color:#000;

    font-size:18px;

    font-weight:800;

    cursor:pointer;

    transition:.45s;

}

.hero button:hover{

    transform:translateY(-6px);

    box-shadow:

    0 0 30px #fff,

    0 0 80px #00aaff;

}

#scene3d{

    width:500px;

    height:500px;

}

.scroll{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    letter-spacing:6px;

    font-size:12px;

    opacity:.5;

}
/*=========================================
SOBRE
=========================================*/

.about{

    position:relative;

    padding:180px 0;

}

.about-container{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:90px;

    align-items:center;

}



.about-image{

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    perspective: 1000px;

}

.about-image img{

    width:400px;

    height:500px;

    object-fit:cover;

    border-radius:30px;

    position:relative;

    z-index:1;

    transition:.20s ease;

    transform-style:preserve-3d;

}


.about-image::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:45%;

    border-radius:0 0 30px 30px;

    background:linear-gradient(

        transparent,

        #000

    );

    z-index:3;

}



.glow{

    position:absolute;

    width:350px;

    height:350px;

    background:#008cff;

    border-radius:50%;

    filter:blur(120px);

    opacity:.45;

    left:-70px;

    top:40px;

}



.about-content h2{

    font-size:clamp(45px,6vw,75px);

    line-height:1;

    margin:25px 0;

    letter-spacing:-3px;

}



.about-content p{

    color:#9d9d9d;

    font-size:19px;

    line-height:1.9;

    margin-top:18px;

    max-width:600px;

}




/*=========================================
TECNOLOGIAS
=========================================*/

.technology{

    padding:180px 0;

    text-align:center;

}



.technology h2{

    font-size:clamp(55px,7vw,95px);

    margin-top:15px;

    margin-bottom:70px;

    letter-spacing:-3px;

}



.tech-grid{

    display:grid;

    grid-template-columns:

        repeat(4,1fr);

    gap:30px;

}



.tech-card{

    background:

    linear-gradient(

        145deg,

        rgba(255,255,255,.06),

        rgba(255,255,255,.02)

    );



    border:

    1px solid

    rgba(255,255,255,.08);



    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:45px 30px;

    transition:.45s;

}



.tech-card:hover{

    transform:

        translateY(-15px)

        rotateX(10deg)

        rotateY(-10deg);



    border-color:#00aaff;

    box-shadow:

    0 20px 60px

    rgba(0,140,255,.25);

}



.tech-card h3{

    font-size:28px;

    margin-bottom:20px;

}



.tech-card p{

    color:#8f8f8f;

    line-height:1.8;

    font-size:16px;

}

/*=========================================
PROJETOS
=========================================*/

.projects-section{

    padding:180px 0;

    position:relative;

    text-align:center;

}

.projects-section h2{

    font-size:clamp(55px,7vw,95px);

    margin:20px 0 80px;

    letter-spacing:-3px;

}



.projects-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    align-items:stretch;

}



/*==============================
CARD
==============================*/

.project-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:28px;

    overflow:hidden;

    transition:.45s ease;

    transform-style:preserve-3d;

}

.project-card:hover{

    transform:

        translateY(-15px)

        rotateX(6deg)

        rotateY(-6deg);

    border-color:#00aaff;

    box-shadow:

        0 25px 60px rgba(0,140,255,.25);

}



/*==============================
IMAGEM
==============================*/

.screen{

    height:240px;

    overflow:hidden;

    background:#050505;

}

.screen img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

    display:block;

}

.project-card:hover .screen img{

    transform:scale(1.08);

}



/*==============================
CONTEÚDO
==============================*/

.project-info{

    padding:30px;

    text-align:left;

}

.project-info h3{

    font-size:28px;

    margin-bottom:18px;

}

.project-info p{

    color:#999;

    line-height:1.8;

    margin-bottom:30px;

    font-size:16px;

}



/*==============================
BOTÃO
==============================*/

.project-info a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#00aaff;

    text-decoration:none;

    font-weight:700;

    letter-spacing:1px;

    transition:.35s;

}

.project-info a:hover{

    color:#fff;

    transform:translateX(8px);

}



/*==============================
EFEITO DE LUZ
==============================*/

.project-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        130deg,

        transparent,

        rgba(255,255,255,.05),

        transparent

    );

    opacity:0;

    transition:.4s;

}

.project-card:hover::before{

    opacity:1;

}



/*=========================================
ESPAÇAMENTO
=========================================*/

.projects-section .mini{

    display:block;

    margin-bottom:10px;

}

/*=========================================
ESTATÍSTICAS
=========================================*/

.stats{

    padding:180px 0;

}

.stats-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

    text-align:center;

}

.stat{

    padding:40px 20px;

}

.stat h2{

    font-size:clamp(70px,8vw,110px);

    font-weight:900;

    line-height:1;

    background:linear-gradient(
        90deg,
        #ffffff,
        #00aaff
    );

    background-clip: text;
-webkit-background-clip: text;

    -webkit-text-fill-color:transparent;

}

.stat p{

    margin-top:15px;

    color:#888;

    font-size:18px;

    letter-spacing:1px;

}




/*=========================================
CTA FINAL
=========================================*/

.final{

    position:relative;

    overflow:hidden;

    padding:220px 0;

    text-align:center;

}

.final-container{

    position:relative;

    z-index:2;

}

.final-light{

    position:absolute;

    width:600px;

    height:600px;

    background:#008cff;

    border-radius:50%;

    filter:blur(180px);

    opacity:.28;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    animation:pulseGlow 6s ease-in-out infinite;

}

.final h1{

    font-size:clamp(70px,13vw,180px);

    font-weight:900;

    letter-spacing:-8px;

    line-height:.9;

}

.final h1 span{

    color:#00aaff;

}

.final p{

    max-width:650px;

    margin:35px auto 0;

    color:#9b9b9b;

    font-size:22px;

    line-height:1.8;

}

.final button{

    margin-top:60px;

    padding:24px 75px;

    border:none;

    border-radius:60px;

    background:#ffffff;

    color:#000;

    font-size:18px;

    font-weight:800;

    cursor:pointer;

    transition:.4s;

}

.final button:hover{

    transform:translateY(-6px);

    box-shadow:
        0 0 35px #ffffff,
        0 0 90px #00aaff;

}




/*=========================================
FOOTER
=========================================*/

footer{

    padding:45px 20px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

footer p{

    color:#666;

    font-size:15px;

}




/*=========================================
ANIMAÇÕES
=========================================*/

@keyframes pulseGlow{

    0%{

        transform:translate(-50%,-50%) scale(1);

        opacity:.25;

    }

    50%{

        transform:translate(-50%,-50%) scale(1.25);

        opacity:.45;

    }

    100%{

        transform:translate(-50%,-50%) scale(1);

        opacity:.25;

    }

}
/*=========================================
TABLETS
=========================================*/

@media (max-width:1100px){

    .hero-container{

        grid-template-columns:1fr;

        text-align:center;

        gap:60px;

    }

    .hero-text{

        display:flex;

        flex-direction:column;

        align-items:center;

    }

    .hero p{

        max-width:650px;

    }

    #scene3d{

        width:380px;
        height:380px;

        margin:auto;

    }

    .about-container{

        grid-template-columns:1fr;

        text-align:center;

        gap:60px;

    }

    .about-content{

        display:flex;

        flex-direction:column;

        align-items:center;

    }

    .about-content p{

        max-width:650px;

    }

    .about-image{

        max-width:380px;

        margin:auto;

    }

    .tech-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .projects-container{

        grid-template-columns:repeat(2,1fr);

    }

    .stats-container{

        grid-template-columns:1fr;

        gap:20px;

    }

}



/*=========================================
CELULARES
=========================================*/

@media (max-width:768px){

    header .container{

        height:80px;

    }

    nav{

        display:none;

    }

    .menu-mobile{

        display:block;

    }

    .hero{

        padding-top:120px;

        min-height:auto;

        padding-bottom:80px;

    }

    .hero-container{

        grid-template-columns:1fr;

        gap:40px;

    }

    .hero h1{

        font-size:48px;

        letter-spacing:-2px;

        line-height:1;

    }

    .hero p{

        font-size:17px;

        max-width:100%;

    }

    .hero button{

        width:100%;

        max-width:320px;

        padding:20px;

    }

    #scene3d{

        width:260px;

        height:260px;

        margin:auto;

        opacity:.35;

    }

    .scroll{

        display:none;

    }

    .about{

        padding:120px 0;

    }

    .about-container{

        grid-template-columns:1fr;

        gap:50px;

    }

    .about-image{

        max-width:280px;

        margin:auto;

    }

    .about-content{

        text-align:center;

    }

    .about-content h2{

        font-size:42px;

    }

    .about-content p{

        font-size:16px;

    }

    .tech-grid{

        grid-template-columns:1fr;

    }

    .tech-card{

        padding:35px;

    }

    .projects-container{

        grid-template-columns:1fr;

    }

    .project-card{

        max-width:420px;

        width:100%;

        margin:auto;

    }

    .screen{

        height:220px;

    }

    .stats{

        padding:120px 0;

    }

    .stat h2{

        font-size:60px;

    }

    .final{

        padding:140px 0;

    }

    .final h1{

        font-size:70px;

        letter-spacing:-3px;

    }

    .final p{

        font-size:18px;

        padding:0 15px;

    }

    .final button{

        width:100%;

        max-width:320px;

        padding:20px;

    }

}

/*=========================================
TELAS PEQUENAS
(480px)
=========================================*/

@media (max-width:480px){

    .container{

        width:92%;

    }

    header{

        padding:0;

    }

    .logo{

        font-size:26px;

        letter-spacing:2px;

    }

    .mini{

        font-size:11px;

        letter-spacing:5px;

    }

    .hero{

        padding-top:110px;

        padding-bottom:70px;

    }

    .hero h1{

        font-size:40px;

        letter-spacing:-1px;

    }

    .hero p{

        font-size:15px;

        line-height:1.7;

    }

    .hero button{

        width:100%;

        font-size:16px;

        padding:18px;

    }

    #scene3d{

        width:220px;

        height:220px;

        opacity:.25;

    }



/*=========================
SOBRE
=========================*/

    .about{

        padding:90px 0;

    }

    .about-image{

        max-width:240px;

    }

    .glow{

        width:220px;

        height:220px;

        filter:blur(90px);

    }

    .about-content h2{

        font-size:34px;

    }

    .about-content p{

        font-size:15px;

    }



/*=========================
TECNOLOGIAS
=========================*/

    .technology{

        padding:90px 0;

    }

    .technology h2{

        font-size:38px;

    }

    .tech-card{

        padding:28px;

    }

    .tech-card h3{

        font-size:22px;

    }



/*=========================
PROJETOS
=========================*/

    .projects-section{

        padding:90px 0;

    }

    .projects-section h2{

        font-size:38px;

    }

    .screen{

        height:190px;

    }

    .project-info{

        padding:22px;

    }

    .project-info h3{

        font-size:22px;

    }

    .project-info p{

        font-size:15px;

    }



/*=========================
ESTATÍSTICAS
=========================*/

    .stats{

        padding:90px 0;

    }

    .stat h2{

        font-size:48px;

    }

    .stat p{

        font-size:15px;

    }



/*=========================
CTA
=========================*/

    .final{

        padding:110px 0;

    }

    .final h1{

        font-size:52px;

    }

    .final p{

        font-size:16px;

    }

    .final button{

        width:100%;

        font-size:16px;

        padding:18px;

    }

}



/*=========================================
IMAGENS
=========================================*/

img{

    max-width:100%;

    display:block;

}



/*=========================================
LINKS
=========================================*/

a{

    text-decoration:none;

}



/*=========================================
SEÇÕES
=========================================*/

section{

    position:relative;

    overflow:hidden;

}



/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#060606;

}

::-webkit-scrollbar-thumb{

    background:#00aaff;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#32b8ff;

}
.project-card{

    position: relative;

}

.project-card a{

    position: relative;

    z-index: 100;

    pointer-events: auto;

    cursor: pointer;

}
/*=========================
  BOTÃO WHATSAPP
=========================*/

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:
    0 10px 30px rgba(37,211,102,.45);

    z-index:9999;

    transition:.35s;

    animation:whatsFloat 2.5s infinite;

}

.whatsapp-float:hover{

    transform:scale(1.12);

    box-shadow:
    0 15px 40px rgba(37,211,102,.7);

}

.whatsapp-float img{

    width:34px;

    height:34px;

    filter:invert(1);

}

@keyframes whatsFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

}

@media(max-width:768px){

    .whatsapp-float{

        width:60px;

        height:60px;

        right:18px;

        bottom:18px;

    }

    .whatsapp-float img{

        width:30px;

        height:30px;

    }

}
.whatsapp-float::before{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:50%;

    border:2px solid #25D366;

    animation:pulseWhats 2s infinite;

}

@keyframes pulseWhats{

    from{

        transform:scale(1);

        opacity:.7;

    }

    to{

        transform:scale(1.8);

        opacity:0;

    }

}
.menu-mobile{
    display:none;
    font-size:32px;
    cursor:pointer;
    z-index:1001;
}

@media(max-width:768px){

    .menu-mobile{
        display:block;
    }

    nav{
        position:fixed;
        top:80px;
        right:-100%;
        width:260px;
        height:calc(100vh - 80px);
        background:#050505;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:flex-start;
        padding-top:40px;
        gap:30px;
        transition:.4s;
        z-index:1000;
    }

    nav.active{
        right:0;
    }

    nav a{
        margin:0;
        font-size:20px;
    }
}

