/*==================================================
GEE TECNOLOGY
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:#1F2937;

    background:#FFFFFF;

    line-height:1.7;

}

/*=====================================
MENU
=====================================*/

.navbar{

    padding:18px 0;

    background:#fff;

    box-shadow:0 2px 20px rgba(0,0,0,.05);

}

.navbar-brand img{

    height:60px;

}

.nav-link{

    font-weight:500;

    margin-left:18px;

    color:#374151!important;

}

.nav-link:hover{

    color:#0D6EFD!important;

}

.btn-primary{

    background:#0D6EFD;

    border:none;

    border-radius:10px;

    padding:12px 28px;

}

.btn-primary:hover{

    background:#0056d2;

}

/*=====================================
HERO
=====================================*/

#inicio{

    padding:120px 0;

}

#inicio h1{

    font-size:58px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:25px;

}

#inicio h1 span{

    color:#0D6EFD;

}

#inicio p{

    font-size:20px;

    color:#6B7280;

    margin-bottom:35px;

}

#inicio img{

    max-width:100%;

}

/*=====================================
SEÇÕES
=====================================*/

section{

    padding:90px 0;

}

section:nth-child(even){

    background:#F8FAFC;

}

h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:30px;

}

section p{

    color:#6B7280;

}

/*=====================================
CARDS
=====================================*/

.card{

    border:none;

    border-radius:18px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.card i{

    color:#0D6EFD;

}

/*=====================================
VALORES
=====================================*/

#valores .col-md-4{

    padding:18px;

    font-size:18px;

}

/*=====================================
CONTATO
=====================================*/

#contato{

    text-align:center;

}

#contato p{

    font-size:18px;

}

/*=====================================
FOOTER
=====================================*/

footer{

    background:#071B38;

}

footer p{

    color:#ffffff;

    margin:0;

}

/*=====================================
RESPONSIVO
=====================================*/

@media(max-width:991px){

#inicio{

text-align:center;

}

#inicio h1{

font-size:42px;

}

.nav-link{

margin-left:0;

margin-top:12px;

}

.btn-primary{

width:100%;

}

}

@media(max-width:768px){

h2{

font-size:32px;

}

#inicio{

padding:70px 0;

}

#inicio h1{

font-size:34px;

}

#inicio p{

font-size:18px;

}

}