#servicios ul {
  list-style: square;
  padding-left: 1.5em;
}

#servicios li {
  margin-bottom: 0.5em;
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2;
}

.services-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  color: #fff;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card img {
  width: 80px;
  margin-bottom: 15px;
}

.cta {
  text-align: center;
  margin-top: 60px;
}

.btn-contacto {
  background: #00aaff;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-contacto:hover {
  background: #008ecc;
}
