/* ==========================================================
   IntelSystem - Software House
   ========================================================== */

:root{
    --primary:#0d6efd;
    --primary-dark:#0052cc;
    --secondary:#00c2ff;

    --bg:#07111F;
    --bg-light:#0D1728;

    --white:#ffffff;
    --text:#cfd8e3;
    --muted:#8ea0b8;

    --border:rgba(255,255,255,.08);

    --radius:18px;

    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

/* Scroll */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#08121f;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

/* Links */

a{
    text-decoration:none;
    transition:var(--transition);
}

/* Sections */

section{
    padding:100px 0;
}

/* Container */

.container{
    position:relative;
    z-index:2;
}

/* Navbar */

.navbar{

    padding:18px 0;

    transition:.4s;

    background:rgba(7,17,31,.70);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.navbar-brand img{

    height:55px;

}

.nav-link{

    color:#fff !important;

    font-weight:500;

    margin-left:18px;

}

.nav-link:hover{

    color:var(--secondary) !important;

}

/* Botão */

.btn-orcamento{

    background:linear-gradient(90deg,var(--primary),var(--secondary));

    border:none;

    border-radius:50px;

    padding:13px 28px;

    font-weight:600;

    transition:.35s;

}

.btn-orcamento:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(13,110,253,.35);

}

/* Títulos */

.section-title{

    font-size:42px;

    color:#fff;

    font-weight:700;

}

.section-subtitle{

    color:var(--muted);

    max-width:700px;

    margin:auto;

    margin-top:15px;

}

/* Cards */

.card-intel{

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    border-radius:var(--radius);

    backdrop-filter:blur(20px);

    transition:.35s;

}

.card-intel:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

/* Fundo com efeito */

body::before{

    content:"";

    position:fixed;

    top:-250px;

    right:-250px;

    width:600px;

    height:600px;

    background:#0d6efd;

    opacity:.12;

    border-radius:50%;

    filter:blur(160px);

    z-index:-1;

}

body::after{

    content:"";

    position:fixed;

    bottom:-250px;

    left:-250px;

    width:500px;

    height:500px;

    background:#00c2ff;

    opacity:.08;

    border-radius:50%;

    filter:blur(180px);

    z-index:-1;

}

/* ==========================================
   HERO
========================================== */

.hero{
    position:relative;
    overflow:hidden;
}

.badge-hero{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#9fc8ff;

    font-size:14px;

}

.hero-title{

    font-size:60px;

    line-height:1.2;

    color:#FFF;

    font-weight:800;

}

.hero-title span{

    color:#4aa3ff;

}

.hero-text{

    color:#b6c5d8;

    font-size:18px;

    line-height:1.8;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.hero-info{

    display:flex;

    gap:50px;

}

.hero-info h3{

    color:#FFF;

    font-size:34px;

    margin-bottom:5px;

}

.hero-info small{

    color:#8fa3bb;

}

.hero-image{

    max-width:100%;

    animation:float 5s ease-in-out infinite;

}

/* ==========================================
   SOBRE
========================================== */

#sobre{

    background:rgba(255,255,255,.015);

}

#sobre .card-intel{

    height:100%;

}

#sobre p{

    color:#b6c5d8;

    line-height:1.9;

}

#sobre h5{

    margin-bottom:10px;

}

#sobre small{

    color:#8ea0b8;

}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}


/* ==========================================
   SERVIÇOS
========================================== */

#servicos{

    position:relative;

}

.service-card{

    height:100%;

    padding:40px 30px;

    border-radius:20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    backdrop-filter:blur(15px);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#0d6efd;

    box-shadow:0 20px 45px rgba(13,110,253,.18);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:linear-gradient(135deg,#0d6efd,#00c2ff);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#FFF;

    font-size:30px;

    margin-bottom:25px;

}

.service-card h4{

    color:#FFF;

    margin-bottom:15px;

    font-weight:600;

}

.service-card p{

    color:#aebed2;

    line-height:1.8;

    margin:0;

}

/* ==========================================
   TECNOLOGIAS
========================================== */

#tecnologias{
    background:rgba(255,255,255,.015);
}

.tech-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.tech-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.tech-card i{

    font-size:55px;

    color:#4aa3ff;

    margin-bottom:20px;

}

.tech-card span{

    display:block;

    color:#FFF;

    font-size:18px;

    font-weight:600;

}
/* ==========================================
   CONTATO
========================================== */

#contato{

    background:rgba(255,255,255,.015);

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-top:35px;

}

.contact-item i{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#FFF;

    font-size:24px;

}

.contact-item h5{

    color:#FFF;

    margin-bottom:6px;

}

.contact-item p{

    margin:0;

    color:#9fb2c9;

}

.contact-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:45px;

    backdrop-filter:blur(20px);

}

.contact-card p{

    color:#9fb2c9;

}

/*==========================================
FOOTER
==========================================*/

footer{

    background:#050b16;

    padding:80px 0 30px;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-logo{

    height:60px;

}

.footer-text{

    color:#9fb2c9;

    line-height:1.8;

}

footer h5{

    color:#FFF;

    margin-bottom:25px;

    font-weight:600;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:14px;

    color:#9fb2c9;

}

.footer-links a{

    color:#9fb2c9;

    transition:.3s;

}

.footer-links a:hover{

    color:#4aa3ff;

    padding-left:6px;

}

.footer-divider{

    border-color:rgba(255,255,255,.08);

    margin:50px 0 30px;

}

footer .row:last-child{

    color:#8ea0b8;

    font-size:15px;

}

footer .row:last-child a{

    color:#8ea0b8;

    text-decoration:none;

}

footer .row:last-child a:hover{

    color:#4aa3ff;

}

/* Mobile */

@media(max-width:991px){

    .navbar-collapse{

        background:#08121f;

        padding:20px;

        border-radius:15px;

        margin-top:15px;

    }

    .nav-link{

        margin-left:0;

        padding:12px 0;

    }

    .section-title{

        font-size:32px;

    }
    
    .hero{

        text-align:center;

        padding-top:120px;

    }

    .hero-title{

        font-size:40px;

    }

    .hero-info{

        justify-content:center;

        gap:25px;

        flex-wrap:wrap;

    }

    .hero-buttons{

        justify-content:center;

    }

}