/* ================= DETALLE SERVICIO ================= */


.service-details {
  padding: 30px 20px 100px;
  background: #ffffff;
  text-align: center;
}

.details-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #000000;
}

/* GRID */

.details-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD */

.detail-card {
  background: #d3d3d3;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
  border-top: 3px solid #7b2121;
}

.detail-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.detail-card h4 {
  margin-bottom: 10px;
  color: #111827;
  font-size: 18px;
}

.detail-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}