body {
  background-color: #0d0d0d;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.servicios {
  text-align: center;
  padding: 2rem;
}

.servicios h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.servicio {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

nav a {
  color: #ccc;
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

nav a.activo, nav a:hover {
  color: #ffffff;
}
/* imagenes de la caja */
.servicio {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.servicio img {
  width: 150px;
  height: 200;
  object-fit: cover;  
  margin-bottom: 1rem;
  border-radius: 8px;
}

.servicio h3 {
  margin: 0.5rem 0 0.3rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.servicio .descripcion {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 0.5rem;
}

.servicio .precio {
  font-size: 1.4rem;
  font-weight: bold;
  color: red;
  margin-top: auto;
}
