.site-wrap { max-width: 1100px; margin: 0 auto; }
body {
  background: #0f0f10 url('imagens/fundo3.png') no-repeat center center;
  /* imagem menor e centralizada (restaurado) */
  background-size: 60% auto;
  color: #f4f4f4;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
}
.header-compact header, header {
  text-align: center;
  padding: 28px 16px;
  /* restaurando as cores anteriores (degradê) */
  background: linear-gradient(120deg, #262b3f 70%, #4fffb0);
  color: #ffffff;
  position: relative;
  z-index: 1000;
}

/* Ajuste responsivo: em telas pequenas o background ocupa toda a área */
@media (max-width: 900px) {
  body {
    background-position: top center;
    background-size: cover;
  }
}
.banner {
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.6);
}

header h1 {
  font-size: 2rem;
  margin: 8px 0 6px;
}
header p {
  margin: 0 0 8px;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
}
.cta {
  display:inline-block;
  margin-top: 24px;
  padding: 12px 34px;
  background: linear-gradient(90deg,#ff4d4d,#ff2020);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  transition: transform 0.18s, box-shadow 0.18s;
}
.cta:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
section { margin: 48px 0 0 0; padding: 0 16px; }
h2 { color: #4fffb0; }
.portfolio h2,
.contato h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
ul { list-style: none; padding: 0; }
.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.grid div {
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  padding: 12px;
  width: 320px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.18s;
}
.grid div:hover { transform: translateY(-6px); }
.grid img { width: 100%; border-radius: 8px; display:block }
.sobre img, .depoimentos img {
  width: 120px;
  border-radius: 50%;
  margin: 12px;
}
.contato form{ display:flex; flex-direction:column; gap:12px; max-width:520px; margin: 0 auto }
.contato input, .contato textarea{ border:none; border-radius:8px; padding:12px; background: rgba(255,255,255,0.06); color: #fff }
button { background: linear-gradient(90deg,#ff4d4d,#ff2020); color: #fff; border-radius: 8px; font-weight:700; border:none; padding:12px; cursor:pointer }
button:hover{ transform: translateY(-3px) }
.whatsapp {
  display: block; margin-top: 16px; text-align: center;
  color: #25d366; font-weight: bold;
  text-decoration: none;
}
footer { text-align: center; padding: 24px 0 12px; font-size: 0.9em; color: #4fffb0; }
@media (max-width:600px){
  .grid { flex-direction: column; }
  .banner { height: 100px; }
}
