/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* REMOVE ESTILO PADRÃO DE LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* GERAL */
body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  line-height: 1.6;
}

/* BOTÕES */
.whatsapp, .instagram {
  position: fixed;
  right: 20px;
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  z-index: 999;
}

.whatsapp { bottom: 20px; background: #25d366; }
.instagram { bottom: 80px; background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }

/* TOPO */
.header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #0d1117;
}

.header img { height: 140px; }
.header h1 { color: #fff; font-size: 40px; }
.header p { color: #ccc; font-size: 20px; }

/* BANNER */
.banner {
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

/* SERVIÇOS */
.services {
  background: #0d1117;
  padding: 70px 20px;
}

.services h2 {
  color: #fff;
  text-align: center;
}

.line {
  width: 80px;
  height: 4px;
  background: #d4af37;
  margin: 15px auto 45px;
}

.services-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.card-content {
  padding: 18px;
  text-align: center;
}

.card-content strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: #000;
}

.card-content span {
  color: #000;
  font-size: 14px;
}

/* CTA */
.cta {
  background: #111;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.cta a {
  display: inline-block;
  margin-top: 20px;
  background: #25d366;
  padding: 15px 35px;
  border-radius: 40px;
  color: #fff;
}

/* RODAPÉ */
.footer {
  background: #0d1117;
  color: #ccc;
  padding: 45px 20px;
  text-align: center;
  font-size: 14px;
}

.footer-line {
  width: 70px;
  height: 3px;
  background: #d4af37;
  margin: 0 auto 20px;
}

.footer a {
  color: #d4af37;
}
