body{
  margin:0;
  font-family:Poppins,Arial;
  background:#f4f4f4;
}
header{
  background:#111;
  color:#fff;
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
header a{
  color:#fff;
  margin-left:15px;
  text-decoration:none;
  
  font-size:30px;   /* tamanho da letra */
  font-weight:600;  /* deixa mais forte */
}
.btn-detalhes{
  color:#fff !important;
}
.banner{
  height:500px;
  background:#000;
  color:#fff;
  border:2px solid #000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
  padding:40px;
}
.card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.1);
}
.card img{
  width:100%;
  height:200px;
  object-fit:cover;
}
.card .info{
  padding:15px;
}
.price{
  font-size:22px;
  font-weight:bold;
  color:#0a7cff;
}
footer{
  background:#111;
  color:#fff;
  text-align:center;
  padding:20px;
  font-size:25px;
}
.logo img{
  height:60px;
  width:auto;
}
.instagram-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:6px;
  font-weight:600;
  color:#0a7cff;
  text-decoration:none;
}
.instagram-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:6px;
  font-weight:600;
  color:#0a7cff;
  text-decoration:none;
}

.instagram-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:6px;
  font-weight:600;
  color:#0a7cff;
  text-decoration:none;
}

.instagram-icon{
  width:14px !important;
  height:14px !important;
  max-width:14px !important;
  max-height:14px !important;
  object-fit:contain;
  display:inline-block;
}

.instagram-link:hover{
  text-decoration:underline;
}
/* MENU COMO BOTÕES */
header nav a{
  padding:10px 18px;
  border-radius:30px;
  background:transparent;
  border:2px solid rgba(255,255,255,.4);
  font-size:25px;
  font-weight:600;
  transition:all .25s ease;
}

/* HOVER */
header nav a:hover{
  background:#0a7cff;
  border-color:#0a7cff;
  color:#fff;
}
