body{
margin:0;
font-family:Segoe UI, sans-serif;
background:#0f172a;
color:white;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#020617;
padding:20px 0;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.logo{
font-size:24px;
font-weight:bold;
}

.logo-daniel{
color:#0078D4;
}

.logo-nuvem{
color:#F80000;
}

.hero{
background:linear-gradient(120deg,#0078D4,#F80000);
padding:140px 0;
text-align:center;
}

.hero h1{
font-size:48px;
}

.hero p{
max-width:700px;
margin:auto;
font-size:18px;
}

.cloud-logos img{
height:40px;
margin:20px;
}

.btn{
display:inline-block;
margin-top:30px;
padding:14px 30px;
background:white;
color:black;
border-radius:5px;
text-decoration:none;
font-weight:bold;
}

.services{
padding:100px 0;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#1e293b;
padding:30px;
border-radius:10px;
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
background:#334155;
}

.card i{
font-size:35px;
margin-bottom:10px;
color:#38bdf8;
}

.expertise{
background:#020617;
padding:100px 0;
}

.expert-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.expert-card{
padding:40px;
border-radius:10px;
color:white;
}

.azure-card{
background:#0078D4;
}

.oci-card{
background:#F80000;
}

.contact{
text-align:center;
padding:120px 0;
background:#0f172a;
}

footer{
text-align:center;
padding:30px;
background:black;
}

/* Logos */

.azure-logo{
height:45px;
margin:15px;
}

.oracle-logo{
height:45px;
margin:15px;
}

/* LinkedIn */

.linkedin{
margin-top:25px;
}

.linkedin-btn{
display:inline-flex;
align-items:center;
gap:8px;
padding:12px 20px;
background:#0A66C2;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:600;
transition:0.3s;
}

.linkedin-btn:hover{
background:#084d96;
transform:translateY(-3px);
}


.certifications{
background:#ffffff;
color:#0f172a;
padding:90px 0;
text-align:center;
}

.certifications h2{
margin-bottom:50px;
font-weight:600;
}

.badge-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
gap:20px;
}
.badge{
border:1px solid #e2e8f0;
padding:25px;
border-radius:8px;
background:#f8fafc;
font-weight:600;
transition:0.2s;
}

.badge span{
display:block;
margin-top:8px;
font-size:13px;
font-weight:400;
color:#475569;
}

.badge:hover{
border-color:#0078D4;
transform:translateY(-4px);
}