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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #080412;
    color: #fff;
    overflow-x: hidden;
}

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


.header{
   
    top:0;
    left:0;
    width:100%;
    height:120px;
    padding:0 8%;

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

    background:rgba(8,4,18,.95);
    backdrop-filter:blur(12px);

    z-index:999;
}


.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
  background:rgb(231, 231, 25)
colorrgb(110, 228, 0)ff;
    

    
}

.logo img{
   max-height:150px;
    width:auto;
    display:block;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #d9d9d9;
    font-weight: 500;
    transition: .3s;
}

.nav a:hover {
    color: #9f5cff;
}

.btn-header {
    text-decoration: none;
    background: #8d46ff;
    color: #fff;
    padding: 14px 24px;
    border-radius: 14px;
    transition: .3s;
    font-weight: 600;
}

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

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

.hero {
    min-height: 100vh;
    padding: 180px 8% 100px;

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

    background:
        radial-gradient(circle at top left,
            rgba(159, 92, 255, .18),
            transparent 40%);
}

.hero-text {
    flex: 1;
}

.tag {
    display: inline-block;
    background: rgba(159, 92, 255, .12);
    color: #bb8cff;

    padding: 12px 22px;
    border-radius: 50px;

    margin-bottom: 25px;
    font-weight: 600;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    max-width: 750px;
}

.hero h1 span {
    color: #9f5cff;
}

.hero p {
    color: #b6b6b6;
    font-size: 20px;
    line-height: 1.8;
    margin: 30px 0;
    max-width: 650px;
}

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

.btn-primary {
    background: #8d46ff;
    color: #fff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 14px;
    transition: .3s;
    font-weight: 600;
}

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

.btn-secondary {
    border: 1px solid #8d46ff;
    color: #fff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 14px;
    transition: .3s;
}

.btn-secondary:hover {
    background: #8d46ff;
}

/* HERO CARD */

.hero-card {
    width: 350px;
    padding: 40px;

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

    border-radius: 28px;
    backdrop-filter: blur(14px);

    box-shadow:
        0 0 40px rgba(159, 92, 255, .08);
}

.hero-card h3 {
    font-size: 42px;
    color: #9f5cff;
    margin-bottom: 15px;
}

.hero-card p {
    color: #b6b6b6;
    line-height: 1.7;
}

/* =========================
   SERVICES
========================= */

.services {
    padding: 110px 8%;
}

.section-title {
    text-align: center;
}

.section-title span {
    color: #9f5cff;
    font-weight: 700;
}

.section-title h2 {
    font-size: 46px;
    margin-top: 12px;
}

/* CARDS */

.cards {
    margin-top: 60px;

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

    gap: 20px;
    flex-wrap: nowrap;
}

.card {
    flex: 1;
    max-width: 280px;

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

    padding: 35px;
    border-radius: 25px;

    transition: .3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #9f5cff;
}

.card h3 {
    color: #9f5cff;
    margin-bottom: 18px;
    font-size: 23px;
}

.card p {
    color: #b6b6b6;
    line-height: 1.8;
}

/* =========================
   ABOUT
========================= */

.about {
    padding: 110px 8%;
}

.about-content {
    max-width: 800px;
}

.about span {
    color: #9f5cff;
    font-weight: 700;
}

.about h2 {
    font-size: 50px;
    margin: 20px 0;
    line-height: 1.2;
}

.about p {
    color: #b6b6b6;
    line-height: 1.8;
    font-size: 18px;
}

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

.cta {
    text-align: center;
    padding: 120px 8%;

    background:
        linear-gradient(135deg,
            #12081d,
            #251042);
}

.cta h2 {
    font-size: 50px;
}

.cta p {
    margin: 20px 0 35px;
    color: #cfcfcf;
}

/* BOTÃO PISCANDO */

.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

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

.footer {
    text-align: center;
    padding: 35px;
    color: #868686;
}

/* =========================
   REDES FLUTUANTES
========================= */

.social-float {
    position: fixed;
    right: 20px;
    bottom: 20px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    z-index: 9999;
}

.social {
    width: 65px;
    height: 65px;

    border-radius: 50%;

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

    text-decoration: none;
    color: white;
    font-size: 30px;

    animation: pulse 1.5s infinite;
}

.social img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.instagram {
    width: 65px;
    height: 50px;   
    object-fit: contain;
}

.linkedin {
    background: #0077b5;
    font-weight: bold;
}

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

@media(max-width:1100px) {

    .cards {
        flex-wrap: wrap;
    }

    .card {
        max-width: 340px;
    }
}

@media(max-width:900px) {

    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        text-align: center;
        justify-content: center;
        padding-top: 220px;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-card {
        width: 100%;
        max-width: 420px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 400px;
    }

    .about {
        text-align: center;
    }

    .about h2,
    .cta h2 {
        font-size: 34px;
    }

    .social {
        width: 58px;
        height: 58px;
        font-size: 26px;
    }
}