\.servicios {
  padding: 60px 40px;
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.contenido {
  text-align: center;
  margin-bottom: 50px;
}

.contenido h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.contenido p {
  font-size: 1rem;
  color: #d4f5e0;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.galeria {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
}

.card {
  width: 100% !important;
  max-width: 100% !important;
  flex: unset !important;
  background: rgba(10, 26, 15, 0.85) !important;
  border-radius: 14px !important;
  border: 1.5px solid rgba(124, 252, 152, 0.25) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3) !important;
  overflow: hidden;
  text-align: left !important;
  animation: none !important;
  backdrop-filter: blur(12px) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(124, 252, 152, 0.15) !important;
  border-color: rgba(124, 252, 152, 0.5) !important;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  background: rgba(10, 61, 36, 0.6);
  padding: 10px;
}

.card-body {
  padding: 14px 16px 16px;
  border-top: 1.5px solid rgba(124, 252, 152, 0.15);
}

.category {
  display: block;
  text-transform: uppercase;
  font-size: 0.68em;
  font-weight: 700;
  color: #7CFC98;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.heading {
  font-weight: 600;
  font-size: 0.9em;
  color: #ffffff;
  margin: 0 0 12px;
}

.btn-pagar {
  display: block;
  padding: 9px 0;
  background-color: #0f5132 !important;
  color: #7CFC98 !important;
  text-align: center;
  text-decoration: none;
  border-radius: 7px;
  font-size: 0.78em;
  font-weight: 700;
  border: 2px solid #7CFC98 !important;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-pagar:hover {
  background-color: #7CFC98 !important;
  color: #0a3d24 !important;
}

@media (max-width: 600px) {
  .galeria {
    grid-template-columns: 1fr !important;
  }
  .servicios {
    padding: 40px 20px;
  }
}