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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#07070a;
    color:#fff;
    line-height:1.6;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

section{
    overflow:hidden;
}

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

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

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

    padding:20px 8%;

    background:rgba(7,7,10,.7);
    backdrop-filter:blur(12px);

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

    z-index:999;
}

.logo{
    font-size:1.5rem;
    font-weight:800;
    color:#8b5cf6;
}

nav{
    display:flex;
    gap:28px;
}

nav a{
    color:#cbd5e1;
    transition:.3s;
}

nav a:hover{
    color:#fff;
}

.header-btn{
    padding:14px 26px;
    background:#8b5cf6;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.header-btn:hover{
    background:#7c3aed;
    transform:translateY(-2px);
}

/* ========================================
   BLUR
======================================== */

.blur{
    position:fixed;
    width:350px;
    height:350px;
    background:#7c3aed;
    border-radius:50%;
    filter:blur(170px);
    opacity:.18;
    z-index:-1;
}

.blur-1{
    top:-120px;
    left:-120px;
}

.blur-2{
    right:-120px;
    bottom:-120px;
}

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

.hero-services{

    padding:170px 8% 80px;

    text-align:center;

}

.tag,
.section-tag{

    color:#8b5cf6;

    font-size:.9rem;

    font-weight:700;

    letter-spacing:2px;

}

.hero-services h1{

    margin:20px auto;

    max-width:900px;

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.1;

}

.hero-services h1 span{

    color:#8b5cf6;

}

.hero-services p{

    max-width:650px;

    margin:auto;

    color:#94a3b8;

}

/* ========================================
   CATEGORIAS
======================================== */

.service-category{

    padding:20px 8% 90px;

}

.category-header{

    margin-bottom:45px;

}

.category-header h2{

    margin-top:10px;

    font-size:2.3rem;

}

/* ========================================
   GRID
======================================== */

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:28px;

}

/* ========================================
   CARD
======================================== */

.service-card{

    display:flex;

    flex-direction:column;

    padding:30px;

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

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:#8b5cf6;

    background:rgba(139,92,246,.08);

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.service-icon{

    width:65px;
    height:65px;

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

    margin-bottom:25px;

    border-radius:16px;

    background:#8b5cf6;

    font-size:30px;

}

.service-card h3{

    font-size:1.5rem;

    margin-bottom:15px;

}

.service-card p{

    color:#94a3b8;

    margin-bottom:20px;

}

/* ========================================
   LISTA
======================================== */

.service-card ul{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:10px;

    margin-bottom:30px;

}

.service-card ul li{

    color:#cbd5e1;

    font-size:.95rem;

}

/* ========================================
   BOTÃO
======================================== */

.service-card a{

    margin-top:auto;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:13px 18px;

    border-radius:12px;

    border:1px solid rgba(139,92,246,.4);

    color:#8b5cf6;

    font-weight:600;

    transition:.3s;

}

.service-card a:hover{

    background:#8b5cf6;

    color:#fff;

}

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

.footer-simple{

    margin-top:60px;

    padding:25px 8%;

    text-align:center;

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

    color:#6b7280;

    font-size:12px;

    letter-spacing:1px;

}

/* ========================================
   RESPONSIVO
======================================== */

@media(max-width:768px){

    header{

        flex-direction:column;

        gap:18px;

        padding:18px 6%;

    }

    nav{

        justify-content:center;

        flex-wrap:wrap;

    }

    .header-btn{

        width:100%;

        text-align:center;

    }

    .hero-services{

        padding:150px 6% 70px;

    }

    .hero-services h1{

        font-size:2.6rem;

    }

    .service-category{

        padding:20px 6% 70px;

    }

    .category-header{

        text-align:center;

    }

    .category-header h2{

        font-size:2rem;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .blur{

        display:none;

    }

}
