body{
font-family:Arial, sans-serif;
background:#ffffff;
margin:0;
padding:0;
}

/* MENU */

.menu{
background:#222;
padding:15px 10px;
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.menu a{
color:white;
text-decoration:none;
font-weight:bold;
}

.menu a:hover{
color:#34a853;
}

/* CONTAINER */

.container{
max-width:1100px;
margin:auto;
padding:30px;
background:white;
}

/* LOGO */

.logo{
display:block;
margin:auto;
width:120px;
margin-bottom:10px;
}

/* TITULOS */

h1{
text-align:center;
margin-top:5px;
}

.sub{
text-align:center;
color:#666;
margin-bottom:10px;
}

.descricao{
max-width:700px;
margin:0 auto 20px;
text-align:center;
color:#555;
line-height:1.6;
}

/* BOTAO WHATSAPP */

.whatsapp-topo{
display:block;
width:220px;
margin:25px auto 30px auto;
background:#25D366;
color:white;
padding:12px;
border-radius:6px;
text-decoration:none;
text-align:center;
font-weight:bold;
}

.whatsapp-topo:hover{
background:#1ebe5d;
}

/* TITULOS SECOES */

.titulo{
text-align:center;
margin-top:40px;
}

/* GRID */

.apps{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-top:20px;
}

/* CARDS */

.card{
border:1px solid #ddd;
border-radius:8px;
padding:15px;
background:#fafafa;
text-align:center;
transition:0.2s ease;
cursor:pointer;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

.card img{
width:64px;
height:64px;
margin-bottom:10px;
}

.card h3{
margin:5px 0;
}

.card p{
font-size:14px;
color:#555;
}

/* BOTAO */

.card a{
display:inline-block;
margin-top:10px;
background:#34a853;
color:white;
padding:8px 14px;
border-radius:5px;
text-decoration:none;
font-size:14px;
}

.card a:hover{
background:#2c8c46;
}

/* RODAPE */

.footer{
margin-top:40px;
padding:20px;
text-align:center;
font-size:14px;
color:#777;
border-top:1px solid #eee;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,0.25);
}

.whatsapp-float img{
width:26px;
filter:invert(1);
}

.whatsapp-float:hover{
transform:scale(1.08);
transition:0.2s;
}
/* RESPONSIVO */

@media (max-width:600px){

.container{
padding:20px;
}

.apps{
grid-template-columns:1fr;
}

.logo{
width:100px;
}

.menu{
gap:15px;
padding:15px 5%;
justify-content:space-between;
max-width:1100px;
margin:auto;
}

}