/* ==========================
RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;

}

img{
    max-width:100%;
    height:auto;
}



/* ==========================
HEADER
========================== */

.header{

    width:100%;
    padding:20px 6%;

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

    gap:30px;

    background:#fff;

}


.logo{

    color:#820AD1;

    font-size:28px;

    font-weight:800;

}


.nav{

    display:flex;

    gap:25px;

}


.nav a{

    text-decoration:none;

    color:#333;

    font-weight:600;

}


.btn-header{

    background:#820AD1;

    color:#fff;

    padding:14px 25px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

}





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

.hero{


    padding:80px 6%;


    display:grid;


    grid-template-columns:
    minmax(0,1fr)
    minmax(280px,420px);


    gap:60px;


    align-items:center;


    background:linear-gradient(
    135deg,
    #820AD1,
    #a53be8
    );


}



.hero-text{

    max-width:650px;

    color:white;

}


.tag{

    display:inline-block;

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

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:25px;

    font-weight:700;

}



.hero h1{

    font-size:clamp(32px,5vw,55px);

    line-height:1.15;

    margin-bottom:25px;

}


.hero h1 span{

    display:block;

}



.hero p{

    font-size:18px;

    max-width:600px;

    margin-bottom:35px;

}



.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}



.btn-primary,
.btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-height:52px;

    padding:0 30px;

    border-radius:10px;

    font-weight:700;

    text-decoration:none;

}



.btn-primary{

    background:#fff;

    color:#820AD1;

}


.btn-secondary{

    color:#fff;

    border:2px solid #fff;

}



.hero-image{

    display:flex;

    justify-content:center;

}



.hero-image img{

    width:100%;

    max-width:380px;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}





/* ==========================
NUMEROS
========================== */


.numbers{


    padding:70px 6%;


    display:grid;


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


    gap:25px;

}



.numbers div{


    background:#fafafa;

    padding:30px;

    border-radius:20px;

    text-align:center;

}



.numbers h2{

    color:#820AD1;

    font-size:40px;

}





/* ==========================
SERVIÇOS
========================== */


.services,
.tech{

    padding:80px 6%;

    background:#fafafa;

}


.section-title{

    text-align:center;

    margin-bottom:50px;

}


.section-title span{

    color:#820AD1;

    font-weight:800;

}


.section-title h2{

    font-size:clamp(28px,4vw,42px);

    margin-top:15px;

}




.cards{

    display:grid;

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

    gap:25px;

}



.card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    border:1px solid #eee;

}


.card h3{

    color:#820AD1;

    margin-bottom:15px;

}






/* ==========================
DESENVOLVIMENTO
========================== */


.development{


    padding:80px 6%;


    display:grid;


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


    gap:60px;


    align-items:center;


}



.dev-image img{


    width:100%;

    max-width:520px;

    margin:auto;

    border-radius:20px;

}



.dev-text{

    max-width:550px;

}


.dev-text span{

    color:#820AD1;

    font-weight:800;

}



.dev-text h2{

    font-size:clamp(28px,4vw,42px);

    margin:20px 0;

}



.dev-text li{

    list-style:none;

    margin:12px 0;

}







/* ==========================
TECNOLOGIAS
========================== */


.tech{

    text-align:center;

}


.tech-list{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

    margin-top:35px;

}



.tech-list span{

    background:#820AD1;

    color:white;

    padding:10px 22px;

    border-radius:30px;

}




/* ==========================
SOBRE
========================== */


.about{

    padding:80px 6%;

    text-align:center;

}



.about-content{

    max-width:800px;

    margin:auto;

}



.about span{

    color:#820AD1;

    font-weight:800;

}


.about h2{

    font-size:clamp(30px,4vw,42px);

    margin:20px 0;

}





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


.cta{


    margin:70px 6%;


    padding:70px 25px;


    background:#820AD1;


    color:white;


    text-align:center;


    border-radius:25px;


}



.cta h2{

    font-size:clamp(28px,4vw,45px);

    margin-bottom:25px;

}


.cta p{

    font-size:18px;

    margin-bottom:40px;

}



.cta .btn-primary{


    margin-right:15px;

}



.instagram-link{


    display:inline-flex;

    align-items:center;

    justify-content:center;


    padding:15px 30px;


    border:2px solid white;


    border-radius:10px;


    color:white;


    text-decoration:none;


    font-weight:700;


}





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


.footer{

    background:#111;

    color:white;

    text-align:center;

    padding:35px;

}



.social-float{

    display:flex;

    justify-content:center;

    gap:20px;

    padding:35px;

}


.social{

    width:60px;

    height:60px;

    border-radius:50%;

    overflow:hidden;

}


.social img{

    width:100%;

    height:100%;

    object-fit:cover;

}





/* ==========================
TABLET
========================== */

@media(max-width:1000px){


.header{

    flex-wrap:wrap;

    justify-content:center;

}


.hero{

    grid-template-columns:1fr;

    text-align:center;

}


.hero-text{

    margin:auto;

}


.hero-buttons{

    justify-content:center;

}



.cards{

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

}



.numbers{

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

}



.development{

    grid-template-columns:1fr;

}



.dev-text{

    margin:auto;

    text-align:center;

}



}





/* ==========================
CELULAR
========================== */


@media(max-width:600px){


.header{

    flex-direction:column;

    padding:20px;

}


.nav{

    flex-wrap:wrap;

    justify-content:center;

}



.btn-header{

    width:100%;

    text-align:center;

}



.hero{

    padding:55px 20px;

}



.hero h1{

    font-size:34px;

}



.hero p{

    font-size:16px;

}



.hero-buttons{

    flex-direction:column;

    width:100%;

}



.btn-primary,
.btn-secondary{

    width:100%;

}



.hero-image img{

    max-width:300px;

}



.numbers,
.cards{

    grid-template-columns:1fr;

}



.services,
.tech,
.development,
.about{

    padding:60px 20px;

}



.cta{

    margin:40px 20px;

    padding:55px 20px;

}



.cta .btn-primary,
.instagram-link{

    width:100%;

    margin:10px 0;

}



.social-float{

    padding:25px;

}



}