:root{

    --primary:#18335d;
    --primary-light:#2f5ea8;

    --dark:#08101d;
    --dark-2:#0d1728;

    --white:#ffffff;

    --text:#c9d3e7;

    --border:rgba(255,255,255,.08);

    --radius:24px;

    --container:1280px;

}

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

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:var(--dark);

    color:white;

    overflow-x:hidden;

}

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

a{
    text-decoration:none;
}

.container{

    width:92%;
    max-width:var(--container);

    margin:auto;

}

/* =========================
BACKGROUND
========================= */

body::before{

    content:'';

    position:fixed;

    width:700px;
    height:700px;

    border-radius:50%;

    background:#18335d;

    filter:blur(180px);

    opacity:.25;

    top:-300px;
    left:-300px;

    z-index:-2;

}

body::after{

    content:'';

    position:fixed;

    width:600px;
    height:600px;

    border-radius:50%;

    background:#2f5ea8;

    filter:blur(180px);

    opacity:.15;

    bottom:-250px;
    right:-250px;

    z-index:-2;

}

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

.header{

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(25px);

    background:rgba(8,16,29,.75);

    border-bottom:1px solid var(--border);

}

nav{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    height:42px;

}

.menu{

    display:flex;
    gap:40px;

}

.menu a{

    color:white;

    opacity:.8;

    transition:.3s;

}

.menu a:hover{

    opacity:1;

}

.btn-primary{

    display:inline-flex;

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

    padding:16px 28px;

    border-radius:14px;

    font-weight:600;

    color:white;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-flex;

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

    padding:16px 28px;

    border-radius:14px;

    color:white;

    border:1px solid var(--border);

}

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

.hero{

    padding-top:120px;

    min-height:100vh;

    display:flex;

    align-items:center;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:80px;

}

.tag{

    display:inline-flex;

    padding:10px 16px;

    border-radius:999px;

    border:1px solid var(--border);

    margin-bottom:30px;

    color:#d8e5ff;

    font-size:14px;

}

.hero-content h1{

    font-size:clamp(48px,6vw,82px);

    line-height:1.05;

    font-weight:800;

    margin-bottom:28px;

}

.hero-content p{

    font-size:20px;

    line-height:1.8;

    color:var(--text);

    max-width:650px;

}

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

/* =========================
MOCKUP
========================= */

.hero-visual{

    position:relative;

    min-height:550px;

}

.dashboard-card{

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

    backdrop-filter:blur(25px);

    border:1px solid var(--border);

}

.card-main{

    height:420px;

    border-radius:30px;

    padding:35px;

    position:relative;

}

.dashboard-top{

    height:180px;

    border-radius:20px;

    margin-bottom:30px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

}

.card-main h3{

    font-size:32px;

    margin-bottom:15px;

}

.card-main p{

    color:var(--text);

    line-height:1.8;

}

.card-floating{

    position:absolute;

    right:-30px;
    top:70px;

    padding:18px 24px;

    border-radius:18px;

}

.card-floating-2{

    position:absolute;

    left:-30px;
    bottom:50px;

    padding:18px 24px;

    border-radius:18px;

}

/* =========================
SECTIONS
========================= */

.partners,
.numbers,
.services,
.cases,
.cta{

    padding:120px 0;

}

.section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px auto;

}

.section-title span{

    color:#8db5ff;

    display:block;

    margin-bottom:15px;

}

.section-title h2{

    font-size:clamp(36px,4vw,64px);

    line-height:1.1;

}

/* =========================
PARCEIROS
========================= */

.partners-grid{

    display:grid;

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

    gap:20px;

    margin-top:50px;

}

.partners-grid div{

    height:120px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:24px;

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

    border:1px solid var(--border);

    font-size:24px;

    font-weight:700;

}

/* =========================
NUMBERS
========================= */

.numbers-grid{

    display:grid;

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

    gap:24px;

}

.number-card{

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

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px;

}

.number-card h2{

    font-size:64px;

    margin-bottom:10px;

}

.number-card p{

    color:var(--text);

}

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

.services-grid{

    display:grid;

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

    gap:24px;

}

.service-card{

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

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:#4f81d3;

}

.service-card h3{

    font-size:32px;

    margin-bottom:20px;

}

.service-card p{

    color:var(--text);

    line-height:1.8;

}

/* =========================
CASES
========================= */

.cases-grid{

    display:grid;

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

    gap:30px;

}

.case-card{

    overflow:hidden;

    border-radius:28px;

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

    border:1px solid var(--border);

}

.case-image{

    height:320px;

    overflow:hidden;

}

.case-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;

}

.case-card:hover img{

    transform:scale(1.08);

}

.case-content{

    padding:35px;

}

.case-content h3{

    font-size:28px;

    margin-bottom:15px;

}

.case-content p{

    color:var(--text);

}

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

.cta-box{

    background:linear-gradient(
        135deg,
        rgba(24,51,93,.95),
        rgba(47,94,168,.95)
    );

    border-radius:40px;

    padding:90px;

    text-align:center;

}

.cta-box span{

    color:#cfe0ff;

}

.cta-box h2{

    margin:25px 0;

    font-size:clamp(42px,5vw,72px);

    line-height:1.1;

}

.cta-box p{

    color:#d8e5ff;

    margin-bottom:35px;

}

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

footer{

    padding:60px 0;

    border-top:1px solid var(--border);

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-content img{

    height:36px;

}

.footer-content p{

    color:var(--text);

}

/* =========================
MOBILE
========================= */

@media(max-width:1024px){

    .hero-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .services-grid,
    .cases-grid,
    .numbers-grid,
    .partners-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .menu{
        display:none;
    }

    nav{
        height:80px;
    }

    .hero{

        padding-top:60px;

        min-height:auto;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-content p{

        font-size:17px;

    }

    .dashboard-card{

        transform:none !important;

    }

    .card-floating,
    .card-floating-2{

        position:relative;

        left:auto;
        right:auto;
        top:auto;
        bottom:auto;

        margin-top:20px;

    }

    .number-card,
    .service-card,
    .cta-box{

        padding:30px;

    }

    .cta-box{

        border-radius:28px;

    }

    .footer-content{

        flex-direction:column;

        gap:20px;

    }

}