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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    color:#374151;
    background:#fff;
    overflow-x:hidden;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    padding:0 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    z-index:999;
}

.logo img{
    height:90px;
    width:auto;
}

nav{
    display:flex;
    align-items:center;
    gap:40px;
}

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

nav a:hover{
    color:#00A651;
}

.btn-menu{
    background:#00A651;
    color:#fff !important;
    padding:14px 26px;
    border-radius:10px;
}

/* HERO */

.hero{
    min-height:850px;
    display:flex;
    align-items:center;
    padding:180px 8% 120px;

    background:
    linear-gradient(
        rgba(8,22,75,.82),
        rgba(8,22,75,.82)
    ),
    url("img/construcao.jpg");

    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:650px;
}

.hero span{
    color:#00A651;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    color:#fff;
    margin:25px 0;
    font-weight:800;
}

.hero p{
    color:#E5E7EB;
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    text-decoration:none;
    background:#00A651;
    color:#fff;
    padding:18px 35px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    background:#008f45;
    transform:translateY(-3px);
}

/* SERVIÇOS */

.services{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#fff;
    border-top:1px solid #E5E7EB;
}

.service-card{
    padding:50px 35px;
    border-right:1px solid #E5E7EB;
}

.service-card:last-child{
    border-right:none;
}

.icon{
    width:75px;
    height:75px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    background:#171A7A;
    margin-bottom:20px;
}

.service-card:nth-child(even) .icon{
    background:#00A651;
}

.service-card h3{
    color:#171A7A;
    font-size:24px;
    margin-bottom:12px;
}

.service-card p{
    color:#4B5563;
    line-height:1.7;
}

/* SEÇÕES */

.section{
    padding:110px 8%;
}

.two{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.tag{
    color:#00A651;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:1px;
}

h2{
    font-size:52px;
    line-height:1.2;
    color:#171A7A;
    margin:20px 0;
}

.section p{
    color:#4B5563;
    line-height:1.9;
    font-size:17px;
}

/* CARD DESTAQUE */

.card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.card h3{
    color:#171A7A;
    margin-bottom:15px;
}

.destaque{
    border-left:6px solid #00A651;
}

/* ESTATÍSTICAS */

.stats{
    background:#0B102C;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
    padding:90px 8%;
}

.stats h3{
    color:#00A651;
    font-size:60px;
    margin-bottom:10px;
}

.stats p{
    color:#fff;
    font-size:18px;
}

/* SEGURANÇA */

.dark{
    background:#0B102C;
}

.dark h2{
    color:#fff;
}

.dark p{
    color:#D1D5DB;
}

.list{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    padding:40px;
    border-radius:20px;
}

.list p{
    color:#fff;
    margin-bottom:15px;
    font-size:18px;
}

/* COMPROMISSO */

.compromisso{
    background:#F8FAFC;
}

.center{
    text-align:center;
    max-width:900px;
    margin:auto;
}

/* CONTATO */

.contact{
    padding:120px 8%;
    background:
    linear-gradient(
        135deg,
        #171A7A,
        #0B102C
    );
}

.contact h2{
    color:#fff;
}

.contact p{
    color:#D1D5DB;
    margin-bottom:30px;
}

.white-tag{
    color:#fff;
}

/* FOOTER */

footer{
    background:#050816;
    padding:30px;
    text-align:center;
}

footer p{
    color:#94A3B8;
}

/* RESPONSIVO */

@media(max-width:1100px){

    .services{
        grid-template-columns:repeat(2,1fr);
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:900px){

    header{
        padding:0 25px;
    }

    nav{
        display:none;
    }

    .hero{
        min-height:auto;
        padding:160px 25px 80px;
    }

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

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

    .two{
        grid-template-columns:1fr;
    }

    .services{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr;
    }

    h2{
        font-size:36px;
    }

    .section{
        padding:80px 25px;
    }

}