* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}
header {
  background: linear-gradient(135deg, #4F242C, #2987E2);
  text-align: center;
  padding: 60px 20px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
header img {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.4));
}
.slogan {
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 1px;
    text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 80px 0;
}
.service {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
    margin: 0 auto
}
.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.service img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 5px solid #2987E2;
}
.service-content {
  padding: 25px;
  text-align: center;
}
.service h3 {
  color: #4F242C;
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: 600;
}
.service p {
  color: #555;
  font-size: 1em;
  font-weight: 400;
    margin-bottom: 20px;
}
.contact {
  text-align: center;
  margin: 80px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact a {
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 30px;
}
.contact a.whatsapp {
  background-color: #25D366;
  color: #fff;
}
.contact a.whatsapp:hover {
  background-color: #20b358;
  transform: scale(1.05);
}
.contact a.instagram {
  background-color: #4F242C;
  color: #fff;
}
.contact a.instagram:hover {
  background-color: #3a1b22;
  transform: scale(1.05);
}
.contact a.instagram img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
}
footer {
  background: linear-gradient(135deg, #4F242C, #2987E2);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9em;
  font-weight: 300;
}
@media (max-width: 768px) {
  header {
    padding: 40px 20px;
  }
  header img {
    max-width: 220px;
  }
  .slogan {
    font-size: 1.5em;
  }
  .services {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service img {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .slogan {
    font-size: 1.2em;
  }
  .contact {
    flex-direction: column;
    gap: 20px;
  }
  .contact a {
    width: 80%;
    justify-content: center;
  }
}