*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Poppins,sans-serif;
background:#f4f7fb;
color:#333;
line-height:1.7;

}

.container{

max-width:1200px;
margin:auto;
padding:40px;

}

header{

text-align:center;
margin-bottom:40px;

}

.logo{

width:320px;
max-width:90%;

}

.hero{

display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
margin-bottom:70px;
flex-wrap:wrap;

}

.hero-image{

flex:1;
text-align:center;

}

.hero-image img{

width:100%;
max-width:450px;

}

.hero-text{

flex:1;

}

.hero-text h1{

font-size:48px;
color:#0059B3;
margin-bottom:20px;

}

.hero-text p{

font-size:18px;

}

.status{

display:inline-flex;
align-items:center;
margin-top:25px;
padding:12px 20px;
background:#e8f4ff;
border-radius:30px;

}

.status-dot{

width:12px;
height:12px;
background:#00C851;
border-radius:50%;
margin-right:12px;

}

section{

margin-bottom:70px;

}

section h2{

margin-bottom:20px;
color:#0059B3;

}

.cards{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;

}

.card{

background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;

}

.card:hover{

transform:translateY(-5px);

}

.card i{

font-size:42px;
color:#0059B3;
margin-bottom:20px;
display:block;

}

.helpdesk{

text-align:center;
background:#0059B3;
color:#fff;
padding:50px;
border-radius:15px;

}

.helpdesk a{

display:inline-block;
margin-top:25px;
background:#fff;
color:#0059B3;
padding:15px 35px;
border-radius:30px;
font-weight:600;
text-decoration:none;

}

.contatos{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;

}

.contatos div{

background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 4px 15px rgba(0,0,0,.08);

}

footer{

text-align:center;
margin-top:60px;
color:#777;
font-size:14px;

}

@media(max-width:900px){

.hero{

flex-direction:column;

}

.hero-text{

text-align:center;

}

.hero-text h1{

font-size:34px;

}

}