/* ================= HERO ================= */

.hero{
background:linear-gradient(135deg,#0d6efd,#00b4ff);
color:white;
padding:120px 20px;
text-align:center;
}

.hero img{
width:120px;
margin-bottom:20px;
}

.hero h1{
font-weight:800;
font-size:42px;
}

.hero p{
opacity:.9;
max-width:600px;
margin:auto;
}

/* ================= SECTIONS ================= */

.section{
padding:80px 20px;
}

.section-title{
text-align:center;
font-weight:700;
margin-bottom:40px;
}

/* ================= BENEFITS ================= */

.benefit{
text-align:center;
padding:30px;
border-radius:18px;
background:#f5f7fb;
transition:.3s;
}

.benefit:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,.1);
}

/* ================= PROJETOS ================= */

.project-card{
border-radius:18px;
padding:25px;
background:white;
box-shadow:0 10px 25px rgba(0,0,0,.06);
height:100%;
}

.badge-nivel{
font-size:11px;
}

/* ================= FOOTER ================= */

.footer{
background:#0d6efd;
color:white;
padding:30px;
text-align:center;
}