/* Sección principal */
.servicios-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  font-family: 'Playfair Display', serif;
}
.title-servicios {
  font-size: 36px;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  color: var(--ink);
}
.bloque-servicios {
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.servicio {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}
.servicio:hover {
  transform: translateY(-4px);
}
.icono {
 width: 200px; /* ajusta el tamaño */
  height: 200px;
  margin: 0 auto 16px;
  border-radius: 4px;
}

.servicio h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #3e2e1e;
}

.servicio p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
